Fix GPS baud rate: RYS352A defaults to 115200, not 9600

The AG3352 GNSS engine in the RYS352A ships at 115200 8N1 per
the datasheet spec table. 9600 was a generic assumption that
would cause the UART to read garbage and never acquire a fix.
This commit is contained in:
Ryan Malloy 2026-02-11 16:06:31 -07:00
parent f218cd468b
commit f2c1eb84d2
2 changed files with 3 additions and 3 deletions

View file

@ -9,7 +9,7 @@
#define PIN_GPS_RX 5 // ESP32 RX <- GPS TX (NMEA out)
#define PIN_GPS_TX 6 // ESP32 TX -> GPS RX (config in, optional)
#define PIN_GPS_PPS 7 // 1Hz PPS rising edge (interrupt)
#define GPS_BAUD 9600
#define GPS_BAUD 115200
// I2C Sensor Bus
#define PIN_I2C_SDA 8