Fix what happens and stuff

This commit is contained in:
Just Call Me Koko
2023-08-30 16:50:54 -04:00
parent 7299b66255
commit d140f70093
2 changed files with 7 additions and 1 deletions

View File

@@ -1,5 +1,7 @@
#include "GpsInterface.h"
#ifdef HAS_GPS
char nmeaBuffer[100];
MicroNMEA nmea(nmeaBuffer, sizeof(nmeaBuffer));
@@ -113,4 +115,5 @@ void GpsInterface::main() {
this->num_sats = nmea.getNumSatellites();
//Serial.println("No fix");
}
}
}
#endif