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

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