From 9f5f630dca02f4cecf04a6e2599cc9735f649e4b Mon Sep 17 00:00:00 2001 From: Tom Fifield Date: Wed, 31 Jul 2024 04:57:31 +0800 Subject: [PATCH] Remove unused define in NRF52 architecture (#4350) The NRF52 architecture defaulted to setting GPS_UBLOX. However, GPS_UBLOX is not used anywhere in the code. Remove these lines. --- src/platform/nrf52/architecture.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/platform/nrf52/architecture.h b/src/platform/nrf52/architecture.h index a276a6081..2b285ec2e 100644 --- a/src/platform/nrf52/architecture.h +++ b/src/platform/nrf52/architecture.h @@ -88,10 +88,6 @@ #endif -#ifndef TTGO_T_ECHO -#define GPS_UBLOX -#endif - #define LED_PIN PIN_LED1 // LED1 on nrf52840-DK #ifdef PIN_BUTTON1 @@ -120,4 +116,4 @@ #if !defined(PIN_SERIAL_RX) && !defined(NRF52840_XXAA) // No serial ports on this board - ONLY use segger in memory console #define USE_SEGGER -#endif \ No newline at end of file +#endif