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.
This commit is contained in:
Tom Fifield 2024-07-31 04:57:31 +08:00 committed by GitHub
parent 1f9dacf486
commit 9f5f630dca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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
#endif