Não pode escolher mais do que 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- #include "Gps.h"
-
- #define LOGGER_NAME "Gps"
-
- namespace gps {
-
- void powerOn() {
-
- }
-
- void powerOff() {
-
- }
-
- SIM808_GPS_STATUS acquireCurrentPosition() {
- SIM808_GPS_STATUS currentStatus = SIM808_GPS_STATUS::OFF;
-
- //TODO : do while (!timeout && < accurate_fix)
- if (currentStatus > SIM808_GPS_STATUS::NO_FIX) {
- lastStatus = currentStatus;
- }
-
- return currentStatus;
- }
-
- Time getTime() {
-
- }
- }
|