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 1
- #define ALERT_BATTERY_LEVEL_2 2
- #define ALERT_RTC_FAILURE 3
-
- namespace alerts {
-
- extern uint8_t _alerts;
-
- uint8_t getTriggered(PositionEntryMetadata &metadata);
- inline void add(uint8_t mask) { _alerts |= mask; }
- void clear(PositionEntryMetadata &metadata);
- }
|