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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609
  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. * Require gcc 4.7 or newer (first included with Arduino 1.6.8) for C++11 features.
  31. */
  32. #if __cplusplus < 201103L
  33. #error "Marlin requires C++11 support (gcc >= 4.7, Arduino IDE >= 1.6.8). Please upgrade your toolchain."
  34. #endif
  35. /**
  36. * We try our best to include sanity checks for all changed configuration
  37. * directives because users have a tendency to use outdated config files with
  38. * the bleeding-edge source code, but sometimes this is not enough. This check
  39. * forces a minimum config file revision. Otherwise Marlin will not build.
  40. */
  41. #if ! defined(CONFIGURATION_H_VERSION) || CONFIGURATION_H_VERSION < REQUIRED_CONFIGURATION_H_VERSION
  42. #error "You are using an old Configuration.h file, update it before building Marlin."
  43. #endif
  44. #if ! defined(CONFIGURATION_ADV_H_VERSION) || CONFIGURATION_ADV_H_VERSION < REQUIRED_CONFIGURATION_ADV_H_VERSION
  45. #error "You are using an old Configuration_adv.h file, update it before building Marlin."
  46. #endif
  47. /**
  48. * Warnings for old configurations
  49. */
  50. #if !defined(X_BED_SIZE) || !defined(Y_BED_SIZE)
  51. #error "X_BED_SIZE and Y_BED_SIZE are now required! Please update your configuration."
  52. #elif WATCH_TEMP_PERIOD > 500
  53. #error "WATCH_TEMP_PERIOD now uses seconds instead of milliseconds."
  54. #elif DISABLED(THERMAL_PROTECTION_HOTENDS) && (defined(WATCH_TEMP_PERIOD) || defined(THERMAL_PROTECTION_PERIOD))
  55. #error "Thermal Runaway Protection for hotends is now enabled with THERMAL_PROTECTION_HOTENDS."
  56. #elif DISABLED(THERMAL_PROTECTION_BED) && defined(THERMAL_PROTECTION_BED_PERIOD)
  57. #error "Thermal Runaway Protection for the bed is now enabled with THERMAL_PROTECTION_BED."
  58. #elif (CORE_IS_XZ || CORE_IS_YZ) && ENABLED(Z_LATE_ENABLE)
  59. #error "Z_LATE_ENABLE can't be used with COREXZ, COREZX, COREYZ, or COREZY."
  60. #elif defined(X_HOME_RETRACT_MM)
  61. #error "[XYZ]_HOME_RETRACT_MM settings have been renamed [XYZ]_HOME_BUMP_MM."
  62. #elif defined(SDCARDDETECTINVERTED)
  63. #error "SDCARDDETECTINVERTED is now SD_DETECT_INVERTED. Please update your configuration."
  64. #elif defined(BTENABLED)
  65. #error "BTENABLED is now BLUETOOTH. Please update your configuration."
  66. #elif defined(CUSTOM_MENDEL_NAME)
  67. #error "CUSTOM_MENDEL_NAME is now CUSTOM_MACHINE_NAME. Please update your configuration."
  68. #elif defined(HAS_AUTOMATIC_VERSIONING)
  69. #error "HAS_AUTOMATIC_VERSIONING is now USE_AUTOMATIC_VERSIONING. Please update your configuration."
  70. #elif defined(SDSLOW)
  71. #error "SDSLOW deprecated. Set SPI_SPEED to SPI_HALF_SPEED instead."
  72. #elif defined(SDEXTRASLOW)
  73. #error "SDEXTRASLOW deprecated. Set SPI_SPEED to SPI_QUARTER_SPEED instead."
  74. #elif defined(FILAMENT_SENSOR)
  75. #error "FILAMENT_SENSOR is deprecated. Use FILAMENT_WIDTH_SENSOR instead."
  76. #elif defined(DISABLE_MAX_ENDSTOPS) || defined(DISABLE_MIN_ENDSTOPS)
  77. #error "DISABLE_MAX_ENDSTOPS and DISABLE_MIN_ENDSTOPS deprecated. Use individual USE_*_PLUG options instead."
  78. #elif defined(LANGUAGE_INCLUDE)
  79. #error "LANGUAGE_INCLUDE has been replaced by LCD_LANGUAGE. Please update your configuration."
  80. #elif defined(EXTRUDER_OFFSET_X) || defined(EXTRUDER_OFFSET_Y)
  81. #error "EXTRUDER_OFFSET_[XY] is deprecated. Use HOTEND_OFFSET_[XY] instead."
  82. #elif defined(PID_PARAMS_PER_EXTRUDER)
  83. #error "PID_PARAMS_PER_EXTRUDER is deprecated. Use PID_PARAMS_PER_HOTEND instead."
  84. #elif defined(EXTRUDER_WATTS) || defined(BED_WATTS)
  85. #error "EXTRUDER_WATTS and BED_WATTS are deprecated. Remove them from your configuration."
  86. #elif defined(SERVO_ENDSTOP_ANGLES)
  87. #error "SERVO_ENDSTOP_ANGLES is deprecated. Use Z_SERVO_ANGLES instead."
  88. #elif defined(X_ENDSTOP_SERVO_NR) || defined(Y_ENDSTOP_SERVO_NR)
  89. #error "X_ENDSTOP_SERVO_NR and Y_ENDSTOP_SERVO_NR are deprecated and should be removed."
  90. #elif defined(DEFAULT_XYJERK)
  91. #error "DEFAULT_XYJERK is deprecated. Use DEFAULT_XJERK and DEFAULT_YJERK instead."
  92. #elif defined(XY_TRAVEL_SPEED)
  93. #error "XY_TRAVEL_SPEED is deprecated. Use XY_PROBE_SPEED instead."
  94. #elif defined(PROBE_SERVO_DEACTIVATION_DELAY)
  95. #error "PROBE_SERVO_DEACTIVATION_DELAY is deprecated. Use DEACTIVATE_SERVOS_AFTER_MOVE instead."
  96. #elif defined(SERVO_DEACTIVATION_DELAY)
  97. #error "SERVO_DEACTIVATION_DELAY is deprecated. Use SERVO_DELAY instead."
  98. #elif ENABLED(FILAMENTCHANGEENABLE)
  99. #error "FILAMENTCHANGEENABLE is now ADVANCED_PAUSE_FEATURE. Please update your configuration."
  100. #elif ENABLED(FILAMENT_CHANGE_FEATURE)
  101. #error "FILAMENT_CHANGE_FEATURE is now ADVANCED_PAUSE_FEATURE. Please update your configuration."
  102. #elif defined(FILAMENT_CHANGE_X_POS) || defined(FILAMENT_CHANGE_Y_POS)
  103. #error "FILAMENT_CHANGE_[XY]_POS is now set with NOZZLE_PARK_POINT. Please update your configuration."
  104. #elif defined(FILAMENT_CHANGE_Z_ADD)
  105. #error "FILAMENT_CHANGE_Z_ADD is now set with NOZZLE_PARK_POINT. Please update your configuration."
  106. #elif defined(FILAMENT_CHANGE_XY_FEEDRATE)
  107. #error "FILAMENT_CHANGE_XY_FEEDRATE is now NOZZLE_PARK_XY_FEEDRATE. Please update your configuration."
  108. #elif defined(FILAMENT_CHANGE_Z_FEEDRATE)
  109. #error "FILAMENT_CHANGE_Z_FEEDRATE is now NOZZLE_PARK_Z_FEEDRATE. Please update your configuration."
  110. #elif defined(PAUSE_PARK_X_POS) || defined(PAUSE_PARK_Y_POS)
  111. #error "PAUSE_PARK_[XY]_POS is now set with NOZZLE_PARK_POINT. Please update your configuration."
  112. #elif defined(PAUSE_PARK_Z_ADD)
  113. #error "PAUSE_PARK_Z_ADD is now set with NOZZLE_PARK_POINT. Please update your configuration."
  114. #elif defined(PAUSE_PARK_XY_FEEDRATE)
  115. #error "PAUSE_PARK_XY_FEEDRATE is now NOZZLE_PARK_XY_FEEDRATE. Please update your configuration."
  116. #elif defined(PAUSE_PARK_Z_FEEDRATE)
  117. #error "PAUSE_PARK_Z_FEEDRATE is now NOZZLE_PARK_Z_FEEDRATE. Please update your configuration."
  118. #elif defined(FILAMENT_CHANGE_RETRACT_FEEDRATE)
  119. #error "FILAMENT_CHANGE_RETRACT_FEEDRATE is now PAUSE_PARK_RETRACT_FEEDRATE. Please update your configuration."
  120. #elif defined(FILAMENT_CHANGE_RETRACT_LENGTH)
  121. #error "FILAMENT_CHANGE_RETRACT_LENGTH is now PAUSE_PARK_RETRACT_LENGTH. Please update your configuration."
  122. #elif defined(FILAMENT_CHANGE_EXTRUDE_FEEDRATE)
  123. #error "FILAMENT_CHANGE_EXTRUDE_FEEDRATE is now ADVANCED_PAUSE_EXTRUDE_FEEDRATE. Please update your configuration."
  124. #elif defined(FILAMENT_CHANGE_EXTRUDE_LENGTH)
  125. #error "FILAMENT_CHANGE_EXTRUDE_LENGTH is now ADVANCED_PAUSE_EXTRUDE_LENGTH. Please update your configuration."
  126. #elif defined(FILAMENT_CHANGE_NOZZLE_TIMEOUT)
  127. #error "FILAMENT_CHANGE_NOZZLE_TIMEOUT is now PAUSE_PARK_NOZZLE_TIMEOUT. Please update your configuration."
  128. #elif defined(FILAMENT_CHANGE_NUMBER_OF_ALERT_BEEPS)
  129. #error "FILAMENT_CHANGE_NUMBER_OF_ALERT_BEEPS is now FILAMENT_CHANGE_ALERT_BEEPS. Please update your configuration."
  130. #elif ENABLED(FILAMENT_CHANGE_NO_STEPPER_TIMEOUT)
  131. #error "FILAMENT_CHANGE_NO_STEPPER_TIMEOUT is now PAUSE_PARK_NO_STEPPER_TIMEOUT. Please update your configuration."
  132. #elif defined(PLA_PREHEAT_HOTEND_TEMP)
  133. #error "PLA_PREHEAT_HOTEND_TEMP is now PREHEAT_1_TEMP_HOTEND. Please update your configuration."
  134. #elif defined(PLA_PREHEAT_HPB_TEMP)
  135. #error "PLA_PREHEAT_HPB_TEMP is now PREHEAT_1_TEMP_BED. Please update your configuration."
  136. #elif defined(PLA_PREHEAT_FAN_SPEED)
  137. #error "PLA_PREHEAT_FAN_SPEED is now PREHEAT_1_FAN_SPEED. Please update your configuration."
  138. #elif defined(ABS_PREHEAT_HOTEND_TEMP)
  139. #error "ABS_PREHEAT_HOTEND_TEMP is now PREHEAT_2_TEMP_HOTEND. Please update your configuration."
  140. #elif defined(ABS_PREHEAT_HPB_TEMP)
  141. #error "ABS_PREHEAT_HPB_TEMP is now PREHEAT_2_TEMP_BED. Please update your configuration."
  142. #elif defined(ABS_PREHEAT_FAN_SPEED)
  143. #error "ABS_PREHEAT_FAN_SPEED is now PREHEAT_2_FAN_SPEED. Please update your configuration."
  144. #elif defined(ENDSTOPS_ONLY_FOR_HOMING)
  145. #error "ENDSTOPS_ONLY_FOR_HOMING is deprecated. Use (disable) ENDSTOPS_ALWAYS_ON_DEFAULT instead."
  146. #elif defined(HOMING_FEEDRATE)
  147. #error "HOMING_FEEDRATE is deprecated. Set individual rates with HOMING_FEEDRATE_(XY|Z|E) instead."
  148. #elif defined(MANUAL_HOME_POSITIONS)
  149. #error "MANUAL_HOME_POSITIONS is deprecated. Set MANUAL_[XYZ]_HOME_POS as-needed instead."
  150. #elif defined(PID_ADD_EXTRUSION_RATE)
  151. #error "PID_ADD_EXTRUSION_RATE is now PID_EXTRUSION_SCALING and is DISABLED by default. Are you sure you want to use this option? Please update your configuration."
  152. #elif defined(Z_RAISE_BEFORE_HOMING)
  153. #error "Z_RAISE_BEFORE_HOMING is now Z_HOMING_HEIGHT. Please update your configuration."
  154. #elif defined(MIN_Z_HEIGHT_FOR_HOMING)
  155. #error "MIN_Z_HEIGHT_FOR_HOMING is now Z_HOMING_HEIGHT. Please update your configuration."
  156. #elif defined(Z_RAISE_BEFORE_PROBING) || defined(Z_RAISE_AFTER_PROBING)
  157. #error "Z_RAISE_(BEFORE|AFTER)_PROBING are deprecated. Use Z_CLEARANCE_DEPLOY_PROBE instead."
  158. #elif defined(Z_RAISE_PROBE_DEPLOY_STOW) || defined(Z_RAISE_BETWEEN_PROBINGS)
  159. #error "Z_RAISE_PROBE_DEPLOY_STOW and Z_RAISE_BETWEEN_PROBINGS are now Z_CLEARANCE_DEPLOY_PROBE and Z_CLEARANCE_BETWEEN_PROBES. Please update your configuration."
  160. #elif defined(Z_PROBE_DEPLOY_HEIGHT) || defined(Z_PROBE_TRAVEL_HEIGHT)
  161. #error "Z_PROBE_DEPLOY_HEIGHT and Z_PROBE_TRAVEL_HEIGHT are now Z_CLEARANCE_DEPLOY_PROBE and Z_CLEARANCE_BETWEEN_PROBES. Please update your configuration."
  162. #elif defined(MANUAL_BED_LEVELING)
  163. #error "MANUAL_BED_LEVELING is now LCD_BED_LEVELING. Please update your configuration."
  164. #elif defined(MESH_HOME_SEARCH_Z)
  165. #error "MESH_HOME_SEARCH_Z is now LCD_PROBE_Z_RANGE. Please update your configuration."
  166. #elif defined(MANUAL_PROBE_Z_RANGE)
  167. #error "MANUAL_PROBE_Z_RANGE is now LCD_PROBE_Z_RANGE. Please update your configuration."
  168. #elif !defined(MIN_STEPS_PER_SEGMENT)
  169. #error Please replace "const int dropsegments" with "#define MIN_STEPS_PER_SEGMENT" (and increase by 1) in Configuration_adv.h.
  170. #elif defined(PREVENT_DANGEROUS_EXTRUDE)
  171. #error "PREVENT_DANGEROUS_EXTRUDE is now PREVENT_COLD_EXTRUSION. Please update your configuration."
  172. #elif defined(SCARA)
  173. #error "SCARA is now MORGAN_SCARA. Please update your configuration."
  174. #elif defined(ENABLE_AUTO_BED_LEVELING)
  175. #error "ENABLE_AUTO_BED_LEVELING is deprecated. Specify AUTO_BED_LEVELING_LINEAR, AUTO_BED_LEVELING_BILINEAR, or AUTO_BED_LEVELING_3POINT."
  176. #elif defined(AUTO_BED_LEVELING_FEATURE)
  177. #error "AUTO_BED_LEVELING_FEATURE is deprecated. Specify AUTO_BED_LEVELING_LINEAR, AUTO_BED_LEVELING_BILINEAR, or AUTO_BED_LEVELING_3POINT."
  178. #elif defined(ABL_GRID_POINTS)
  179. #error "ABL_GRID_POINTS is now GRID_MAX_POINTS_X and GRID_MAX_POINTS_Y. Please update your configuration."
  180. #elif defined(ABL_GRID_POINTS_X) || defined(ABL_GRID_POINTS_Y)
  181. #error "ABL_GRID_POINTS_[XY] is now GRID_MAX_POINTS_[XY]. Please update your configuration."
  182. #elif defined(ABL_GRID_MAX_POINTS_X) || defined(ABL_GRID_MAX_POINTS_Y)
  183. #error "ABL_GRID_MAX_POINTS_[XY] is now GRID_MAX_POINTS_[XY]. Please update your configuration."
  184. #elif defined(MESH_NUM_X_POINTS) || defined(MESH_NUM_Y_POINTS)
  185. #error "MESH_NUM_[XY]_POINTS is now GRID_MAX_POINTS_[XY]. Please update your configuration."
  186. #elif defined(UBL_MESH_NUM_X_POINTS) || defined(UBL_MESH_NUM_Y_POINTS)
  187. #error "UBL_MESH_NUM_[XY]_POINTS is now GRID_MAX_POINTS_[XY]. Please update your configuration."
  188. #elif defined(UBL_G26_MESH_VALIDATION)
  189. #error "UBL_G26_MESH_VALIDATION is now G26_MESH_VALIDATION. Please update your configuration."
  190. #elif defined(UBL_MESH_EDIT_ENABLED)
  191. #error "UBL_MESH_EDIT_ENABLED is now G26_MESH_VALIDATION. Please update your configuration."
  192. #elif defined(UBL_MESH_EDITING)
  193. #error "UBL_MESH_EDITING is now G26_MESH_VALIDATION. Please update your configuration."
  194. #elif defined(BLTOUCH_HEATERS_OFF)
  195. #error "BLTOUCH_HEATERS_OFF is now PROBING_HEATERS_OFF. Please update your configuration."
  196. #elif defined(BEEPER)
  197. #error "BEEPER is now BEEPER_PIN. Please update your pins definitions."
  198. #elif defined(SDCARDDETECT)
  199. #error "SDCARDDETECT is now SD_DETECT_PIN. Please update your pins definitions."
  200. #elif defined(STAT_LED_RED) || defined(STAT_LED_BLUE)
  201. #error "STAT_LED_RED/STAT_LED_BLUE are now STAT_LED_RED_PIN/STAT_LED_BLUE_PIN. Please update your pins definitions."
  202. #elif defined(LCD_PIN_BL)
  203. #error "LCD_PIN_BL is now LCD_BACKLIGHT_PIN. Please update your pins definitions."
  204. #elif defined(LCD_PIN_RESET)
  205. #error "LCD_PIN_RESET is now LCD_RESET_PIN. Please update your pins definitions."
  206. #elif defined(EXTRUDER_0_AUTO_FAN_PIN) || defined(EXTRUDER_1_AUTO_FAN_PIN) || defined(EXTRUDER_2_AUTO_FAN_PIN) || defined(EXTRUDER_3_AUTO_FAN_PIN)
  207. #error "EXTRUDER_[0123]_AUTO_FAN_PIN is now E[0123]_AUTO_FAN_PIN. Please update your Configuration_adv.h."
  208. #elif defined(min_software_endstops) || defined(max_software_endstops)
  209. #error "(min|max)_software_endstops are now (MIN|MAX)_SOFTWARE_ENDSTOPS. Please update your configuration."
  210. #elif ENABLED(Z_PROBE_SLED) && defined(SLED_PIN)
  211. #error "Replace SLED_PIN with SOL1_PIN (applies to both Z_PROBE_SLED and SOLENOID_PROBE)."
  212. #elif defined(CONTROLLERFAN_PIN)
  213. #error "CONTROLLERFAN_PIN is now CONTROLLER_FAN_PIN, enabled with USE_CONTROLLER_FAN. Please update your Configuration_adv.h."
  214. #elif defined(MIN_RETRACT)
  215. #error "MIN_RETRACT is now MIN_AUTORETRACT and MAX_AUTORETRACT. Please update your Configuration_adv.h."
  216. #elif defined(ADVANCE)
  217. #error "ADVANCE was removed in Marlin 1.1.6. Please use LIN_ADVANCE."
  218. #elif defined(NEOPIXEL_RGBW_LED)
  219. #error "NEOPIXEL_RGBW_LED is now NEOPIXEL_LED. Please update your configuration."
  220. #elif defined(UBL_MESH_INSET)
  221. #error "UBL_MESH_INSET is now just MESH_INSET. Please update your configuration."
  222. #elif defined(UBL_MESH_MIN_X) || defined(UBL_MESH_MIN_Y) || defined(UBL_MESH_MAX_X) || defined(UBL_MESH_MAX_Y)
  223. #error "UBL_MESH_(MIN|MAX)_[XY] is now just MESH_(MIN|MAX)_[XY]. Please update your configuration."
  224. #elif defined(ENABLE_MESH_EDIT_GFX_OVERLAY)
  225. #error "ENABLE_MESH_EDIT_GFX_OVERLAY is now MESH_EDIT_GFX_OVERLAY. Please update your configuration."
  226. #elif defined(BABYSTEP_ZPROBE_GFX_REVERSE)
  227. #error "BABYSTEP_ZPROBE_GFX_REVERSE is now set by OVERLAY_GFX_REVERSE. Please update your configurations."
  228. #elif defined(UBL_GRANULAR_SEGMENTATION_FOR_CARTESIAN)
  229. #error "UBL_GRANULAR_SEGMENTATION_FOR_CARTESIAN is now SEGMENT_LEVELED_MOVES. Please update your configuration."
  230. #elif HAS_PID_HEATING && (defined(K1) || !defined(PID_K1))
  231. #error "K1 is now PID_K1. Please update your configuration."
  232. #elif defined(PROBE_DOUBLE_TOUCH)
  233. #error "PROBE_DOUBLE_TOUCH is now MULTIPLE_PROBING. Please update your configuration."
  234. #elif defined(ANET_KEYPAD_LCD)
  235. #error "ANET_KEYPAD_LCD is now ZONESTAR_LCD. Please update your configuration."
  236. #elif defined(MEASURED_LOWER_LIMIT) || defined(MEASURED_UPPER_LIMIT)
  237. #error "MEASURED_(UPPER|LOWER)_LIMIT is now FILWIDTH_ERROR_MARGIN. Please update your configuration."
  238. #elif defined(AUTOMATIC_CURRENT_CONTROL)
  239. #error "AUTOMATIC_CURRENT_CONTROL is now MONITOR_DRIVER_STATUS. Please update your configuration."
  240. #endif
  241. /**
  242. * Marlin release, version and default string
  243. */
  244. #ifndef SHORT_BUILD_VERSION
  245. #error "SHORT_BUILD_VERSION must be specified."
  246. #elif !defined(DETAILED_BUILD_VERSION)
  247. #error "BUILD_VERSION must be specified."
  248. #elif !defined(STRING_DISTRIBUTION_DATE)
  249. #error "STRING_DISTRIBUTION_DATE must be specified."
  250. #elif !defined(PROTOCOL_VERSION)
  251. #error "PROTOCOL_VERSION must be specified."
  252. #elif !defined(MACHINE_NAME)
  253. #error "MACHINE_NAME must be specified."
  254. #elif !defined(SOURCE_CODE_URL)
  255. #error "SOURCE_CODE_URL must be specified."
  256. #elif !defined(DEFAULT_MACHINE_UUID)
  257. #error "DEFAULT_MACHINE_UUID must be specified."
  258. #elif !defined(WEBSITE_URL)
  259. #error "WEBSITE_URL must be specified."
  260. #endif
  261. /**
  262. * Serial
  263. */
  264. #ifndef USBCON
  265. #if ENABLED(SERIAL_XON_XOFF) && RX_BUFFER_SIZE < 1024
  266. #error "SERIAL_XON_XOFF requires RX_BUFFER_SIZE >= 1024 for reliable transfers without drops."
  267. #elif RX_BUFFER_SIZE && (RX_BUFFER_SIZE < 2 || !IS_POWER_OF_2(RX_BUFFER_SIZE))
  268. #error "RX_BUFFER_SIZE must be a power of 2 greater than 1."
  269. #elif TX_BUFFER_SIZE && (TX_BUFFER_SIZE < 2 || TX_BUFFER_SIZE > 256 || !IS_POWER_OF_2(TX_BUFFER_SIZE))
  270. #error "TX_BUFFER_SIZE must be 0, a power of 2 greater than 1, and no greater than 256."
  271. #endif
  272. #elif ENABLED(SERIAL_XON_XOFF) || ENABLED(SERIAL_STATS_MAX_RX_QUEUED) || ENABLED(SERIAL_STATS_DROPPED_RX)
  273. #error "SERIAL_XON_XOFF and SERIAL_STATS_* features not supported on USB-native AVR devices."
  274. #endif
  275. /**
  276. * Dual Stepper Drivers
  277. */
  278. #if ENABLED(X_DUAL_STEPPER_DRIVERS) && ENABLED(DUAL_X_CARRIAGE)
  279. #error "DUAL_X_CARRIAGE is not compatible with X_DUAL_STEPPER_DRIVERS."
  280. #elif ENABLED(X_DUAL_STEPPER_DRIVERS) && (!HAS_X2_ENABLE || !HAS_X2_STEP || !HAS_X2_DIR)
  281. #error "X_DUAL_STEPPER_DRIVERS requires X2 pins (and an extra E plug)."
  282. #elif ENABLED(Y_DUAL_STEPPER_DRIVERS) && (!HAS_Y2_ENABLE || !HAS_Y2_STEP || !HAS_Y2_DIR)
  283. #error "Y_DUAL_STEPPER_DRIVERS requires Y2 pins (and an extra E plug)."
  284. #elif ENABLED(Z_DUAL_STEPPER_DRIVERS) && (!HAS_Z2_ENABLE || !HAS_Z2_STEP || !HAS_Z2_DIR)
  285. #error "Z_DUAL_STEPPER_DRIVERS requires Z2 pins (and an extra E plug)."
  286. #endif
  287. /**
  288. * Validate that the bed size fits
  289. */
  290. static_assert(X_MAX_LENGTH >= X_BED_SIZE && Y_MAX_LENGTH >= Y_BED_SIZE,
  291. "Movement bounds ([XY]_MIN_POS, [XY]_MAX_POS) are too narrow to contain [XY]_BED_SIZE.");
  292. /**
  293. * Granular software endstops (Marlin >= 1.1.7)
  294. */
  295. #if ENABLED(MIN_SOFTWARE_ENDSTOPS) && DISABLED(MIN_SOFTWARE_ENDSTOP_Z)
  296. #if IS_KINEMATIC
  297. #error "MIN_SOFTWARE_ENDSTOPS on DELTA/SCARA also requires MIN_SOFTWARE_ENDSTOP_Z."
  298. #elif DISABLED(MIN_SOFTWARE_ENDSTOP_X) && DISABLED(MIN_SOFTWARE_ENDSTOP_Y)
  299. #error "MIN_SOFTWARE_ENDSTOPS requires at least one of the MIN_SOFTWARE_ENDSTOP_[XYZ] options."
  300. #endif
  301. #endif
  302. #if ENABLED(MAX_SOFTWARE_ENDSTOPS) && DISABLED(MAX_SOFTWARE_ENDSTOP_Z)
  303. #if IS_KINEMATIC
  304. #error "MAX_SOFTWARE_ENDSTOPS on DELTA/SCARA also requires MAX_SOFTWARE_ENDSTOP_Z."
  305. #elif DISABLED(MAX_SOFTWARE_ENDSTOP_X) && DISABLED(MAX_SOFTWARE_ENDSTOP_Y)
  306. #error "MAX_SOFTWARE_ENDSTOPS requires at least one of the MAX_SOFTWARE_ENDSTOP_[XYZ] options."
  307. #endif
  308. #endif
  309. /**
  310. * Progress Bar
  311. */
  312. #if ENABLED(LCD_PROGRESS_BAR)
  313. #if DISABLED(SDSUPPORT)
  314. #error "LCD_PROGRESS_BAR requires SDSUPPORT."
  315. #elif DISABLED(ULTRA_LCD)
  316. #error "LCD_PROGRESS_BAR requires a character LCD."
  317. #elif ENABLED(DOGLCD)
  318. #error "LCD_PROGRESS_BAR does not apply to graphical displays."
  319. #elif ENABLED(FILAMENT_LCD_DISPLAY)
  320. #error "LCD_PROGRESS_BAR and FILAMENT_LCD_DISPLAY are not fully compatible. Comment out this line to use both."
  321. #endif
  322. #elif ENABLED(LCD_SET_PROGRESS_MANUALLY) && DISABLED(DOGLCD)
  323. #error "LCD_SET_PROGRESS_MANUALLY requires LCD_PROGRESS_BAR or Graphical LCD."
  324. #endif
  325. /**
  326. * SD File Sorting
  327. */
  328. #if ENABLED(SDCARD_SORT_ALPHA)
  329. #if SDSORT_LIMIT > 256
  330. #error "SDSORT_LIMIT must be 256 or smaller."
  331. #elif SDSORT_LIMIT < 10
  332. #error "SDSORT_LIMIT should be greater than 9 to be useful."
  333. #elif DISABLED(SDSORT_USES_RAM)
  334. #if ENABLED(SDSORT_DYNAMIC_RAM)
  335. #error "SDSORT_DYNAMIC_RAM requires SDSORT_USES_RAM (which reads the directory into RAM)."
  336. #elif ENABLED(SDSORT_CACHE_NAMES)
  337. #error "SDSORT_CACHE_NAMES requires SDSORT_USES_RAM (which reads the directory into RAM)."
  338. #endif
  339. #endif
  340. #if ENABLED(SDSORT_CACHE_NAMES) && DISABLED(SDSORT_DYNAMIC_RAM)
  341. #if SDSORT_CACHE_VFATS < 2
  342. #error "SDSORT_CACHE_VFATS must be 2 or greater!"
  343. #elif SDSORT_CACHE_VFATS > MAX_VFAT_ENTRIES
  344. #undef SDSORT_CACHE_VFATS
  345. #define SDSORT_CACHE_VFATS MAX_VFAT_ENTRIES
  346. #warning "SDSORT_CACHE_VFATS was reduced to MAX_VFAT_ENTRIES!"
  347. #endif
  348. #endif
  349. #endif
  350. /**
  351. * I2C Position Encoders
  352. */
  353. #if ENABLED(I2C_POSITION_ENCODERS)
  354. #if DISABLED(BABYSTEPPING) || DISABLED(BABYSTEP_XY)
  355. #error "I2C_POSITION_ENCODERS requires BABYSTEPPING and BABYSTEP_XY."
  356. #elif !WITHIN(I2CPE_ENCODER_CNT, 1, 5)
  357. #error "I2CPE_ENCODER_CNT must be between 1 and 5."
  358. #endif
  359. #endif
  360. /**
  361. * Babystepping
  362. */
  363. #if ENABLED(BABYSTEPPING)
  364. #if ENABLED(SCARA)
  365. #error "BABYSTEPPING is not implemented for SCARA yet."
  366. #elif ENABLED(DELTA) && ENABLED(BABYSTEP_XY)
  367. #error "BABYSTEPPING only implemented for Z axis on deltabots."
  368. #elif ENABLED(BABYSTEP_ZPROBE_OFFSET) && ENABLED(MESH_BED_LEVELING)
  369. #error "MESH_BED_LEVELING and BABYSTEP_ZPROBE_OFFSET is not a valid combination"
  370. #elif ENABLED(BABYSTEP_ZPROBE_OFFSET) && !HAS_BED_PROBE
  371. #error "BABYSTEP_ZPROBE_OFFSET requires a probe."
  372. #elif ENABLED(BABYSTEP_ZPROBE_GFX_OVERLAY) && !ENABLED(DOGLCD)
  373. #error "BABYSTEP_ZPROBE_GFX_OVERLAY requires a DOGLCD."
  374. #elif ENABLED(BABYSTEP_ZPROBE_GFX_OVERLAY) && !ENABLED(BABYSTEP_ZPROBE_OFFSET)
  375. #error "BABYSTEP_ZPROBE_GFX_OVERLAY requires a BABYSTEP_ZPROBE_OFFSET."
  376. #endif
  377. #endif
  378. /**
  379. * Filament Runout needs a pin and either SD Support or Auto print start detection
  380. */
  381. #if ENABLED(FILAMENT_RUNOUT_SENSOR)
  382. #if !HAS_FIL_RUNOUT
  383. #error "FILAMENT_RUNOUT_SENSOR requires FIL_RUNOUT_PIN."
  384. #elif DISABLED(SDSUPPORT) && DISABLED(PRINTJOB_TIMER_AUTOSTART)
  385. #error "FILAMENT_RUNOUT_SENSOR requires SDSUPPORT or PRINTJOB_TIMER_AUTOSTART."
  386. #elif DISABLED(ADVANCED_PAUSE_FEATURE)
  387. static_assert(NULL == strstr(FILAMENT_RUNOUT_SCRIPT, "M600"), "ADVANCED_PAUSE_FEATURE is required to use M600 with FILAMENT_RUNOUT_SENSOR.");
  388. #endif
  389. #endif
  390. /**
  391. * Advanced Pause
  392. */
  393. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  394. #if !HAS_RESUME_CONTINUE
  395. #error "ADVANCED_PAUSE_FEATURE currently requires an LCD controller or EMERGENCY_PARSER."
  396. #elif ENABLED(EXTRUDER_RUNOUT_PREVENT)
  397. #error "EXTRUDER_RUNOUT_PREVENT is incompatible with ADVANCED_PAUSE_FEATURE."
  398. #elif ENABLED(PARK_HEAD_ON_PAUSE) && DISABLED(SDSUPPORT) && DISABLED(NEWPANEL) && DISABLED(EMERGENCY_PARSER)
  399. #error "PARK_HEAD_ON_PAUSE requires SDSUPPORT, EMERGENCY_PARSER, or an LCD controller."
  400. #elif ENABLED(HOME_BEFORE_FILAMENT_CHANGE) && DISABLED(PAUSE_PARK_NO_STEPPER_TIMEOUT)
  401. #error "HOME_BEFORE_FILAMENT_CHANGE requires PAUSE_PARK_NO_STEPPER_TIMEOUT."
  402. #elif DISABLED(NOZZLE_PARK_FEATURE)
  403. #error "ADVANCED_PAUSE_FEATURE requires NOZZLE_PARK_FEATURE."
  404. #elif ENABLED(PREVENT_LENGTHY_EXTRUDE) && FILAMENT_CHANGE_UNLOAD_LENGTH > EXTRUDE_MAXLENGTH
  405. #error "FILAMENT_CHANGE_UNLOAD_LENGTH must be less than or equal to EXTRUDE_MAXLENGTH."
  406. #elif ENABLED(PREVENT_LENGTHY_EXTRUDE) && FILAMENT_CHANGE_LOAD_LENGTH > EXTRUDE_MAXLENGTH
  407. #error "FILAMENT_CHANGE_LOAD_LENGTH must be less than or equal to EXTRUDE_MAXLENGTH."
  408. #endif
  409. #endif
  410. /**
  411. * Individual axis homing is useless for DELTAS
  412. */
  413. #if ENABLED(INDIVIDUAL_AXIS_HOMING_MENU) && ENABLED(DELTA)
  414. #error "INDIVIDUAL_AXIS_HOMING_MENU is incompatible with DELTA kinematics."
  415. #endif
  416. /**
  417. * Options only for EXTRUDERS > 1
  418. */
  419. #if EXTRUDERS > 1
  420. #if EXTRUDERS > 5
  421. #error "Marlin supports a maximum of 5 EXTRUDERS."
  422. #endif
  423. #if ENABLED(TEMP_SENSOR_1_AS_REDUNDANT)
  424. #error "EXTRUDERS must be 1 with TEMP_SENSOR_1_AS_REDUNDANT."
  425. #endif
  426. #if ENABLED(HEATERS_PARALLEL)
  427. #error "EXTRUDERS must be 1 with HEATERS_PARALLEL."
  428. #endif
  429. #elif ENABLED(MK2_MULTIPLEXER)
  430. #error "MK2_MULTIPLEXER requires 2 or more EXTRUDERS."
  431. #elif ENABLED(SINGLENOZZLE)
  432. #error "SINGLENOZZLE requires 2 or more EXTRUDERS."
  433. #endif
  434. /**
  435. * Sanity checking for the Průša MK2 Multiplexer
  436. */
  437. #ifdef SNMM
  438. #error "SNMM is now MK2_MULTIPLEXER. Please update your configuration."
  439. #endif
  440. /**
  441. * A Dual Nozzle carriage with switching servo
  442. */
  443. #if ENABLED(SWITCHING_NOZZLE)
  444. #if ENABLED(DUAL_X_CARRIAGE)
  445. #error "SWITCHING_NOZZLE and DUAL_X_CARRIAGE are incompatible."
  446. #elif ENABLED(SINGLENOZZLE)
  447. #error "SWITCHING_NOZZLE and SINGLENOZZLE are incompatible."
  448. #elif EXTRUDERS != 2
  449. #error "SWITCHING_NOZZLE requires exactly 2 EXTRUDERS."
  450. #elif NUM_SERVOS < 1
  451. #error "SWITCHING_NOZZLE requires NUM_SERVOS >= 1."
  452. #endif
  453. #endif
  454. /**
  455. * Single Stepper Dual Extruder with switching servo
  456. */
  457. #if ENABLED(SWITCHING_EXTRUDER) && NUM_SERVOS < 1
  458. #error "SWITCHING_EXTRUDER requires NUM_SERVOS >= 1."
  459. #endif
  460. /**
  461. * Mixing Extruder requirements
  462. */
  463. #if ENABLED(MIXING_EXTRUDER)
  464. #if EXTRUDERS > 1
  465. #error "MIXING_EXTRUDER currently only supports one extruder."
  466. #elif MIXING_STEPPERS < 2
  467. #error "You must set MIXING_STEPPERS >= 2 for a mixing extruder."
  468. #elif ENABLED(FILAMENT_SENSOR)
  469. #error "MIXING_EXTRUDER is incompatible with FILAMENT_SENSOR. Comment out this line to use it anyway."
  470. #elif ENABLED(SWITCHING_EXTRUDER)
  471. #error "Please select either MIXING_EXTRUDER or SWITCHING_EXTRUDER, not both."
  472. #elif ENABLED(SINGLENOZZLE)
  473. #error "MIXING_EXTRUDER is incompatible with SINGLENOZZLE."
  474. #elif ENABLED(LIN_ADVANCE)
  475. #error "MIXING_EXTRUDER is incompatible with LIN_ADVANCE."
  476. #endif
  477. #endif
  478. #if ENABLED(LIN_ADVANCE) && !IS_CARTESIAN
  479. #error "Sorry! LIN_ADVANCE is only compatible with Cartesian."
  480. #endif
  481. /**
  482. * Parking Extruder requirements
  483. */
  484. #if ENABLED(PARKING_EXTRUDER)
  485. #if ENABLED(DUAL_X_CARRIAGE)
  486. #error "PARKING_EXTRUDER and DUAL_X_CARRIAGE are incompatible."
  487. #elif ENABLED(SINGLENOZZLE)
  488. #error "PARKING_EXTRUDER and SINGLENOZZLE are incompatible."
  489. #elif ENABLED(EXT_SOLENOID)
  490. #error "PARKING_EXTRUDER and EXT_SOLENOID are incompatible. (Pins are used twice.)"
  491. #elif EXTRUDERS != 2
  492. #error "PARKING_EXTRUDER requires exactly 2 EXTRUDERS."
  493. #elif !PIN_EXISTS(SOL0) || !PIN_EXISTS(SOL1)
  494. #error "PARKING_EXTRUDER requires SOL0_PIN and SOL1_PIN."
  495. #elif !defined(PARKING_EXTRUDER_PARKING_X)
  496. #error "PARKING_EXTRUDER requires PARKING_EXTRUDER_PARKING_X."
  497. #elif !defined(PARKING_EXTRUDER_SECURITY_RAISE)
  498. #error "PARKING_EXTRUDER requires PARKING_EXTRUDER_SECURITY_RAISE."
  499. #elif PARKING_EXTRUDER_SECURITY_RAISE < 0
  500. #error "PARKING_EXTRUDER_SECURITY_RAISE must be 0 or higher."
  501. #elif !defined(PARKING_EXTRUDER_SOLENOIDS_PINS_ACTIVE) || !WITHIN(PARKING_EXTRUDER_SOLENOIDS_PINS_ACTIVE, LOW, HIGH)
  502. #error "PARKING_EXTRUDER_SOLENOIDS_PINS_ACTIVE must be defined as HIGH or LOW."
  503. #elif !defined(PARKING_EXTRUDER_SOLENOIDS_DELAY) || !WITHIN(PARKING_EXTRUDER_SOLENOIDS_DELAY, 0, 2000)
  504. #error "PARKING_EXTRUDER_SOLENOIDS_DELAY must be between 0 and 2000 (ms)."
  505. #endif
  506. #endif
  507. /**
  508. * Part-Cooling Fan Multiplexer requirements
  509. */
  510. #if PIN_EXISTS(FANMUX1)
  511. #if !HAS_FANMUX
  512. #error "FANMUX0_PIN must be set before FANMUX1_PIN can be set."
  513. #endif
  514. #elif PIN_EXISTS(FANMUX2)
  515. #error "FANMUX0_PIN and FANMUX1_PIN must be set before FANMUX2_PIN can be set."
  516. #endif
  517. /**
  518. * Limited number of servos
  519. */
  520. #if NUM_SERVOS > 4
  521. #error "The maximum number of SERVOS in Marlin is 4."
  522. #endif
  523. /**
  524. * Servo deactivation depends on servo endstops, switching nozzle, or switching extruder
  525. */
  526. #if ENABLED(DEACTIVATE_SERVOS_AFTER_MOVE) && !HAS_Z_SERVO_ENDSTOP && !defined(SWITCHING_NOZZLE_SERVO_NR) && !defined(SWITCHING_EXTRUDER_SERVO_NR)
  527. #error "Z_ENDSTOP_SERVO_NR, switching nozzle, or switching extruder is required for DEACTIVATE_SERVOS_AFTER_MOVE."
  528. #endif
  529. /**
  530. * Required LCD language
  531. */
  532. #if DISABLED(DOGLCD) && ENABLED(ULTRA_LCD) && !defined(DISPLAY_CHARSET_HD44780)
  533. #error "You must set DISPLAY_CHARSET_HD44780 to JAPANESE, WESTERN or CYRILLIC for your LCD controller."
  534. #endif
  535. /**
  536. * Bed Heating Options - PID vs Limit Switching
  537. */
  538. #if ENABLED(PIDTEMPBED) && ENABLED(BED_LIMIT_SWITCHING)
  539. #error "To use BED_LIMIT_SWITCHING you must disable PIDTEMPBED."
  540. #endif
  541. /**
  542. * Kinematics
  543. */
  544. /**
  545. * Allow only one kinematic type to be defined
  546. */
  547. static_assert(1 >= 0
  548. #if ENABLED(DELTA)
  549. + 1
  550. #endif
  551. #if ENABLED(MORGAN_SCARA)
  552. + 1
  553. #endif
  554. #if ENABLED(MAKERARM_SCARA)
  555. + 1
  556. #endif
  557. #if ENABLED(COREXY)
  558. + 1
  559. #endif
  560. #if ENABLED(COREXZ)
  561. + 1
  562. #endif
  563. #if ENABLED(COREYZ)
  564. + 1
  565. #endif
  566. #if ENABLED(COREYX)
  567. + 1
  568. #endif
  569. #if ENABLED(COREZX)
  570. + 1
  571. #endif
  572. #if ENABLED(COREZY)
  573. + 1
  574. #endif
  575. , "Please enable only one of DELTA, MORGAN_SCARA, MAKERARM_SCARA, COREXY, COREYX, COREXZ, COREZX, COREYZ, or COREZY."
  576. );
  577. /**
  578. * Delta requirements
  579. */
  580. #if ENABLED(DELTA)
  581. #if HAS_BED_PROBE && ENABLED(Z_MIN_PROBE_ENDSTOP)
  582. #error "Delta probably shouldn't use Z_MIN_PROBE_ENDSTOP. Comment out this line to continue."
  583. #elif DISABLED(USE_XMAX_PLUG) && DISABLED(USE_YMAX_PLUG) && DISABLED(USE_ZMAX_PLUG)
  584. #error "You probably want to use Max Endstops for DELTA!"
  585. #elif ENABLED(ENABLE_LEVELING_FADE_HEIGHT) && DISABLED(AUTO_BED_LEVELING_BILINEAR) && !UBL_SEGMENTED
  586. #error "ENABLE_LEVELING_FADE_HEIGHT on DELTA requires AUTO_BED_LEVELING_BILINEAR or AUTO_BED_LEVELING_UBL."
  587. #elif ENABLED(DELTA_AUTO_CALIBRATION) && !(HAS_BED_PROBE || ENABLED(ULTIPANEL))
  588. #error "DELTA_AUTO_CALIBRATION requires a probe or LCD Controller."
  589. #elif ABL_GRID
  590. #if (GRID_MAX_POINTS_X & 1) == 0 || (GRID_MAX_POINTS_Y & 1) == 0
  591. #error "DELTA requires GRID_MAX_POINTS_X and GRID_MAX_POINTS_Y to be odd numbers."
  592. #elif GRID_MAX_POINTS_X < 3
  593. #error "DELTA requires GRID_MAX_POINTS_X and GRID_MAX_POINTS_Y to be 3 or higher."
  594. #endif
  595. #endif
  596. #endif
  597. /**
  598. * Probes
  599. */
  600. /**
  601. * Allow only one probe option to be defined
  602. */
  603. static_assert(1 >= 0
  604. #if ENABLED(PROBE_MANUALLY)
  605. + 1
  606. #endif
  607. #if ENABLED(FIX_MOUNTED_PROBE)
  608. + 1
  609. #endif
  610. #if HAS_Z_SERVO_ENDSTOP && DISABLED(BLTOUCH)
  611. + 1
  612. #endif
  613. #if ENABLED(BLTOUCH)
  614. + 1
  615. #endif
  616. #if ENABLED(SOLENOID_PROBE)
  617. + 1
  618. #endif
  619. #if ENABLED(Z_PROBE_ALLEN_KEY)
  620. + 1
  621. #endif
  622. #if ENABLED(Z_PROBE_SLED)
  623. + 1
  624. #endif
  625. , "Please enable only one probe option: PROBE_MANUALLY, FIX_MOUNTED_PROBE, BLTOUCH, SOLENOID_PROBE, Z_PROBE_ALLEN_KEY, Z_PROBE_SLED, or Z Servo."
  626. );
  627. #if HAS_BED_PROBE
  628. /**
  629. * Z_PROBE_SLED is incompatible with DELTA
  630. */
  631. #if ENABLED(Z_PROBE_SLED) && ENABLED(DELTA)
  632. #error "You cannot use Z_PROBE_SLED with DELTA."
  633. #endif
  634. /**
  635. * SOLENOID_PROBE requirements
  636. */
  637. #if ENABLED(SOLENOID_PROBE)
  638. #if ENABLED(EXT_SOLENOID)
  639. #error "SOLENOID_PROBE is incompatible with EXT_SOLENOID."
  640. #elif !HAS_SOLENOID_1
  641. #error "SOLENOID_PROBE requires SOL1_PIN. It can be added to your Configuration.h."
  642. #endif
  643. #endif
  644. /**
  645. * NUM_SERVOS is required for a Z servo probe
  646. */
  647. #if HAS_Z_SERVO_ENDSTOP
  648. #ifndef NUM_SERVOS
  649. #error "You must set NUM_SERVOS for a Z servo probe (Z_ENDSTOP_SERVO_NR)."
  650. #elif Z_ENDSTOP_SERVO_NR >= NUM_SERVOS
  651. #error "Z_ENDSTOP_SERVO_NR must be smaller than NUM_SERVOS."
  652. #endif
  653. #endif
  654. /**
  655. * Require pin options and pins to be defined
  656. */
  657. #if ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN)
  658. #if ENABLED(Z_MIN_PROBE_ENDSTOP)
  659. #error "Enable only one option: Z_MIN_PROBE_ENDSTOP or Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN."
  660. #elif DISABLED(USE_ZMIN_PLUG)
  661. #error "Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN requires USE_ZMIN_PLUG to be enabled."
  662. #elif !HAS_Z_MIN
  663. #error "Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN requires the Z_MIN_PIN to be defined."
  664. #elif ENABLED(Z_MIN_PROBE_ENDSTOP_INVERTING) != ENABLED(Z_MIN_ENDSTOP_INVERTING)
  665. #error "Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN requires Z_MIN_ENDSTOP_INVERTING to match Z_MIN_PROBE_ENDSTOP_INVERTING."
  666. #endif
  667. #elif ENABLED(Z_MIN_PROBE_ENDSTOP)
  668. #if !HAS_Z_MIN_PROBE_PIN
  669. #error "Z_MIN_PROBE_ENDSTOP requires the Z_MIN_PROBE_PIN to be defined."
  670. #endif
  671. #else
  672. #error "You must enable either Z_MIN_PROBE_ENDSTOP or Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN to use a probe."
  673. #endif
  674. /**
  675. * Make sure Z raise values are set
  676. */
  677. #ifndef Z_CLEARANCE_DEPLOY_PROBE
  678. #error "You must define Z_CLEARANCE_DEPLOY_PROBE in your configuration."
  679. #elif !defined(Z_CLEARANCE_BETWEEN_PROBES)
  680. #error "You must define Z_CLEARANCE_BETWEEN_PROBES in your configuration."
  681. #elif Z_CLEARANCE_DEPLOY_PROBE < 0
  682. #error "Probes need Z_CLEARANCE_DEPLOY_PROBE >= 0."
  683. #elif Z_CLEARANCE_BETWEEN_PROBES < 0
  684. #error "Probes need Z_CLEARANCE_BETWEEN_PROBES >= 0."
  685. #endif
  686. #if MULTIPLE_PROBING && MULTIPLE_PROBING < 2
  687. #error "MULTIPLE_PROBING must be >= 2."
  688. #endif
  689. #else
  690. /**
  691. * Require some kind of probe for bed leveling and probe testing
  692. */
  693. #if OLDSCHOOL_ABL && !PROBE_SELECTED
  694. #error "Auto Bed Leveling requires one of these: PROBE_MANUALLY, FIX_MOUNTED_PROBE, BLTOUCH, SOLENOID_PROBE, Z_PROBE_ALLEN_KEY, Z_PROBE_SLED, or a Z Servo."
  695. #endif
  696. #if ENABLED(Z_MIN_PROBE_REPEATABILITY_TEST)
  697. #error "Z_MIN_PROBE_REPEATABILITY_TEST requires a probe: FIX_MOUNTED_PROBE, BLTOUCH, SOLENOID_PROBE, Z_PROBE_ALLEN_KEY, Z_PROBE_SLED, or Z Servo."
  698. #endif
  699. #endif
  700. /**
  701. * Allow only one bed leveling option to be defined
  702. */
  703. static_assert(1 >= 0
  704. #if ENABLED(AUTO_BED_LEVELING_LINEAR)
  705. + 1
  706. #endif
  707. #if ENABLED(AUTO_BED_LEVELING_3POINT)
  708. + 1
  709. #endif
  710. #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
  711. + 1
  712. #endif
  713. #if ENABLED(AUTO_BED_LEVELING_UBL)
  714. + 1
  715. #endif
  716. #if ENABLED(MESH_BED_LEVELING)
  717. + 1
  718. #endif
  719. , "Select only one of: MESH_BED_LEVELING, AUTO_BED_LEVELING_LINEAR, AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_BILINEAR or AUTO_BED_LEVELING_UBL."
  720. );
  721. /**
  722. * Bed Leveling Requirements
  723. */
  724. #if ENABLED(AUTO_BED_LEVELING_UBL)
  725. /**
  726. * Unified Bed Leveling
  727. */
  728. // Hide PROBE_MANUALLY from the rest of the code
  729. #undef PROBE_MANUALLY
  730. #if IS_SCARA
  731. #error "AUTO_BED_LEVELING_UBL does not yet support SCARA printers."
  732. #elif DISABLED(EEPROM_SETTINGS)
  733. #error "AUTO_BED_LEVELING_UBL requires EEPROM_SETTINGS. Please update your configuration."
  734. #elif !WITHIN(GRID_MAX_POINTS_X, 3, 15) || !WITHIN(GRID_MAX_POINTS_Y, 3, 15)
  735. #error "GRID_MAX_POINTS_[XY] must be a whole number between 3 and 15."
  736. #else
  737. static_assert(WITHIN(UBL_PROBE_PT_1_X, MIN_PROBE_X, MAX_PROBE_X), "UBL_PROBE_PT_1_X can't be reached by the Z probe.");
  738. static_assert(WITHIN(UBL_PROBE_PT_2_X, MIN_PROBE_X, MAX_PROBE_X), "UBL_PROBE_PT_2_X can't be reached by the Z probe.");
  739. static_assert(WITHIN(UBL_PROBE_PT_3_X, MIN_PROBE_X, MAX_PROBE_X), "UBL_PROBE_PT_3_X can't be reached by the Z probe.");
  740. static_assert(WITHIN(UBL_PROBE_PT_1_Y, MIN_PROBE_Y, MAX_PROBE_Y), "UBL_PROBE_PT_1_Y can't be reached by the Z probe.");
  741. static_assert(WITHIN(UBL_PROBE_PT_2_Y, MIN_PROBE_Y, MAX_PROBE_Y), "UBL_PROBE_PT_2_Y can't be reached by the Z probe.");
  742. static_assert(WITHIN(UBL_PROBE_PT_3_Y, MIN_PROBE_Y, MAX_PROBE_Y), "UBL_PROBE_PT_3_Y can't be reached by the Z probe.");
  743. #endif
  744. #elif OLDSCHOOL_ABL
  745. /**
  746. * Auto Bed Leveling
  747. */
  748. #if ENABLED(USE_RAW_KINEMATICS)
  749. #error "USE_RAW_KINEMATICS is not compatible with AUTO_BED_LEVELING"
  750. #endif
  751. /**
  752. * Delta and SCARA have limited bed leveling options
  753. */
  754. #if IS_SCARA && DISABLED(AUTO_BED_LEVELING_BILINEAR)
  755. #error "Only AUTO_BED_LEVELING_BILINEAR currently supports SCARA bed leveling."
  756. #endif
  757. /**
  758. * Check auto bed leveling probe points
  759. */
  760. #if ABL_GRID
  761. #ifdef DELTA_PROBEABLE_RADIUS
  762. static_assert(LEFT_PROBE_BED_POSITION >= -DELTA_PROBEABLE_RADIUS, "LEFT_PROBE_BED_POSITION must be within DELTA_PROBEABLE_RADIUS.");
  763. static_assert(RIGHT_PROBE_BED_POSITION <= DELTA_PROBEABLE_RADIUS, "RIGHT_PROBE_BED_POSITION must be within DELTA_PROBEABLE_RADIUS.");
  764. static_assert(FRONT_PROBE_BED_POSITION >= -DELTA_PROBEABLE_RADIUS, "FRONT_PROBE_BED_POSITION must be within DELTA_PROBEABLE_RADIUS.");
  765. static_assert(BACK_PROBE_BED_POSITION <= DELTA_PROBEABLE_RADIUS, "BACK_PROBE_BED_POSITION must be within DELTA_PROBEABLE_RADIUS.");
  766. #else
  767. static_assert(LEFT_PROBE_BED_POSITION < RIGHT_PROBE_BED_POSITION, "LEFT_PROBE_BED_POSITION must be less than RIGHT_PROBE_BED_POSITION.");
  768. static_assert(FRONT_PROBE_BED_POSITION < BACK_PROBE_BED_POSITION, "FRONT_PROBE_BED_POSITION must be less than BACK_PROBE_BED_POSITION.");
  769. static_assert(LEFT_PROBE_BED_POSITION >= MIN_PROBE_X, "LEFT_PROBE_BED_POSITION can't be reached by the Z probe.");
  770. static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION can't be reached by the Z probe.");
  771. static_assert(FRONT_PROBE_BED_POSITION >= MIN_PROBE_Y, "FRONT_PROBE_BED_POSITION can't be reached by the Z probe.");
  772. static_assert(BACK_PROBE_BED_POSITION <= MAX_PROBE_Y, "BACK_PROBE_BED_POSITION can't be reached by the Z probe.");
  773. #endif
  774. #else // AUTO_BED_LEVELING_3POINT
  775. static_assert(WITHIN(ABL_PROBE_PT_1_X, MIN_PROBE_X, MAX_PROBE_X), "ABL_PROBE_PT_1_X can't be reached by the Z probe.");
  776. static_assert(WITHIN(ABL_PROBE_PT_2_X, MIN_PROBE_X, MAX_PROBE_X), "ABL_PROBE_PT_2_X can't be reached by the Z probe.");
  777. static_assert(WITHIN(ABL_PROBE_PT_3_X, MIN_PROBE_X, MAX_PROBE_X), "ABL_PROBE_PT_3_X can't be reached by the Z probe.");
  778. static_assert(WITHIN(ABL_PROBE_PT_1_Y, MIN_PROBE_Y, MAX_PROBE_Y), "ABL_PROBE_PT_1_Y can't be reached by the Z probe.");
  779. static_assert(WITHIN(ABL_PROBE_PT_2_Y, MIN_PROBE_Y, MAX_PROBE_Y), "ABL_PROBE_PT_2_Y can't be reached by the Z probe.");
  780. static_assert(WITHIN(ABL_PROBE_PT_3_Y, MIN_PROBE_Y, MAX_PROBE_Y), "ABL_PROBE_PT_3_Y can't be reached by the Z probe.");
  781. #endif // AUTO_BED_LEVELING_3POINT
  782. #elif ENABLED(MESH_BED_LEVELING)
  783. // Hide PROBE_MANUALLY from the rest of the code
  784. #undef PROBE_MANUALLY
  785. /**
  786. * Mesh Bed Leveling
  787. */
  788. #if ENABLED(DELTA)
  789. #error "MESH_BED_LEVELING is not compatible with DELTA printers."
  790. #elif GRID_MAX_POINTS_X > 9 || GRID_MAX_POINTS_Y > 9
  791. #error "GRID_MAX_POINTS_X and GRID_MAX_POINTS_Y must be less than 10 for MBL."
  792. #endif
  793. #endif
  794. #if !HAS_MESH && ENABLED(G26_MESH_VALIDATION)
  795. #error "G26_MESH_VALIDATION requires MESH_BED_LEVELING, AUTO_BED_LEVELING_BILINEAR, or AUTO_BED_LEVELING_UBL."
  796. #endif
  797. #if ENABLED(MESH_EDIT_GFX_OVERLAY) && (DISABLED(AUTO_BED_LEVELING_UBL) || DISABLED(DOGLCD))
  798. #error "MESH_EDIT_GFX_OVERLAY requires AUTO_BED_LEVELING_UBL and a Graphical LCD."
  799. #endif
  800. /**
  801. * LCD_BED_LEVELING requirements
  802. */
  803. #if ENABLED(LCD_BED_LEVELING)
  804. #if DISABLED(ULTIPANEL)
  805. #error "LCD_BED_LEVELING requires an LCD controller."
  806. #elif !(ENABLED(MESH_BED_LEVELING) || (OLDSCHOOL_ABL && ENABLED(PROBE_MANUALLY)))
  807. #error "LCD_BED_LEVELING requires MESH_BED_LEVELING or ABL with PROBE_MANUALLY."
  808. #endif
  809. #endif
  810. /**
  811. * Homing Bump
  812. */
  813. #if X_HOME_BUMP_MM < 0 || Y_HOME_BUMP_MM < 0 || Z_HOME_BUMP_MM < 0
  814. #error "[XYZ]_HOME_BUMP_MM must be greater than or equal to 0."
  815. #endif
  816. /**
  817. * Make sure Z_SAFE_HOMING point is reachable
  818. */
  819. #if ENABLED(Z_SAFE_HOMING)
  820. #if !WITHIN(Z_SAFE_HOMING_X_POINT, MIN_PROBE_X, MAX_PROBE_X)
  821. #if HAS_BED_PROBE
  822. #error "Z_SAFE_HOMING_X_POINT can't be reached by the Z probe."
  823. #else
  824. #error "Z_SAFE_HOMING_X_POINT can't be reached by the nozzle."
  825. #endif
  826. #elif !WITHIN(Z_SAFE_HOMING_Y_POINT, MIN_PROBE_Y, MAX_PROBE_Y)
  827. #if HAS_BED_PROBE
  828. #error "Z_SAFE_HOMING_Y_POINT can't be reached by the Z probe."
  829. #else
  830. #error "Z_SAFE_HOMING_Y_POINT can't be reached by the nozzle."
  831. #endif
  832. #endif
  833. #endif // Z_SAFE_HOMING
  834. /**
  835. * Make sure DISABLE_[XYZ] compatible with selected homing options
  836. */
  837. #if ENABLED(DISABLE_X) || ENABLED(DISABLE_Y) || ENABLED(DISABLE_Z)
  838. #if ENABLED(HOME_AFTER_DEACTIVATE) || ENABLED(Z_SAFE_HOMING)
  839. #error "DISABLE_[XYZ] is not compatible with HOME_AFTER_DEACTIVATE or Z_SAFE_HOMING."
  840. #endif
  841. #endif // DISABLE_[XYZ]
  842. /**
  843. * Filament Width Sensor
  844. */
  845. #if ENABLED(FILAMENT_WIDTH_SENSOR)
  846. #if !HAS_FILAMENT_WIDTH_SENSOR
  847. #error "FILAMENT_WIDTH_SENSOR requires a FILWIDTH_PIN to be defined."
  848. #elif ENABLED(NO_VOLUMETRICS)
  849. #error "FILAMENT_WIDTH_SENSOR requires NO_VOLUMETRICS to be disabled."
  850. #endif
  851. #endif
  852. /**
  853. * ULTIPANEL encoder
  854. */
  855. #if ENABLED(ULTIPANEL) && DISABLED(NEWPANEL) && DISABLED(SR_LCD_2W_NL) && !defined(SHIFT_CLK)
  856. #error "ULTIPANEL requires some kind of encoder."
  857. #endif
  858. #if ENCODER_PULSES_PER_STEP < 0
  859. #error "ENCODER_PULSES_PER_STEP should not be negative, use REVERSE_MENU_DIRECTION instead."
  860. #endif
  861. /**
  862. * SAV_3DGLCD display options
  863. */
  864. #if ENABLED(U8GLIB_SSD1306) && ENABLED(U8GLIB_SH1106)
  865. #error "Only enable one SAV_3DGLCD display type: U8GLIB_SSD1306 or U8GLIB_SH1106."
  866. #endif
  867. /**
  868. * Allen Key
  869. * Deploying the Allen Key probe uses big moves in z direction. Too dangerous for an unhomed z-axis.
  870. */
  871. #if ENABLED(Z_PROBE_ALLEN_KEY) && (Z_HOME_DIR < 0) && ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN)
  872. #error "You can't home to a z min endstop with a Z_PROBE_ALLEN_KEY"
  873. #endif
  874. /**
  875. * Dual X Carriage requirements
  876. */
  877. #if ENABLED(DUAL_X_CARRIAGE)
  878. #if EXTRUDERS == 1
  879. #error "DUAL_X_CARRIAGE requires 2 (or more) extruders."
  880. #elif CORE_IS_XY || CORE_IS_XZ
  881. #error "DUAL_X_CARRIAGE cannot be used with COREXY, COREYX, COREXZ, or COREZX."
  882. #elif !HAS_X2_ENABLE || !HAS_X2_STEP || !HAS_X2_DIR
  883. #error "DUAL_X_CARRIAGE requires X2 stepper pins to be defined."
  884. #elif !HAS_X_MAX
  885. #error "DUAL_X_CARRIAGE requires USE_XMAX_PLUG and an X Max Endstop."
  886. #elif !defined(X2_HOME_POS) || !defined(X2_MIN_POS) || !defined(X2_MAX_POS)
  887. #error "DUAL_X_CARRIAGE requires X2_HOME_POS, X2_MIN_POS, and X2_MAX_POS."
  888. #elif X_HOME_DIR != -1 || X2_HOME_DIR != 1
  889. #error "DUAL_X_CARRIAGE requires X_HOME_DIR -1 and X2_HOME_DIR 1."
  890. #endif
  891. #endif // DUAL_X_CARRIAGE
  892. /**
  893. * Make sure auto fan pins don't conflict with the fan pin
  894. */
  895. #if HAS_AUTO_FAN
  896. #if HAS_FAN0
  897. #if E0_AUTO_FAN_PIN == FAN_PIN
  898. #error "You cannot set E0_AUTO_FAN_PIN equal to FAN_PIN."
  899. #elif E1_AUTO_FAN_PIN == FAN_PIN
  900. #error "You cannot set E1_AUTO_FAN_PIN equal to FAN_PIN."
  901. #elif E2_AUTO_FAN_PIN == FAN_PIN
  902. #error "You cannot set E2_AUTO_FAN_PIN equal to FAN_PIN."
  903. #elif E3_AUTO_FAN_PIN == FAN_PIN
  904. #error "You cannot set E3_AUTO_FAN_PIN equal to FAN_PIN."
  905. #endif
  906. #endif
  907. #endif
  908. #if HAS_FAN0 && CONTROLLER_FAN_PIN == FAN_PIN
  909. #error "You cannot set CONTROLLER_FAN_PIN equal to FAN_PIN."
  910. #endif
  911. #if ENABLED(USE_CONTROLLER_FAN)
  912. #if !HAS_CONTROLLER_FAN
  913. #error "USE_CONTROLLER_FAN requires a CONTROLLER_FAN_PIN. Define in Configuration_adv.h."
  914. #elif E0_AUTO_FAN_PIN == CONTROLLER_FAN_PIN
  915. #error "You cannot set E0_AUTO_FAN_PIN equal to CONTROLLER_FAN_PIN."
  916. #elif E1_AUTO_FAN_PIN == CONTROLLER_FAN_PIN
  917. #error "You cannot set E1_AUTO_FAN_PIN equal to CONTROLLER_FAN_PIN."
  918. #elif E2_AUTO_FAN_PIN == CONTROLLER_FAN_PIN
  919. #error "You cannot set E2_AUTO_FAN_PIN equal to CONTROLLER_FAN_PIN."
  920. #elif E3_AUTO_FAN_PIN == CONTROLLER_FAN_PIN
  921. #error "You cannot set E3_AUTO_FAN_PIN equal to CONTROLLER_FAN_PIN."
  922. #endif
  923. #endif
  924. /**
  925. * Test Heater, Temp Sensor, and Extruder Pins; Sensor Type must also be set.
  926. */
  927. #if !HAS_HEATER_0
  928. #error "HEATER_0_PIN not defined for this board."
  929. #elif !PIN_EXISTS(TEMP_0) && !(defined(MAX6675_SS) && MAX6675_SS >= 0)
  930. #error "TEMP_0_PIN not defined for this board."
  931. #elif !PIN_EXISTS(E0_STEP) || !PIN_EXISTS(E0_DIR) || !PIN_EXISTS(E0_ENABLE)
  932. #error "E0_STEP_PIN, E0_DIR_PIN, or E0_ENABLE_PIN not defined for this board."
  933. #elif TEMP_SENSOR_0 == 0
  934. #error "TEMP_SENSOR_0 is required."
  935. #endif
  936. // Pins are required for heaters
  937. #if ENABLED(HEATER_0_USES_MAX6675) && !(defined(MAX6675_SS) && MAX6675_SS >= 0)
  938. #error "MAX6675_SS (required for TEMP_SENSOR_0) not defined for this board."
  939. #elif (HOTENDS > 1 || ENABLED(HEATERS_PARALLEL)) && !HAS_HEATER_1
  940. #error "HEATER_1_PIN not defined for this board."
  941. #endif
  942. #if HOTENDS > 1
  943. #if TEMP_SENSOR_1 == 0
  944. #error "TEMP_SENSOR_1 is required with 2 or more HOTENDS."
  945. #elif !PIN_EXISTS(TEMP_1)
  946. #error "TEMP_1_PIN not defined for this board."
  947. #endif
  948. #if HOTENDS > 2
  949. #if TEMP_SENSOR_2 == 0
  950. #error "TEMP_SENSOR_2 is required with 3 or more HOTENDS."
  951. #elif !HAS_HEATER_2
  952. #error "HEATER_2_PIN not defined for this board."
  953. #elif !PIN_EXISTS(TEMP_2)
  954. #error "TEMP_2_PIN not defined for this board."
  955. #endif
  956. #if HOTENDS > 3
  957. #if TEMP_SENSOR_3 == 0
  958. #error "TEMP_SENSOR_3 is required with 4 or more HOTENDS."
  959. #elif !HAS_HEATER_3
  960. #error "HEATER_3_PIN not defined for this board."
  961. #elif !PIN_EXISTS(TEMP_3)
  962. #error "TEMP_3_PIN not defined for this board."
  963. #endif
  964. #if HOTENDS > 4
  965. #if TEMP_SENSOR_4 == 0
  966. #error "TEMP_SENSOR_4 is required with 5 HOTENDS."
  967. #elif !HAS_HEATER_4
  968. #error "HEATER_4_PIN not defined for this board."
  969. #elif !PIN_EXISTS(TEMP_4)
  970. #error "TEMP_4_PIN not defined for this board."
  971. #endif
  972. #elif TEMP_SENSOR_4 != 0
  973. #error "TEMP_SENSOR_4 shouldn't be set with only 4 HOTENDS."
  974. #endif
  975. #elif TEMP_SENSOR_3 != 0
  976. #error "TEMP_SENSOR_3 shouldn't be set with only 3 HOTENDS."
  977. #elif TEMP_SENSOR_4 != 0
  978. #error "TEMP_SENSOR_4 shouldn't be set with only 3 HOTENDS."
  979. #endif
  980. #elif TEMP_SENSOR_2 != 0
  981. #error "TEMP_SENSOR_2 shouldn't be set with only 2 HOTENDS."
  982. #elif TEMP_SENSOR_3 != 0
  983. #error "TEMP_SENSOR_3 shouldn't be set with only 2 HOTENDS."
  984. #elif TEMP_SENSOR_4 != 0
  985. #error "TEMP_SENSOR_4 shouldn't be set with only 2 HOTENDS."
  986. #endif
  987. #elif TEMP_SENSOR_1 != 0 && DISABLED(TEMP_SENSOR_1_AS_REDUNDANT)
  988. #error "TEMP_SENSOR_1 shouldn't be set with only 1 HOTEND."
  989. #elif TEMP_SENSOR_2 != 0
  990. #error "TEMP_SENSOR_2 shouldn't be set with only 1 HOTEND."
  991. #elif TEMP_SENSOR_3 != 0
  992. #error "TEMP_SENSOR_3 shouldn't be set with only 1 HOTEND."
  993. #elif TEMP_SENSOR_4 != 0
  994. #error "TEMP_SENSOR_4 shouldn't be set with only 1 HOTEND."
  995. #endif
  996. #if ENABLED(TEMP_SENSOR_1_AS_REDUNDANT) && TEMP_SENSOR_1 == 0
  997. #error "TEMP_SENSOR_1 is required with TEMP_SENSOR_1_AS_REDUNDANT."
  998. #endif
  999. /**
  1000. * Temperature status LEDs
  1001. */
  1002. #if ENABLED(TEMP_STAT_LEDS) && !PIN_EXISTS(STAT_LED_RED) && !PIN_EXISTS(STAT_LED_BLUE)
  1003. #error "TEMP_STAT_LEDS requires STAT_LED_RED_PIN or STAT_LED_BLUE_PIN, preferably both."
  1004. #endif
  1005. /**
  1006. * Basic 2-nozzle duplication mode
  1007. */
  1008. #if ENABLED(DUAL_NOZZLE_DUPLICATION_MODE)
  1009. #if HOTENDS != 2
  1010. #error "DUAL_NOZZLE_DUPLICATION_MODE requires exactly 2 hotends."
  1011. #elif ENABLED(DUAL_X_CARRIAGE)
  1012. #error "DUAL_NOZZLE_DUPLICATION_MODE is incompatible with DUAL_X_CARRIAGE."
  1013. #elif ENABLED(SINGLENOZZLE)
  1014. #error "DUAL_NOZZLE_DUPLICATION_MODE is incompatible with SINGLENOZZLE."
  1015. #elif ENABLED(MIXING_EXTRUDER)
  1016. #error "DUAL_NOZZLE_DUPLICATION_MODE is incompatible with MIXING_EXTRUDER."
  1017. #elif ENABLED(SWITCHING_EXTRUDER)
  1018. #error "DUAL_NOZZLE_DUPLICATION_MODE is incompatible with SWITCHING_EXTRUDER."
  1019. #endif
  1020. #endif
  1021. /**
  1022. * Test Extruder Stepper Pins
  1023. */
  1024. #if DISABLED(MK2_MULTIPLEXER) // MK2_MULTIPLEXER uses E0 stepper only
  1025. #if E_STEPPERS > 4
  1026. #if !PIN_EXISTS(E4_STEP) || !PIN_EXISTS(E4_DIR) || !PIN_EXISTS(E4_ENABLE)
  1027. #error "E4_STEP_PIN, E4_DIR_PIN, or E4_ENABLE_PIN not defined for this board."
  1028. #endif
  1029. #elif E_STEPPERS > 3
  1030. #if !PIN_EXISTS(E3_STEP) || !PIN_EXISTS(E3_DIR) || !PIN_EXISTS(E3_ENABLE)
  1031. #error "E3_STEP_PIN, E3_DIR_PIN, or E3_ENABLE_PIN not defined for this board."
  1032. #endif
  1033. #elif E_STEPPERS > 2
  1034. #if !PIN_EXISTS(E2_STEP) || !PIN_EXISTS(E2_DIR) || !PIN_EXISTS(E2_ENABLE)
  1035. #error "E2_STEP_PIN, E2_DIR_PIN, or E2_ENABLE_PIN not defined for this board."
  1036. #endif
  1037. #elif E_STEPPERS > 1
  1038. #if !PIN_EXISTS(E1_STEP) || !PIN_EXISTS(E1_DIR) || !PIN_EXISTS(E1_ENABLE)
  1039. #error "E1_STEP_PIN, E1_DIR_PIN, or E1_ENABLE_PIN not defined for this board."
  1040. #endif
  1041. #endif
  1042. #endif
  1043. /**
  1044. * Endstop Tests
  1045. */
  1046. #define _PLUG_UNUSED_TEST(AXIS,PLUG) (DISABLED(USE_##PLUG##MIN_PLUG) && DISABLED(USE_##PLUG##MAX_PLUG) && !(ENABLED(AXIS##_DUAL_ENDSTOPS) && WITHIN(AXIS##2_USE_ENDSTOP, _##PLUG##MAX_, _##PLUG##MIN_)))
  1047. #define _AXIS_PLUG_UNUSED_TEST(AXIS) (_PLUG_UNUSED_TEST(AXIS,X) && _PLUG_UNUSED_TEST(AXIS,Y) && _PLUG_UNUSED_TEST(AXIS,Z))
  1048. // At least 3 endstop plugs must be used
  1049. #if _AXIS_PLUG_UNUSED_TEST(X)
  1050. #error "You must enable USE_XMIN_PLUG or USE_XMAX_PLUG."
  1051. #endif
  1052. #if _AXIS_PLUG_UNUSED_TEST(Y)
  1053. #error "You must enable USE_YMIN_PLUG or USE_YMAX_PLUG."
  1054. #endif
  1055. #if _AXIS_PLUG_UNUSED_TEST(Z)
  1056. #error "You must enable USE_ZMIN_PLUG or USE_ZMAX_PLUG."
  1057. #endif
  1058. // Delta and Cartesian use 3 homing endstops
  1059. #if !IS_SCARA
  1060. #if X_HOME_DIR < 0 && DISABLED(USE_XMIN_PLUG)
  1061. #error "Enable USE_XMIN_PLUG when homing X to MIN."
  1062. #elif X_HOME_DIR > 0 && DISABLED(USE_XMAX_PLUG)
  1063. #error "Enable USE_XMAX_PLUG when homing X to MAX."
  1064. #elif Y_HOME_DIR < 0 && DISABLED(USE_YMIN_PLUG)
  1065. #error "Enable USE_YMIN_PLUG when homing Y to MIN."
  1066. #elif Y_HOME_DIR > 0 && DISABLED(USE_YMAX_PLUG)
  1067. #error "Enable USE_YMAX_PLUG when homing Y to MAX."
  1068. #endif
  1069. #endif
  1070. #if Z_HOME_DIR < 0 && DISABLED(USE_ZMIN_PLUG)
  1071. #error "Enable USE_ZMIN_PLUG when homing Z to MIN."
  1072. #elif Z_HOME_DIR > 0 && DISABLED(USE_ZMAX_PLUG)
  1073. #error "Enable USE_ZMAX_PLUG when homing Z to MAX."
  1074. #endif
  1075. // Dual endstops requirements
  1076. #if ENABLED(X_DUAL_ENDSTOPS)
  1077. #if !X2_USE_ENDSTOP
  1078. #error "You must set X2_USE_ENDSTOP with X_DUAL_ENDSTOPS."
  1079. #elif X2_USE_ENDSTOP == _X_MIN_ && DISABLED(USE_XMIN_PLUG)
  1080. #error "USE_XMIN_PLUG is required when X2_USE_ENDSTOP is _X_MIN_."
  1081. #elif X2_USE_ENDSTOP == _X_MAX_ && DISABLED(USE_XMAX_PLUG)
  1082. #error "USE_XMAX_PLUG is required when X2_USE_ENDSTOP is _X_MAX_."
  1083. #elif X2_USE_ENDSTOP == _Y_MIN_ && DISABLED(USE_YMIN_PLUG)
  1084. #error "USE_YMIN_PLUG is required when X2_USE_ENDSTOP is _Y_MIN_."
  1085. #elif X2_USE_ENDSTOP == _Y_MAX_ && DISABLED(USE_YMAX_PLUG)
  1086. #error "USE_YMAX_PLUG is required when X2_USE_ENDSTOP is _Y_MAX_."
  1087. #elif X2_USE_ENDSTOP == _Z_MIN_ && DISABLED(USE_ZMIN_PLUG)
  1088. #error "USE_ZMIN_PLUG is required when X2_USE_ENDSTOP is _Z_MIN_."
  1089. #elif X2_USE_ENDSTOP == _Z_MAX_ && DISABLED(USE_ZMAX_PLUG)
  1090. #error "USE_ZMAX_PLUG is required when X2_USE_ENDSTOP is _Z_MAX_."
  1091. #elif !HAS_X2_MIN && !HAS_X2_MAX
  1092. #error "X2_USE_ENDSTOP has been assigned to a nonexistent endstop!"
  1093. #elif ENABLED(DELTA)
  1094. #error "X_DUAL_ENDSTOPS is not compatible with DELTA."
  1095. #endif
  1096. #endif
  1097. #if ENABLED(Y_DUAL_ENDSTOPS)
  1098. #if !Y2_USE_ENDSTOP
  1099. #error "You must set Y2_USE_ENDSTOP with Y_DUAL_ENDSTOPS."
  1100. #elif Y2_USE_ENDSTOP == _X_MIN_ && DISABLED(USE_XMIN_PLUG)
  1101. #error "USE_XMIN_PLUG is required when Y2_USE_ENDSTOP is _X_MIN_."
  1102. #elif Y2_USE_ENDSTOP == _X_MAX_ && DISABLED(USE_XMAX_PLUG)
  1103. #error "USE_XMAX_PLUG is required when Y2_USE_ENDSTOP is _X_MAX_."
  1104. #elif Y2_USE_ENDSTOP == _Y_MIN_ && DISABLED(USE_YMIN_PLUG)
  1105. #error "USE_YMIN_PLUG is required when Y2_USE_ENDSTOP is _Y_MIN_."
  1106. #elif Y2_USE_ENDSTOP == _Y_MAX_ && DISABLED(USE_YMAX_PLUG)
  1107. #error "USE_YMAX_PLUG is required when Y2_USE_ENDSTOP is _Y_MAX_."
  1108. #elif Y2_USE_ENDSTOP == _Z_MIN_ && DISABLED(USE_ZMIN_PLUG)
  1109. #error "USE_ZMIN_PLUG is required when Y2_USE_ENDSTOP is _Z_MIN_."
  1110. #elif Y2_USE_ENDSTOP == _Z_MAX_ && DISABLED(USE_ZMAX_PLUG)
  1111. #error "USE_ZMAX_PLUG is required when Y2_USE_ENDSTOP is _Z_MAX_."
  1112. #elif !HAS_Y2_MIN && !HAS_Y2_MAX
  1113. #error "Y2_USE_ENDSTOP has been assigned to a nonexistent endstop!"
  1114. #elif ENABLED(DELTA)
  1115. #error "Y_DUAL_ENDSTOPS is not compatible with DELTA."
  1116. #endif
  1117. #endif
  1118. #if ENABLED(Z_DUAL_ENDSTOPS)
  1119. #if !Z2_USE_ENDSTOP
  1120. #error "You must set Z2_USE_ENDSTOP with Z_DUAL_ENDSTOPS."
  1121. #elif Z2_USE_ENDSTOP == _X_MIN_ && DISABLED(USE_XMIN_PLUG)
  1122. #error "USE_XMIN_PLUG is required when Z2_USE_ENDSTOP is _X_MIN_."
  1123. #elif Z2_USE_ENDSTOP == _X_MAX_ && DISABLED(USE_XMAX_PLUG)
  1124. #error "USE_XMAX_PLUG is required when Z2_USE_ENDSTOP is _X_MAX_."
  1125. #elif Z2_USE_ENDSTOP == _Y_MIN_ && DISABLED(USE_YMIN_PLUG)
  1126. #error "USE_YMIN_PLUG is required when Z2_USE_ENDSTOP is _Y_MIN_."
  1127. #elif Z2_USE_ENDSTOP == _Y_MAX_ && DISABLED(USE_YMAX_PLUG)
  1128. #error "USE_YMAX_PLUG is required when Z2_USE_ENDSTOP is _Y_MAX_."
  1129. #elif Z2_USE_ENDSTOP == _Z_MIN_ && DISABLED(USE_ZMIN_PLUG)
  1130. #error "USE_ZMIN_PLUG is required when Z2_USE_ENDSTOP is _Z_MIN_."
  1131. #elif Z2_USE_ENDSTOP == _Z_MAX_ && DISABLED(USE_ZMAX_PLUG)
  1132. #error "USE_ZMAX_PLUG is required when Z2_USE_ENDSTOP is _Z_MAX_."
  1133. #elif !HAS_Z2_MIN && !HAS_Z2_MAX
  1134. #error "Z2_USE_ENDSTOP has been assigned to a nonexistent endstop!"
  1135. #elif ENABLED(DELTA)
  1136. #error "Z_DUAL_ENDSTOPS is not compatible with DELTA."
  1137. #endif
  1138. #endif
  1139. /**
  1140. * emergency-command parser
  1141. */
  1142. #if ENABLED(EMERGENCY_PARSER) && defined(USBCON)
  1143. #error "EMERGENCY_PARSER does not work on boards with AT90USB processors (USBCON)."
  1144. #endif
  1145. /**
  1146. * I2C bus
  1147. */
  1148. #if ENABLED(EXPERIMENTAL_I2CBUS) && I2C_SLAVE_ADDRESS > 0
  1149. #if I2C_SLAVE_ADDRESS < 8
  1150. #error "I2C_SLAVE_ADDRESS can't be less than 8. (Addresses 0 - 7 are reserved.)"
  1151. #elif I2C_SLAVE_ADDRESS > 127
  1152. #error "I2C_SLAVE_ADDRESS can't be over 127. (Only 7 bits allowed.)"
  1153. #endif
  1154. #endif
  1155. /**
  1156. * G38 Probe Target
  1157. */
  1158. #if ENABLED(G38_PROBE_TARGET)
  1159. #if !HAS_BED_PROBE
  1160. #error "G38_PROBE_TARGET requires a bed probe."
  1161. #elif !IS_CARTESIAN
  1162. #error "G38_PROBE_TARGET requires a Cartesian machine."
  1163. #endif
  1164. #endif
  1165. /**
  1166. * RGB_LED Requirements
  1167. */
  1168. #define _RGB_TEST (PIN_EXISTS(RGB_LED_R) && PIN_EXISTS(RGB_LED_G) && PIN_EXISTS(RGB_LED_B))
  1169. #if ENABLED(RGB_LED)
  1170. #if !_RGB_TEST
  1171. #error "RGB_LED requires RGB_LED_R_PIN, RGB_LED_G_PIN, and RGB_LED_B_PIN."
  1172. #elif ENABLED(RGBW_LED)
  1173. #error "Please enable only one of RGB_LED and RGBW_LED."
  1174. #endif
  1175. #elif ENABLED(RGBW_LED)
  1176. #if !(_RGB_TEST && PIN_EXISTS(RGB_LED_W))
  1177. #error "RGBW_LED requires RGB_LED_R_PIN, RGB_LED_G_PIN, RGB_LED_B_PIN, and RGB_LED_W_PIN."
  1178. #endif
  1179. #elif ENABLED(NEOPIXEL_LED)
  1180. #if !(PIN_EXISTS(NEOPIXEL) && NEOPIXEL_PIXELS > 0)
  1181. #error "NEOPIXEL_LED requires NEOPIXEL_PIN and NEOPIXEL_PIXELS."
  1182. #endif
  1183. #elif ENABLED(PRINTER_EVENT_LEDS) && DISABLED(BLINKM) && DISABLED(PCA9632) && DISABLED(NEOPIXEL_LED)
  1184. #error "PRINTER_EVENT_LEDS requires BLINKM, PCA9632, RGB_LED, RGBW_LED or NEOPIXEL_LED."
  1185. #endif
  1186. /**
  1187. * Auto Fan check for PWM pins
  1188. */
  1189. #if HAS_AUTO_FAN && EXTRUDER_AUTO_FAN_SPEED != 255
  1190. #define AF_ERR_SUFF "_AUTO_FAN_PIN is not a PWM pin. Set EXTRUDER_AUTO_FAN_SPEED to 255."
  1191. #if HAS_AUTO_FAN_0
  1192. static_assert(GET_TIMER(E0_AUTO_FAN_PIN), "E0" AF_ERR_SUFF);
  1193. #elif HAS_AUTO_FAN_1
  1194. static_assert(GET_TIMER(E1_AUTO_FAN_PIN), "E1" AF_ERR_SUFF);
  1195. #elif HAS_AUTO_FAN_2
  1196. static_assert(GET_TIMER(E2_AUTO_FAN_PIN), "E2" AF_ERR_SUFF);
  1197. #elif HAS_AUTO_FAN_3
  1198. static_assert(GET_TIMER(E3_AUTO_FAN_PIN), "E3" AF_ERR_SUFF);
  1199. #endif
  1200. #endif
  1201. /**
  1202. * Make sure only one display is enabled
  1203. *
  1204. * Note: BQ_LCD_SMART_CONTROLLER => REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER
  1205. * REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER => REPRAP_DISCOUNT_SMART_CONTROLLER
  1206. * SAV_3DGLCD => U8GLIB_SH1106 => ULTIMAKERCONTROLLER
  1207. * MKS_12864OLED => U8GLIB_SH1106 => ULTIMAKERCONTROLLER
  1208. * MKS_12864OLED_SSD1306 => U8GLIB_SSD1306 => ULTIMAKERCONTROLLER
  1209. * miniVIKI => ULTIMAKERCONTROLLER
  1210. * VIKI2 => ULTIMAKERCONTROLLER
  1211. * ELB_FULL_GRAPHIC_CONTROLLER => ULTIMAKERCONTROLLER
  1212. * AZSMZ_12864 => ULTIMAKERCONTROLLER
  1213. * PANEL_ONE => ULTIMAKERCONTROLLER
  1214. */
  1215. static_assert(1 >= 0
  1216. #if ENABLED(ULTIMAKERCONTROLLER) \
  1217. && DISABLED(SAV_3DGLCD) \
  1218. && DISABLED(miniVIKI) \
  1219. && DISABLED(VIKI2) \
  1220. && DISABLED(ELB_FULL_GRAPHIC_CONTROLLER) \
  1221. && DISABLED(AZSMZ_12864) \
  1222. && DISABLED(PANEL_ONE) \
  1223. && DISABLED(MKS_12864OLED) \
  1224. && DISABLED(MKS_12864OLED_SSD1306)
  1225. + 1
  1226. #endif
  1227. #if ENABLED(REPRAP_DISCOUNT_SMART_CONTROLLER) \
  1228. && DISABLED(REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER) \
  1229. && DISABLED(LCD_FOR_MELZI) \
  1230. && DISABLED(MAKEBOARD_MINI_2_LINE_DISPLAY_1602) \
  1231. && DISABLED(MKS_12864OLED) \
  1232. && DISABLED(MKS_12864OLED_SSD1306)
  1233. + 1
  1234. #endif
  1235. #if ENABLED(REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER) \
  1236. && DISABLED(BQ_LCD_SMART_CONTROLLER)
  1237. + 1
  1238. #endif
  1239. #if ENABLED(LCD_FOR_MELZI)
  1240. + 1
  1241. #endif
  1242. #if ENABLED(MKS_12864OLED)
  1243. + 1
  1244. #endif
  1245. #if ENABLED(MKS_12864OLED_SSD1306)
  1246. + 1
  1247. #endif
  1248. #if ENABLED(MAKEBOARD_MINI_2_LINE_DISPLAY_1602)
  1249. + 1
  1250. #endif
  1251. #if ENABLED(CARTESIO_UI)
  1252. + 1
  1253. #endif
  1254. #if ENABLED(PANEL_ONE)
  1255. + 1
  1256. #endif
  1257. #if ENABLED(MAKRPANEL)
  1258. + 1
  1259. #endif
  1260. #if ENABLED(REPRAPWORLD_GRAPHICAL_LCD)
  1261. + 1
  1262. #endif
  1263. #if ENABLED(VIKI2)
  1264. + 1
  1265. #endif
  1266. #if ENABLED(miniVIKI)
  1267. + 1
  1268. #endif
  1269. #if ENABLED(ELB_FULL_GRAPHIC_CONTROLLER)
  1270. + 1
  1271. #endif
  1272. #if ENABLED(AZSMZ_12864)
  1273. + 1
  1274. #endif
  1275. #if ENABLED(G3D_PANEL)
  1276. + 1
  1277. #endif
  1278. #if ENABLED(MINIPANEL) && DISABLED(MKS_MINI_12864)
  1279. + 1
  1280. #endif
  1281. #if ENABLED(MKS_MINI_12864)
  1282. + 1
  1283. #endif
  1284. #if ENABLED(REPRAPWORLD_KEYPAD) \
  1285. && DISABLED(CARTESIO_UI) \
  1286. && DISABLED(ZONESTAR_LCD)
  1287. + 1
  1288. #endif
  1289. #if ENABLED(RIGIDBOT_PANEL)
  1290. + 1
  1291. #endif
  1292. #if ENABLED(RA_CONTROL_PANEL)
  1293. + 1
  1294. #endif
  1295. #if ENABLED(LCD_I2C_SAINSMART_YWROBOT)
  1296. + 1
  1297. #endif
  1298. #if ENABLED(LCM1602)
  1299. + 1
  1300. #endif
  1301. #if ENABLED(LCD_I2C_PANELOLU2)
  1302. + 1
  1303. #endif
  1304. #if ENABLED(LCD_I2C_VIKI)
  1305. + 1
  1306. #endif
  1307. #if ENABLED(U8GLIB_SSD1306) && DISABLED(OLED_PANEL_TINYBOY2) && DISABLED(MKS_12864OLED_SSD1306)
  1308. + 1
  1309. #endif
  1310. #if ENABLED(SAV_3DLCD)
  1311. + 1
  1312. #endif
  1313. #if ENABLED(BQ_LCD_SMART_CONTROLLER)
  1314. + 1
  1315. #endif
  1316. #if ENABLED(SAV_3DGLCD)
  1317. + 1
  1318. #endif
  1319. #if ENABLED(OLED_PANEL_TINYBOY2)
  1320. + 1
  1321. #endif
  1322. #if ENABLED(ZONESTAR_LCD)
  1323. + 1
  1324. #endif
  1325. #if ENABLED(ULTI_CONTROLLER)
  1326. + 1
  1327. #endif
  1328. , "Please select no more than one LCD controller option."
  1329. );
  1330. /**
  1331. * Make sure HAVE_TMCDRIVER is warranted
  1332. */
  1333. #if ENABLED(HAVE_TMCDRIVER) && !( \
  1334. ENABLED( X_IS_TMC ) \
  1335. || ENABLED( X2_IS_TMC ) \
  1336. || ENABLED( Y_IS_TMC ) \
  1337. || ENABLED( Y2_IS_TMC ) \
  1338. || ENABLED( Z_IS_TMC ) \
  1339. || ENABLED( Z2_IS_TMC ) \
  1340. || ENABLED( E0_IS_TMC ) \
  1341. || ENABLED( E1_IS_TMC ) \
  1342. || ENABLED( E2_IS_TMC ) \
  1343. || ENABLED( E3_IS_TMC ) \
  1344. || ENABLED( E4_IS_TMC ) \
  1345. )
  1346. #error "HAVE_TMCDRIVER requires at least one TMC stepper to be set."
  1347. #endif
  1348. /**
  1349. * Make sure HAVE_TMC2130 is warranted
  1350. */
  1351. #if ENABLED(HAVE_TMC2130)
  1352. #if !( ENABLED( X_IS_TMC2130 ) \
  1353. || ENABLED( X2_IS_TMC2130 ) \
  1354. || ENABLED( Y_IS_TMC2130 ) \
  1355. || ENABLED( Y2_IS_TMC2130 ) \
  1356. || ENABLED( Z_IS_TMC2130 ) \
  1357. || ENABLED( Z2_IS_TMC2130 ) \
  1358. || ENABLED( E0_IS_TMC2130 ) \
  1359. || ENABLED( E1_IS_TMC2130 ) \
  1360. || ENABLED( E2_IS_TMC2130 ) \
  1361. || ENABLED( E3_IS_TMC2130 ) \
  1362. || ENABLED( E4_IS_TMC2130 ) )
  1363. #error "HAVE_TMC2130 requires at least one TMC2130 stepper to be set."
  1364. #elif ENABLED(HYBRID_THRESHOLD) && DISABLED(STEALTHCHOP)
  1365. #error "Enable STEALTHCHOP to use HYBRID_THRESHOLD."
  1366. #endif
  1367. #if ENABLED(X_IS_TMC2130) && !PIN_EXISTS(X_CS)
  1368. #error "X_CS_PIN is required for X_IS_TMC2130. Define X_CS_PIN in Configuration_adv.h."
  1369. #elif ENABLED(X2_IS_TMC2130) && !PIN_EXISTS(X2_CS)
  1370. #error "X2_CS_PIN is required for X2_IS_TMC2130. Define X2_CS_PIN in Configuration_adv.h."
  1371. #elif ENABLED(Y_IS_TMC2130) && !PIN_EXISTS(Y_CS)
  1372. #error "Y_CS_PIN is required for Y_IS_TMC2130. Define Y_CS_PIN in Configuration_adv.h."
  1373. #elif ENABLED(Y2_IS_TMC2130) && !PIN_EXISTS(Y2_CS)
  1374. #error "Y2_CS_PIN is required for Y2_IS_TMC2130. Define Y2_CS_PIN in Configuration_adv.h."
  1375. #elif ENABLED(Z_IS_TMC2130) && !PIN_EXISTS(Z_CS)
  1376. #error "Z_CS_PIN is required for Z_IS_TMC2130. Define Z_CS_PIN in Configuration_adv.h."
  1377. #elif ENABLED(Z2_IS_TMC2130) && !PIN_EXISTS(Z2_CS)
  1378. #error "Z2_CS_PIN is required for Z2_IS_TMC2130. Define Z2_CS_PIN in Configuration_adv.h."
  1379. #elif ENABLED(E0_IS_TMC2130) && !PIN_EXISTS(E0_CS)
  1380. #error "E0_CS_PIN is required for E0_IS_TMC2130. Define E0_CS_PIN in Configuration_adv.h."
  1381. #elif ENABLED(E1_IS_TMC2130) && !PIN_EXISTS(E1_CS)
  1382. #error "E1_CS_PIN is required for E1_IS_TMC2130. Define E1_CS_PIN in Configuration_adv.h."
  1383. #elif ENABLED(E2_IS_TMC2130) && !PIN_EXISTS(E2_CS)
  1384. #error "E2_CS_PIN is required for E2_IS_TMC2130. Define E2_CS_PIN in Configuration_adv.h."
  1385. #elif ENABLED(E3_IS_TMC2130) && !PIN_EXISTS(E3_CS)
  1386. #error "E3_CS_PIN is required for E3_IS_TMC2130. Define E3_CS_PIN in Configuration_adv.h."
  1387. #elif ENABLED(E4_IS_TMC2130) && !PIN_EXISTS(E4_CS)
  1388. #error "E4_CS_PIN is required for E4_IS_TMC2130. Define E4_CS_PIN in Configuration_adv.h."
  1389. #endif
  1390. // Require STEALTHCHOP for SENSORLESS_HOMING on DELTA as the transition from spreadCycle to stealthChop
  1391. // is necessary in order to reset the stallGuard indication between the initial movement of all three
  1392. // towers to +Z and the individual homing of each tower. This restriction can be removed once a means of
  1393. // clearing the stallGuard activated status is found.
  1394. #if ENABLED(SENSORLESS_HOMING) && ENABLED(DELTA) && !ENABLED(STEALTHCHOP)
  1395. #error "SENSORLESS_HOMING on DELTA currently requires STEALTHCHOP."
  1396. #endif
  1397. #elif ENABLED(SENSORLESS_HOMING)
  1398. #error "SENSORLESS_HOMING requires TMC2130 stepper drivers."
  1399. #endif
  1400. /**
  1401. * Make sure HAVE_TMC2208 is warranted
  1402. */
  1403. #if ENABLED(HAVE_TMC2208) && !( \
  1404. ENABLED( X_IS_TMC2208 ) \
  1405. || ENABLED( X2_IS_TMC2208 ) \
  1406. || ENABLED( Y_IS_TMC2208 ) \
  1407. || ENABLED( Y2_IS_TMC2208 ) \
  1408. || ENABLED( Z_IS_TMC2208 ) \
  1409. || ENABLED( Z2_IS_TMC2208 ) \
  1410. || ENABLED( E0_IS_TMC2208 ) \
  1411. || ENABLED( E1_IS_TMC2208 ) \
  1412. || ENABLED( E2_IS_TMC2208 ) \
  1413. || ENABLED( E3_IS_TMC2208 ) )
  1414. #error "HAVE_TMC2208 requires at least one TMC2208 stepper to be set."
  1415. #endif
  1416. #if ENABLED(HYBRID_THRESHOLD) && DISABLED(STEALTHCHOP)
  1417. #error "Enable STEALTHCHOP to use HYBRID_THRESHOLD."
  1418. #endif
  1419. #if ENABLED(TMC_Z_CALIBRATION) && !Z_IS_TRINAMIC && !Z2_IS_TRINAMIC
  1420. #error "TMC_Z_CALIBRATION requires at least one TMC driver on Z axis"
  1421. #endif
  1422. /**
  1423. * Make sure HAVE_L6470DRIVER is warranted
  1424. */
  1425. #if ENABLED(HAVE_L6470DRIVER) && !( \
  1426. ENABLED( X_IS_L6470 ) \
  1427. || ENABLED( X2_IS_L6470 ) \
  1428. || ENABLED( Y_IS_L6470 ) \
  1429. || ENABLED( Y2_IS_L6470 ) \
  1430. || ENABLED( Z_IS_L6470 ) \
  1431. || ENABLED( Z2_IS_L6470 ) \
  1432. || ENABLED( E0_IS_L6470 ) \
  1433. || ENABLED( E1_IS_L6470 ) \
  1434. || ENABLED( E2_IS_L6470 ) \
  1435. || ENABLED( E3_IS_L6470 ) \
  1436. || ENABLED( E4_IS_L6470 ) \
  1437. )
  1438. #error "HAVE_L6470DRIVER requires at least one L6470 stepper to be set."
  1439. #endif
  1440. /**
  1441. * Digipot requirement
  1442. */
  1443. #if ENABLED(DIGIPOT_MCP4018)
  1444. #if !defined(DIGIPOTS_I2C_SDA_X) || !defined(DIGIPOTS_I2C_SDA_Y) || !defined(DIGIPOTS_I2C_SDA_Z) \
  1445. || !defined(DIGIPOTS_I2C_SDA_E0) || !defined(DIGIPOTS_I2C_SDA_E1)
  1446. #error "DIGIPOT_MCP4018 requires DIGIPOTS_I2C_SDA_* pins to be defined."
  1447. #endif
  1448. #endif
  1449. /**
  1450. * Require 4 or more elements in per-axis initializers
  1451. */
  1452. constexpr float sanity_arr_1[] = DEFAULT_AXIS_STEPS_PER_UNIT,
  1453. sanity_arr_2[] = DEFAULT_MAX_FEEDRATE,
  1454. sanity_arr_3[] = DEFAULT_MAX_ACCELERATION;
  1455. static_assert(COUNT(sanity_arr_1) >= XYZE, "DEFAULT_AXIS_STEPS_PER_UNIT requires 4 (or more) elements.");
  1456. static_assert(COUNT(sanity_arr_2) >= XYZE, "DEFAULT_MAX_FEEDRATE requires 4 (or more) elements.");
  1457. static_assert(COUNT(sanity_arr_3) >= XYZE, "DEFAULT_MAX_ACCELERATION requires 4 (or more) elements.");
  1458. static_assert(COUNT(sanity_arr_1) <= XYZE_N, "DEFAULT_AXIS_STEPS_PER_UNIT has too many elements.");
  1459. static_assert(COUNT(sanity_arr_2) <= XYZE_N, "DEFAULT_MAX_FEEDRATE has too many elements.");
  1460. static_assert(COUNT(sanity_arr_3) <= XYZE_N, "DEFAULT_MAX_ACCELERATION has too many elements.");
  1461. #if ENABLED(CNC_COORDINATE_SYSTEMS) && ENABLED(NO_WORKSPACE_OFFSETS)
  1462. #error "CNC_COORDINATE_SYSTEMS is incompatible with NO_WORKSPACE_OFFSETS."
  1463. #endif
  1464. #if !BLOCK_BUFFER_SIZE || !IS_POWER_OF_2(BLOCK_BUFFER_SIZE)
  1465. #error "BLOCK_BUFFER_SIZE must be a power of 2."
  1466. #endif
  1467. #if ENABLED(LED_CONTROL_MENU) && DISABLED(ULTIPANEL)
  1468. #error "LED_CONTROL_MENU requires an LCD controller."
  1469. #endif
  1470. #if ENABLED(CASE_LIGHT_USE_NEOPIXEL) && DISABLED(NEOPIXEL_LED)
  1471. #error "CASE_LIGHT_USE_NEOPIXEL requires NEOPIXEL_LED."
  1472. #endif
  1473. #if ENABLED(SKEW_CORRECTION)
  1474. #if !defined(XY_SKEW_FACTOR) && !(defined(XY_DIAG_AC) && defined(XY_DIAG_BD) && defined(XY_SIDE_AD))
  1475. #error "SKEW_CORRECTION requires XY_SKEW_FACTOR or XY_DIAG_AC, XY_DIAG_BD, XY_SIDE_AD."
  1476. #endif
  1477. #if ENABLED(SKEW_CORRECTION_FOR_Z)
  1478. #if !defined(XZ_SKEW_FACTOR) && !(defined(XZ_DIAG_AC) && defined(XZ_DIAG_BD) && defined(XZ_SIDE_AD))
  1479. #error "SKEW_CORRECTION requires XZ_SKEW_FACTOR or XZ_DIAG_AC, XZ_DIAG_BD, XZ_SIDE_AD."
  1480. #endif
  1481. #if !defined(YZ_SKEW_FACTOR) && !(defined(YZ_DIAG_AC) && defined(YZ_DIAG_BD) && defined(YZ_SIDE_AD))
  1482. #error "SKEW_CORRECTION requires YZ_SKEW_FACTOR or YZ_DIAG_AC, YZ_DIAG_BD, YZ_SIDE_AD."
  1483. #endif
  1484. #endif
  1485. #endif
  1486. #endif // _SANITYCHECK_H_