summaryrefslogtreecommitdiff
path: root/src/components/alarm/AlarmController.h
AgeCommit message (Collapse)AuthorFilesLines
2023-01-09Format header filesFinlay Davidson1-0/+6
In my PR updating clang-format, I forgot to also format the headers.
2022-09-27AlarmController: add const to SecondsToAlarm() functionReinhold Gschweicher1-1/+1
The function `SecondsToAlarm()` doesn't change anything in the `AlarmController` object. Mark the function `const` to show this property.
2022-06-06Switch to freertos timers (#1095)Michele Bini1-0/+3
* Use FreeRTOS timer for AlarmController * Use FreeRTOS timer for MotorController * Remove app_timer component from compilation as we now solely use FreeROTS timer * Simplify variable and text names for AlarmController and MotorController timers * Call ScheduleAlarm directly from StopAlerting, for recurring timers Co-authored-by: Riku Isokoski <riksu9000@gmail.com> Co-authored-by: NeroBurner <pyro4hell@gmail.com>
2021-12-09AlarmController: remove unused app_timer.h include in headerReinhold Gschweicher1-1/+0
2021-09-16Fixes per Riksu9000's feedbackMark Russell1-4/+4
2021-09-13License header fix, add missing bracesMark Russell1-1/+5
2021-09-13Fixes based on code reviews (formatting, UI code)Mark Russell1-6/+20
2021-09-10Created basic alarm appMark Russell1-0/+50