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.

16 line
336 B

  1. #pragma once
  2. #include "Positions.h"
  3. #define ALERT_BATTERY_LEVEL_1 1
  4. #define ALERT_BATTERY_LEVEL_2 2
  5. #define ALERT_RTC_TEMPERATURE_FAILURE 3
  6. #define ALERT_RTC_CLOCK_FAILURE 4
  7. namespace alerts {
  8. uint8_t getTriggered(PositionEntryMetadata &metadata);
  9. void add(uint8_t mask);
  10. void clear(PositionEntryMetadata &metadata);
  11. }