You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #pragma once
-
- #include "Positions.h"
-
- #define ALERT_BATTERY_LEVEL_1 0
- #define ALERT_BATTERY_LEVEL_2 1
- #define ALERT_RTC_TEMPERATURE_FAILURE 2
- #define ALERT_RTC_CLOCK_FAILURE 3
-
- namespace alerts {
-
- uint8_t getTriggered(PositionEntryMetadata &metadata);
- void add(uint8_t mask);
- void clear(PositionEntryMetadata &metadata);
- }
|