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.

SanityCheck.h 22KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615
  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. * SanityCheck.h
  24. *
  25. * Test configuration values for errors at compile-time.
  26. */
  27. #ifndef SANITYCHECK_H
  28. #define SANITYCHECK_H
  29. /**
  30. * Due to the high number of issues related with old versions of Arduino IDE
  31. * we are now warning our users to update their toolkits. In a future Marlin
  32. * release we will stop supporting old IDE versions and will require user
  33. * action to proceed with compilation in such environments.
  34. */
  35. #if !defined(ARDUINO) || ARDUINO < 10600
  36. #error "Versions of Arduino IDE prior to 1.6.0 are no longer supported, please update your toolkit."
  37. #endif
  38. /**
  39. * We try our best to include sanity checks for all the changes configuration
  40. * directives because people have a tendency to use outdated config files with
  41. * the bleding edge source code, but sometimes this is not enough. This check
  42. * will force a minimum config file revision, otherwise Marlin will not build.
  43. */
  44. #if ! defined(CONFIGURATION_H_VERSION) || CONFIGURATION_H_VERSION < REQUIRED_CONFIGURATION_H_VERSION
  45. #error You are using an old Configuration.h file, update it before building Marlin.
  46. #endif
  47. #if ! defined(CONFIGURATION_ADV_H_VERSION) || CONFIGURATION_ADV_H_VERSION < REQUIRED_CONFIGURATION_ADV_H_VERSION
  48. #error You are using an old Configuration_adv.h file, update it before building Marlin.
  49. #endif
  50. /**
  51. * Marlin release, version and default string
  52. */
  53. #ifndef SHORT_BUILD_VERSION
  54. #error "SHORT_BUILD_VERSION Information must be specified"
  55. #endif
  56. #ifndef DETAILED_BUILD_VERSION
  57. #error "BUILD_VERSION Information must be specified"
  58. #endif
  59. #ifndef STRING_DISTRIBUTION_DATE
  60. #error "STRING_DISTRIBUTION_DATE Information must be specified"
  61. #endif
  62. #ifndef PROTOCOL_VERSION
  63. #error "PROTOCOL_VERSION Information must be specified"
  64. #endif
  65. #ifndef MACHINE_NAME
  66. #error "MACHINE_NAME Information must be specified"
  67. #endif
  68. #ifndef SOURCE_CODE_URL
  69. #error "SOURCE_CODE_URL Information must be specified"
  70. #endif
  71. #ifndef DEFAULT_MACHINE_UUID
  72. #error "DEFAULT_MACHINE_UUID Information must be specified"
  73. #endif
  74. #ifndef WEBSITE_URL
  75. #error "WEBSITE_URL Information must be specified"
  76. #endif
  77. /**
  78. * Dual Stepper Drivers
  79. */
  80. #if ENABLED(Z_DUAL_STEPPER_DRIVERS) && ENABLED(Y_DUAL_STEPPER_DRIVERS)
  81. #error "You cannot have dual stepper drivers for both Y and Z."
  82. #endif
  83. /**
  84. * Progress Bar
  85. */
  86. #if ENABLED(LCD_PROGRESS_BAR)
  87. #if DISABLED(SDSUPPORT)
  88. #error "LCD_PROGRESS_BAR requires SDSUPPORT."
  89. #endif
  90. #if ENABLED(DOGLCD)
  91. #error "LCD_PROGRESS_BAR does not apply to graphical displays."
  92. #endif
  93. #if ENABLED(FILAMENT_LCD_DISPLAY)
  94. #error "LCD_PROGRESS_BAR and FILAMENT_LCD_DISPLAY are not fully compatible. Comment out this line to use both."
  95. #endif
  96. #endif
  97. /**
  98. * Babystepping
  99. */
  100. #if ENABLED(BABYSTEPPING)
  101. #if DISABLED(ULTRA_LCD)
  102. #error "BABYSTEPPING requires an LCD controller."
  103. #endif
  104. #if ENABLED(SCARA)
  105. #error "BABYSTEPPING is not implemented for SCARA yet."
  106. #endif
  107. #if ENABLED(DELTA) && ENABLED(BABYSTEP_XY)
  108. #error "BABYSTEPPING only implemented for Z axis on deltabots."
  109. #endif
  110. #endif
  111. /**
  112. * Filament Change with Extruder Runout Prevention
  113. */
  114. #if ENABLED(FILAMENTCHANGEENABLE) && ENABLED(EXTRUDER_RUNOUT_PREVENT)
  115. #error "EXTRUDER_RUNOUT_PREVENT currently incompatible with FILAMENTCHANGE."
  116. #endif
  117. /**
  118. * Individual axis homing is useless for DELTAS
  119. */
  120. #if ENABLED(INDIVIDUAL_AXIS_HOMING_MENU) && ENABLED(DELTA)
  121. #error INDIVIDUAL_AXIS_HOMING_MENU is incompatible with DELTA kinematics.
  122. #endif
  123. /**
  124. * Options only for EXTRUDERS > 1
  125. */
  126. #if EXTRUDERS > 1
  127. #if EXTRUDERS > 4
  128. #error "The maximum number of EXTRUDERS in Marlin is 4."
  129. #endif
  130. #if ENABLED(TEMP_SENSOR_1_AS_REDUNDANT)
  131. #error "EXTRUDERS must be 1 with TEMP_SENSOR_1_AS_REDUNDANT."
  132. #endif
  133. #if ENABLED(HEATERS_PARALLEL)
  134. #error "EXTRUDERS must be 1 with HEATERS_PARALLEL."
  135. #endif
  136. #if ENABLED(Y_DUAL_STEPPER_DRIVERS)
  137. #error "EXTRUDERS must be 1 with Y_DUAL_STEPPER_DRIVERS."
  138. #endif
  139. #if ENABLED(Z_DUAL_STEPPER_DRIVERS)
  140. #error "EXTRUDERS must be 1 with Z_DUAL_STEPPER_DRIVERS."
  141. #endif
  142. #elif ENABLED(SINGLENOZZLE)
  143. #error "SINGLENOZZLE requires 2 or more EXTRUDERS."
  144. #endif
  145. /**
  146. * Limited number of servos
  147. */
  148. #if defined(NUM_SERVOS) && NUM_SERVOS > 0
  149. #if NUM_SERVOS > 4
  150. #error "The maximum number of SERVOS in Marlin is 4."
  151. #elif HAS_Z_SERVO_ENDSTOP && Z_ENDSTOP_SERVO_NR >= NUM_SERVOS
  152. #error "Z_ENDSTOP_SERVO_NR must be smaller than NUM_SERVOS."
  153. #endif
  154. #endif
  155. /**
  156. * Servo deactivation depends on servo endstops
  157. */
  158. #if ENABLED(DEACTIVATE_SERVOS_AFTER_MOVE) && !HAS_Z_SERVO_ENDSTOP
  159. #error "Z_ENDSTOP_SERVO_NR is required for DEACTIVATE_SERVOS_AFTER_MOVE."
  160. #endif
  161. /**
  162. * Required LCD language
  163. */
  164. #if DISABLED(DOGLCD) && ENABLED(ULTRA_LCD) && !defined(DISPLAY_CHARSET_HD44780)
  165. #error "You must set DISPLAY_CHARSET_HD44780 to JAPANESE, WESTERN or CYRILLIC for your LCD controller."
  166. #endif
  167. /**
  168. * Bed Heating Options - PID vs Limit Switching
  169. */
  170. #if ENABLED(PIDTEMPBED) && ENABLED(BED_LIMIT_SWITCHING)
  171. #error "To use BED_LIMIT_SWITCHING you must disable PIDTEMPBED."
  172. #endif
  173. /**
  174. * Mesh Bed Leveling
  175. */
  176. #if ENABLED(MESH_BED_LEVELING)
  177. #if ENABLED(DELTA)
  178. #error "MESH_BED_LEVELING does not yet support DELTA printers."
  179. #endif
  180. #if ENABLED(AUTO_BED_LEVELING_FEATURE)
  181. #error "Select AUTO_BED_LEVELING_FEATURE or MESH_BED_LEVELING, not both."
  182. #endif
  183. #if MESH_NUM_X_POINTS > 7 || MESH_NUM_Y_POINTS > 7
  184. #error "MESH_NUM_X_POINTS and MESH_NUM_Y_POINTS need to be less than 8."
  185. #endif
  186. #elif ENABLED(MANUAL_BED_LEVELING)
  187. #error "MESH_BED_LEVELING is required for MANUAL_BED_LEVELING."
  188. #endif
  189. /**
  190. * Probes
  191. */
  192. #if PROBE_SELECTED
  193. /**
  194. * A probe needs a pin
  195. */
  196. #if !PROBE_PIN_CONFIGURED
  197. #error "A probe needs a pin! Use Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN or Z_MIN_PROBE_PIN."
  198. #endif
  199. /**
  200. * Z_MIN_PIN and Z_MIN_PROBE_PIN can't co-exist when Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN
  201. */
  202. #if HAS_Z_MIN && HAS_Z_MIN_PROBE_PIN && ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN)
  203. #error "A probe cannot have more than one pin! Use Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN or Z_MIN_PROBE_PIN."
  204. #endif
  205. /**
  206. * Make sure the plug is enabled if it's used
  207. */
  208. #if ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN) && DISABLED(USE_ZMIN_PLUG)
  209. #error "You must enable USE_ZMIN_PLUG if any probe or endstop is connected to the ZMIN plug."
  210. #endif
  211. /**
  212. * Only allow one probe option to be defined
  213. */
  214. #if (ENABLED(FIX_MOUNTED_PROBE) && (ENABLED(MECHANICAL_PROBE) || ENABLED(Z_PROBE_ALLEN_KEY) || HAS_Z_SERVO_ENDSTOP || ENABLED(Z_PROBE_SLED))) \
  215. || (ENABLED(MECHANICAL_PROBE) && (ENABLED(Z_PROBE_ALLEN_KEY) || HAS_Z_SERVO_ENDSTOP || ENABLED(Z_PROBE_SLED))) \
  216. || (ENABLED(Z_PROBE_ALLEN_KEY) && (HAS_Z_SERVO_ENDSTOP || ENABLED(Z_PROBE_SLED))) \
  217. || (HAS_Z_SERVO_ENDSTOP && ENABLED(Z_PROBE_SLED))
  218. #error "Please define only one type of probe: Z Servo, MECHANICAL_PROBE, Z_PROBE_ALLEN_KEY, Z_PROBE_SLED, or FIX_MOUNTED_PROBE."
  219. #endif
  220. /**
  221. * Don't allow nonsense probe-pin settings
  222. */
  223. #if ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN) && ENABLED(Z_MIN_PROBE_ENDSTOP)
  224. #error "You can't enable both Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN and Z_MIN_PROBE_ENDSTOP."
  225. #elif ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN) && ENABLED(DISABLE_Z_MIN_PROBE_ENDSTOP)
  226. #error "Don't enable DISABLE_Z_MIN_PROBE_ENDSTOP with Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN."
  227. #elif ENABLED(DISABLE_Z_MIN_PROBE_ENDSTOP) && DISABLED(Z_MIN_PROBE_ENDSTOP)
  228. #error "DISABLE_Z_MIN_PROBE_ENDSTOP requires Z_MIN_PROBE_ENDSTOP to be set."
  229. #endif
  230. /**
  231. * Require a Z probe pin if Z_MIN_PROBE_ENDSTOP is enabled.
  232. */
  233. #if ENABLED(Z_MIN_PROBE_ENDSTOP)
  234. #if !HAS_Z_MIN_PROBE_PIN
  235. #error "Z_MIN_PROBE_ENDSTOP requires a Z_MIN_PROBE_PIN in your board's pins_XXXX.h file."
  236. #endif
  237. // Forcing Servo definitions can break some hall effect sensor setups. Leaving these here for further comment.
  238. //#ifndef NUM_SERVOS
  239. // #error "You must have NUM_SERVOS defined and there must be at least 1 configured to use Z_MIN_PROBE_ENDSTOP."
  240. //#endif
  241. //#if defined(NUM_SERVOS) && NUM_SERVOS < 1
  242. // #error "You must have at least 1 servo defined for NUM_SERVOS to use Z_MIN_PROBE_ENDSTOP."
  243. //#endif
  244. //#if Z_ENDSTOP_SERVO_NR < 0
  245. // #error "You must have Z_ENDSTOP_SERVO_NR set to at least 0 or above to use Z_MIN_PROBE_ENDSTOP."
  246. //#endif
  247. //#ifndef Z_SERVO_ANGLES
  248. // #error "You must have Z_SERVO_ANGLES defined for Z Extend and Retract to use Z_MIN_PROBE_ENDSTOP."
  249. //#endif
  250. #endif
  251. #else
  252. /**
  253. * Require some kind of probe for bed leveling
  254. */
  255. #if ENABLED(AUTO_BED_LEVELING_FEATURE)
  256. #error "AUTO_BED_LEVELING_FEATURE requires a probe! Define a Z Servo, MECHANICAL_PROBE, Z_PROBE_ALLEN_KEY, Z_PROBE_SLED, or FIX_MOUNTED_PROBE."
  257. #endif
  258. #endif
  259. /**
  260. * Auto Bed Leveling
  261. */
  262. #if ENABLED(AUTO_BED_LEVELING_FEATURE)
  263. /**
  264. * Require a Z min pin
  265. */
  266. #if !PIN_EXISTS(Z_MIN)
  267. #if !PIN_EXISTS(Z_MIN_PROBE) || (DISABLED(Z_MIN_PROBE_ENDSTOP) || ENABLED(DISABLE_Z_MIN_PROBE_ENDSTOP)) // It's possible for someone to set a pin for the Z probe, but not enable it.
  268. #if ENABLED(Z_MIN_PROBE_REPEATABILITY_TEST)
  269. #error "You must have a Z_MIN or Z_PROBE endstop to enable Z_MIN_PROBE_REPEATABILITY_TEST."
  270. #else
  271. #error "AUTO_BED_LEVELING_FEATURE requires a Z_MIN or Z_PROBE endstop. Z_MIN_PIN or Z_MIN_PROBE_PIN must point to a valid hardware pin."
  272. #endif
  273. #endif
  274. #endif
  275. /**
  276. * Check if Probe_Offset * Grid Points is greater than Probing Range
  277. */
  278. #if ENABLED(AUTO_BED_LEVELING_GRID)
  279. #ifndef DELTA_PROBEABLE_RADIUS
  280. // Be sure points are in the right order
  281. #if LEFT_PROBE_BED_POSITION > RIGHT_PROBE_BED_POSITION
  282. #error "LEFT_PROBE_BED_POSITION must be less than RIGHT_PROBE_BED_POSITION."
  283. #elif FRONT_PROBE_BED_POSITION > BACK_PROBE_BED_POSITION
  284. #error "FRONT_PROBE_BED_POSITION must be less than BACK_PROBE_BED_POSITION."
  285. #endif
  286. // Make sure probing points are reachable
  287. #if LEFT_PROBE_BED_POSITION < MIN_PROBE_X
  288. #error "The given LEFT_PROBE_BED_POSITION can't be reached by the Z probe."
  289. #elif RIGHT_PROBE_BED_POSITION > MAX_PROBE_X
  290. #error "The given RIGHT_PROBE_BED_POSITION can't be reached by the Z probe."
  291. #elif FRONT_PROBE_BED_POSITION < MIN_PROBE_Y
  292. #error "The given FRONT_PROBE_BED_POSITION can't be reached by the Z probe."
  293. #elif BACK_PROBE_BED_POSITION > MAX_PROBE_Y
  294. #error "The given BACK_PROBE_BED_POSITION can't be reached by the Z probe."
  295. #endif
  296. #endif
  297. #else // !AUTO_BED_LEVELING_GRID
  298. // Check the triangulation points
  299. #if ABL_PROBE_PT_1_X < MIN_PROBE_X || ABL_PROBE_PT_1_X > MAX_PROBE_X
  300. #error "The given ABL_PROBE_PT_1_X can't be reached by the Z probe."
  301. #elif ABL_PROBE_PT_2_X < MIN_PROBE_X || ABL_PROBE_PT_2_X > MAX_PROBE_X
  302. #error "The given ABL_PROBE_PT_2_X can't be reached by the Z probe."
  303. #elif ABL_PROBE_PT_3_X < MIN_PROBE_X || ABL_PROBE_PT_3_X > MAX_PROBE_X
  304. #error "The given ABL_PROBE_PT_3_X can't be reached by the Z probe."
  305. #elif ABL_PROBE_PT_1_Y < MIN_PROBE_Y || ABL_PROBE_PT_1_Y > MAX_PROBE_Y
  306. #error "The given ABL_PROBE_PT_1_Y can't be reached by the Z probe."
  307. #elif ABL_PROBE_PT_2_Y < MIN_PROBE_Y || ABL_PROBE_PT_2_Y > MAX_PROBE_Y
  308. #error "The given ABL_PROBE_PT_2_Y can't be reached by the Z probe."
  309. #elif ABL_PROBE_PT_3_Y < MIN_PROBE_Y || ABL_PROBE_PT_3_Y > MAX_PROBE_Y
  310. #error "The given ABL_PROBE_PT_3_Y can't be reached by the Z probe."
  311. #endif
  312. #endif // !AUTO_BED_LEVELING_GRID
  313. #endif // AUTO_BED_LEVELING_FEATURE
  314. /**
  315. * Advance Extrusion
  316. */
  317. #if ENABLED(ADVANCE) && ENABLED(LIN_ADVANCE)
  318. #error You can enable ADVANCE or LIN_ADVANCE, but not both.
  319. #endif
  320. /**
  321. * Filament Width Sensor
  322. */
  323. #if ENABLED(FILAMENT_WIDTH_SENSOR) && !HAS_FILAMENT_WIDTH_SENSOR
  324. #error "FILAMENT_WIDTH_SENSOR requires a FILWIDTH_PIN to be defined."
  325. #endif
  326. /**
  327. * ULTIPANEL encoder
  328. */
  329. #if ENABLED(ULTIPANEL) && DISABLED(NEWPANEL) && DISABLED(SR_LCD_2W_NL) && !defined(SHIFT_CLK)
  330. #error "ULTIPANEL requires some kind of encoder."
  331. #endif
  332. #if ENCODER_PULSES_PER_STEP < 0
  333. #error "ENCODER_PULSES_PER_STEP should not be negative, use REVERSE_MENU_DIRECTION instead."
  334. #endif
  335. /**
  336. * SAV_3DGLCD display options
  337. */
  338. #if ENABLED(U8GLIB_SSD1306) && ENABLED(U8GLIB_SH1106)
  339. #error "Only enable one SAV_3DGLCD display type: U8GLIB_SSD1306 or U8GLIB_SH1106."
  340. #endif
  341. /**
  342. * Delta has limited bed leveling options
  343. */
  344. #if ENABLED(DELTA)
  345. #if ENABLED(AUTO_BED_LEVELING_FEATURE)
  346. #if DISABLED(AUTO_BED_LEVELING_GRID)
  347. #error "Only AUTO_BED_LEVELING_GRID is supported with DELTA."
  348. #endif
  349. #if ENABLED(Z_PROBE_SLED)
  350. #error "You cannot use Z_PROBE_SLED with DELTA."
  351. #endif
  352. #endif
  353. #endif
  354. /**
  355. * Don't set more than one kinematic type
  356. */
  357. #if (ENABLED(DELTA) && (ENABLED(SCARA) || ENABLED(COREXY) || ENABLED(COREXZ) || ENABLED(COREYZ))) \
  358. || (ENABLED(SCARA) && (ENABLED(COREXY) || ENABLED(COREXZ) || ENABLED(COREYZ))) \
  359. || (ENABLED(COREXY) && (ENABLED(COREXZ) || ENABLED(COREYZ))) \
  360. || (ENABLED(COREXZ) && ENABLED(COREYZ))
  361. #error "Please enable only one of DELTA, SCARA, COREXY, COREXZ, or COREYZ."
  362. #endif
  363. /**
  364. * Allen Key Z probe requires Auto Bed Leveling grid and Delta
  365. */
  366. #if ENABLED(Z_PROBE_ALLEN_KEY) && !(ENABLED(AUTO_BED_LEVELING_GRID) && ENABLED(DELTA))
  367. #error "Invalid use of Z_PROBE_ALLEN_KEY."
  368. #endif
  369. /**
  370. * Dual X Carriage requirements
  371. */
  372. #if ENABLED(DUAL_X_CARRIAGE)
  373. #if EXTRUDERS == 1
  374. #error "DUAL_X_CARRIAGE requires 2 (or more) extruders."
  375. #elif ENABLED(COREXY) || ENABLED(COREXZ)
  376. #error "DUAL_X_CARRIAGE cannot be used with COREXY or COREXZ."
  377. #elif !HAS_X2_ENABLE || !HAS_X2_STEP || !HAS_X2_DIR
  378. #error "DUAL_X_CARRIAGE requires X2 stepper pins to be defined."
  379. #elif !HAS_X_MAX
  380. #error "DUAL_X_CARRIAGE requires USE_XMAX_PLUG and an X Max Endstop."
  381. #elif !defined(X2_HOME_POS) || !defined(X2_MIN_POS) || !defined(X2_MAX_POS)
  382. #error "DUAL_X_CARRIAGE requires X2_HOME_POS, X2_MIN_POS, and X2_MAX_POS."
  383. #elif X_HOME_DIR != -1 || X2_HOME_DIR != 1
  384. #error "DUAL_X_CARRIAGE requires X_HOME_DIR -1 and X2_HOME_DIR 1."
  385. #endif
  386. #endif // DUAL_X_CARRIAGE
  387. /**
  388. * Make sure auto fan pins don't conflict with the fan pin
  389. */
  390. #if HAS_AUTO_FAN
  391. #if HAS_FAN0
  392. #if EXTRUDER_0_AUTO_FAN_PIN == FAN_PIN
  393. #error "You cannot set EXTRUDER_0_AUTO_FAN_PIN equal to FAN_PIN."
  394. #elif EXTRUDER_1_AUTO_FAN_PIN == FAN_PIN
  395. #error "You cannot set EXTRUDER_1_AUTO_FAN_PIN equal to FAN_PIN."
  396. #elif EXTRUDER_2_AUTO_FAN_PIN == FAN_PIN
  397. #error "You cannot set EXTRUDER_2_AUTO_FAN_PIN equal to FAN_PIN."
  398. #elif EXTRUDER_3_AUTO_FAN_PIN == FAN_PIN
  399. #error "You cannot set EXTRUDER_3_AUTO_FAN_PIN equal to FAN_PIN."
  400. #endif
  401. #endif
  402. #endif
  403. #if HAS_FAN0 && CONTROLLERFAN_PIN == FAN_PIN
  404. #error "You cannot set CONTROLLERFAN_PIN equal to FAN_PIN."
  405. #endif
  406. #if HAS_CONTROLLERFAN
  407. #if EXTRUDER_0_AUTO_FAN_PIN == CONTROLLERFAN_PIN
  408. #error "You cannot set EXTRUDER_0_AUTO_FAN_PIN equal to CONTROLLERFAN_PIN."
  409. #elif EXTRUDER_1_AUTO_FAN_PIN == CONTROLLERFAN_PIN
  410. #error "You cannot set EXTRUDER_1_AUTO_FAN_PIN equal to CONTROLLERFAN_PIN."
  411. #elif EXTRUDER_2_AUTO_FAN_PIN == CONTROLLERFAN_PIN
  412. #error "You cannot set EXTRUDER_2_AUTO_FAN_PIN equal to CONTROLLERFAN_PIN."
  413. #elif EXTRUDER_3_AUTO_FAN_PIN == CONTROLLERFAN_PIN
  414. #error "You cannot set EXTRUDER_3_AUTO_FAN_PIN equal to CONTROLLERFAN_PIN."
  415. #endif
  416. #endif
  417. /**
  418. * Test Heater, Temp Sensor, and Extruder Pins; Sensor Type must also be set.
  419. */
  420. #if !HAS_HEATER_0
  421. #error "HEATER_0_PIN not defined for this board."
  422. #elif !PIN_EXISTS(TEMP_0)
  423. #error "TEMP_0_PIN not defined for this board."
  424. #elif !PIN_EXISTS(E0_STEP) || !PIN_EXISTS(E0_DIR) || !PIN_EXISTS(E0_ENABLE)
  425. #error "E0_STEP_PIN, E0_DIR_PIN, or E0_ENABLE_PIN not defined for this board."
  426. #elif TEMP_SENSOR_0 == 0
  427. #error "TEMP_SENSOR_0 is required."
  428. #endif
  429. #if HOTENDS > 1 || ENABLED(HEATERS_PARALLEL)
  430. #if !HAS_HEATER_1
  431. #error "HEATER_1_PIN not defined for this board."
  432. #endif
  433. #endif
  434. #if HOTENDS > 1
  435. #if TEMP_SENSOR_1 == 0
  436. #error "TEMP_SENSOR_1 is required with 2 or more HOTENDS."
  437. #elif !PIN_EXISTS(TEMP_1)
  438. #error "TEMP_1_PIN not defined for this board."
  439. #endif
  440. #if HOTENDS > 2
  441. #if TEMP_SENSOR_2 == 0
  442. #error "TEMP_SENSOR_2 is required with 3 or more HOTENDS."
  443. #elif !HAS_HEATER_2
  444. #error "HEATER_2_PIN not defined for this board."
  445. #elif !PIN_EXISTS(TEMP_2)
  446. #error "TEMP_2_PIN not defined for this board."
  447. #endif
  448. #if HOTENDS > 3
  449. #if TEMP_SENSOR_3 == 0
  450. #error "TEMP_SENSOR_3 is required with 4 HOTENDS."
  451. #elif !HAS_HEATER_3
  452. #error "HEATER_3_PIN not defined for this board."
  453. #elif !PIN_EXISTS(TEMP_3)
  454. #error "TEMP_3_PIN not defined for this board."
  455. #endif
  456. #endif
  457. #endif
  458. #endif
  459. #if ENABLED(TEMP_SENSOR_1_AS_REDUNDANT) && TEMP_SENSOR_1 == 0
  460. #error "TEMP_SENSOR_1 is required with TEMP_SENSOR_1_AS_REDUNDANT."
  461. #endif
  462. /**
  463. * Test Extruder Pins
  464. */
  465. #if EXTRUDERS > 3
  466. #if !PIN_EXISTS(E3_STEP) || !PIN_EXISTS(E3_DIR) || !PIN_EXISTS(E3_ENABLE)
  467. #error E3_STEP_PIN, E3_DIR_PIN, or E3_ENABLE_PIN not defined for this board.
  468. #endif
  469. #elif EXTRUDERS > 2
  470. #if !PIN_EXISTS(E2_STEP) || !PIN_EXISTS(E2_DIR) || !PIN_EXISTS(E2_ENABLE)
  471. #error E2_STEP_PIN, E2_DIR_PIN, or E2_ENABLE_PIN not defined for this board.
  472. #endif
  473. #elif EXTRUDERS > 1
  474. #if !PIN_EXISTS(E1_STEP) || !PIN_EXISTS(E1_DIR) || !PIN_EXISTS(E1_ENABLE)
  475. #error E1_STEP_PIN, E1_DIR_PIN, or E1_ENABLE_PIN not defined for this board.
  476. #endif
  477. #endif
  478. /**
  479. * Endstops
  480. */
  481. #if DISABLED(USE_XMIN_PLUG) && DISABLED(USE_XMAX_PLUG) && !(ENABLED(Z_DUAL_ENDSTOPS) && Z2_USE_ENDSTOP >= _XMAX_ && Z2_USE_ENDSTOP <= _XMIN_)
  482. #error "You must enable USE_XMIN_PLUG or USE_XMAX_PLUG"
  483. #elif DISABLED(USE_YMIN_PLUG) && DISABLED(USE_YMAX_PLUG) && !(ENABLED(Z_DUAL_ENDSTOPS) && Z2_USE_ENDSTOP >= _YMAX_ && Z2_USE_ENDSTOP <= _YMIN_)
  484. #error "You must enable USE_YMIN_PLUG or USE_YMAX_PLUG"
  485. #elif DISABLED(USE_ZMIN_PLUG) && DISABLED(USE_ZMAX_PLUG) && !(ENABLED(Z_DUAL_ENDSTOPS) && Z2_USE_ENDSTOP >= _ZMAX_ && Z2_USE_ENDSTOP <= _ZMIN_)
  486. #error "You must enable USE_ZMIN_PLUG or USE_ZMAX_PLUG"
  487. #elif ENABLED(Z_DUAL_ENDSTOPS) && !Z2_USE_ENDSTOP
  488. #error "You must set Z2_USE_ENDSTOP with Z_DUAL_ENDSTOPS"
  489. #endif
  490. /**
  491. * Warnings for old configurations
  492. */
  493. #if WATCH_TEMP_PERIOD > 500
  494. #error "WATCH_TEMP_PERIOD now uses seconds instead of milliseconds."
  495. #elif DISABLED(THERMAL_PROTECTION_HOTENDS) && (defined(WATCH_TEMP_PERIOD) || defined(THERMAL_PROTECTION_PERIOD))
  496. #error "Thermal Runaway Protection for hotends is now enabled with THERMAL_PROTECTION_HOTENDS."
  497. #elif DISABLED(THERMAL_PROTECTION_BED) && defined(THERMAL_PROTECTION_BED_PERIOD)
  498. #error "Thermal Runaway Protection for the bed is now enabled with THERMAL_PROTECTION_BED."
  499. #elif ENABLED(COREXZ) && ENABLED(Z_LATE_ENABLE)
  500. #error "Z_LATE_ENABLE can't be used with COREXZ."
  501. #elif defined(X_HOME_RETRACT_MM)
  502. #error "[XYZ]_HOME_RETRACT_MM settings have been renamed [XYZ]_HOME_BUMP_MM."
  503. #elif defined(PROBE_SERVO_DEACTIVATION_DELAY)
  504. #error "PROBE_SERVO_DEACTIVATION_DELAY has been replaced with DEACTIVATE_SERVOS_AFTER_MOVE and SERVO_DEACTIVATION_DELAY."
  505. #elif defined(BEEPER)
  506. #error "BEEPER is now BEEPER_PIN. Please update your pins definitions."
  507. #elif defined(SDCARDDETECT)
  508. #error "SDCARDDETECT is now SD_DETECT_PIN. Please update your pins definitions."
  509. #elif defined(SDCARDDETECTINVERTED)
  510. #error "SDCARDDETECTINVERTED is now SD_DETECT_INVERTED. Please update your configuration."
  511. #elif defined(BTENABLED)
  512. #error "BTENABLED is now BLUETOOTH. Please update your configuration."
  513. #elif defined(CUSTOM_MENDEL_NAME)
  514. #error "CUSTOM_MENDEL_NAME is now CUSTOM_MACHINE_NAME. Please update your configuration."
  515. #elif defined(HAS_AUTOMATIC_VERSIONING)
  516. #error "HAS_AUTOMATIC_VERSIONING is now USE_AUTOMATIC_VERSIONING. Please update your configuration."
  517. #elif defined(ENABLE_AUTO_BED_LEVELING)
  518. #error "ENABLE_AUTO_BED_LEVELING is now AUTO_BED_LEVELING_FEATURE. Please update your configuration."
  519. #elif defined(SDSLOW)
  520. #error "SDSLOW deprecated. Set SPI_SPEED to SPI_HALF_SPEED instead."
  521. #elif defined(SDEXTRASLOW)
  522. #error "SDEXTRASLOW deprecated. Set SPI_SPEED to SPI_QUARTER_SPEED instead."
  523. #elif defined(Z_RAISE_BEFORE_HOMING)
  524. #error "Z_RAISE_BEFORE_HOMING is deprecated. Use MIN_Z_HEIGHT_FOR_HOMING instead."
  525. #elif defined(FILAMENT_SENSOR)
  526. #error "FILAMENT_SENSOR is deprecated. Use FILAMENT_WIDTH_SENSOR instead."
  527. #elif defined(DISABLE_MAX_ENDSTOPS) || defined(DISABLE_MIN_ENDSTOPS)
  528. #error "DISABLE_MAX_ENDSTOPS and DISABLE_MIN_ENDSTOPS deprecated. Use individual USE_*_PLUG options instead."
  529. #elif ENABLED(Z_DUAL_ENDSTOPS) && !defined(Z2_USE_ENDSTOP)
  530. #error "Z_DUAL_ENDSTOPS settings are simplified. Just set Z2_USE_ENDSTOP to the endstop you want to repurpose for Z2"
  531. #elif defined(LANGUAGE_INCLUDE)
  532. #error "LANGUAGE_INCLUDE has been replaced by LCD_LANGUAGE. Please update your configuration."
  533. #elif defined(EXTRUDER_OFFSET_X) || defined(EXTRUDER_OFFSET_Y)
  534. #error "EXTRUDER_OFFSET_[XY] is deprecated. Use HOTEND_OFFSET_[XY] instead."
  535. #elif defined(PID_PARAMS_PER_EXTRUDER)
  536. #error "PID_PARAMS_PER_EXTRUDER is deprecated. Use PID_PARAMS_PER_HOTEND instead."
  537. #elif defined(EXTRUDER_WATTS)
  538. #error "EXTRUDER_WATTS is deprecated. Use HOTEND_WATTS instead."
  539. #elif defined(SERVO_ENDSTOP_ANGLES)
  540. #error "SERVO_ENDSTOP_ANGLES is deprecated. Use Z_SERVO_ANGLES instead."
  541. #elif defined(X_ENDSTOP_SERVO_NR) || defined(Y_ENDSTOP_SERVO_NR)
  542. #error "X_ENDSTOP_SERVO_NR and Y_ENDSTOP_SERVO_NR are deprecated and should be removed."
  543. #endif
  544. #endif //SANITYCHECK_H