Browse Source

📌 SKR Mini V1.1 TMC UART Pins (#23970)

Keith Bennett 2 years ago
parent
commit
c7f03b820a
No account linked to committer's email address
1 changed files with 17 additions and 0 deletions
  1. 17
    0
      Marlin/src/pins/stm32f1/pins_BTT_SKR_MINI_V1_1.h

+ 17
- 0
Marlin/src/pins/stm32f1/pins_BTT_SKR_MINI_V1_1.h View File

80
   #endif
80
   #endif
81
 #endif
81
 #endif
82
 
82
 
83
+#if HAS_TMC_UART                                  // Shared with EXP1
84
+  #define X_SERIAL_TX_PIN                  PC10
85
+  #define X_SERIAL_RX_PIN       X_SERIAL_TX_PIN
86
+
87
+  #define Y_SERIAL_TX_PIN                  PC11
88
+  #define Y_SERIAL_RX_PIN       Y_SERIAL_TX_PIN
89
+
90
+  #define Z_SERIAL_TX_PIN                  PC12
91
+  #define Z_SERIAL_RX_PIN       Z_SERIAL_TX_PIN
92
+
93
+  #define E0_SERIAL_TX_PIN                 PC14
94
+  #define E0_SERIAL_RX_PIN     E0_SERIAL_TX_PIN
95
+
96
+  // Reduce baud rate to improve software serial reliability
97
+  #define TMC_BAUD_RATE                   19200
98
+#endif
99
+
83
 //
100
 //
84
 // Heaters / Fans
101
 // Heaters / Fans
85
 //
102
 //

Loading…
Cancel
Save