From b444a664c57e91a8d8830c7513744cbd8ddfa08f Mon Sep 17 00:00:00 2001 From: pelgraine <140762863+pelgraine@users.noreply.github.com> Date: Tue, 3 Mar 2026 20:57:26 +1100 Subject: [PATCH] removed gpsaiding references --- examples/companion_radio/main.cpp | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/examples/companion_radio/main.cpp b/examples/companion_radio/main.cpp index 169ee09..a4bc6b1 100644 --- a/examples/companion_radio/main.cpp +++ b/examples/companion_radio/main.cpp @@ -5,13 +5,6 @@ #include "variant.h" // Board-specific defines (HAS_GPS, etc.) #include "target.h" // For sensors, board, etc. #include "CPUPowerManager.h" -#include "GPSAiding.h" - -// Delay after GPS hardware power-on before sending UBX aiding (ms). -// The MIA-M10Q needs time to boot before it can accept UBX commands. -#ifndef GPS_BOOT_DELAY_MS -#define GPS_BOOT_DELAY_MS 250 -#endif // T-Deck Pro Keyboard support #if defined(LilyGo_TDeck_Pro) @@ -792,10 +785,6 @@ void setup() { #ifdef PIN_GPS_EN digitalWrite(PIN_GPS_EN, GPS_EN_ACTIVE); #endif - // Send aiding data (last position + RTC time) to reduce TTFF - delay(GPS_BOOT_DELAY_MS); - GPSAiding::sendAllAiding(Serial2, sensors.node_lat, sensors.node_lon, - rtc_clock.getCurrentTime(), 50000, 10); sensors.setSettingValue("gps", "1"); } else { #ifdef PIN_GPS_EN