이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
탐색
도움말
로그인
GPS
/
gpstracker-firmware
의 미러
https://github.com/blemasle/gpstracker-firmware.git
보기
1
좋아요
0
포크
0
코드
이슈
0
릴리즈
8
위키
활동
소스 검색
Cleaned unnecessary code
tags/v1.2.0
Bertrand Lemasle
7 년 전
부모
3fdb6e5907
커밋
bf9c9d58ca
3개의 변경된 파일
과
0개의 추가작업
그리고
24개의 파일을 삭제
분할 보기
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-7
GpsTracker/Core.cpp
+0
-15
GpsTracker/Core.h
+0
-2
GpsTracker/GpsTracker.ino
+ 0
- 7
GpsTracker/Core.cpp
파일 보기
@@ -4,11 +4,4 @@
namespace core {
GPS_TRACKER_STATES state;
void setCurrentState(GPS_TRACKER_STATES s) {
state = s;
VERBOSE_FORMAT("setCurrentState", "%d, Free RAM : %d", state debug::freeRam());
}
}
+ 0
- 15
GpsTracker/Core.h
파일 보기
@@ -4,21 +4,6 @@
#include "Debug.h"
enum class GPS_TRACKER_STATES : uint8_t
{
SETUP = 0,
GET_POSITION = 1,
SAVE_POSITION = 2,
SEND_POSITION = 3,
SLEEP = 4
};
namespace core {
extern GPS_TRACKER_STATES state;
void setCurrentState(GPS_TRACKER_STATES s);
}
+ 0
- 2
GpsTracker/GpsTracker.ino
파일 보기
@@ -7,8 +7,6 @@ void setup() {
Log.begin(LOG_LEVEL_VERBOSE, &Serial);
#endif
core::setCurrentState(GPS_TRACKER_STATES::SETUP);
rtc::powerOn();
rtc::setup();
rtc::powerOff();
쓰기
미리보기
불러오는 중...
취소
저장