The system watchdog monitors whether there is message traffic
on the Bus. If no message was sent for an extended period of time,
a reset will occur. It should also protect against system-wide hangs.
On Linux, watchdog is simulated by a FreeRTOS task that will call exit
on timeout.
Created first version of onBoarding application. Added welcome
window, configuration start window and adopted language
window. Small Icon GUI refactor. AppManager language copy removed.
Feature was already removed some time ago but still some reminders
persist. This commit only removed mentioned reminders.
Some minor style fixes suggested by clang tidy were also applied.
* [EGD-4181] Initial file indexer service
* [EGD-4181] Initial version of the indexer service
* [EGD-4181] Small changes needed for file indexer
* [EGD-4181] Pass message from vfs to indexer service
* [EGD-4181] Initial indexer service with timers
* [EGD-4181] File indexer service list files
* [EGD-4181] Use default destructor in header
Don't use iterator
* [EGD-4181] Code review fixes.
* [EGD-4030] File indexer handle base mime types
* [EGD-4181] Code review fixes.
* [EGD-4181] Audio file indexer initial stub
* [EGD-4030] Text files indexer
* [EGD-4081] Missing UTF8 file header
* [EGD-4181] Startup paths as an array.
* [EGD-4181] VFS notifier dir fixes
* [EGD-4181] Service fileindexer as static library
* [EGD-4181] Code review fixes
Co-authored-by: Lucjan Bryndza <lucjan.bryndza@mudita.com>
* Moved ApplicationLauncher to separate files - declutering
* WindowsStore renamed to WindowsFactory - Store needs to be splitted toavoid antipattern
* Options window build dynamically onBeforeShow
* Dialog windows dynamically built
[EGD-3681] review issues solved: new settings window contains link to the old one, _old files removed, issues regarding lambda params, removed translations for de, fr, sp;removed section file/author from the header/body, removed destructor - default one exists in the base class, not used parameter with maybe_unused param, reoved dead code; DeinitHandler removed (was empty) - currently base class calls onClose on all its windows; reinterpret_cast removed
RT1051 SDRAM is not big enough to fit full Debug build. To be able to
debug on the RT1051 add options to choose precisely which applications
you want to include in the build allowing to decrease debug firmware
size.
Enable size optimization for applications (configurable) in debug mode
and allow to specify with cmake options which applications can be
optimized with.
Remove -Og debug flags which break debugging.
Signed-off-by: Marcin Smoczyński <smoczynski.marcin@gmail.com>
Till now there was no clear way to register hanlder for message in
Service, with this approach one can register function/lambda handler
for Message which encurages handling messages in functions rather than
in hudge switch cases.
With aproach like this our Messages resembe something between Command
and State pattern. In state pattern `Message` would be `Event` send,
whereas Service would be `Context`.
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.