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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480
  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. * Dual Stepper Drivers
  40. */
  41. #if ENABLED(Z_DUAL_STEPPER_DRIVERS) && ENABLED(Y_DUAL_STEPPER_DRIVERS)
  42. #error You cannot have dual stepper drivers for both Y and Z.
  43. #endif
  44. /**
  45. * Progress Bar
  46. */
  47. #if ENABLED(LCD_PROGRESS_BAR)
  48. #if DISABLED(SDSUPPORT)
  49. #error LCD_PROGRESS_BAR requires SDSUPPORT.
  50. #endif
  51. #if ENABLED(DOGLCD)
  52. #error LCD_PROGRESS_BAR does not apply to graphical displays.
  53. #endif
  54. #if ENABLED(FILAMENT_LCD_DISPLAY)
  55. #error LCD_PROGRESS_BAR and FILAMENT_LCD_DISPLAY are not fully compatible. Comment out this line to use both.
  56. #endif
  57. #endif
  58. /**
  59. * Babystepping
  60. */
  61. #if ENABLED(BABYSTEPPING)
  62. #if DISABLED(ULTRA_LCD)
  63. #error BABYSTEPPING requires an LCD controller.
  64. #endif
  65. #if ENABLED(SCARA)
  66. #error BABYSTEPPING is not implemented for SCARA yet.
  67. #endif
  68. #if ENABLED(DELTA) && ENABLED(BABYSTEP_XY)
  69. #error BABYSTEPPING only implemented for Z axis on deltabots.
  70. #endif
  71. #endif
  72. /**
  73. * Filament Change with Extruder Runout Prevention
  74. */
  75. #if ENABLED(FILAMENTCHANGEENABLE) && ENABLED(EXTRUDER_RUNOUT_PREVENT)
  76. #error EXTRUDER_RUNOUT_PREVENT currently incompatible with FILAMENTCHANGE.
  77. #endif
  78. /**
  79. * Options only for EXTRUDERS > 1
  80. */
  81. #if EXTRUDERS > 1
  82. #if EXTRUDERS > 4
  83. #error The maximum number of EXTRUDERS in Marlin is 4.
  84. #endif
  85. #if ENABLED(TEMP_SENSOR_1_AS_REDUNDANT)
  86. #error EXTRUDERS must be 1 with TEMP_SENSOR_1_AS_REDUNDANT.
  87. #endif
  88. #if ENABLED(HEATERS_PARALLEL)
  89. #error EXTRUDERS must be 1 with HEATERS_PARALLEL.
  90. #endif
  91. #if ENABLED(Y_DUAL_STEPPER_DRIVERS)
  92. #error EXTRUDERS must be 1 with Y_DUAL_STEPPER_DRIVERS.
  93. #endif
  94. #if ENABLED(Z_DUAL_STEPPER_DRIVERS)
  95. #error EXTRUDERS must be 1 with Z_DUAL_STEPPER_DRIVERS.
  96. #endif
  97. #endif // EXTRUDERS > 1
  98. /**
  99. * Limited number of servos
  100. */
  101. #if NUM_SERVOS > 4
  102. #error The maximum number of SERVOS in Marlin is 4.
  103. #endif
  104. #if defined(NUM_SERVOS) && NUM_SERVOS > 0
  105. #if X_ENDSTOP_SERVO_NR >= 0 || Y_ENDSTOP_SERVO_NR >= 0 || Z_ENDSTOP_SERVO_NR >= 0
  106. #if X_ENDSTOP_SERVO_NR >= NUM_SERVOS
  107. #error X_ENDSTOP_SERVO_NR must be smaller than NUM_SERVOS.
  108. #elif Y_ENDSTOP_SERVO_NR >= NUM_SERVOS
  109. #error Y_ENDSTOP_SERVO_NR must be smaller than NUM_SERVOS.
  110. #elif Z_ENDSTOP_SERVO_NR >= NUM_SERVOS
  111. #error Z_ENDSTOP_SERVO_NR must be smaller than NUM_SERVOS.
  112. #endif
  113. #endif
  114. #endif
  115. /**
  116. * Servo deactivation depends on servo endstops
  117. */
  118. #if ENABLED(DEACTIVATE_SERVOS_AFTER_MOVE) && !HAS_SERVO_ENDSTOPS
  119. #error At least one of the ?_ENDSTOP_SERVO_NR is required for DEACTIVATE_SERVOS_AFTER_MOVE.
  120. #endif
  121. /**
  122. * Required LCD language
  123. */
  124. #if DISABLED(DOGLCD) && ENABLED(ULTRA_LCD) && DISABLED(DISPLAY_CHARSET_HD44780_JAPAN) && DISABLED(DISPLAY_CHARSET_HD44780_WESTERN) && DISABLED(DISPLAY_CHARSET_HD44780_CYRILLIC)
  125. #error You must enable either DISPLAY_CHARSET_HD44780_JAPAN or DISPLAY_CHARSET_HD44780_WESTERN or DISPLAY_CHARSET_HD44780_CYRILLIC for your LCD controller.
  126. #endif
  127. /**
  128. * Bed Heating Options - PID vs Limit Switching
  129. */
  130. #if ENABLED(PIDTEMPBED) && ENABLED(BED_LIMIT_SWITCHING)
  131. #error To use BED_LIMIT_SWITCHING you must disable PIDTEMPBED.
  132. #endif
  133. /**
  134. * Mesh Bed Leveling
  135. */
  136. #if ENABLED(MESH_BED_LEVELING)
  137. #if ENABLED(DELTA)
  138. #error MESH_BED_LEVELING does not yet support DELTA printers.
  139. #endif
  140. #if ENABLED(AUTO_BED_LEVELING_FEATURE)
  141. #error Select AUTO_BED_LEVELING_FEATURE or MESH_BED_LEVELING, not both.
  142. #endif
  143. #if MESH_NUM_X_POINTS > 7 || MESH_NUM_Y_POINTS > 7
  144. #error MESH_NUM_X_POINTS and MESH_NUM_Y_POINTS need to be less than 8.
  145. #endif
  146. #elif ENABLED(MANUAL_BED_LEVELING)
  147. #error MESH_BED_LEVELING is required for MANUAL_BED_LEVELING.
  148. #endif
  149. /**
  150. * Probes
  151. */
  152. /**
  153. * A probe needs a pin
  154. */
  155. #if (!((HAS_Z_MIN && ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN)) || HAS_Z_PROBE )) && ( ENABLED(FIX_MOUNTED_PROBE) || defined(Z_ENDSTOP_SERVO_NR) || ENABLED(MECHANICAL_PROBE) || ENABLED(Z_PROBE_SLED))
  156. #error A probe needs a pin! [Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN || HAS_Z_PROBE]
  157. #endif
  158. #if ((HAS_Z_MIN && ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN)) && HAS_Z_PROBE) && ( ENABLED(FIX_MOUNTED_PROBE) || defined(Z_ENDSTOP_SERVO_NR) || ENABLED(MECHANICAL_PROBE) || ENABLED(Z_PROBE_SLED))
  159. #error A probe should not be connected to more than one pin! [Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN || HAS_Z_PROBE]
  160. #endif
  161. /**
  162. * Require one kind of probe
  163. */
  164. #if ENABLED(AUTO_BED_LEVELING_FEATURE) && !( ENABLED(FIX_MOUNTED_PROBE) || defined(Z_ENDSTOP_SERVO_NR) || ENABLED(MECHANICAL_PROBE) || ENABLED(Z_PROBE_SLED))
  165. #error For AUTO_BED_LEVELING_FEATURE define one kind of probe! [Servo | MECHANICAL_PROBE | Z_PROBE_SLED | FIX_MOUNTED_PROBE]
  166. #endif
  167. #if ENABLED(Z_SAFE_HOMING)&& !( ENABLED(FIX_MOUNTED_PROBE) || defined(Z_ENDSTOP_SERVO_NR) || ENABLED(MECHANICAL_PROBE) || ENABLED(Z_PROBE_SLED))
  168. #error For Z_SAFE_HOMING define one kind of probe! [Servo | MECHANICAL_PROBE | Z_PROBE_SLED | FIX_MOUNTED_PROBE]
  169. #endif
  170. // To do: Fail with more than one probe defined
  171. /**
  172. * Auto Bed Leveling
  173. */
  174. #if ENABLED(AUTO_BED_LEVELING_FEATURE)
  175. /**
  176. * Require a Z min pin
  177. */
  178. #if !PIN_EXISTS(Z_MIN)
  179. #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.
  180. #if ENABLED(Z_MIN_PROBE_REPEATABILITY_TEST)
  181. #error You must have a Z_MIN or Z_PROBE endstop to enable Z_MIN_PROBE_REPEATABILITY_TEST.
  182. #else
  183. #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.
  184. #endif
  185. #endif
  186. #endif
  187. /**
  188. * Require a Z probe pin if Z_MIN_PROBE_ENDSTOP is enabled.
  189. */
  190. #if ENABLED(Z_MIN_PROBE_ENDSTOP)
  191. #if !PIN_EXISTS(Z_MIN_PROBE)
  192. #error You must have a Z_MIN_PROBE_PIN defined in your pins_XXXX.h file if you enable Z_MIN_PROBE_ENDSTOP.
  193. #endif
  194. // Forcing Servo definitions can break some hall effect sensor setups. Leaving these here for further comment.
  195. //#ifndef NUM_SERVOS
  196. // #error You must have NUM_SERVOS defined and there must be at least 1 configured to use Z_MIN_PROBE_ENDSTOP.
  197. //#endif
  198. //#if defined(NUM_SERVOS) && NUM_SERVOS < 1
  199. // #error You must have at least 1 servo defined for NUM_SERVOS to use Z_MIN_PROBE_ENDSTOP.
  200. //#endif
  201. //#if Z_ENDSTOP_SERVO_NR < 0
  202. // #error You must have Z_ENDSTOP_SERVO_NR set to at least 0 or above to use Z_MIN_PROBE_ENDSTOP.
  203. //#endif
  204. //#ifndef SERVO_ENDSTOP_ANGLES
  205. // #error You must have SERVO_ENDSTOP_ANGLES defined for Z Extend and Retract to use Z_MIN_PROBE_ENDSTOP.
  206. //#endif
  207. #endif
  208. /**
  209. * Check if Probe_Offset * Grid Points is greater than Probing Range
  210. */
  211. #if ENABLED(AUTO_BED_LEVELING_GRID)
  212. #ifndef DELTA_PROBEABLE_RADIUS
  213. // Be sure points are in the right order
  214. #if LEFT_PROBE_BED_POSITION > RIGHT_PROBE_BED_POSITION
  215. #error LEFT_PROBE_BED_POSITION must be less than RIGHT_PROBE_BED_POSITION.
  216. #elif FRONT_PROBE_BED_POSITION > BACK_PROBE_BED_POSITION
  217. #error FRONT_PROBE_BED_POSITION must be less than BACK_PROBE_BED_POSITION.
  218. #endif
  219. // Make sure probing points are reachable
  220. #if LEFT_PROBE_BED_POSITION < MIN_PROBE_X
  221. #error "The given LEFT_PROBE_BED_POSITION can't be reached by the Z probe."
  222. #elif RIGHT_PROBE_BED_POSITION > MAX_PROBE_X
  223. #error "The given RIGHT_PROBE_BED_POSITION can't be reached by the Z probe."
  224. #elif FRONT_PROBE_BED_POSITION < MIN_PROBE_Y
  225. #error "The given FRONT_PROBE_BED_POSITION can't be reached by the Z probe."
  226. #elif BACK_PROBE_BED_POSITION > MAX_PROBE_Y
  227. #error "The given BACK_PROBE_BED_POSITION can't be reached by the Z probe."
  228. #endif
  229. #endif
  230. #else // !AUTO_BED_LEVELING_GRID
  231. // Check the triangulation points
  232. #if ABL_PROBE_PT_1_X < MIN_PROBE_X || ABL_PROBE_PT_1_X > MAX_PROBE_X
  233. #error "The given ABL_PROBE_PT_1_X can't be reached by the Z probe."
  234. #elif ABL_PROBE_PT_2_X < MIN_PROBE_X || ABL_PROBE_PT_2_X > MAX_PROBE_X
  235. #error "The given ABL_PROBE_PT_2_X can't be reached by the Z probe."
  236. #elif ABL_PROBE_PT_3_X < MIN_PROBE_X || ABL_PROBE_PT_3_X > MAX_PROBE_X
  237. #error "The given ABL_PROBE_PT_3_X can't be reached by the Z probe."
  238. #elif ABL_PROBE_PT_1_Y < MIN_PROBE_Y || ABL_PROBE_PT_1_Y > MAX_PROBE_Y
  239. #error "The given ABL_PROBE_PT_1_Y can't be reached by the Z probe."
  240. #elif ABL_PROBE_PT_2_Y < MIN_PROBE_Y || ABL_PROBE_PT_2_Y > MAX_PROBE_Y
  241. #error "The given ABL_PROBE_PT_2_Y can't be reached by the Z probe."
  242. #elif ABL_PROBE_PT_3_Y < MIN_PROBE_Y || ABL_PROBE_PT_3_Y > MAX_PROBE_Y
  243. #error "The given ABL_PROBE_PT_3_Y can't be reached by the Z probe."
  244. #endif
  245. #endif // !AUTO_BED_LEVELING_GRID
  246. #endif // AUTO_BED_LEVELING_FEATURE
  247. /**
  248. * Filament Width Sensor
  249. */
  250. #if ENABLED(FILAMENT_WIDTH_SENSOR) && !HAS_FILAMENT_WIDTH_SENSOR
  251. #error FILAMENT_WIDTH_SENSOR requires a FILWIDTH_PIN to be defined.
  252. #endif
  253. /**
  254. * ULTIPANEL encoder
  255. */
  256. #if ENABLED(ULTIPANEL) && DISABLED(NEWPANEL) && DISABLED(SR_LCD_2W_NL) && !defined(SHIFT_CLK)
  257. #error ULTIPANEL requires some kind of encoder.
  258. #endif
  259. #if ENCODER_PULSES_PER_STEP < 0
  260. #error ENCODER_PULSES_PER_STEP should not be negative, use REVERSE_MENU_DIRECTION instead
  261. #endif
  262. /**
  263. * Delta has limited bed leveling options
  264. */
  265. #if ENABLED(DELTA)
  266. #if ENABLED(AUTO_BED_LEVELING_FEATURE)
  267. #if DISABLED(AUTO_BED_LEVELING_GRID)
  268. #error Only AUTO_BED_LEVELING_GRID is supported with DELTA.
  269. #endif
  270. #if ENABLED(Z_PROBE_SLED)
  271. #error You cannot use Z_PROBE_SLED with DELTA.
  272. #endif
  273. #endif
  274. #endif
  275. /**
  276. * Allen Key Z probe requires Auto Bed Leveling grid and Delta
  277. */
  278. #if ENABLED(Z_PROBE_ALLEN_KEY) && !(ENABLED(AUTO_BED_LEVELING_GRID) && ENABLED(DELTA))
  279. #error Invalid use of Z_PROBE_ALLEN_KEY.
  280. #endif
  281. /**
  282. * Dual X Carriage requirements
  283. */
  284. #if ENABLED(DUAL_X_CARRIAGE)
  285. #if EXTRUDERS == 1 || ENABLED(COREXY) \
  286. || !HAS_X2_ENABLE || !HAS_X2_STEP || !HAS_X2_DIR \
  287. || !defined(X2_HOME_POS) || !defined(X2_MIN_POS) || !defined(X2_MAX_POS) \
  288. || !HAS_X_MAX
  289. #error Missing or invalid definitions for DUAL_X_CARRIAGE mode.
  290. #endif
  291. #if X_HOME_DIR != -1 || X2_HOME_DIR != 1
  292. #error Please use canonical x-carriage assignment.
  293. #endif
  294. #endif // DUAL_X_CARRIAGE
  295. /**
  296. * Make sure auto fan pins don't conflict with the fan pin
  297. */
  298. #if HAS_AUTO_FAN
  299. #if HAS_FAN0
  300. #if EXTRUDER_0_AUTO_FAN_PIN == FAN_PIN
  301. #error You cannot set EXTRUDER_0_AUTO_FAN_PIN equal to FAN_PIN.
  302. #elif EXTRUDER_1_AUTO_FAN_PIN == FAN_PIN
  303. #error You cannot set EXTRUDER_1_AUTO_FAN_PIN equal to FAN_PIN.
  304. #elif EXTRUDER_2_AUTO_FAN_PIN == FAN_PIN
  305. #error You cannot set EXTRUDER_2_AUTO_FAN_PIN equal to FAN_PIN.
  306. #elif EXTRUDER_3_AUTO_FAN_PIN == FAN_PIN
  307. #error You cannot set EXTRUDER_3_AUTO_FAN_PIN equal to FAN_PIN.
  308. #endif
  309. #endif
  310. #endif
  311. #if HAS_FAN0 && CONTROLLERFAN_PIN == FAN_PIN
  312. #error You cannot set CONTROLLERFAN_PIN equal to FAN_PIN.
  313. #endif
  314. #if HAS_CONTROLLERFAN
  315. #if EXTRUDER_0_AUTO_FAN_PIN == CONTROLLERFAN_PIN
  316. #error You cannot set EXTRUDER_0_AUTO_FAN_PIN equal to CONTROLLERFAN_PIN.
  317. #elif EXTRUDER_1_AUTO_FAN_PIN == CONTROLLERFAN_PIN
  318. #error You cannot set EXTRUDER_1_AUTO_FAN_PIN equal to CONTROLLERFAN_PIN.
  319. #elif EXTRUDER_2_AUTO_FAN_PIN == CONTROLLERFAN_PIN
  320. #error You cannot set EXTRUDER_2_AUTO_FAN_PIN equal to CONTROLLERFAN_PIN.
  321. #elif EXTRUDER_3_AUTO_FAN_PIN == CONTROLLERFAN_PIN
  322. #error You cannot set EXTRUDER_3_AUTO_FAN_PIN equal to CONTROLLERFAN_PIN.
  323. #endif
  324. #endif
  325. /**
  326. * Test Heater, Temp Sensor, and Extruder Pins; Sensor Type must also be set.
  327. */
  328. #if EXTRUDERS > 3
  329. #if TEMP_SENSOR_3 == 0
  330. #error TEMP_SENSOR_3 is required with 4 EXTRUDERS.
  331. #elif !HAS_HEATER_3
  332. #error HEATER_3_PIN not defined for this board.
  333. #elif !PIN_EXISTS(TEMP_3)
  334. #error TEMP_3_PIN not defined for this board.
  335. #elif !PIN_EXISTS(E3_STEP) || !PIN_EXISTS(E3_DIR) || !PIN_EXISTS(E3_ENABLE)
  336. #error E3_STEP_PIN, E3_DIR_PIN, or E3_ENABLE_PIN not defined for this board.
  337. #endif
  338. #elif EXTRUDERS > 2
  339. #if TEMP_SENSOR_2 == 0
  340. #error TEMP_SENSOR_2 is required with 3 or more EXTRUDERS.
  341. #elif !HAS_HEATER_2
  342. #error HEATER_2_PIN not defined for this board.
  343. #elif !PIN_EXISTS(TEMP_2)
  344. #error TEMP_2_PIN not defined for this board.
  345. #elif !PIN_EXISTS(E2_STEP) || !PIN_EXISTS(E2_DIR) || !PIN_EXISTS(E2_ENABLE)
  346. #error E2_STEP_PIN, E2_DIR_PIN, or E2_ENABLE_PIN not defined for this board.
  347. #endif
  348. #elif EXTRUDERS > 1
  349. #if TEMP_SENSOR_1 == 0
  350. #error TEMP_SENSOR_1 is required with 2 or more EXTRUDERS.
  351. #elif !PIN_EXISTS(TEMP_1)
  352. #error TEMP_1_PIN not defined for this board.
  353. #elif !PIN_EXISTS(E1_STEP) || !PIN_EXISTS(E1_DIR) || !PIN_EXISTS(E1_ENABLE)
  354. #error E1_STEP_PIN, E1_DIR_PIN, or E1_ENABLE_PIN not defined for this board.
  355. #endif
  356. #endif
  357. #if EXTRUDERS > 1 || ENABLED(HEATERS_PARALLEL)
  358. #if !HAS_HEATER_1
  359. #error HEATER_1_PIN not defined for this board.
  360. #endif
  361. #endif
  362. #if ENABLED(TEMP_SENSOR_1_AS_REDUNDANT) && TEMP_SENSOR_1 == 0
  363. #error TEMP_SENSOR_1 is required with TEMP_SENSOR_1_AS_REDUNDANT.
  364. #endif
  365. #if !HAS_HEATER_0
  366. #error HEATER_0_PIN not defined for this board.
  367. #elif !PIN_EXISTS(TEMP_0)
  368. #error TEMP_0_PIN not defined for this board.
  369. #elif !PIN_EXISTS(E0_STEP) || !PIN_EXISTS(E0_DIR) || !PIN_EXISTS(E0_ENABLE)
  370. #error E0_STEP_PIN, E0_DIR_PIN, or E0_ENABLE_PIN not defined for this board.
  371. #elif TEMP_SENSOR_0 == 0
  372. #error TEMP_SENSOR_0 is required.
  373. #endif
  374. /**
  375. * Endstops
  376. */
  377. #if DISABLED(USE_XMIN_PLUG) && DISABLED(USE_XMAX_PLUG) && !(ENABLED(Z_DUAL_ENDSTOPS) && Z2_USE_ENDSTOP >= _XMAX_ && Z2_USE_ENDSTOP <= _XMIN_)
  378. #error You must enable USE_XMIN_PLUG or USE_XMAX_PLUG
  379. #elif DISABLED(USE_YMIN_PLUG) && DISABLED(USE_YMAX_PLUG) && !(ENABLED(Z_DUAL_ENDSTOPS) && Z2_USE_ENDSTOP >= _YMAX_ && Z2_USE_ENDSTOP <= _YMIN_)
  380. #error You must enable USE_YMIN_PLUG or USE_YMAX_PLUG
  381. #elif DISABLED(USE_ZMIN_PLUG) && DISABLED(USE_ZMAX_PLUG) && !(ENABLED(Z_DUAL_ENDSTOPS) && Z2_USE_ENDSTOP >= _ZMAX_ && Z2_USE_ENDSTOP <= _ZMIN_)
  382. #error You must enable USE_ZMIN_PLUG or USE_ZMAX_PLUG
  383. #elif ENABLED(Z_DUAL_ENDSTOPS) && !Z2_USE_ENDSTOP
  384. #error You must set Z2_USE_ENDSTOP with Z_DUAL_ENDSTOPS
  385. #endif
  386. /**
  387. * Warnings for old configurations
  388. */
  389. #if WATCH_TEMP_PERIOD > 500
  390. #error WATCH_TEMP_PERIOD now uses seconds instead of milliseconds.
  391. #elif DISABLED(THERMAL_PROTECTION_HOTENDS) && (defined(WATCH_TEMP_PERIOD) || defined(THERMAL_PROTECTION_PERIOD))
  392. #error Thermal Runaway Protection for hotends is now enabled with THERMAL_PROTECTION_HOTENDS.
  393. #elif DISABLED(THERMAL_PROTECTION_BED) && defined(THERMAL_PROTECTION_BED_PERIOD)
  394. #error Thermal Runaway Protection for the bed is now enabled with THERMAL_PROTECTION_BED.
  395. #elif ENABLED(COREXZ) && ENABLED(Z_LATE_ENABLE)
  396. #error "Z_LATE_ENABLE can't be used with COREXZ."
  397. #elif defined(X_HOME_RETRACT_MM)
  398. #error [XYZ]_HOME_RETRACT_MM settings have been renamed [XYZ]_HOME_BUMP_MM.
  399. #elif defined(PROBE_SERVO_DEACTIVATION_DELAY)
  400. #error PROBE_SERVO_DEACTIVATION_DELAY has been replaced with DEACTIVATE_SERVOS_AFTER_MOVE and SERVO_DEACTIVATION_DELAY.
  401. #elif defined(BEEPER)
  402. #error BEEPER is now BEEPER_PIN. Please update your pins definitions.
  403. #elif defined(SDCARDDETECT)
  404. #error SDCARDDETECT is now SD_DETECT_PIN. Please update your pins definitions.
  405. #elif defined(SDCARDDETECTINVERTED)
  406. #error SDCARDDETECTINVERTED is now SD_DETECT_INVERTED. Please update your configuration.
  407. #elif defined(BTENABLED)
  408. #error BTENABLED is now BLUETOOTH. Please update your configuration.
  409. #elif defined(CUSTOM_MENDEL_NAME)
  410. #error CUSTOM_MENDEL_NAME is now CUSTOM_MACHINE_NAME. Please update your configuration.
  411. #elif defined(HAS_AUTOMATIC_VERSIONING)
  412. #error HAS_AUTOMATIC_VERSIONING is now USE_AUTOMATIC_VERSIONING. Please update your configuration.
  413. #elif defined(ENABLE_AUTO_BED_LEVELING)
  414. #error ENABLE_AUTO_BED_LEVELING is now AUTO_BED_LEVELING_FEATURE. Please update your configuration.
  415. #elif defined(SDSLOW)
  416. #error SDSLOW deprecated. Set SPI_SPEED to SPI_HALF_SPEED instead.
  417. #elif defined(SDEXTRASLOW)
  418. #error SDEXTRASLOW deprecated. Set SPI_SPEED to SPI_QUARTER_SPEED instead.
  419. #elif defined(Z_RAISE_BEFORE_HOMING)
  420. #error Z_RAISE_BEFORE_HOMING is deprecated. Use MIN_Z_HEIGHT_FOR_HOMING instead.
  421. #elif defined(FILAMENT_SENSOR)
  422. #error FILAMENT_SENSOR is deprecated. Use FILAMENT_WIDTH_SENSOR instead.
  423. #elif defined(DISABLE_MAX_ENDSTOPS) || defined(DISABLE_MIN_ENDSTOPS)
  424. #error DISABLE_MAX_ENDSTOPS and DISABLE_MIN_ENDSTOPS deprecated. Use individual USE_*_PLUG options instead.
  425. #elif ENABLED(Z_DUAL_ENDSTOPS) && !defined(Z2_USE_ENDSTOP)
  426. #error Z_DUAL_ENDSTOPS settings are simplified. Just set Z2_USE_ENDSTOP to the endstop you want to repurpose for Z2
  427. #endif
  428. #endif //SANITYCHECK_H