Allow TMC baud rate override (#15773)

This commit is contained in:
Jason Smith
2019-11-06 15:08:12 -08:00
committed by Scott Lahteine
parent d9b0b964be
commit 814a2eaf8f
13 changed files with 61 additions and 26 deletions

View File

@ -157,6 +157,9 @@
//#define E2_SERIAL_TX_PIN PD6
//#define E2_SERIAL_RX_PIN PD6
// Reduce baud rate to improve software serial reliability
#define TMC_BAUD_RATE 19200
#endif
//

View File

@ -142,6 +142,8 @@
#define E0_SERIAL_TX_PIN PD2
#define E0_SERIAL_RX_PIN PD2
// Reduce baud rate to improve software serial reliability
#define TMC_BAUD_RATE 19200
#endif
//

View File

@ -154,6 +154,9 @@
#define E2_SERIAL_TX_PIN PD6
#define E2_SERIAL_RX_PIN PD6
// Reduce baud rate to improve software serial reliability
#define TMC_BAUD_RATE 19200
#endif
//

View File

@ -100,6 +100,9 @@
#define E0_SERIAL_TX_PIN PC11
#define E0_SERIAL_RX_PIN PC11
// Reduce baud rate to improve software serial reliability
#define TMC_BAUD_RATE 19200
#endif
//

View File

@ -59,4 +59,6 @@
#define E0_SERIAL_TX_PIN PA2
#define E0_SERIAL_RX_PIN PA3
// Reduce baud rate to improve software serial reliability
#define TMC_BAUD_RATE 19200
#endif