summaryrefslogtreecommitdiff
path: root/src/components/timer
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/timer')
-rw-r--r--src/components/timer/TimerController.cpp2
1 files changed, 1 insertions, 1 deletions
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) {