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.h 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2016 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. * Include pins definitions
  24. *
  25. * Pins numbering schemes:
  26. *
  27. * - Digital I/O pin number if used by READ/WRITE macros. (e.g., X_STEP_DIR)
  28. * The FastIO headers map digital pins to their ports and functions.
  29. *
  30. * - Analog Input number if used by analogRead or DAC. (e.g., TEMP_n_PIN)
  31. * These numbers are the same in any pin mapping.
  32. */
  33. #ifndef __PINS_H__
  34. #define __PINS_H__
  35. #if MB(GEN7_CUSTOM)
  36. #include "pins_GEN7_CUSTOM.h"
  37. #elif MB(GEN7_12)
  38. #include "pins_GEN7_12.h"
  39. #elif MB(GEN7_13)
  40. #include "pins_GEN7_13.h"
  41. #elif MB(GEN7_14)
  42. #include "pins_GEN7_14.h"
  43. #elif MB(CNCONTROLS_11)
  44. #include "pins_CNCONTROLS_11.h"
  45. #elif MB(CNCONTROLS_12)
  46. #include "pins_CNCONTROLS_12.h"
  47. #elif MB(CHEAPTRONIC)
  48. #include "pins_CHEAPTRONIC.h"
  49. #elif MB(CHEAPTRONIC_V2)
  50. #include "pins_CHEAPTRONICv2.h"
  51. #elif MB(SETHI)
  52. #include "pins_SETHI.h"
  53. #elif MB(MIGHTYBOARD_REVE)
  54. #include "pins_MIGHTYBOARD_REVE.h"
  55. #elif MB(RAMPS_OLD)
  56. #include "pins_RAMPS_OLD.h"
  57. #elif MB(RAMPS_13_EFB)
  58. #define IS_RAMPS_EFB
  59. #include "pins_RAMPS_13.h"
  60. #elif MB(RAMPS_13_EEB)
  61. #define IS_RAMPS_EEB
  62. #include "pins_RAMPS_13.h"
  63. #elif MB(RAMPS_13_EFF)
  64. #define IS_RAMPS_EFF
  65. #include "pins_RAMPS_13.h"
  66. #elif MB(RAMPS_13_EEF)
  67. #define IS_RAMPS_EEF
  68. #include "pins_RAMPS_13.h"
  69. #elif MB(RAMPS_13_SF)
  70. #define IS_RAMPS_SF
  71. #include "pins_RAMPS_13.h"
  72. #elif MB(RAMPS_14_EFB)
  73. #define IS_RAMPS_EFB
  74. #include "pins_RAMPS.h"
  75. #elif MB(RAMPS_14_EEB)
  76. #define IS_RAMPS_EEB
  77. #include "pins_RAMPS.h"
  78. #elif MB(RAMPS_14_EFF)
  79. #define IS_RAMPS_EFF
  80. #include "pins_RAMPS.h"
  81. #elif MB(RAMPS_14_EEF)
  82. #define IS_RAMPS_EEF
  83. #include "pins_RAMPS.h"
  84. #elif MB(RAMPS_14_SF)
  85. #define IS_RAMPS_SF
  86. #include "pins_RAMPS.h"
  87. #elif MB(GEN6)
  88. #include "pins_GEN6.h"
  89. #elif MB(GEN6_DELUXE)
  90. #include "pins_GEN6_DELUXE.h"
  91. #elif MB(SANGUINOLOLU_11)
  92. #include "pins_SANGUINOLOLU_11.h"
  93. #elif MB(SANGUINOLOLU_12)
  94. #include "pins_SANGUINOLOLU_12.h"
  95. #elif MB(MELZI)
  96. #include "pins_MELZI.h"
  97. #elif MB(STB_11)
  98. #include "pins_STB_11.h"
  99. #elif MB(AZTEEG_X1)
  100. #include "pins_AZTEEG_X1.h"
  101. #elif MB(MELZI_MAKR3D)
  102. #include "pins_MELZI_MAKR3D.h"
  103. #elif MB(AZTEEG_X3)
  104. #include "pins_AZTEEG_X3.h"
  105. #elif MB(AZTEEG_X3_PRO)
  106. #include "pins_AZTEEG_X3_PRO.h"
  107. #elif MB(ANET_10)
  108. #include "pins_ANET_10.h"
  109. #elif MB(ULTIMAKER)
  110. #include "pins_ULTIMAKER.h"
  111. #elif MB(ULTIMAKER_OLD)
  112. #include "pins_ULTIMAKER_OLD.h"
  113. #elif MB(ULTIMAIN_2)
  114. #include "pins_ULTIMAIN_2.h"
  115. #elif MB(3DRAG)
  116. #include "pins_3DRAG.h"
  117. #elif MB(K8200)
  118. #include "pins_K8200.h"
  119. #elif MB(K8400)
  120. #include "pins_K8400.h"
  121. #elif MB(TEENSYLU)
  122. #include "pins_TEENSYLU.h"
  123. #elif MB(RUMBA)
  124. #include "pins_RUMBA.h"
  125. #elif MB(PRINTRBOARD)
  126. #include "pins_PRINTRBOARD.h"
  127. #elif MB(PRINTRBOARD_REVF)
  128. #include "pins_PRINTRBOARD_REVF.h"
  129. #elif MB(BRAINWAVE)
  130. #include "pins_BRAINWAVE.h"
  131. #elif MB(BRAINWAVE_PRO)
  132. #include "pins_BRAINWAVE_PRO.h"
  133. #elif MB(SAV_MKI)
  134. #include "pins_SAV_MKI.h"
  135. #elif MB(TEENSY2)
  136. #include "pins_TEENSY2.h"
  137. #elif MB(GEN3_PLUS)
  138. #include "pins_GEN3_PLUS.h"
  139. #elif MB(GEN3_MONOLITHIC)
  140. #include "pins_GEN3_MONOLITHIC.h"
  141. #elif MB(MEGATRONICS)
  142. #include "pins_MEGATRONICS.h"
  143. #elif MB(MINITRONICS)
  144. #include "pins_MINITRONICS.h"
  145. #elif MB(MEGATRONICS_2)
  146. #include "pins_MEGATRONICS_2.h"
  147. #elif MB(MEGATRONICS_3)
  148. #include "pins_MEGATRONICS_3.h"
  149. #elif MB(MEGATRONICS_31)
  150. #define MEGATRONICS_31
  151. #include "pins_MEGATRONICS_3.h"
  152. #elif MB(OMCA_A)
  153. #include "pins_OMCA_A.h"
  154. #elif MB(OMCA)
  155. #include "pins_OMCA.h"
  156. #elif MB(RAMBO)
  157. #include "pins_RAMBO.h"
  158. #elif MB(MINIRAMBO)
  159. #include "pins_MINIRAMBO.h"
  160. #elif MB(ELEFU_3)
  161. #include "pins_ELEFU_3.h"
  162. #elif MB(5DPRINT)
  163. #include "pins_5DPRINT.h"
  164. #elif MB(LEAPFROG)
  165. #include "pins_LEAPFROG.h"
  166. #elif MB(BAM_DICE)
  167. #include "pins_RAMPS.h"
  168. #elif MB(BAM_DICE_DUE)
  169. #include "pins_BAM_DICE_DUE.h"
  170. #elif MB(FELIX2)
  171. #include "pins_FELIX2.h"
  172. #elif MB(MKS_BASE)
  173. #include "pins_MKS_BASE.h"
  174. #elif MB(RIGIDBOARD)
  175. #include "pins_RIGIDBOARD.h"
  176. #elif MB(RIGIDBOARD_V2)
  177. #include "pins_RIGIDBOARD_V2.h"
  178. #elif MB(MEGACONTROLLER)
  179. #include "pins_MEGACONTROLLER.h"
  180. #elif MB(BQ_ZUM_MEGA_3D)
  181. #include "pins_BQ_ZUM_MEGA_3D.h"
  182. #elif MB(SCOOVO_X9H)
  183. #include "pins_SCOOVO_X9H.h"
  184. #elif MB(MKS_13)
  185. #include "pins_MKS_13.h"
  186. #elif MB(SAINSMART_2IN1)
  187. #include "pins_SAINSMART_2IN1.h"
  188. #elif MB(ZRIB_V20)
  189. #include "pins_ZRIB_V20.h"
  190. #else
  191. #error "Unknown MOTHERBOARD value set in Configuration.h"
  192. #endif
  193. // Define certain undefined pins
  194. #ifndef X_MS1_PIN
  195. #define X_MS1_PIN -1
  196. #endif
  197. #ifndef X_MS2_PIN
  198. #define X_MS2_PIN -1
  199. #endif
  200. #ifndef Y_MS1_PIN
  201. #define Y_MS1_PIN -1
  202. #endif
  203. #ifndef Y_MS2_PIN
  204. #define Y_MS2_PIN -1
  205. #endif
  206. #ifndef Z_MS1_PIN
  207. #define Z_MS1_PIN -1
  208. #endif
  209. #ifndef Z_MS2_PIN
  210. #define Z_MS2_PIN -1
  211. #endif
  212. #ifndef E0_MS1_PIN
  213. #define E0_MS1_PIN -1
  214. #endif
  215. #ifndef E0_MS2_PIN
  216. #define E0_MS2_PIN -1
  217. #endif
  218. #ifndef E1_MS1_PIN
  219. #define E1_MS1_PIN -1
  220. #endif
  221. #ifndef E1_MS2_PIN
  222. #define E1_MS2_PIN -1
  223. #endif
  224. #ifndef FAN_PIN
  225. #define FAN_PIN -1
  226. #endif
  227. #ifndef FAN1_PIN
  228. #define FAN1_PIN -1
  229. #endif
  230. #ifndef FAN2_PIN
  231. #define FAN2_PIN -1
  232. #endif
  233. #ifndef CONTROLLER_FAN_PIN
  234. #define CONTROLLER_FAN_PIN -1
  235. #endif
  236. #ifndef HEATER_0_PIN
  237. #define HEATER_0_PIN -1
  238. #endif
  239. #ifndef HEATER_1_PIN
  240. #define HEATER_1_PIN -1
  241. #endif
  242. #ifndef HEATER_2_PIN
  243. #define HEATER_2_PIN -1
  244. #endif
  245. #ifndef HEATER_3_PIN
  246. #define HEATER_3_PIN -1
  247. #endif
  248. #ifndef HEATER_4_PIN
  249. #define HEATER_4_PIN -1
  250. #endif
  251. #ifndef HEATER_BED_PIN
  252. #define HEATER_BED_PIN -1
  253. #endif
  254. #ifndef TEMP_0_PIN
  255. #define TEMP_0_PIN -1
  256. #endif
  257. #ifndef TEMP_1_PIN
  258. #define TEMP_1_PIN -1
  259. #endif
  260. #ifndef TEMP_2_PIN
  261. #define TEMP_2_PIN -1
  262. #endif
  263. #ifndef TEMP_3_PIN
  264. #define TEMP_3_PIN -1
  265. #endif
  266. #ifndef TEMP_4_PIN
  267. #define TEMP_4_PIN -1
  268. #endif
  269. #ifndef TEMP_BED_PIN
  270. #define TEMP_BED_PIN -1
  271. #endif
  272. #ifndef SD_DETECT_PIN
  273. #define SD_DETECT_PIN -1
  274. #endif
  275. #ifndef SDPOWER
  276. #define SDPOWER -1
  277. #endif
  278. #ifndef SDSS
  279. #define SDSS -1
  280. #endif
  281. #ifndef LED_PIN
  282. #define LED_PIN -1
  283. #endif
  284. #ifndef PS_ON_PIN
  285. #define PS_ON_PIN -1
  286. #endif
  287. #ifndef KILL_PIN
  288. #define KILL_PIN -1
  289. #endif
  290. #ifndef SUICIDE_PIN
  291. #define SUICIDE_PIN -1
  292. #endif
  293. #ifndef MAX_EXTRUDERS
  294. #define MAX_EXTRUDERS 5
  295. #endif
  296. // Marlin needs to account for pins that equal -1
  297. #define marlinAnalogInputToDigitalPin(p) ((p) == -1 ? -1 : analogInputToDigitalPin(p))
  298. //
  299. // Assign auto fan pins if needed
  300. //
  301. #if !defined(E0_AUTO_FAN_PIN) && defined(ORIG_E0_AUTO_FAN_PIN)
  302. #define E0_AUTO_FAN_PIN ORIG_E0_AUTO_FAN_PIN
  303. #endif
  304. #if !defined(E1_AUTO_FAN_PIN) && defined(ORIG_E1_AUTO_FAN_PIN)
  305. #define E1_AUTO_FAN_PIN ORIG_E1_AUTO_FAN_PIN
  306. #endif
  307. #if !defined(E2_AUTO_FAN_PIN) && defined(ORIG_E2_AUTO_FAN_PIN)
  308. #define E2_AUTO_FAN_PIN ORIG_E2_AUTO_FAN_PIN
  309. #endif
  310. #if !defined(E3_AUTO_FAN_PIN) && defined(ORIG_E3_AUTO_FAN_PIN)
  311. #define E3_AUTO_FAN_PIN ORIG_E3_AUTO_FAN_PIN
  312. #endif
  313. #if !defined(E4_AUTO_FAN_PIN) && defined(ORIG_E4_AUTO_FAN_PIN)
  314. #define E4_AUTO_FAN_PIN ORIG_E4_AUTO_FAN_PIN
  315. #endif
  316. // List of pins which to ignore when asked to change by gcode, 0 and 1 are RX and TX, do not mess with those!
  317. #define _E0_PINS E0_STEP_PIN, E0_DIR_PIN, E0_ENABLE_PIN, E0_MS1_PIN, E0_MS2_PIN,
  318. #define _E1_PINS
  319. #define _E2_PINS
  320. #define _E3_PINS
  321. #define _E4_PINS
  322. #if ENABLED(SWITCHING_EXTRUDER)
  323. // Tools 0 and 1 use E0
  324. #if EXTRUDERS > 2 // Tools 2 and 3 use E1
  325. #undef _E1_PINS
  326. #define _E1_PINS E1_STEP_PIN, E1_DIR_PIN, E1_ENABLE_PIN, E1_MS1_PIN, E1_MS2_PIN,
  327. #if EXTRUDERS > 4 // Tools 4 and 5 use E2
  328. #undef _E2_PINS
  329. #define _E2_PINS E2_STEP_PIN, E2_DIR_PIN, E2_ENABLE_PIN,
  330. #endif
  331. #endif
  332. #elif EXTRUDERS > 1
  333. #undef _E1_PINS
  334. #define _E1_PINS E1_STEP_PIN, E1_DIR_PIN, E1_ENABLE_PIN, E1_MS1_PIN, E1_MS2_PIN,
  335. #if EXTRUDERS > 2
  336. #undef _E2_PINS
  337. #define _E2_PINS E2_STEP_PIN, E2_DIR_PIN, E2_ENABLE_PIN,
  338. #if EXTRUDERS > 3
  339. #undef _E3_PINS
  340. #define _E3_PINS E3_STEP_PIN, E3_DIR_PIN, E3_ENABLE_PIN,
  341. #if EXTRUDERS > 4
  342. #undef _E4_PINS
  343. #define _E4_PINS E4_STEP_PIN, E4_DIR_PIN, E4_ENABLE_PIN,
  344. #endif // EXTRUDERS > 4
  345. #endif // EXTRUDERS > 3
  346. #endif // EXTRUDERS > 2
  347. #endif // EXTRUDERS > 1
  348. #define _H0_PINS HEATER_0_PIN, E0_AUTO_FAN_PIN, marlinAnalogInputToDigitalPin(TEMP_0_PIN),
  349. #define _H1_PINS
  350. #define _H2_PINS
  351. #define _H3_PINS
  352. #define _H4_PINS
  353. #if HOTENDS > 1
  354. #undef _H1_PINS
  355. #define _H1_PINS HEATER_1_PIN, E1_AUTO_FAN_PIN, marlinAnalogInputToDigitalPin(TEMP_1_PIN),
  356. #if HOTENDS > 2
  357. #undef _H2_PINS
  358. #define _H2_PINS HEATER_2_PIN, E2_AUTO_FAN_PIN, marlinAnalogInputToDigitalPin(TEMP_2_PIN),
  359. #if HOTENDS > 3
  360. #undef _H3_PINS
  361. #define _H3_PINS HEATER_3_PIN, E3_AUTO_FAN_PIN, marlinAnalogInputToDigitalPin(TEMP_3_PIN),
  362. #if HOTENDS > 4
  363. #undef _H4_PINS
  364. #define _H4_PINS HEATER_4_PIN, marlinAnalogInputToDigitalPin(TEMP_4_PIN),
  365. #endif // HOTENDS > 4
  366. #endif // HOTENDS > 3
  367. #endif // HOTENDS > 2
  368. #elif ENABLED(MIXING_EXTRUDER)
  369. #undef _E1_PINS
  370. #define _E1_PINS E1_STEP_PIN, E1_DIR_PIN, E1_ENABLE_PIN,
  371. #if MIXING_STEPPERS > 2
  372. #undef _E2_PINS
  373. #define _E2_PINS E2_STEP_PIN, E2_DIR_PIN, E2_ENABLE_PIN,
  374. #if MIXING_STEPPERS > 3
  375. #undef _E3_PINS
  376. #define _E3_PINS E3_STEP_PIN, E3_DIR_PIN, E3_ENABLE_PIN,
  377. #if MIXING_STEPPERS > 4
  378. #undef _E4_PINS
  379. #define _E4_PINS E4_STEP_PIN, E4_DIR_PIN, E4_ENABLE_PIN,
  380. #endif // MIXING_STEPPERS > 4
  381. #endif // MIXING_STEPPERS > 3
  382. #endif // MIXING_STEPPERS > 2
  383. #endif // MIXING_STEPPERS > 1
  384. #define BED_PINS HEATER_BED_PIN, marlinAnalogInputToDigitalPin(TEMP_BED_PIN),
  385. //
  386. // Assign endstop pins for boards with only 3 connectors
  387. //
  388. #ifdef X_STOP_PIN
  389. #if X_HOME_DIR < 0
  390. #define X_MIN_PIN X_STOP_PIN
  391. #define X_MAX_PIN -1
  392. #else
  393. #define X_MIN_PIN -1
  394. #define X_MAX_PIN X_STOP_PIN
  395. #endif
  396. #endif
  397. #ifdef Y_STOP_PIN
  398. #if Y_HOME_DIR < 0
  399. #define Y_MIN_PIN Y_STOP_PIN
  400. #define Y_MAX_PIN -1
  401. #else
  402. #define Y_MIN_PIN -1
  403. #define Y_MAX_PIN Y_STOP_PIN
  404. #endif
  405. #endif
  406. #ifdef Z_STOP_PIN
  407. #if Z_HOME_DIR < 0
  408. #define Z_MIN_PIN Z_STOP_PIN
  409. #define Z_MAX_PIN -1
  410. #else
  411. #define Z_MIN_PIN -1
  412. #define Z_MAX_PIN Z_STOP_PIN
  413. #endif
  414. #endif
  415. //
  416. // Disable unused endstop / probe pins
  417. //
  418. #if DISABLED(Z_MIN_PROBE_ENDSTOP)
  419. #undef Z_MIN_PROBE_PIN
  420. #define Z_MIN_PROBE_PIN -1
  421. #endif
  422. #if DISABLED(USE_XMAX_PLUG)
  423. #undef X_MAX_PIN
  424. #define X_MAX_PIN -1
  425. #endif
  426. #if DISABLED(USE_YMAX_PLUG)
  427. #undef Y_MAX_PIN
  428. #define Y_MAX_PIN -1
  429. #endif
  430. #if DISABLED(USE_ZMAX_PLUG)
  431. #undef Z_MAX_PIN
  432. #define Z_MAX_PIN -1
  433. #endif
  434. #if DISABLED(USE_XMIN_PLUG)
  435. #undef X_MIN_PIN
  436. #define X_MIN_PIN -1
  437. #endif
  438. #if DISABLED(USE_YMIN_PLUG)
  439. #undef Y_MIN_PIN
  440. #define Y_MIN_PIN -1
  441. #endif
  442. #if DISABLED(USE_ZMIN_PLUG)
  443. #undef Z_MIN_PIN
  444. #define Z_MIN_PIN -1
  445. #endif
  446. //
  447. // Dual X-carriage, Dual Y, Dual Z support
  448. //
  449. #define _X2_PINS
  450. #define _Y2_PINS
  451. #define _Z2_PINS
  452. #define __EPIN(p,q) E##p##_##q##_PIN
  453. #define _EPIN(p,q) __EPIN(p,q)
  454. // The X2 axis, if any, should be the next open extruder port
  455. #if ENABLED(DUAL_X_CARRIAGE) || ENABLED(X_DUAL_STEPPER_DRIVERS)
  456. #ifndef X2_STEP_PIN
  457. #define X2_STEP_PIN _EPIN(E_STEPPERS, STEP)
  458. #define X2_DIR_PIN _EPIN(E_STEPPERS, DIR)
  459. #define X2_ENABLE_PIN _EPIN(E_STEPPERS, ENABLE)
  460. #if X2_ENABLE_PIN == 0
  461. #error "No E stepper plug left for X2!"
  462. #endif
  463. #endif
  464. #undef _X2_PINS
  465. #define _X2_PINS X2_STEP_PIN, X2_DIR_PIN, X2_ENABLE_PIN,
  466. #define Y2_E_INDEX INCREMENT(E_STEPPERS)
  467. #else
  468. #define Y2_E_INDEX E_STEPPERS
  469. #endif
  470. // The Y2 axis, if any, should be the next open extruder port
  471. #if ENABLED(Y_DUAL_STEPPER_DRIVERS)
  472. #ifndef Y2_STEP_PIN
  473. #define Y2_STEP_PIN _EPIN(Y2_E_INDEX, STEP)
  474. #define Y2_DIR_PIN _EPIN(Y2_E_INDEX, DIR)
  475. #define Y2_ENABLE_PIN _EPIN(Y2_E_INDEX, ENABLE)
  476. #if Y2_ENABLE_PIN == 0
  477. #error "No E stepper plug left for Y2!"
  478. #endif
  479. #endif
  480. #undef _Y2_PINS
  481. #define _Y2_PINS Y2_STEP_PIN, Y2_DIR_PIN, Y2_ENABLE_PIN,
  482. #define Z2_E_INDEX INCREMENT(Y2_E_INDEX)
  483. #else
  484. #define Z2_E_INDEX Y2_E_INDEX
  485. #endif
  486. // The Z2 axis, if any, should be the next open extruder port
  487. #if ENABLED(Z_DUAL_STEPPER_DRIVERS)
  488. #ifndef Z2_STEP_PIN
  489. #define Z2_STEP_PIN _EPIN(Z2_E_INDEX, STEP)
  490. #define Z2_DIR_PIN _EPIN(Z2_E_INDEX, DIR)
  491. #define Z2_ENABLE_PIN _EPIN(Z2_E_INDEX, ENABLE)
  492. #if Z2_ENABLE_PIN == 0
  493. #error "No E stepper plug left for Z2!"
  494. #endif
  495. #endif
  496. #undef _Z2_PINS
  497. #define _Z2_PINS Z2_STEP_PIN, Z2_DIR_PIN, Z2_ENABLE_PIN,
  498. #endif
  499. #define SENSITIVE_PINS { 0, 1, \
  500. X_STEP_PIN, X_DIR_PIN, X_ENABLE_PIN, X_MIN_PIN, X_MAX_PIN, \
  501. Y_STEP_PIN, Y_DIR_PIN, Y_ENABLE_PIN, Y_MIN_PIN, Y_MAX_PIN, \
  502. Z_STEP_PIN, Z_DIR_PIN, Z_ENABLE_PIN, Z_MIN_PIN, Z_MAX_PIN, Z_MIN_PROBE_PIN, \
  503. PS_ON_PIN, HEATER_BED_PIN, FAN_PIN, FAN1_PIN, FAN2_PIN, CONTROLLER_FAN_PIN, \
  504. _E0_PINS _E1_PINS _E2_PINS _E3_PINS _E4_PINS BED_PINS \
  505. _H0_PINS _H1_PINS _H2_PINS _H3_PINS _H4_PINS \
  506. _X2_PINS _Y2_PINS _Z2_PINS \
  507. X_MS1_PIN, X_MS2_PIN, Y_MS1_PIN, Y_MS2_PIN, Z_MS1_PIN, Z_MS2_PIN \
  508. }
  509. #define HAS_DIGIPOTSS (PIN_EXISTS(DIGIPOTSS))
  510. /**
  511. * Define SPI Pins: SCK, MISO, MOSI, SS
  512. */
  513. #if defined(__AVR_ATmega168__) || defined(__AVR_ATmega328__) || defined(__AVR_ATmega328P__)
  514. #define AVR_SCK_PIN 13
  515. #define AVR_MISO_PIN 12
  516. #define AVR_MOSI_PIN 11
  517. #define AVR_SS_PIN 10
  518. #elif defined(__AVR_ATmega644__) || defined(__AVR_ATmega644P__) || defined(__AVR_ATmega644PA__) || defined(__AVR_ATmega1284P__)
  519. #define AVR_SCK_PIN 7
  520. #define AVR_MISO_PIN 6
  521. #define AVR_MOSI_PIN 5
  522. #define AVR_SS_PIN 4
  523. #elif defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__)
  524. #define AVR_SCK_PIN 52
  525. #define AVR_MISO_PIN 50
  526. #define AVR_MOSI_PIN 51
  527. #define AVR_SS_PIN 53
  528. #elif defined(__AVR_AT90USB1287__) || defined(__AVR_AT90USB1286__) || defined(__AVR_AT90USB646__) || defined(__AVR_AT90USB647__)
  529. #define AVR_SCK_PIN 21
  530. #define AVR_MISO_PIN 23
  531. #define AVR_MOSI_PIN 22
  532. #define AVR_SS_PIN 20
  533. #elif defined(__AVR_ATmega1281__) || defined(__AVR_ATmega2561__)
  534. #define AVR_SCK_PIN 10
  535. #define AVR_MISO_PIN 12
  536. #define AVR_MOSI_PIN 11
  537. #define AVR_SS_PIN 16
  538. #endif
  539. #ifndef SCK_PIN
  540. #define SCK_PIN AVR_SCK_PIN
  541. #endif
  542. #ifndef MISO_PIN
  543. #define MISO_PIN AVR_MISO_PIN
  544. #endif
  545. #ifndef MOSI_PIN
  546. #define MOSI_PIN AVR_MOSI_PIN
  547. #endif
  548. #ifndef SS_PIN
  549. #define SS_PIN AVR_SS_PIN
  550. #endif
  551. #endif // __PINS_H__