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

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