still cant decode gps from T-deck

This commit is contained in:
richonguzman 2024-10-03 09:12:37 -03:00
parent 6a2ef267d6
commit 0a063e48aa
1 changed files with 4 additions and 1 deletions

View File

@ -15,7 +15,7 @@
#ifdef HIGH_GPS_BAUDRATE
#define GPS_BAUD 115200
#else
#define GPS_BAUD 9600
#define GPS_BAUD 9600// 38400
#endif
extern Configuration Config;
@ -64,6 +64,9 @@ namespace GPS_Utils {
if (disableGPS) return;
while (neo6m_gps.available() > 0) {
gps.encode(neo6m_gps.read());
//
Serial.print(neo6m_gps.read());
//
}
}