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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656
  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 must be specified."
  55. #elif !defined(DETAILED_BUILD_VERSION)
  56. #error "BUILD_VERSION must be specified."
  57. #elif !defined(STRING_DISTRIBUTION_DATE)
  58. #error "STRING_DISTRIBUTION_DATE must be specified."
  59. #elif !defined(PROTOCOL_VERSION)
  60. #error "PROTOCOL_VERSION must be specified."
  61. #elif !defined(MACHINE_NAME)
  62. #error "MACHINE_NAME must be specified."
  63. #elif !defined(SOURCE_CODE_URL)
  64. #error "SOURCE_CODE_URL must be specified."
  65. #elif !defined(DEFAULT_MACHINE_UUID)
  66. #error "DEFAULT_MACHINE_UUID must be specified."
  67. #elif !defined(WEBSITE_URL)
  68. #error "WEBSITE_URL must be specified."
  69. #endif
  70. /**
  71. * Dual Stepper Drivers
  72. */
  73. #if ENABLED(X_DUAL_STEPPER_DRIVERS) && ENABLED(DUAL_X_CARRIAGE)
  74. #error "DUAL_X_CARRIAGE is not compatible with X_DUAL_STEPPER_DRIVERS."
  75. #elif ENABLED(X_DUAL_STEPPER_DRIVERS) && (!HAS_X2_ENABLE || !HAS_X2_STEP || !HAS_X2_DIR)
  76. #error "X_DUAL_STEPPER_DRIVERS requires X2 pins (and an extra E plug)."
  77. #elif ENABLED(Y_DUAL_STEPPER_DRIVERS) && (!HAS_Y2_ENABLE || !HAS_Y2_STEP || !HAS_Y2_DIR)
  78. #error "Y_DUAL_STEPPER_DRIVERS requires Y2 pins (and an extra E plug)."
  79. #elif ENABLED(Z_DUAL_STEPPER_DRIVERS) && (!HAS_Z2_ENABLE || !HAS_Z2_STEP || !HAS_Z2_DIR)
  80. #error "Z_DUAL_STEPPER_DRIVERS requires Z2 pins (and an extra E plug)."
  81. #endif
  82. /**
  83. * Progress Bar
  84. */
  85. #if ENABLED(LCD_PROGRESS_BAR)
  86. #if DISABLED(SDSUPPORT)
  87. #error "LCD_PROGRESS_BAR requires SDSUPPORT."
  88. #endif
  89. #if ENABLED(DOGLCD)
  90. #error "LCD_PROGRESS_BAR does not apply to graphical displays."
  91. #endif
  92. #if ENABLED(FILAMENT_LCD_DISPLAY)
  93. #error "LCD_PROGRESS_BAR and FILAMENT_LCD_DISPLAY are not fully compatible. Comment out this line to use both."
  94. #endif
  95. #endif
  96. /**
  97. * Babystepping
  98. */
  99. #if ENABLED(BABYSTEPPING)
  100. #if DISABLED(ULTRA_LCD)
  101. #error "BABYSTEPPING requires an LCD controller."
  102. #endif
  103. #if ENABLED(SCARA)
  104. #error "BABYSTEPPING is not implemented for SCARA yet."
  105. #endif
  106. #if ENABLED(DELTA) && ENABLED(BABYSTEP_XY)
  107. #error "BABYSTEPPING only implemented for Z axis on deltabots."
  108. #endif
  109. #endif
  110. /**
  111. * Filament Runout needs a pin and either SD Support or Auto print start detection
  112. */
  113. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  114. #if !HAS_FIL_RUNOUT
  115. #error "FILAMENT_RUNOUT_SENSOR requires FIL_RUNOUT_PIN."
  116. #elif DISABLED(SDSUPPORT) && DISABLED(PRINTJOB_TIMER_AUTOSTART)
  117. #error "FILAMENT_RUNOUT_SENSOR requires SDSUPPORT or PRINTJOB_TIMER_AUTOSTART."
  118. #endif
  119. #endif
  120. /**
  121. * Filament Change with Extruder Runout Prevention
  122. */
  123. #if ENABLED(FILAMENT_CHANGE_FEATURE) && ENABLED(EXTRUDER_RUNOUT_PREVENT)
  124. #error "EXTRUDER_RUNOUT_PREVENT is incompatible with FILAMENT_CHANGE_FEATURE."
  125. #endif
  126. /**
  127. * Individual axis homing is useless for DELTAS
  128. */
  129. #if ENABLED(INDIVIDUAL_AXIS_HOMING_MENU) && ENABLED(DELTA)
  130. #error "INDIVIDUAL_AXIS_HOMING_MENU is incompatible with DELTA kinematics."
  131. #endif
  132. /**
  133. * Options only for EXTRUDERS > 1
  134. */
  135. #if EXTRUDERS > 1
  136. #if EXTRUDERS > 4
  137. #error "The maximum number of EXTRUDERS in Marlin is 4."
  138. #endif
  139. #if ENABLED(TEMP_SENSOR_1_AS_REDUNDANT)
  140. #error "EXTRUDERS must be 1 with TEMP_SENSOR_1_AS_REDUNDANT."
  141. #endif
  142. #if ENABLED(HEATERS_PARALLEL)
  143. #error "EXTRUDERS must be 1 with HEATERS_PARALLEL."
  144. #endif
  145. #elif ENABLED(SINGLENOZZLE)
  146. #error "SINGLENOZZLE requires 2 or more EXTRUDERS."
  147. #endif
  148. /**
  149. * Limited number of servos
  150. */
  151. #if defined(NUM_SERVOS) && NUM_SERVOS > 0
  152. #if NUM_SERVOS > 4
  153. #error "The maximum number of SERVOS in Marlin is 4."
  154. #elif HAS_Z_SERVO_ENDSTOP && Z_ENDSTOP_SERVO_NR >= NUM_SERVOS
  155. #error "Z_ENDSTOP_SERVO_NR must be smaller than NUM_SERVOS."
  156. #endif
  157. #endif
  158. /**
  159. * Servo deactivation depends on servo endstops
  160. */
  161. #if ENABLED(DEACTIVATE_SERVOS_AFTER_MOVE) && !HAS_Z_SERVO_ENDSTOP
  162. #error "Z_ENDSTOP_SERVO_NR is required for DEACTIVATE_SERVOS_AFTER_MOVE."
  163. #endif
  164. /**
  165. * Required LCD language
  166. */
  167. #if DISABLED(DOGLCD) && ENABLED(ULTRA_LCD) && !defined(DISPLAY_CHARSET_HD44780)
  168. #error "You must set DISPLAY_CHARSET_HD44780 to JAPANESE, WESTERN or CYRILLIC for your LCD controller."
  169. #endif
  170. /**
  171. * Bed Heating Options - PID vs Limit Switching
  172. */
  173. #if ENABLED(PIDTEMPBED) && ENABLED(BED_LIMIT_SWITCHING)
  174. #error "To use BED_LIMIT_SWITCHING you must disable PIDTEMPBED."
  175. #endif
  176. /**
  177. * Mesh Bed Leveling
  178. */
  179. #if ENABLED(MESH_BED_LEVELING)
  180. #if ENABLED(DELTA)
  181. #error "MESH_BED_LEVELING does not yet support DELTA printers."
  182. #elif ENABLED(AUTO_BED_LEVELING_FEATURE)
  183. #error "Select AUTO_BED_LEVELING_FEATURE or MESH_BED_LEVELING, not both."
  184. #elif MESH_NUM_X_POINTS > 7 || MESH_NUM_Y_POINTS > 7
  185. #error "MESH_NUM_X_POINTS and MESH_NUM_Y_POINTS need to be less than 8."
  186. #endif
  187. #elif ENABLED(MANUAL_BED_LEVELING)
  188. #error "MESH_BED_LEVELING is required for MANUAL_BED_LEVELING."
  189. #endif
  190. /**
  191. * Probes
  192. */
  193. #if PROBE_SELECTED
  194. #if ENABLED(Z_PROBE_SLED) && ENABLED(DELTA)
  195. #error "You cannot use Z_PROBE_SLED with DELTA."
  196. #endif
  197. /**
  198. * NUM_SERVOS is required for a Z servo probe
  199. */
  200. #if HAS_Z_SERVO_ENDSTOP
  201. #ifndef NUM_SERVOS
  202. #error "You must set NUM_SERVOS for a Z servo probe (Z_ENDSTOP_SERVO_NR)."
  203. #elif Z_ENDSTOP_SERVO_NR >= NUM_SERVOS
  204. #error "Z_ENDSTOP_SERVO_NR must be less than NUM_SERVOS."
  205. #endif
  206. #endif
  207. /**
  208. * A probe needs a pin
  209. */
  210. #if !PROBE_PIN_CONFIGURED
  211. #error "A probe needs a pin! Use Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN or Z_MIN_PROBE_PIN."
  212. #endif
  213. /**
  214. * Z_MIN_PIN and Z_MIN_PROBE_PIN can't co-exist when Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN
  215. */
  216. #if HAS_Z_MIN && HAS_Z_MIN_PROBE_PIN && ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN)
  217. #error "A probe cannot have more than one pin! Use Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN or Z_MIN_PROBE_PIN."
  218. #endif
  219. /**
  220. * Make sure the plug is enabled if it's used
  221. */
  222. #if ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN) && DISABLED(USE_ZMIN_PLUG)
  223. #error "You must enable USE_ZMIN_PLUG if any probe or endstop is connected to the ZMIN plug."
  224. #endif
  225. /**
  226. * Only allow one probe option to be defined
  227. */
  228. #if (ENABLED(FIX_MOUNTED_PROBE) && (ENABLED(Z_PROBE_ALLEN_KEY) || HAS_Z_SERVO_ENDSTOP || ENABLED(Z_PROBE_SLED))) \
  229. || (ENABLED(Z_PROBE_ALLEN_KEY) && (HAS_Z_SERVO_ENDSTOP || ENABLED(Z_PROBE_SLED))) \
  230. || (HAS_Z_SERVO_ENDSTOP && ENABLED(Z_PROBE_SLED))
  231. #error "Please define only one type of probe: Z Servo, Z_PROBE_ALLEN_KEY, Z_PROBE_SLED, or FIX_MOUNTED_PROBE."
  232. #endif
  233. /**
  234. * Don't allow nonsense probe-pin settings
  235. */
  236. #if ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN) && ENABLED(Z_MIN_PROBE_ENDSTOP)
  237. #error "You can't enable both Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN and Z_MIN_PROBE_ENDSTOP."
  238. #elif ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN) && ENABLED(DISABLE_Z_MIN_PROBE_ENDSTOP)
  239. #error "Don't enable DISABLE_Z_MIN_PROBE_ENDSTOP with Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN."
  240. #elif ENABLED(DISABLE_Z_MIN_PROBE_ENDSTOP) && DISABLED(Z_MIN_PROBE_ENDSTOP)
  241. #error "DISABLE_Z_MIN_PROBE_ENDSTOP requires Z_MIN_PROBE_ENDSTOP to be set."
  242. #endif
  243. /**
  244. * Require a Z probe pin if Z_MIN_PROBE_ENDSTOP is enabled.
  245. */
  246. #if ENABLED(Z_MIN_PROBE_ENDSTOP)
  247. #if !HAS_Z_MIN_PROBE_PIN
  248. #error "Z_MIN_PROBE_ENDSTOP requires a Z_MIN_PROBE_PIN in your board's pins_XXXX.h file."
  249. #endif
  250. // Forcing Servo definitions can break some hall effect sensor setups. Leaving these here for further comment.
  251. //#ifndef NUM_SERVOS
  252. // #error "You must have NUM_SERVOS defined and there must be at least 1 configured to use Z_MIN_PROBE_ENDSTOP."
  253. //#endif
  254. //#if defined(NUM_SERVOS) && NUM_SERVOS < 1
  255. // #error "You must have at least 1 servo defined for NUM_SERVOS to use Z_MIN_PROBE_ENDSTOP."
  256. //#endif
  257. //#if Z_ENDSTOP_SERVO_NR < 0
  258. // #error "You must have Z_ENDSTOP_SERVO_NR set to at least 0 or above to use Z_MIN_PROBE_ENDSTOP."
  259. //#endif
  260. //#ifndef Z_SERVO_ANGLES
  261. // #error "You must have Z_SERVO_ANGLES defined for Z Extend and Retract to use Z_MIN_PROBE_ENDSTOP."
  262. //#endif
  263. #endif
  264. /**
  265. * Make sure Z raise values are set
  266. */
  267. #if defined(Z_RAISE_BEFORE_PROBING) || defined(Z_RAISE_AFTER_PROBING)
  268. #error "Z_RAISE_(BEFORE|AFTER)_PROBING are deprecated. Use Z_RAISE_PROBE_DEPLOY_STOW instead."
  269. #elif !defined(Z_RAISE_PROBE_DEPLOY_STOW)
  270. #error "You must set Z_RAISE_PROBE_DEPLOY_STOW in your configuration."
  271. #elif !defined(Z_RAISE_BETWEEN_PROBINGS)
  272. #error "You must set Z_RAISE_BETWEEN_PROBINGS in your configuration."
  273. #elif Z_RAISE_PROBE_DEPLOY_STOW < 1
  274. #error "Probes need Z_RAISE_PROBE_DEPLOY_STOW >= 1."
  275. #elif Z_RAISE_BETWEEN_PROBINGS < 1
  276. #error "Probes need Z_RAISE_BETWEEN_PROBINGS >= 1."
  277. #endif
  278. #else
  279. /**
  280. * Require some kind of probe for bed leveling and probe testing
  281. */
  282. #if ENABLED(AUTO_BED_LEVELING_FEATURE)
  283. #error "AUTO_BED_LEVELING_FEATURE requires a probe! Define a Z Servo, Z_PROBE_ALLEN_KEY, Z_PROBE_SLED, or FIX_MOUNTED_PROBE."
  284. #elif ENABLED(Z_MIN_PROBE_REPEATABILITY_TEST)
  285. #error "Z_MIN_PROBE_REPEATABILITY_TEST requires a probe! Define a Z Servo, Z_PROBE_ALLEN_KEY, Z_PROBE_SLED, or FIX_MOUNTED_PROBE."
  286. #endif
  287. #endif
  288. /**
  289. * Auto Bed Leveling
  290. */
  291. #if ENABLED(AUTO_BED_LEVELING_FEATURE)
  292. /**
  293. * Delta has limited bed leveling options
  294. */
  295. #if ENABLED(DELTA) && DISABLED(AUTO_BED_LEVELING_GRID)
  296. #error "You must use AUTO_BED_LEVELING_GRID for DELTA bed leveling."
  297. #endif
  298. /**
  299. * Require a Z min pin
  300. */
  301. #if !PIN_EXISTS(Z_MIN)
  302. #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.
  303. #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."
  304. #endif
  305. #endif
  306. /**
  307. * Check if Probe_Offset * Grid Points is greater than Probing Range
  308. */
  309. #if ENABLED(AUTO_BED_LEVELING_GRID)
  310. #ifndef DELTA_PROBEABLE_RADIUS
  311. // Be sure points are in the right order
  312. #if LEFT_PROBE_BED_POSITION > RIGHT_PROBE_BED_POSITION
  313. #error "LEFT_PROBE_BED_POSITION must be less than RIGHT_PROBE_BED_POSITION."
  314. #elif FRONT_PROBE_BED_POSITION > BACK_PROBE_BED_POSITION
  315. #error "FRONT_PROBE_BED_POSITION must be less than BACK_PROBE_BED_POSITION."
  316. #endif
  317. // Make sure probing points are reachable
  318. #if LEFT_PROBE_BED_POSITION < MIN_PROBE_X
  319. #error "The given LEFT_PROBE_BED_POSITION can't be reached by the Z probe."
  320. #elif RIGHT_PROBE_BED_POSITION > MAX_PROBE_X
  321. #error "The given RIGHT_PROBE_BED_POSITION can't be reached by the Z probe."
  322. #elif FRONT_PROBE_BED_POSITION < MIN_PROBE_Y
  323. #error "The given FRONT_PROBE_BED_POSITION can't be reached by the Z probe."
  324. #elif BACK_PROBE_BED_POSITION > MAX_PROBE_Y
  325. #error "The given BACK_PROBE_BED_POSITION can't be reached by the Z probe."
  326. #endif
  327. #endif
  328. #else // !AUTO_BED_LEVELING_GRID
  329. // Check the triangulation points
  330. #if ABL_PROBE_PT_1_X < MIN_PROBE_X || ABL_PROBE_PT_1_X > MAX_PROBE_X
  331. #error "The given ABL_PROBE_PT_1_X can't be reached by the Z probe."
  332. #elif ABL_PROBE_PT_2_X < MIN_PROBE_X || ABL_PROBE_PT_2_X > MAX_PROBE_X
  333. #error "The given ABL_PROBE_PT_2_X can't be reached by the Z probe."
  334. #elif ABL_PROBE_PT_3_X < MIN_PROBE_X || ABL_PROBE_PT_3_X > MAX_PROBE_X
  335. #error "The given ABL_PROBE_PT_3_X can't be reached by the Z probe."
  336. #elif ABL_PROBE_PT_1_Y < MIN_PROBE_Y || ABL_PROBE_PT_1_Y > MAX_PROBE_Y
  337. #error "The given ABL_PROBE_PT_1_Y can't be reached by the Z probe."
  338. #elif ABL_PROBE_PT_2_Y < MIN_PROBE_Y || ABL_PROBE_PT_2_Y > MAX_PROBE_Y
  339. #error "The given ABL_PROBE_PT_2_Y can't be reached by the Z probe."
  340. #elif ABL_PROBE_PT_3_Y < MIN_PROBE_Y || ABL_PROBE_PT_3_Y > MAX_PROBE_Y
  341. #error "The given ABL_PROBE_PT_3_Y can't be reached by the Z probe."
  342. #endif
  343. #endif // !AUTO_BED_LEVELING_GRID
  344. #endif // AUTO_BED_LEVELING_FEATURE
  345. /**
  346. * Advance Extrusion
  347. */
  348. #if ENABLED(ADVANCE) && ENABLED(LIN_ADVANCE)
  349. #error "You can enable ADVANCE or LIN_ADVANCE, but not both."
  350. #endif
  351. /**
  352. * Filament Width Sensor
  353. */
  354. #if ENABLED(FILAMENT_WIDTH_SENSOR) && !HAS_FILAMENT_WIDTH_SENSOR
  355. #error "FILAMENT_WIDTH_SENSOR requires a FILWIDTH_PIN to be defined."
  356. #endif
  357. /**
  358. * ULTIPANEL encoder
  359. */
  360. #if ENABLED(ULTIPANEL) && DISABLED(NEWPANEL) && DISABLED(SR_LCD_2W_NL) && !defined(SHIFT_CLK)
  361. #error "ULTIPANEL requires some kind of encoder."
  362. #endif
  363. #if ENCODER_PULSES_PER_STEP < 0
  364. #error "ENCODER_PULSES_PER_STEP should not be negative, use REVERSE_MENU_DIRECTION instead."
  365. #endif
  366. /**
  367. * SAV_3DGLCD display options
  368. */
  369. #if ENABLED(U8GLIB_SSD1306) && ENABLED(U8GLIB_SH1106)
  370. #error "Only enable one SAV_3DGLCD display type: U8GLIB_SSD1306 or U8GLIB_SH1106."
  371. #endif
  372. /**
  373. * Don't set more than one kinematic type
  374. */
  375. #if (ENABLED(DELTA) && (ENABLED(SCARA) || ENABLED(COREXY) || ENABLED(COREXZ) || ENABLED(COREYZ))) \
  376. || (ENABLED(SCARA) && (ENABLED(COREXY) || ENABLED(COREXZ) || ENABLED(COREYZ))) \
  377. || (ENABLED(COREXY) && (ENABLED(COREXZ) || ENABLED(COREYZ))) \
  378. || (ENABLED(COREXZ) && ENABLED(COREYZ))
  379. #error "Please enable only one of DELTA, SCARA, COREXY, COREXZ, or COREYZ."
  380. #endif
  381. /**
  382. * Allen Key
  383. * Deploying the Allen Key probe uses big moves in z direction. Too dangerous for an unhomed z-axis.
  384. */
  385. #if ENABLED(Z_PROBE_ALLEN_KEY) && (Z_HOME_DIR < 0) && ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN)
  386. #error "You can't home to a z min endstop with a Z_PROBE_ALLEN_KEY"
  387. #endif
  388. /**
  389. * Dual X Carriage requirements
  390. */
  391. #if ENABLED(DUAL_X_CARRIAGE)
  392. #if EXTRUDERS == 1
  393. #error "DUAL_X_CARRIAGE requires 2 (or more) extruders."
  394. #elif ENABLED(COREXY) || ENABLED(COREXZ)
  395. #error "DUAL_X_CARRIAGE cannot be used with COREXY or COREXZ."
  396. #elif !HAS_X2_ENABLE || !HAS_X2_STEP || !HAS_X2_DIR
  397. #error "DUAL_X_CARRIAGE requires X2 stepper pins to be defined."
  398. #elif !HAS_X_MAX
  399. #error "DUAL_X_CARRIAGE requires USE_XMAX_PLUG and an X Max Endstop."
  400. #elif !defined(X2_HOME_POS) || !defined(X2_MIN_POS) || !defined(X2_MAX_POS)
  401. #error "DUAL_X_CARRIAGE requires X2_HOME_POS, X2_MIN_POS, and X2_MAX_POS."
  402. #elif X_HOME_DIR != -1 || X2_HOME_DIR != 1
  403. #error "DUAL_X_CARRIAGE requires X_HOME_DIR -1 and X2_HOME_DIR 1."
  404. #endif
  405. #endif // DUAL_X_CARRIAGE
  406. /**
  407. * Make sure auto fan pins don't conflict with the fan pin
  408. */
  409. #if HAS_AUTO_FAN
  410. #if HAS_FAN0
  411. #if EXTRUDER_0_AUTO_FAN_PIN == FAN_PIN
  412. #error "You cannot set EXTRUDER_0_AUTO_FAN_PIN equal to FAN_PIN."
  413. #elif EXTRUDER_1_AUTO_FAN_PIN == FAN_PIN
  414. #error "You cannot set EXTRUDER_1_AUTO_FAN_PIN equal to FAN_PIN."
  415. #elif EXTRUDER_2_AUTO_FAN_PIN == FAN_PIN
  416. #error "You cannot set EXTRUDER_2_AUTO_FAN_PIN equal to FAN_PIN."
  417. #elif EXTRUDER_3_AUTO_FAN_PIN == FAN_PIN
  418. #error "You cannot set EXTRUDER_3_AUTO_FAN_PIN equal to FAN_PIN."
  419. #endif
  420. #endif
  421. #endif
  422. #if HAS_FAN0 && CONTROLLERFAN_PIN == FAN_PIN
  423. #error "You cannot set CONTROLLERFAN_PIN equal to FAN_PIN."
  424. #endif
  425. #if HAS_CONTROLLERFAN
  426. #if EXTRUDER_0_AUTO_FAN_PIN == CONTROLLERFAN_PIN
  427. #error "You cannot set EXTRUDER_0_AUTO_FAN_PIN equal to CONTROLLERFAN_PIN."
  428. #elif EXTRUDER_1_AUTO_FAN_PIN == CONTROLLERFAN_PIN
  429. #error "You cannot set EXTRUDER_1_AUTO_FAN_PIN equal to CONTROLLERFAN_PIN."
  430. #elif EXTRUDER_2_AUTO_FAN_PIN == CONTROLLERFAN_PIN
  431. #error "You cannot set EXTRUDER_2_AUTO_FAN_PIN equal to CONTROLLERFAN_PIN."
  432. #elif EXTRUDER_3_AUTO_FAN_PIN == CONTROLLERFAN_PIN
  433. #error "You cannot set EXTRUDER_3_AUTO_FAN_PIN equal to CONTROLLERFAN_PIN."
  434. #endif
  435. #endif
  436. /**
  437. * Test Heater, Temp Sensor, and Extruder Pins; Sensor Type must also be set.
  438. */
  439. #if !HAS_HEATER_0
  440. #error "HEATER_0_PIN not defined for this board."
  441. #elif !PIN_EXISTS(TEMP_0)
  442. #error "TEMP_0_PIN not defined for this board."
  443. #elif !PIN_EXISTS(E0_STEP) || !PIN_EXISTS(E0_DIR) || !PIN_EXISTS(E0_ENABLE)
  444. #error "E0_STEP_PIN, E0_DIR_PIN, or E0_ENABLE_PIN not defined for this board."
  445. #elif TEMP_SENSOR_0 == 0
  446. #error "TEMP_SENSOR_0 is required."
  447. #endif
  448. #if HOTENDS > 1 || ENABLED(HEATERS_PARALLEL)
  449. #if !HAS_HEATER_1
  450. #error "HEATER_1_PIN not defined for this board."
  451. #endif
  452. #endif
  453. #if HOTENDS > 1
  454. #if TEMP_SENSOR_1 == 0
  455. #error "TEMP_SENSOR_1 is required with 2 or more HOTENDS."
  456. #elif !PIN_EXISTS(TEMP_1)
  457. #error "TEMP_1_PIN not defined for this board."
  458. #endif
  459. #if HOTENDS > 2
  460. #if TEMP_SENSOR_2 == 0
  461. #error "TEMP_SENSOR_2 is required with 3 or more HOTENDS."
  462. #elif !HAS_HEATER_2
  463. #error "HEATER_2_PIN not defined for this board."
  464. #elif !PIN_EXISTS(TEMP_2)
  465. #error "TEMP_2_PIN not defined for this board."
  466. #endif
  467. #if HOTENDS > 3
  468. #if TEMP_SENSOR_3 == 0
  469. #error "TEMP_SENSOR_3 is required with 4 HOTENDS."
  470. #elif !HAS_HEATER_3
  471. #error "HEATER_3_PIN not defined for this board."
  472. #elif !PIN_EXISTS(TEMP_3)
  473. #error "TEMP_3_PIN not defined for this board."
  474. #endif
  475. #endif
  476. #endif
  477. #endif
  478. #if ENABLED(TEMP_SENSOR_1_AS_REDUNDANT) && TEMP_SENSOR_1 == 0
  479. #error "TEMP_SENSOR_1 is required with TEMP_SENSOR_1_AS_REDUNDANT."
  480. #endif
  481. /**
  482. * Test Extruder Pins
  483. */
  484. #if EXTRUDERS > 3
  485. #if !PIN_EXISTS(E3_STEP) || !PIN_EXISTS(E3_DIR) || !PIN_EXISTS(E3_ENABLE)
  486. #error "E3_STEP_PIN, E3_DIR_PIN, or E3_ENABLE_PIN not defined for this board."
  487. #endif
  488. #elif EXTRUDERS > 2
  489. #if !PIN_EXISTS(E2_STEP) || !PIN_EXISTS(E2_DIR) || !PIN_EXISTS(E2_ENABLE)
  490. #error "E2_STEP_PIN, E2_DIR_PIN, or E2_ENABLE_PIN not defined for this board."
  491. #endif
  492. #elif EXTRUDERS > 1
  493. #if !PIN_EXISTS(E1_STEP) || !PIN_EXISTS(E1_DIR) || !PIN_EXISTS(E1_ENABLE)
  494. #error "E1_STEP_PIN, E1_DIR_PIN, or E1_ENABLE_PIN not defined for this board."
  495. #endif
  496. #endif
  497. /**
  498. * Endstops
  499. */
  500. #if DISABLED(USE_XMIN_PLUG) && DISABLED(USE_XMAX_PLUG) && !(ENABLED(Z_DUAL_ENDSTOPS) && Z2_USE_ENDSTOP >= _XMAX_ && Z2_USE_ENDSTOP <= _XMIN_)
  501. #error "You must enable USE_XMIN_PLUG or USE_XMAX_PLUG"
  502. #elif DISABLED(USE_YMIN_PLUG) && DISABLED(USE_YMAX_PLUG) && !(ENABLED(Z_DUAL_ENDSTOPS) && Z2_USE_ENDSTOP >= _YMAX_ && Z2_USE_ENDSTOP <= _YMIN_)
  503. #error "You must enable USE_YMIN_PLUG or USE_YMAX_PLUG"
  504. #elif DISABLED(USE_ZMIN_PLUG) && DISABLED(USE_ZMAX_PLUG) && !(ENABLED(Z_DUAL_ENDSTOPS) && Z2_USE_ENDSTOP >= _ZMAX_ && Z2_USE_ENDSTOP <= _ZMIN_)
  505. #error "You must enable USE_ZMIN_PLUG or USE_ZMAX_PLUG"
  506. #elif ENABLED(Z_DUAL_ENDSTOPS) && !Z2_USE_ENDSTOP
  507. #error "You must set Z2_USE_ENDSTOP with Z_DUAL_ENDSTOPS"
  508. #endif
  509. /**
  510. * emergency-command parser
  511. */
  512. #if ENABLED(EMERGENCY_PARSER) && ENABLED(USBCON)
  513. #error "EMERGENCY_PARSER does not work on boards with AT90USB processors (USBCON)."
  514. #endif
  515. /**
  516. * Warnings for old configurations
  517. */
  518. #if WATCH_TEMP_PERIOD > 500
  519. #error "WATCH_TEMP_PERIOD now uses seconds instead of milliseconds."
  520. #elif DISABLED(THERMAL_PROTECTION_HOTENDS) && (defined(WATCH_TEMP_PERIOD) || defined(THERMAL_PROTECTION_PERIOD))
  521. #error "Thermal Runaway Protection for hotends is now enabled with THERMAL_PROTECTION_HOTENDS."
  522. #elif DISABLED(THERMAL_PROTECTION_BED) && defined(THERMAL_PROTECTION_BED_PERIOD)
  523. #error "Thermal Runaway Protection for the bed is now enabled with THERMAL_PROTECTION_BED."
  524. #elif ENABLED(COREXZ) && ENABLED(Z_LATE_ENABLE)
  525. #error "Z_LATE_ENABLE can't be used with COREXZ."
  526. #elif defined(X_HOME_RETRACT_MM)
  527. #error "[XYZ]_HOME_RETRACT_MM settings have been renamed [XYZ]_HOME_BUMP_MM."
  528. #elif defined(BEEPER)
  529. #error "BEEPER is now BEEPER_PIN. Please update your pins definitions."
  530. #elif defined(SDCARDDETECT)
  531. #error "SDCARDDETECT is now SD_DETECT_PIN. Please update your pins definitions."
  532. #elif defined(SDCARDDETECTINVERTED)
  533. #error "SDCARDDETECTINVERTED is now SD_DETECT_INVERTED. Please update your configuration."
  534. #elif defined(BTENABLED)
  535. #error "BTENABLED is now BLUETOOTH. Please update your configuration."
  536. #elif defined(CUSTOM_MENDEL_NAME)
  537. #error "CUSTOM_MENDEL_NAME is now CUSTOM_MACHINE_NAME. Please update your configuration."
  538. #elif defined(HAS_AUTOMATIC_VERSIONING)
  539. #error "HAS_AUTOMATIC_VERSIONING is now USE_AUTOMATIC_VERSIONING. Please update your configuration."
  540. #elif defined(ENABLE_AUTO_BED_LEVELING)
  541. #error "ENABLE_AUTO_BED_LEVELING is now AUTO_BED_LEVELING_FEATURE. Please update your configuration."
  542. #elif defined(SDSLOW)
  543. #error "SDSLOW deprecated. Set SPI_SPEED to SPI_HALF_SPEED instead."
  544. #elif defined(SDEXTRASLOW)
  545. #error "SDEXTRASLOW deprecated. Set SPI_SPEED to SPI_QUARTER_SPEED instead."
  546. #elif defined(Z_RAISE_BEFORE_HOMING)
  547. #error "Z_RAISE_BEFORE_HOMING is deprecated. Use MIN_Z_HEIGHT_FOR_HOMING instead."
  548. #elif defined(FILAMENT_SENSOR)
  549. #error "FILAMENT_SENSOR is deprecated. Use FILAMENT_WIDTH_SENSOR instead."
  550. #elif defined(DISABLE_MAX_ENDSTOPS) || defined(DISABLE_MIN_ENDSTOPS)
  551. #error "DISABLE_MAX_ENDSTOPS and DISABLE_MIN_ENDSTOPS deprecated. Use individual USE_*_PLUG options instead."
  552. #elif ENABLED(Z_DUAL_ENDSTOPS) && !defined(Z2_USE_ENDSTOP)
  553. #error "Z_DUAL_ENDSTOPS settings are simplified. Just set Z2_USE_ENDSTOP to the endstop you want to repurpose for Z2"
  554. #elif defined(LANGUAGE_INCLUDE)
  555. #error "LANGUAGE_INCLUDE has been replaced by LCD_LANGUAGE. Please update your configuration."
  556. #elif defined(EXTRUDER_OFFSET_X) || defined(EXTRUDER_OFFSET_Y)
  557. #error "EXTRUDER_OFFSET_[XY] is deprecated. Use HOTEND_OFFSET_[XY] instead."
  558. #elif defined(PID_PARAMS_PER_EXTRUDER)
  559. #error "PID_PARAMS_PER_EXTRUDER is deprecated. Use PID_PARAMS_PER_HOTEND instead."
  560. #elif defined(EXTRUDER_WATTS)
  561. #error "EXTRUDER_WATTS is deprecated. Use HOTEND_WATTS instead."
  562. #elif defined(SERVO_ENDSTOP_ANGLES)
  563. #error "SERVO_ENDSTOP_ANGLES is deprecated. Use Z_SERVO_ANGLES instead."
  564. #elif defined(X_ENDSTOP_SERVO_NR) || defined(Y_ENDSTOP_SERVO_NR)
  565. #error "X_ENDSTOP_SERVO_NR and Y_ENDSTOP_SERVO_NR are deprecated and should be removed."
  566. #elif defined(XY_TRAVEL_SPEED)
  567. #error "XY_TRAVEL_SPEED is deprecated. Use XY_PROBE_SPEED instead."
  568. #elif defined(PROBE_SERVO_DEACTIVATION_DELAY)
  569. #error "PROBE_SERVO_DEACTIVATION_DELAY is deprecated. Use DEACTIVATE_SERVOS_AFTER_MOVE instead."
  570. #elif defined(SERVO_DEACTIVATION_DELAY)
  571. #error "SERVO_DEACTIVATION_DELAY is deprecated. Use SERVO_DELAY instead."
  572. #elif ENABLED(FILAMENTCHANGEENABLE)
  573. #error "FILAMENTCHANGEENABLE is now FILAMENT_CHANGE_FEATURE. Please update your configuration."
  574. #elif defined(PLA_PREHEAT_HOTEND_TEMP)
  575. #error "PLA_PREHEAT_HOTEND_TEMP is now PREHEAT_1_TEMP_HOTEND. Please update your configuration."
  576. #elif defined(PLA_PREHEAT_HPB_TEMP)
  577. #error "PLA_PREHEAT_HPB_TEMP is now PREHEAT_1_TEMP_BED. Please update your configuration."
  578. #elif defined(PLA_PREHEAT_FAN_SPEED)
  579. #error "PLA_PREHEAT_FAN_SPEED is now PREHEAT_1_FAN_SPEED. Please update your configuration."
  580. #elif defined(ABS_PREHEAT_HOTEND_TEMP)
  581. #error "ABS_PREHEAT_HOTEND_TEMP is now PREHEAT_2_TEMP_HOTEND. Please update your configuration."
  582. #elif defined(ABS_PREHEAT_HPB_TEMP)
  583. #error "ABS_PREHEAT_HPB_TEMP is now PREHEAT_2_TEMP_BED. Please update your configuration."
  584. #elif defined(ABS_PREHEAT_FAN_SPEED)
  585. #error "ABS_PREHEAT_FAN_SPEED is now PREHEAT_2_FAN_SPEED. Please update your configuration."
  586. #endif
  587. /**
  588. * Nozzle cleaning
  589. */
  590. #if ENABLED(NOZZLE_CLEAN_FEATURE) && !HAS_BED_PROBE
  591. #error Due to internal dependencies you must have a bed probe for NOZZLE_CLEAN_FEATURE to work
  592. #endif
  593. #endif //SANITYCHECK_H