summaryrefslogtreecommitdiff
path: root/src/components/alarm/AlarmController.cpp
AgeCommit message (Collapse)Author
2022-06-07use tick-based duration type for computationMichele Bini
2022-06-07s/alarmAppTimer/alarmTimer/Michele Bini
2022-04-21Merge branch 'rev22-develop' into edgeMichele Bini
2022-04-20Merge branch 'alarm-reliability-and-switch-to-freertos-timers' into ↵Michele Bini
rev22-develop
2022-04-17Differentiate time adjustment (< 3h for example time zone change when ↵Michele Bini
crossing a border or because of daylight saving) and time setting (for example when the firmware is booted for the first time and the companion app sends the time)
2022-04-17Use FreeRTOS timer for AlarmControllerMichele Bini
2022-04-16Make Init methods more uniform among timer and alarm controllersMichele Bini
2022-04-16Renamed RescheduleAlarm to OnAdjustTimeMichele Bini
2022-04-16Fix for RescheduleAlarmMichele Bini
2022-04-16remove app timer, with the exception of header, to keep APP_TIMER_TICKS ↵Michele Bini
definition.
2022-04-16Merge branch 'alarm-fix-work' into edgeMichele Bini
# Conflicts: # src/components/timer/TimerController.cpp
2022-04-16Run ScheduleAlarm from System task events only.Michele Bini
2022-04-16replace pdMS_TO_TICKS with APP_TIMER_TICKS; more tweaksMichele Bini
2022-04-15Further refine previous commitsMichele Bini
2022-04-15Refine previous commitMichele Bini
2022-04-15Test code for missed alarmMichele Bini
2022-04-13Fix for previous two commitsMichele Bini
2022-04-13Attempt to fix lost alarmsMichele Bini
2022-03-29AlarmController: allow loss of precision for alarmTime castReinhold Gschweicher
Allow a loss of precision if the system clock has a lower resolution than nanoseconds. This is the case for web assembly.
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-09-16Fixes per Riksu9000's feedbackMark Russell
2021-09-13License header fix, add missing bracesMark Russell
2021-09-13Fixes based on code reviews (formatting, UI code)Mark Russell
2021-09-10Created basic alarm appMark Russell