🐛 Fix FYSETC S6, S6 V2 Serial RX pins (#23642)

This commit is contained in:
ellensp 2022-01-31 00:34:03 +13:00 committed by Scott Lahteine
parent c02bc3887a
commit 4d8976bf6b
2 changed files with 7 additions and 1 deletions

View File

@ -128,7 +128,7 @@
#define Y_SERIAL_TX_PIN PE14
#endif
#ifndef Y_SERIAL_RX_PIN
#define Y_SERIAL_RX_PIN PC4
#define Y_SERIAL_RX_PIN PE13
#endif
#ifndef Z_SERIAL_TX_PIN
#define Z_SERIAL_TX_PIN PD11

View File

@ -39,11 +39,17 @@
#if HAS_TMC_UART
#define X_SERIAL_TX_PIN PE8
#define X_SERIAL_RX_PIN PE8
#define Y_SERIAL_TX_PIN PC4
#define Y_SERIAL_RX_PIN PC4
#define Z_SERIAL_TX_PIN PD12
#define Z_SERIAL_RX_PIN PD12
#define E0_SERIAL_TX_PIN PA15
#define E0_SERIAL_RX_PIN PA15
#define E1_SERIAL_TX_PIN PC5
#define E1_SERIAL_RX_PIN PC5
#define E2_SERIAL_TX_PIN PE0
#define E2_SERIAL_RX_PIN PE0
#endif
//