From 7e4657ac916917afa63908fb583abac424f500cc Mon Sep 17 00:00:00 2001 From: Rysiek Labus Date: Fri, 5 Mar 2021 15:44:35 +0100 Subject: [PATCH] Update taskGPS.cpp --- src/taskGPS.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/taskGPS.cpp b/src/taskGPS.cpp index 37b3253..a7ff4f0 100644 --- a/src/taskGPS.cpp +++ b/src/taskGPS.cpp @@ -24,14 +24,14 @@ void taskGPS(void *parameter) { // https://github.com/lora-aprs/TTGO-T-Beam_GPS-reset if(myGPS.begin(gpsSerial)){ myGPS.setUART1Output(COM_TYPE_NMEA); //Set the UART port to output NMEA only - myGPS.saveConfiguration(); //Save the current settings to flash and BBR + //myGPS.saveConfiguration(); //Save the current settings to flash and BBR myGPS.disableNMEAMessage(UBX_NMEA_GLL, COM_PORT_UART1); myGPS.disableNMEAMessage(UBX_NMEA_GSA, COM_PORT_UART1); myGPS.disableNMEAMessage(UBX_NMEA_GSV, COM_PORT_UART1); myGPS.disableNMEAMessage(UBX_NMEA_VTG, COM_PORT_UART1); myGPS.disableNMEAMessage(UBX_NMEA_RMC, COM_PORT_UART1); myGPS.enableNMEAMessage(UBX_NMEA_GGA, COM_PORT_UART1); - myGPS.saveConfiguration(); //Save the current settings to flash and BBR + //myGPS.saveConfiguration(); //Save the current settings to flash and BBR delay(1000); } }