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

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