Skip to content

Commit

Permalink
🐛 Fix FYSETC S6, S6 V2 Serial RX pins (#23642)
Browse files Browse the repository at this point in the history
  • Loading branch information
ellensp committed Jan 30, 2022
1 parent 127a3ad commit 69c7b8c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/pins/stm32f4/pins_FYSETC_S6.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions Marlin/src/pins/stm32f4/pins_FYSETC_S6_V2_0.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

//
Expand Down

0 comments on commit 69c7b8c

Please sign in to comment.