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

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