소스 검색

Fixed bad definition of core::notifyFailures

tags/v1.2.0
Bertrand Lemasle 6 년 전
부모
커밋
3a5357a644
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +1
    -1
      GpsTracker/Alerts.h
  2. +1
    -1
      GpsTracker/Core.h

+ 1
- 1
GpsTracker/Alerts.h 파일 보기

@@ -11,6 +11,6 @@ namespace alerts {
extern uint8_t _alerts;

uint8_t getTriggered(PositionEntryMetadata &metadata);
inline void add(uint8_t mask) { _alerts |= mask; }
inline void add(uint8_t mask) { _alerts |= mask; } //TODO : save to EEPROM to survive reset
void clear(PositionEntryMetadata &metadata);
}

+ 1
- 1
GpsTracker/Core.h 파일 보기

@@ -18,5 +18,5 @@ namespace core {
bool updateSleepTime();
uint16_t mapSleepTime(uint8_t velocity);

void notifyFailures(PositionEntryMetadata &metadata);
uint8_t notifyFailures(PositionEntryMetadata &metadata);
}

불러오는 중...
취소
저장