summaryrefslogtreecommitdiff
path: root/src/components/timer/TimerController.cpp
AgeCommit message (Collapse)Author
2022-05-10Fix for stopping timer alert and simplifying code.Michele Bini
2022-04-17Merge branch 'alarm-reliability-and-switch-to-freertos-timers' into edgeMichele Bini
# Conflicts: # src/components/alarm/AlarmController.cpp # src/components/datetime/DateTimeController.cpp # src/components/motor/MotorController.cpp # src/components/timer/TimerController.cpp # src/components/timer/TimerController.h # src/systemtask/Messages.h # src/systemtask/SystemTask.cpp
2022-04-17Switch MotorController and TimerController to FreeRTOS timersMichele Bini
2022-04-17Simplify MotorController timer codeMichele Bini
2022-04-16Make Init methods more uniform among timer and alarm controllersMichele Bini
2022-04-16Merge branch 'alarm-fix-work' into edgeMichele Bini
# Conflicts: # src/components/timer/TimerController.cpp
2022-04-16replace pdMS_TO_TICKS with APP_TIMER_TICKS; more tweaksMichele Bini
2022-04-15Mirror changes for timer AppMichele Bini
2022-04-10Integrate hatmajster's timer codeMichele Bini
2021-11-15Update includes to to be relative to src directoryReinhold Gschweicher
Don't use relative imports like `../foo.h` as those depend on the relative position of both files. Rather than that use imports relative to the `src` directory, which explicitly is part of the include directories.
2021-06-06Initialize SystemTask, DisplayApp and HeartRateTask as global static ↵Jean-François Milants
variable instead of variables on the heap. We don't need them on the heap as we know their size at build time, it'll reduce memory fragmentation and it'll make memory analysis easier.
2021-05-20Timer App (#355)Florian
* built timer app * Style improvements * making sure buttons stay hidden when the app is reopened and reappear after the timer runs out * more sensible calculations of time deltas. eliminated that mysterious scaling factor * changing the timer icon