My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

pins_COHESION3D_REMIX.h 8.4KB

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