diff --git a/src/components/timer/TimerController.cpp b/src/components/timer/TimerController.cpp index 92f4e69f..ea945213 100644 --- a/src/components/timer/TimerController.cpp +++ b/src/components/timer/TimerController.cpp @@ -10,7 +10,7 @@ void TimerCallback(TimerHandle_t xTimer) { void TimerController::Init(Pinetime::System::SystemTask* systemTask) { this->systemTask = systemTask; - timer = xTimerCreate("Timer", 0, pdFALSE, this, TimerCallback); + timer = xTimerCreate("Timer", 1, pdFALSE, this, TimerCallback); } void TimerController::StartTimer(uint32_t duration) {