mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-23 16:40:22 -04:00
[EGD-2594] apps/call: add libphonenumber support
Augment handling phone numbers with libphonenumber: - add "as you type" formatting to phone numbers, - normalize phone number handling by using libphonenumber's phone number representation. Clean up the code by moving application logic back to the application and window data back to the window and reordering includes. Application's stack size has been increased due to formatter stack utilization level.
This commit is contained in:
@@ -23,7 +23,7 @@ namespace sys
|
||||
const char *systemManagerServiceName = "SysMgrService";
|
||||
|
||||
SystemManager::SystemManager(TickType_t pingInterval)
|
||||
: Service(systemManagerServiceName), pingInterval(pingInterval)
|
||||
: Service(systemManagerServiceName, "", 8192), pingInterval(pingInterval)
|
||||
{
|
||||
// Specify list of channels which System Manager is registered to
|
||||
busChannels = {BusChannels::SystemManagerRequests};
|
||||
|
||||
Reference in New Issue
Block a user