~aleteoryx/muditaos

f59096104c352bf2b8b13dcb0dff314c19132262 — Lucjan Bryndza 4 years ago 6e2a2f3
[EGD-6037] Fix stack overflow in the EventManager

Fix stack overflow in the event manager
1 files changed, 1 insertions(+), 1 deletions(-)

M module-services/service-evtmgr/service-evtmgr/EventManager.hpp
M module-services/service-evtmgr/service-evtmgr/EventManager.hpp => module-services/service-evtmgr/service-evtmgr/EventManager.hpp +1 -1
@@ 28,7 28,7 @@ class WorkerEvent;
class EventManager : public sys::Service
{
  private:
    static constexpr auto stackDepth = 2048;
    static constexpr auto stackDepth = 3200;
    void handleMinuteUpdate(time_t timestamp);
    bool processKeypadBacklightRequest(bsp::keypad_backlight::Action act);
    bool processVibraRequest(bsp::vibrator::Action act, sys::ms RepetitionTime = static_cast<sys::ms>(1000));