Make GPS_TX_PIN the serial TX and GPS_RX_PIN the serial RX for all NRF variants (#8772)

This commit is contained in:
Chloe Bethel
2025-12-01 03:57:25 +00:00
committed by GitHub
parent 34f8300288
commit ee6c9101c7
10 changed files with 36 additions and 36 deletions

View File

@@ -107,12 +107,12 @@ static const uint8_t A0 = PIN_A0;
#define PIN_GPS_REINIT (29)
#define PIN_GPS_STANDBY (30)
#define PIN_GPS_PPS (31)
#define GPS_TX_PIN (3)
#define GPS_RX_PIN (2)
#define GPS_TX_PIN (2)
#define GPS_RX_PIN (3)
#define GPS_THREAD_INTERVAL 50
#define PIN_SERIAL1_RX GPS_TX_PIN
#define PIN_SERIAL1_TX GPS_RX_PIN
#define PIN_SERIAL1_TX GPS_TX_PIN
#define PIN_SERIAL1_RX GPS_RX_PIN
// Secondary UART
#define PIN_SERIAL2_RX (22)