My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pins_BTT_SKR_PRO_common.h 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #pragma once
  23. #if NOT_TARGET(STM32F4)
  24. #error "Oops! Select an STM32F4 board in 'Tools > Board.'"
  25. #endif
  26. // BigTreeTech driver expansion module https://bit.ly/3ptRRoj
  27. //#define BTT_MOTOR_EXPANSION
  28. #if BOTH(HAS_WIRED_LCD, BTT_MOTOR_EXPANSION)
  29. #error "It's not possible to have both LCD and motor expansion module on EXP1/EXP2."
  30. #endif
  31. // Use one of these or SDCard-based Emulation will be used
  32. #if NO_EEPROM_SELECTED
  33. //#define SRAM_EEPROM_EMULATION // Use BackSRAM-based EEPROM emulation
  34. #define FLASH_EEPROM_EMULATION // Use Flash-based EEPROM emulation
  35. #endif
  36. #if ENABLED(FLASH_EEPROM_EMULATION)
  37. // Decrease delays and flash wear by spreading writes across the
  38. // 128 kB sector allocated for EEPROM emulation.
  39. #define FLASH_EEPROM_LEVELING
  40. #endif
  41. // USB Flash Drive support
  42. #define HAS_OTG_USB_HOST_SUPPORT
  43. //
  44. // Servos
  45. //
  46. #define SERVO0_PIN PA1
  47. #define SERVO1_PIN PC9
  48. //
  49. // Trinamic Stallguard pins
  50. //
  51. #define X_DIAG_PIN PB10 // X-
  52. #define Y_DIAG_PIN PE12 // Y-
  53. #define Z_DIAG_PIN PG8 // Z-
  54. #define E0_DIAG_PIN PE15 // E0
  55. #define E1_DIAG_PIN PE10 // E1
  56. #define E2_DIAG_PIN PG5 // E2
  57. //
  58. // Limit Switches
  59. //
  60. #ifdef X_STALL_SENSITIVITY
  61. #define X_STOP_PIN X_DIAG_PIN
  62. #if X_HOME_DIR < 0
  63. #define X_MAX_PIN PE15 // E0
  64. #else
  65. #define X_MIN_PIN PE15 // E0
  66. #endif
  67. #else
  68. #define X_MIN_PIN PB10 // X-
  69. #define X_MAX_PIN PE15 // E0
  70. #endif
  71. #ifdef Y_STALL_SENSITIVITY
  72. #define Y_STOP_PIN Y_DIAG_PIN
  73. #if Y_HOME_DIR < 0
  74. #define Y_MAX_PIN PE10 // E1
  75. #else
  76. #define Y_MIN_PIN PE10 // E1
  77. #endif
  78. #else
  79. #define Y_MIN_PIN PE12 // Y-
  80. #define Y_MAX_PIN PE10 // E1
  81. #endif
  82. #ifdef Z_STALL_SENSITIVITY
  83. #define Z_STOP_PIN Z_DIAG_PIN
  84. #if Z_HOME_DIR < 0
  85. #define Z_MAX_PIN PG5 // E2
  86. #else
  87. #define Z_MIN_PIN PG5 // E2
  88. #endif
  89. #else
  90. #define Z_MIN_PIN PG8 // Z-
  91. #define Z_MAX_PIN PG5 // E2
  92. #endif
  93. //
  94. // Z Probe must be this pin
  95. //
  96. #ifndef Z_MIN_PROBE_PIN
  97. #define Z_MIN_PROBE_PIN PA2
  98. #endif
  99. //
  100. // Filament Runout Sensor
  101. //
  102. #ifndef FIL_RUNOUT_PIN
  103. #define FIL_RUNOUT_PIN PE15
  104. #endif
  105. #ifndef FIL_RUNOUT2_PIN
  106. #define FIL_RUNOUT2_PIN PE10
  107. #endif
  108. #ifndef FIL_RUNOUT3_PIN
  109. #define FIL_RUNOUT3_PIN PG5
  110. #endif
  111. //
  112. // Steppers
  113. //
  114. #define X_STEP_PIN PE9
  115. #define X_DIR_PIN PF1
  116. #define X_ENABLE_PIN PF2
  117. #ifndef X_CS_PIN
  118. #define X_CS_PIN PA15
  119. #endif
  120. #define Y_STEP_PIN PE11
  121. #define Y_DIR_PIN PE8
  122. #define Y_ENABLE_PIN PD7
  123. #ifndef Y_CS_PIN
  124. #define Y_CS_PIN PB8
  125. #endif
  126. #define Z_STEP_PIN PE13
  127. #define Z_DIR_PIN PC2
  128. #define Z_ENABLE_PIN PC0
  129. #ifndef Z_CS_PIN
  130. #define Z_CS_PIN PB9
  131. #endif
  132. #define E0_STEP_PIN PE14
  133. #define E0_DIR_PIN PA0
  134. #define E0_ENABLE_PIN PC3
  135. #ifndef E0_CS_PIN
  136. #define E0_CS_PIN PB3
  137. #endif
  138. #define E1_STEP_PIN PD15
  139. #define E1_DIR_PIN PE7
  140. #define E1_ENABLE_PIN PA3
  141. #ifndef E1_CS_PIN
  142. #define E1_CS_PIN PG15
  143. #endif
  144. #define E2_STEP_PIN PD13
  145. #define E2_DIR_PIN PG9
  146. #define E2_ENABLE_PIN PF0
  147. #ifndef E2_CS_PIN
  148. #define E2_CS_PIN PG12
  149. #endif
  150. //
  151. // Software SPI pins for TMC2130 stepper drivers
  152. //
  153. #if ENABLED(TMC_USE_SW_SPI)
  154. #ifndef TMC_SW_MOSI
  155. #define TMC_SW_MOSI PC12
  156. #endif
  157. #ifndef TMC_SW_MISO
  158. #define TMC_SW_MISO PC11
  159. #endif
  160. #ifndef TMC_SW_SCK
  161. #define TMC_SW_SCK PC10
  162. #endif
  163. #endif
  164. #if HAS_TMC_UART
  165. /**
  166. * TMC2208/TMC2209 stepper drivers
  167. *
  168. * Hardware serial communication ports.
  169. * If undefined software serial is used according to the pins below
  170. */
  171. //#define X_HARDWARE_SERIAL Serial1
  172. //#define X2_HARDWARE_SERIAL Serial1
  173. //#define Y_HARDWARE_SERIAL Serial1
  174. //#define Y2_HARDWARE_SERIAL Serial1
  175. //#define Z_HARDWARE_SERIAL Serial1
  176. //#define Z2_HARDWARE_SERIAL Serial1
  177. //#define E0_HARDWARE_SERIAL Serial1
  178. //#define E1_HARDWARE_SERIAL Serial1
  179. //#define E2_HARDWARE_SERIAL Serial1
  180. //#define E3_HARDWARE_SERIAL Serial1
  181. //#define E4_HARDWARE_SERIAL Serial1
  182. //
  183. // Software serial
  184. //
  185. #define X_SERIAL_TX_PIN PC13
  186. #define X_SERIAL_RX_PIN PC13
  187. #define Y_SERIAL_TX_PIN PE3
  188. #define Y_SERIAL_RX_PIN PE3
  189. #define Z_SERIAL_TX_PIN PE1
  190. #define Z_SERIAL_RX_PIN PE1
  191. #define E0_SERIAL_TX_PIN PD4
  192. #define E0_SERIAL_RX_PIN PD4
  193. #define E1_SERIAL_TX_PIN PD1
  194. #define E1_SERIAL_RX_PIN PD1
  195. #define E2_SERIAL_TX_PIN PD6
  196. #define E2_SERIAL_RX_PIN PD6
  197. // Reduce baud rate to improve software serial reliability
  198. #define TMC_BAUD_RATE 19200
  199. #endif
  200. //
  201. // Temperature Sensors
  202. //
  203. #define TEMP_0_PIN PF4 // T1 <-> E0
  204. #define TEMP_1_PIN PF5 // T2 <-> E1
  205. #define TEMP_2_PIN PF6 // T3 <-> E2
  206. #define TEMP_BED_PIN PF3 // T0 <-> Bed
  207. //
  208. // Heaters / Fans
  209. //
  210. #define HEATER_0_PIN PB1 // Heater0
  211. #define HEATER_1_PIN PD14 // Heater1
  212. #define HEATER_2_PIN PB0 // Heater1
  213. #define HEATER_BED_PIN PD12 // Hotbed
  214. #define FAN_PIN PC8 // Fan0
  215. #define FAN1_PIN PE5 // Fan1
  216. #define FAN2_PIN PE6
  217. #ifndef E0_AUTO_FAN_PIN
  218. #define E0_AUTO_FAN_PIN FAN1_PIN
  219. #endif
  220. //
  221. // Misc. Functions
  222. //
  223. #ifndef SDCARD_CONNECTION
  224. #define SDCARD_CONNECTION LCD
  225. #endif
  226. /**
  227. * ----- -----
  228. * NC | 1 2 | GND 5V | 1 2 | GND
  229. * RESET | 3 4 | PF12(SD_DETECT) (LCD_D7) PG7 | 3 4 | PG6 (LCD_D6)
  230. * (MOSI)PB15 | 5 6 PF11(BTN_EN2) (LCD_D5) PG3 | 5 6 PG2 (LCD_D4)
  231. * (SD_SS)PB12 | 7 8 | PG10(BTN_EN1) (LCD_RS) PD10 | 7 8 | PD11 (LCD_EN)
  232. * (SCK)PB13 | 9 10| PB14(MISO) (BTN_ENC) PA8 | 9 10| PG4 (BEEPER)
  233. * ----- -----
  234. * EXP2 EXP1
  235. */
  236. #define EXPA1_03_PIN PG7
  237. #define EXPA1_04_PIN PG6
  238. #define EXPA1_05_PIN PG3
  239. #define EXPA1_06_PIN PG2
  240. #define EXPA1_07_PIN PD10
  241. #define EXPA1_08_PIN PD11
  242. #define EXPA1_09_PIN PA8
  243. #define EXPA1_10_PIN PG4
  244. #define EXPA2_03_PIN -1
  245. #define EXPA2_04_PIN PF12
  246. #define EXPA2_05_PIN PB15
  247. #define EXPA2_06_PIN PF11
  248. #define EXPA2_07_PIN PB12
  249. #define EXPA2_08_PIN PG10
  250. #define EXPA2_09_PIN PB13
  251. #define EXPA2_10_PIN PB14
  252. //
  253. // Onboard SD card
  254. // Must use soft SPI because Marlin's default hardware SPI is tied to LCD's EXP2
  255. //
  256. #if SD_CONNECTION_IS(LCD)
  257. #define SD_DETECT_PIN EXPA2_04_PIN
  258. #define SDSS EXPA2_07_PIN
  259. #elif SD_CONNECTION_IS(ONBOARD)
  260. // The SKR Pro's ONBOARD SD interface is on SPI1.
  261. // Due to a pull resistor on the clock line, it needs to use SPI Data Mode 3 to
  262. // function with Hardware SPI. This is not currently configurable in the HAL,
  263. // so force Software SPI to work around this issue.
  264. #define SOFTWARE_SPI
  265. #define SDSS PA4
  266. #define SCK_PIN PA5
  267. #define MISO_PIN PA6
  268. #define MOSI_PIN PB5
  269. #define SD_DETECT_PIN PB11
  270. #elif SD_CONNECTION_IS(CUSTOM_CABLE)
  271. #error "CUSTOM_CABLE is not a supported SDCARD_CONNECTION for this board"
  272. #endif
  273. #if ENABLED(BTT_MOTOR_EXPANSION)
  274. /**
  275. * _____ _____
  276. * NC | · · | GND NC | · · | GND
  277. * NC | · · | PF12 (M1EN) (M2EN) PG7 | · · | PG6 (M3EN)
  278. * (M1STP) PB15 | · · PF11 (M1DIR) (M1RX) PG3 | · · PG2 (M1DIAG)
  279. * (M2DIR) PB12 | · · | PG10 (M2STP) (M2RX) PD10 | · · | PD11 (M2DIAG)
  280. * (M3DIR) PB13 | · · | PB14 (M3STP) (M3RX) PA8 | · · | PG4 (M3DIAG)
  281. * ----- -----
  282. * EXP2 EXP1
  283. */
  284. // M1 on Driver Expansion Module
  285. #define E3_STEP_PIN EXPA2_05_PIN
  286. #define E3_DIR_PIN EXPA2_06_PIN
  287. #define E3_ENABLE_PIN EXPA2_04_PIN
  288. #define E3_DIAG_PIN EXPA1_06_PIN
  289. #define E3_CS_PIN EXPA1_05_PIN
  290. #if HAS_TMC_UART
  291. #define E3_SERIAL_TX_PIN EXPA1_05_PIN
  292. #define E3_SERIAL_RX_PIN EXPA1_05_PIN
  293. #endif
  294. // M2 on Driver Expansion Module
  295. #define E4_STEP_PIN EXPA2_08_PIN
  296. #define E4_DIR_PIN EXPA2_07_PIN
  297. #define E4_ENABLE_PIN EXPA1_03_PIN
  298. #define E4_DIAG_PIN EXPA1_08_PIN
  299. #define E4_CS_PIN EXPA1_07_PIN
  300. #if HAS_TMC_UART
  301. #define E4_SERIAL_TX_PIN EXPA1_07_PIN
  302. #define E4_SERIAL_RX_PIN EXPA1_07_PIN
  303. #endif
  304. // M3 on Driver Expansion Module
  305. #define E5_STEP_PIN EXPA2_10_PIN
  306. #define E5_DIR_PIN EXPA2_09_PIN
  307. #define E5_ENABLE_PIN EXPA1_04_PIN
  308. #define E5_DIAG_PIN EXPA1_10_PIN
  309. #define E5_CS_PIN EXPA1_09_PIN
  310. #if HAS_TMC_UART
  311. #define E5_SERIAL_TX_PIN EXPA1_09_PIN
  312. #define E5_SERIAL_RX_PIN EXPA1_09_PIN
  313. #endif
  314. #endif // BTT_MOTOR_EXPANSION
  315. //
  316. // LCDs and Controllers
  317. //
  318. #if IS_TFTGLCD_PANEL
  319. #if ENABLED(TFTGLCD_PANEL_SPI)
  320. #define TFTGLCD_CS EXPA2_08_PIN
  321. #endif
  322. #elif HAS_WIRED_LCD
  323. #define BEEPER_PIN EXPA1_10_PIN
  324. #define BTN_ENC EXPA1_09_PIN
  325. #if ENABLED(CR10_STOCKDISPLAY)
  326. #define LCD_PINS_RS EXPA1_04_PIN
  327. #define BTN_EN1 EXPA1_08_PIN
  328. #define BTN_EN2 EXPA1_06_PIN
  329. #define LCD_PINS_ENABLE EXPA1_03_PIN
  330. #define LCD_PINS_D4 EXPA1_05_PIN
  331. // CR10_STOCKDISPLAY default timing is too fast
  332. #undef BOARD_ST7920_DELAY_1
  333. #undef BOARD_ST7920_DELAY_2
  334. #undef BOARD_ST7920_DELAY_3
  335. #elif ENABLED(MKS_MINI_12864)
  336. #define DOGLCD_A0 EXPA1_04_PIN
  337. #define DOGLCD_CS EXPA1_05_PIN
  338. #define BTN_EN1 EXPA2_08_PIN
  339. #define BTN_EN2 EXPA2_06_PIN
  340. #else
  341. #define LCD_PINS_RS EXPA1_07_PIN
  342. #define BTN_EN1 EXPA2_08_PIN
  343. #define BTN_EN2 EXPA2_06_PIN
  344. #define LCD_PINS_ENABLE EXPA1_08_PIN
  345. #define LCD_PINS_D4 EXPA1_06_PIN
  346. #if ENABLED(FYSETC_MINI_12864)
  347. #define DOGLCD_CS EXPA1_08_PIN
  348. #define DOGLCD_A0 EXPA1_07_PIN
  349. //#define LCD_BACKLIGHT_PIN -1
  350. #define LCD_RESET_PIN EXPA1_06_PIN // Must be high or open for LCD to operate normally.
  351. #if EITHER(FYSETC_MINI_12864_1_2, FYSETC_MINI_12864_2_0)
  352. #ifndef RGB_LED_R_PIN
  353. #define RGB_LED_R_PIN EXPA1_05_PIN
  354. #endif
  355. #ifndef RGB_LED_G_PIN
  356. #define RGB_LED_G_PIN EXPA1_04_PIN
  357. #endif
  358. #ifndef RGB_LED_B_PIN
  359. #define RGB_LED_B_PIN EXPA1_03_PIN
  360. #endif
  361. #elif ENABLED(FYSETC_MINI_12864_2_1)
  362. #define NEOPIXEL_PIN EXPA1_05_PIN
  363. #endif
  364. #endif // !FYSETC_MINI_12864
  365. #if IS_ULTIPANEL
  366. #define LCD_PINS_D5 EXPA1_05_PIN
  367. #define LCD_PINS_D6 EXPA1_04_PIN
  368. #define LCD_PINS_D7 EXPA1_03_PIN
  369. #if ENABLED(REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER)
  370. #define BTN_ENC_EN LCD_PINS_D7 // Detect the presence of the encoder
  371. #endif
  372. #endif
  373. #endif
  374. #endif // HAS_WIRED_LCD
  375. // Alter timing for graphical display
  376. #if HAS_MARLINUI_U8GLIB
  377. #ifndef BOARD_ST7920_DELAY_1
  378. #define BOARD_ST7920_DELAY_1 DELAY_NS(96)
  379. #endif
  380. #ifndef BOARD_ST7920_DELAY_2
  381. #define BOARD_ST7920_DELAY_2 DELAY_NS(48)
  382. #endif
  383. #ifndef BOARD_ST7920_DELAY_3
  384. #define BOARD_ST7920_DELAY_3 DELAY_NS(600)
  385. #endif
  386. #endif
  387. //
  388. // WIFI
  389. //
  390. /**
  391. * -----
  392. * TX | 1 2 | GND Enable PG1 // Must be high for module to run
  393. * Enable | 3 4 | GPIO2 Reset PG0 // active low, probably OK to leave floating
  394. * Reset | 5 6 | GPIO0 GPIO2 PF15 // must be high (ESP3D software configures this with a pullup so OK to leave as floating)
  395. * 3.3V | 7 8 | RX GPIO0 PF14 // Leave as unused (ESP3D software configures this with a pullup so OK to leave as floating)
  396. * -----
  397. * W1
  398. */
  399. #define ESP_WIFI_MODULE_COM 6 // Must also set either SERIAL_PORT or SERIAL_PORT_2 to this
  400. #define ESP_WIFI_MODULE_BAUDRATE BAUDRATE // Must use same BAUDRATE as SERIAL_PORT & SERIAL_PORT_2
  401. #define ESP_WIFI_MODULE_RESET_PIN PG0
  402. #define ESP_WIFI_MODULE_ENABLE_PIN PG1
  403. #define ESP_WIFI_MODULE_GPIO0_PIN PF14
  404. #define ESP_WIFI_MODULE_GPIO2_PIN PF15