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_COHESION3D_REMIX.h 9.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  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. /**
  24. * Cohesion3D ReMix pin assignments
  25. */
  26. #include "env_validate.h"
  27. #define BOARD_INFO_NAME "Cohesion3D ReMix"
  28. //
  29. // Servos
  30. //
  31. #define SERVO0_PIN P2_04
  32. //
  33. // Limit Switches
  34. //
  35. #define X_MIN_PIN P1_24 // 10k pullup to 3.3V
  36. #define X_MAX_PIN P1_25 // 10k pullup to 3.3V
  37. #define Y_MIN_PIN P1_26 // 10k pullup to 3.3V
  38. #define Y_MAX_PIN P1_27 // 10k pullup to 3.3V
  39. #define Z_MIN_PIN P1_28 // 10k pullup to 3.3V
  40. #define Z_MAX_PIN P1_29 // 10k pullup to 3.3V
  41. //
  42. // Z Probe (when not Z_MIN_PIN)
  43. //
  44. #ifndef Z_MIN_PROBE_PIN
  45. #define Z_MIN_PROBE_PIN P1_29
  46. #endif
  47. //
  48. // Steppers
  49. //
  50. #define X_STEP_PIN P2_00
  51. #define X_DIR_PIN P0_05
  52. #define X_ENABLE_PIN P0_04
  53. #define X_CS_PIN P1_10 // Ethernet Expansion - Pin 9
  54. #define Y_STEP_PIN P2_01
  55. #define Y_DIR_PIN P0_11
  56. #define Y_ENABLE_PIN P0_10
  57. #define Y_CS_PIN P1_09 // Ethernet Expansion - Pin 10
  58. #define Z_STEP_PIN P2_02
  59. #define Z_DIR_PIN P0_20
  60. #define Z_ENABLE_PIN P0_19
  61. #define Z_CS_PIN P1_00 // Ethernet Expansion - Pin 11
  62. #define E0_STEP_PIN P2_03
  63. #define E0_DIR_PIN P0_22
  64. #define E0_ENABLE_PIN P0_21
  65. #define E0_CS_PIN P1_04 // Ethernet Expansion - Pin 12
  66. #define E1_STEP_PIN P2_08
  67. #define E1_DIR_PIN P2_13
  68. #define E1_ENABLE_PIN P4_29
  69. #define E1_CS_PIN P1_01 // Ethernet Expansion - Pin 14
  70. #define E2_STEP_PIN P1_20
  71. #define E2_DIR_PIN P1_19
  72. #define E2_ENABLE_PIN P1_21
  73. #define E2_CS_PIN P1_18 // FET 6
  74. //
  75. // Default pins for TMC software SPI
  76. //
  77. #if ENABLED(TMC_USE_SW_SPI)
  78. #ifndef TMC_SW_MOSI
  79. #define TMC_SW_MOSI P1_16 // Ethernet Expansion - Pin 5
  80. #endif
  81. #ifndef TMC_SW_MISO
  82. #define TMC_SW_MISO P1_17 // Ethernet Expansion - Pin 6
  83. #endif
  84. #ifndef TMC_SW_SCK
  85. #define TMC_SW_SCK P1_08 // Ethernet Expansion - Pin 7
  86. #endif
  87. #endif
  88. //
  89. // Analog Inputs
  90. // 3.3V max when defined as an analog input
  91. //
  92. #define TEMP_0_PIN P0_23_A0
  93. #define TEMP_BED_PIN P0_24_A1
  94. #define TEMP_1_PIN P0_25_A2
  95. #if ENABLED(FILAMENT_WIDTH_SENSOR)
  96. #define FILWIDTH_PIN P0_26_A3
  97. #else
  98. #define TEMP_2_PIN P0_26_A3
  99. #endif
  100. //
  101. // Heaters / Fans
  102. //
  103. #define HEATER_BED_PIN P2_05
  104. #define HEATER_0_PIN P2_07 // FET 1
  105. #define HEATER_1_PIN P1_23 // FET 2
  106. #define HEATER_2_PIN P1_22 // FET 3
  107. #ifndef FAN_PIN
  108. #define FAN_PIN P2_06 // FET 4
  109. #endif
  110. //
  111. // Auto fans
  112. //
  113. #if HOTENDS == 3
  114. #define AUTO_FAN_PIN P1_18 // FET 6
  115. #else
  116. #define AUTO_FAN_PIN P1_22 // FET 3
  117. #endif
  118. #ifndef E0_AUTO_FAN_PIN
  119. #define E0_AUTO_FAN_PIN AUTO_FAN_PIN
  120. #endif
  121. #ifndef E1_AUTO_FAN_PIN
  122. #define E1_AUTO_FAN_PIN AUTO_FAN_PIN
  123. #endif
  124. #ifndef E2_AUTO_FAN_PIN
  125. #define E2_AUTO_FAN_PIN AUTO_FAN_PIN
  126. #endif
  127. //
  128. // Misc. Functions
  129. //
  130. #define LED_PIN P4_28 // Play LED
  131. //
  132. // M3/M4/M5 - Spindle/Laser Control
  133. //
  134. #if HAS_CUTTER
  135. #undef HEATER_0_PIN
  136. #undef HEATER_BED_PIN
  137. #undef FAN_PIN
  138. #define SPINDLE_LASER_ENA_PIN P2_07 // FET 1
  139. #define SPINDLE_LASER_PWM_PIN P2_05 // Bed FET
  140. #define SPINDLE_DIR_PIN P2_06 // FET 4
  141. #endif
  142. //
  143. // LCD / Controller
  144. //
  145. // LCD_PINS_D5, D6, and D7 are not present in the EXP1 connector, and will need to be
  146. // defined to use the REPRAP_DISCOUNT_SMART_CONTROLLER.
  147. //
  148. // A remote SD card is currently not supported because the pins routed to the EXP2
  149. // connector are shared with the onboard SD card, and Marlin does not support that
  150. // hardware configuration.
  151. //
  152. #if ENABLED(FYSETC_MINI_12864)
  153. #define FORCE_SOFT_SPI // REQUIRED - results in LCD soft SPI mode 3
  154. #define BEEPER_PIN P1_31 // EXP1-1
  155. #define BTN_ENC P1_30 // EXP1-2
  156. #define DOGLCD_CS P0_18 // EXP1-3
  157. #define DOGLCD_A0 P0_16 // EXP1-4
  158. #define LCD_RESET_PIN P0_15 // EXP1-5
  159. // A custom cable is REQUIRED for EXP2 cable because the SCK & MOSI on the card's EXP2 are dedicated
  160. // to the onboard SD card. All required EXP2 signals come from the Ethernet connector. Pin 1 of this
  161. // connector is the one nearest the motor power connector.
  162. #define DOGLCD_SCK P1_17 // EXP2-2 => Ethernet pin 5 (bottom, 3 from left)
  163. #define BTN_EN2 P1_09 // EXP2-3 => Ethernet pin 9 (bottom, 5 from left)
  164. #define BTN_EN1 P1_04 // EXP2-5 => Ethernet pin 11 (bottom, 6 from left)
  165. #define DOGLCD_MOSI P1_01 // EXP2-6 => Ethernet pin 13 (bottom, 7 from left)
  166. // A custom EXP1 cable is required colored LEDs. Pins 1-5, 9, 10 of the cable go to pins 1-5, 9, 10
  167. // on the board's EXP1 connector. Pins 6, 7, and 8 of the EXP1 cable go to the Ethernet connector.
  168. // Rev 1.2 displays do NOT require the RGB LEDs. 2.0 and 2.1 displays do require RGB.
  169. #if EITHER(FYSETC_MINI_12864_1_2, FYSETC_MINI_12864_2_0)
  170. #ifndef RGB_LED_R_PIN
  171. #define RGB_LED_R_PIN P1_16 // EXP1-6 => Ethernet pin 6 (top row, 3 from left)
  172. #endif
  173. #ifndef RGB_LED_G_PIN
  174. #define RGB_LED_G_PIN P1_10 // EXP1-7 => Ethernet pin 10 (top row, 5 from left)
  175. #endif
  176. #ifndef RGB_LED_B_PIN
  177. #define RGB_LED_B_PIN P1_00 // EXP1-8 => Ethernet pin 12 (top row, 6 from left)
  178. #endif
  179. #elif ENABLED(FYSETC_MINI_12864_2_1)
  180. #define NEOPIXEL_PIN P1_16 // EXP1-6 => Ethernet pin 6 (top row, 3 from left)
  181. #endif
  182. #elif HAS_WIRED_LCD
  183. #define BEEPER_PIN P1_31 // EXP1-1
  184. //#define SD_DETECT_PIN P0_27 // EXP2-7
  185. #define BTN_EN1 P3_26 // EXP2-5
  186. #define BTN_EN2 P3_25 // EXP2-3
  187. #define BTN_ENC P1_30 // EXP1-2
  188. #define LCD_PINS_RS P0_16 // EXP1-4
  189. #define LCD_SDSS P0_28 // EXP2-4
  190. #define LCD_PINS_ENABLE P0_18 // EXP1-3
  191. #define LCD_PINS_D4 P0_15 // EXP1-5
  192. #define KILL_PIN P2_11 // EXP2-10
  193. #endif // HAS_WIRED_LCD
  194. //
  195. // SD Support
  196. //
  197. #ifndef SDCARD_CONNECTION
  198. #define SDCARD_CONNECTION ONBOARD
  199. #endif
  200. #if SD_CONNECTION_IS(LCD) || SD_CONNECTION_IS(ONBOARD)
  201. #define SD_SCK_PIN P0_07 // (52) system defined J3-9 & AUX-3
  202. #define SD_MISO_PIN P0_08 // (50) system defined J3-10 & AUX-3
  203. #define SD_MOSI_PIN P0_09 // (51) system defined J3-10 & AUX-3
  204. #if SD_CONNECTION_IS(LCD)
  205. #define SD_SS_PIN P1_23 // (53) system defined J3-5 & AUX-3 (Sometimes called SDSS) - CS used by Marlin
  206. #else
  207. #undef SD_DETECT_PIN
  208. #define ONBOARD_SD_CS_PIN P0_06 // Chip select for "System" SD card
  209. #define SD_SS_PIN ONBOARD_SD_CS_PIN
  210. #endif
  211. #elif SD_CONNECTION_IS(CUSTOM_CABLE)
  212. #error "No custom SD drive cable defined for this board."
  213. #endif
  214. //
  215. // Ethernet pins
  216. //
  217. //#define ENET_MDIO P1_17 // Ethernet pin 5 (bottom, 3 from left)
  218. //#define ENET_RX_ER P1_14
  219. //#define ENET_RXD1 P1_10 // Ethernet pin 10 (top row, 5 from left)
  220. //#define ENET_MOC P1_16 // Ethernet pin 6 (top row, 3 from left)
  221. //#define REF_CLK P1_15
  222. //#define ENET_RXD0 P1_09 // Ethernet pin 9 (bottom, 5 from left)
  223. //#define ENET_CRS P1_08 // Ethernet pin 8 (top row, 4 from left) - INPUT ONLY
  224. //#define ENET_TX_EN P1_04 // Ethernet pin 11 (bottom, 6 from left)
  225. //#define ENET_TXD0 P1_00 // Ethernet pin 12 (top row, 6 from left)
  226. //#define ENET_TXD1 P1_01 // Ethernet pin 13 (bottom, 7 from left)
  227. /**
  228. * EXP1 pins
  229. * 1 - P1_31
  230. * 2 - P1_30
  231. * 3 - P0_18
  232. * 4 - P0_16
  233. * 5 - P0_15
  234. * 6 - N/C
  235. * 7 - N/C
  236. * 8 - P0_27 (also on EXP2-7)
  237. * 9 - GND
  238. * 10 - +5V
  239. *
  240. *
  241. * EXP2 pins
  242. * 1 - P0_08
  243. * 2 - P0_07
  244. * 3 - P3_26
  245. * 4 - P0_28
  246. * 5 - P3_25
  247. * 6 - P0_09
  248. * 7 - P0_27 (also on EXP1_8)
  249. * 8 - P2_11
  250. * 9 - GND
  251. * 10 - N/C
  252. */