瀏覽代碼

Cleaned unnecessary code

tags/v1.2.0
Bertrand Lemasle 7 年之前
父節點
當前提交
bf9c9d58ca
共有 3 個檔案被更改,包括 0 行新增24 行删除
  1. +0
    -7
      GpsTracker/Core.cpp
  2. +0
    -15
      GpsTracker/Core.h
  3. +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();


Loading…
取消
儲存