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 8.4KB

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