Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
GPS
/
gpstracker-firmware
réplica de
https://github.com/blemasle/gpstracker-firmware.git
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Lanzamientos
8
Wiki
Actividad
Explorar el Código
Cleaned unnecessary code
tags/v1.2.0
Bertrand Lemasle
hace 7 años
padre
3fdb6e5907
commit
bf9c9d58ca
Se han
modificado 3 ficheros
con
0 adiciones
y
24 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+0
-7
GpsTracker/Core.cpp
+0
-15
GpsTracker/Core.h
+0
-2
GpsTracker/GpsTracker.ino
+ 0
- 7
GpsTracker/Core.cpp
Ver fichero
@@ -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
Ver fichero
@@ -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
Ver fichero
@@ -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();
Escribir
Vista previa
Cargando…
Cancelar
Guardar