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

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