We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf4c0fe commit 551edbdCopy full SHA for 551edbd
1 file changed
src/b_setup.hpp
@@ -214,7 +214,7 @@ void setup()
214
215
#ifdef RA_SERIAL_PORT
216
#ifdef OAE
217
- RA_SERIAL_PORT.begin(57600, SERIAL_8N1, RA_TX_PIN, RA_RX_PIN);
+ RA_SERIAL_PORT.begin(57600, SERIAL_8N1, RA_RX_PIN, RA_TX_PIN);
218
#else
219
RA_SERIAL_PORT.begin(57600); // Start HardwareSerial comms with driver
220
#endif
@@ -247,7 +247,7 @@ void setup()
247
248
#ifdef DEC_SERIAL_PORT
249
250
- DEC_SERIAL_PORT.begin(57600, SERIAL_8N1, DEC_TX_PIN, DEC_RX_PIN);
+ DEC_SERIAL_PORT.begin(57600, SERIAL_8N1, DEC_RX_PIN, DEC_TX_PIN);
251
252
DEC_SERIAL_PORT.begin(57600); // Start HardwareSerial comms with driver
253
0 commit comments