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

@@ -78,11 +78,11 @@ extern "C" {
#define GPS_BAUDRATE 9600
#define PIN_GPS_RESET 25
#define PIN_GPS_STANDBY 21
#define GPS_TX_PIN 20
#define GPS_RX_PIN 22
#define GPS_TX_PIN 22
#define GPS_RX_PIN 20
#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
// Button
#define BUTTON_PIN 12
#define BUTTON_PIN_ALT (0 + 12)