Skip to content

Commit 551edbd

Browse files
PR feedback
- Corrected TX and RX pins on RA and DEC for OAE
1 parent bf4c0fe commit 551edbd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/b_setup.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ void setup()
214214

215215
#ifdef RA_SERIAL_PORT
216216
#ifdef OAE
217-
RA_SERIAL_PORT.begin(57600, SERIAL_8N1, RA_TX_PIN, RA_RX_PIN);
217+
RA_SERIAL_PORT.begin(57600, SERIAL_8N1, RA_RX_PIN, RA_TX_PIN);
218218
#else
219219
RA_SERIAL_PORT.begin(57600); // Start HardwareSerial comms with driver
220220
#endif
@@ -247,7 +247,7 @@ void setup()
247247
#endif
248248
#ifdef DEC_SERIAL_PORT
249249
#ifdef OAE
250-
DEC_SERIAL_PORT.begin(57600, SERIAL_8N1, DEC_TX_PIN, DEC_RX_PIN);
250+
DEC_SERIAL_PORT.begin(57600, SERIAL_8N1, DEC_RX_PIN, DEC_TX_PIN);
251251
#else
252252
DEC_SERIAL_PORT.begin(57600); // Start HardwareSerial comms with driver
253253
#endif

0 commit comments

Comments
 (0)