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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2019 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. #pragma once
  23. /**
  24. * SanityCheck.h
  25. *
  26. * Test configuration values for errors at compile-time.
  27. */
  28. /**
  29. * Require gcc 4.7 or newer (first included with Arduino 1.6.8) for C++11 features.
  30. */
  31. #if __cplusplus < 201103L
  32. #error "Marlin requires C++11 support (gcc >= 4.7, Arduino IDE >= 1.6.8). Please upgrade your toolchain."
  33. #endif
  34. /**
  35. * We try our best to include sanity checks for all changed configuration
  36. * directives because users have a tendency to use outdated config files with
  37. * the bleeding-edge source code, but sometimes this is not enough. This check
  38. * forces a minimum config file revision. Otherwise Marlin will not build.
  39. */
  40. #define HEXIFY(H) _CAT(0x,H)
  41. #if !defined(CONFIGURATION_H_VERSION) || HEXIFY(CONFIGURATION_H_VERSION) < HEXIFY(REQUIRED_CONFIGURATION_H_VERSION)
  42. #error "You are using an old Configuration.h file, update it before building Marlin."
  43. #endif
  44. #if !defined(CONFIGURATION_ADV_H_VERSION) || HEXIFY(CONFIGURATION_ADV_H_VERSION) < HEXIFY(REQUIRED_CONFIGURATION_ADV_H_VERSION)
  45. #error "You are using an old Configuration_adv.h file, update it before building Marlin."
  46. #endif
  47. #undef HEXIFY
  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 CUSTOM_VERSION_FILE. Please update your configuration."
  73. #elif defined(USE_AUTOMATIC_VERSIONING)
  74. #error "USE_AUTOMATIC_VERSIONING is now CUSTOM_VERSION_FILE. Please update your configuration."
  75. #elif defined(SDSLOW)
  76. #error "SDSLOW deprecated. Set SPI_SPEED to SPI_HALF_SPEED instead."
  77. #elif defined(SDEXTRASLOW)
  78. #error "SDEXTRASLOW deprecated. Set SPI_SPEED to SPI_QUARTER_SPEED instead."
  79. #elif defined(FILAMENT_SENSOR)
  80. #error "FILAMENT_SENSOR is now FILAMENT_WIDTH_SENSOR. Please update your configuration."
  81. #elif defined(ENDSTOPPULLUP_FIL_RUNOUT)
  82. #error "ENDSTOPPULLUP_FIL_RUNOUT is now FIL_RUNOUT_PULLUP. Please update your configuration."
  83. #elif defined(DISABLE_MAX_ENDSTOPS) || defined(DISABLE_MIN_ENDSTOPS)
  84. #error "DISABLE_MAX_ENDSTOPS and DISABLE_MIN_ENDSTOPS deprecated. Use individual USE_*_PLUG options instead."
  85. #elif defined(LANGUAGE_INCLUDE)
  86. #error "LANGUAGE_INCLUDE has been replaced by LCD_LANGUAGE. Please update your configuration."
  87. #elif defined(EXTRUDER_OFFSET_X) || defined(EXTRUDER_OFFSET_Y)
  88. #error "EXTRUDER_OFFSET_[XY] is deprecated. Use HOTEND_OFFSET_[XY] instead."
  89. #elif defined(PID_PARAMS_PER_EXTRUDER)
  90. #error "PID_PARAMS_PER_EXTRUDER is deprecated. Use PID_PARAMS_PER_HOTEND instead."
  91. #elif defined(EXTRUDER_WATTS) || defined(BED_WATTS)
  92. #error "EXTRUDER_WATTS and BED_WATTS are deprecated. Remove them from your configuration."
  93. #elif defined(SERVO_ENDSTOP_ANGLES)
  94. #error "SERVO_ENDSTOP_ANGLES is deprecated. Use Z_SERVO_ANGLES instead."
  95. #elif defined(X_ENDSTOP_SERVO_NR) || defined(Y_ENDSTOP_SERVO_NR)
  96. #error "X_ENDSTOP_SERVO_NR and Y_ENDSTOP_SERVO_NR are deprecated and should be removed."
  97. #elif defined(Z_ENDSTOP_SERVO_NR)
  98. #error "Z_ENDSTOP_SERVO_NR is now Z_PROBE_SERVO_NR. Please update your configuration."
  99. #elif defined(DEFAULT_XYJERK)
  100. #error "DEFAULT_XYJERK is deprecated. Use DEFAULT_XJERK and DEFAULT_YJERK instead."
  101. #elif defined(XY_TRAVEL_SPEED)
  102. #error "XY_TRAVEL_SPEED is deprecated. Use XY_PROBE_SPEED instead."
  103. #elif defined(PROBE_SERVO_DEACTIVATION_DELAY)
  104. #error "PROBE_SERVO_DEACTIVATION_DELAY is deprecated. Use DEACTIVATE_SERVOS_AFTER_MOVE instead."
  105. #elif defined(SERVO_DEACTIVATION_DELAY)
  106. #error "SERVO_DEACTIVATION_DELAY is deprecated. Use SERVO_DELAY instead."
  107. #elif ENABLED(FILAMENTCHANGEENABLE)
  108. #error "FILAMENTCHANGEENABLE is now ADVANCED_PAUSE_FEATURE. Please update your configuration."
  109. #elif ENABLED(FILAMENT_CHANGE_FEATURE)
  110. #error "FILAMENT_CHANGE_FEATURE is now ADVANCED_PAUSE_FEATURE. Please update your configuration."
  111. #elif defined(FILAMENT_CHANGE_X_POS) || defined(FILAMENT_CHANGE_Y_POS)
  112. #error "FILAMENT_CHANGE_[XY]_POS is now set with NOZZLE_PARK_POINT. Please update your configuration."
  113. #elif defined(FILAMENT_CHANGE_Z_ADD)
  114. #error "FILAMENT_CHANGE_Z_ADD is now set with NOZZLE_PARK_POINT. Please update your configuration."
  115. #elif defined(FILAMENT_CHANGE_XY_FEEDRATE)
  116. #error "FILAMENT_CHANGE_XY_FEEDRATE is now NOZZLE_PARK_XY_FEEDRATE. Please update your configuration."
  117. #elif defined(FILAMENT_CHANGE_Z_FEEDRATE)
  118. #error "FILAMENT_CHANGE_Z_FEEDRATE is now NOZZLE_PARK_Z_FEEDRATE. Please update your configuration."
  119. #elif defined(PAUSE_PARK_X_POS) || defined(PAUSE_PARK_Y_POS)
  120. #error "PAUSE_PARK_[XY]_POS is now set with NOZZLE_PARK_POINT. Please update your configuration."
  121. #elif defined(PAUSE_PARK_Z_ADD)
  122. #error "PAUSE_PARK_Z_ADD is now set with NOZZLE_PARK_POINT. Please update your configuration."
  123. #elif defined(PAUSE_PARK_XY_FEEDRATE)
  124. #error "PAUSE_PARK_XY_FEEDRATE is now NOZZLE_PARK_XY_FEEDRATE. Please update your configuration."
  125. #elif defined(PAUSE_PARK_Z_FEEDRATE)
  126. #error "PAUSE_PARK_Z_FEEDRATE is now NOZZLE_PARK_Z_FEEDRATE. Please update your configuration."
  127. #elif defined(FILAMENT_CHANGE_RETRACT_FEEDRATE)
  128. #error "FILAMENT_CHANGE_RETRACT_FEEDRATE is now PAUSE_PARK_RETRACT_FEEDRATE. Please update your configuration."
  129. #elif defined(FILAMENT_CHANGE_RETRACT_LENGTH)
  130. #error "FILAMENT_CHANGE_RETRACT_LENGTH is now PAUSE_PARK_RETRACT_LENGTH. Please update your configuration."
  131. #elif defined(FILAMENT_CHANGE_EXTRUDE_FEEDRATE)
  132. #error "FILAMENT_CHANGE_EXTRUDE_FEEDRATE is now ADVANCED_PAUSE_PURGE_FEEDRATE. Please update your configuration."
  133. #elif defined(ADVANCED_PAUSE_EXTRUDE_FEEDRATE)
  134. #error "ADVANCED_PAUSE_EXTRUDE_FEEDRATE is now ADVANCED_PAUSE_PURGE_FEEDRATE. Please update your configuration."
  135. #elif defined(FILAMENT_CHANGE_EXTRUDE_LENGTH)
  136. #error "FILAMENT_CHANGE_EXTRUDE_LENGTH is now ADVANCED_PAUSE_PURGE_LENGTH. Please update your configuration."
  137. #elif defined(ADVANCED_PAUSE_EXTRUDE_LENGTH)
  138. #error "ADVANCED_PAUSE_EXTRUDE_LENGTH is now ADVANCED_PAUSE_PURGE_LENGTH. Please update your configuration."
  139. #elif defined(FILAMENT_CHANGE_NOZZLE_TIMEOUT)
  140. #error "FILAMENT_CHANGE_NOZZLE_TIMEOUT is now PAUSE_PARK_NOZZLE_TIMEOUT. Please update your configuration."
  141. #elif defined(FILAMENT_CHANGE_NUMBER_OF_ALERT_BEEPS)
  142. #error "FILAMENT_CHANGE_NUMBER_OF_ALERT_BEEPS is now FILAMENT_CHANGE_ALERT_BEEPS. Please update your configuration."
  143. #elif defined(FILAMENT_CHANGE_NO_STEPPER_TIMEOUT)
  144. #error "FILAMENT_CHANGE_NO_STEPPER_TIMEOUT is now PAUSE_PARK_NO_STEPPER_TIMEOUT. Please update your configuration."
  145. #elif defined(PLA_PREHEAT_HOTEND_TEMP)
  146. #error "PLA_PREHEAT_HOTEND_TEMP is now PREHEAT_1_TEMP_HOTEND. Please update your configuration."
  147. #elif defined(PLA_PREHEAT_HPB_TEMP)
  148. #error "PLA_PREHEAT_HPB_TEMP is now PREHEAT_1_TEMP_BED. Please update your configuration."
  149. #elif defined(PLA_PREHEAT_FAN_SPEED)
  150. #error "PLA_PREHEAT_FAN_SPEED is now PREHEAT_1_FAN_SPEED. Please update your configuration."
  151. #elif defined(ABS_PREHEAT_HOTEND_TEMP)
  152. #error "ABS_PREHEAT_HOTEND_TEMP is now PREHEAT_2_TEMP_HOTEND. Please update your configuration."
  153. #elif defined(ABS_PREHEAT_HPB_TEMP)
  154. #error "ABS_PREHEAT_HPB_TEMP is now PREHEAT_2_TEMP_BED. Please update your configuration."
  155. #elif defined(ABS_PREHEAT_FAN_SPEED)
  156. #error "ABS_PREHEAT_FAN_SPEED is now PREHEAT_2_FAN_SPEED. Please update your configuration."
  157. #elif defined(ENDSTOPS_ONLY_FOR_HOMING)
  158. #error "ENDSTOPS_ONLY_FOR_HOMING is deprecated. Use (disable) ENDSTOPS_ALWAYS_ON_DEFAULT instead."
  159. #elif defined(HOMING_FEEDRATE)
  160. #error "HOMING_FEEDRATE is deprecated. Set individual rates with HOMING_FEEDRATE_(XY|Z|E) instead."
  161. #elif defined(MANUAL_HOME_POSITIONS)
  162. #error "MANUAL_HOME_POSITIONS is deprecated. Set MANUAL_[XYZ]_HOME_POS as-needed instead."
  163. #elif defined(PID_ADD_EXTRUSION_RATE)
  164. #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."
  165. #elif defined(Z_RAISE_BEFORE_HOMING)
  166. #error "Z_RAISE_BEFORE_HOMING is now Z_HOMING_HEIGHT. Please update your configuration."
  167. #elif defined(MIN_Z_HEIGHT_FOR_HOMING)
  168. #error "MIN_Z_HEIGHT_FOR_HOMING is now Z_HOMING_HEIGHT. Please update your configuration."
  169. #elif defined(Z_RAISE_BEFORE_PROBING) || defined(Z_RAISE_AFTER_PROBING)
  170. #error "Z_RAISE_(BEFORE|AFTER)_PROBING are deprecated. Use Z_CLEARANCE_DEPLOY_PROBE and Z_AFTER_PROBING instead."
  171. #elif defined(Z_RAISE_PROBE_DEPLOY_STOW) || defined(Z_RAISE_BETWEEN_PROBINGS)
  172. #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."
  173. #elif defined(Z_PROBE_DEPLOY_HEIGHT) || defined(Z_PROBE_TRAVEL_HEIGHT)
  174. #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."
  175. #elif defined(MANUAL_BED_LEVELING)
  176. #error "MANUAL_BED_LEVELING is now LCD_BED_LEVELING. Please update your configuration."
  177. #elif defined(MESH_HOME_SEARCH_Z)
  178. #error "MESH_HOME_SEARCH_Z is now LCD_PROBE_Z_RANGE. Please update your configuration."
  179. #elif defined(MANUAL_PROBE_Z_RANGE)
  180. #error "MANUAL_PROBE_Z_RANGE is now LCD_PROBE_Z_RANGE. Please update your configuration."
  181. #elif !defined(MIN_STEPS_PER_SEGMENT)
  182. #error Please replace "const int dropsegments" with "#define MIN_STEPS_PER_SEGMENT" (and increase by 1) in Configuration_adv.h.
  183. #elif MIN_STEPS_PER_SEGMENT <= 0
  184. #error "MIN_STEPS_PER_SEGMENT must be at least 1. Please update your Configuration_adv.h."
  185. #elif defined(PREVENT_DANGEROUS_EXTRUDE)
  186. #error "PREVENT_DANGEROUS_EXTRUDE is now PREVENT_COLD_EXTRUSION. Please update your configuration."
  187. #elif defined(SCARA)
  188. #error "SCARA is now MORGAN_SCARA. Please update your configuration."
  189. #elif defined(ENABLE_AUTO_BED_LEVELING)
  190. #error "ENABLE_AUTO_BED_LEVELING is deprecated. Specify AUTO_BED_LEVELING_LINEAR, AUTO_BED_LEVELING_BILINEAR, or AUTO_BED_LEVELING_3POINT."
  191. #elif defined(AUTO_BED_LEVELING_FEATURE)
  192. #error "AUTO_BED_LEVELING_FEATURE is deprecated. Specify AUTO_BED_LEVELING_LINEAR, AUTO_BED_LEVELING_BILINEAR, or AUTO_BED_LEVELING_3POINT."
  193. #elif defined(ABL_GRID_POINTS)
  194. #error "ABL_GRID_POINTS is now GRID_MAX_POINTS_X and GRID_MAX_POINTS_Y. Please update your configuration."
  195. #elif defined(ABL_GRID_POINTS_X) || defined(ABL_GRID_POINTS_Y)
  196. #error "ABL_GRID_POINTS_[XY] is now GRID_MAX_POINTS_[XY]. Please update your configuration."
  197. #elif defined(ABL_GRID_MAX_POINTS_X) || defined(ABL_GRID_MAX_POINTS_Y)
  198. #error "ABL_GRID_MAX_POINTS_[XY] is now GRID_MAX_POINTS_[XY]. Please update your configuration."
  199. #elif defined(MESH_NUM_X_POINTS) || defined(MESH_NUM_Y_POINTS)
  200. #error "MESH_NUM_[XY]_POINTS is now GRID_MAX_POINTS_[XY]. Please update your configuration."
  201. #elif defined(UBL_MESH_NUM_X_POINTS) || defined(UBL_MESH_NUM_Y_POINTS)
  202. #error "UBL_MESH_NUM_[XY]_POINTS is now GRID_MAX_POINTS_[XY]. Please update your configuration."
  203. #elif defined(UBL_G26_MESH_VALIDATION)
  204. #error "UBL_G26_MESH_VALIDATION is now G26_MESH_VALIDATION. Please update your configuration."
  205. #elif defined(UBL_MESH_EDIT_ENABLED)
  206. #error "UBL_MESH_EDIT_ENABLED is now G26_MESH_VALIDATION. Please update your configuration."
  207. #elif defined(UBL_MESH_EDITING)
  208. #error "UBL_MESH_EDITING is now G26_MESH_VALIDATION. Please update your configuration."
  209. #elif defined(BLTOUCH_HEATERS_OFF)
  210. #error "BLTOUCH_HEATERS_OFF is now PROBING_HEATERS_OFF. Please update your configuration."
  211. #elif defined(BLTOUCH_V3)
  212. #error "BLTOUCH_V3 is obsolete. Please update your configuration."
  213. #elif defined(BLTOUCH_FORCE_OPEN_DRAIN_MODE)
  214. #error "BLTOUCH_FORCE_OPEN_DRAIN_MODE is obsolete. Please update your configuration."
  215. #elif defined(BEEPER)
  216. #error "BEEPER is now BEEPER_PIN. Please update your pins definitions."
  217. #elif defined(SDCARDDETECT)
  218. #error "SDCARDDETECT is now SD_DETECT_PIN. Please update your pins definitions."
  219. #elif defined(STAT_LED_RED) || defined(STAT_LED_BLUE)
  220. #error "STAT_LED_RED/STAT_LED_BLUE are now STAT_LED_RED_PIN/STAT_LED_BLUE_PIN. Please update your pins definitions."
  221. #elif defined(LCD_PIN_BL)
  222. #error "LCD_PIN_BL is now LCD_BACKLIGHT_PIN. Please update your pins definitions."
  223. #elif defined(LCD_PIN_RESET)
  224. #error "LCD_PIN_RESET is now LCD_RESET_PIN. Please update your pins definitions."
  225. #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)
  226. #error "EXTRUDER_[0123]_AUTO_FAN_PIN is now E[0123]_AUTO_FAN_PIN. Please update your Configuration_adv.h."
  227. #elif defined(PID_FAN_SCALING) && FAN_COUNT <= 0
  228. #error "PID_FAN_SCALING needs at least one fan enabled."
  229. #elif defined(min_software_endstops) || defined(max_software_endstops)
  230. #error "(min|max)_software_endstops are now (MIN|MAX)_SOFTWARE_ENDSTOPS. Please update your configuration."
  231. #elif ENABLED(Z_PROBE_SLED) && defined(SLED_PIN)
  232. #error "Replace SLED_PIN with SOL1_PIN (applies to both Z_PROBE_SLED and SOLENOID_PROBE)."
  233. #elif defined(CONTROLLERFAN_PIN)
  234. #error "CONTROLLERFAN_PIN is now CONTROLLER_FAN_PIN, enabled with USE_CONTROLLER_FAN. Please update your Configuration_adv.h."
  235. #elif defined(MIN_RETRACT)
  236. #error "MIN_RETRACT is now MIN_AUTORETRACT and MAX_AUTORETRACT. Please update your Configuration_adv.h."
  237. #elif defined(ADVANCE)
  238. #error "ADVANCE was removed in Marlin 1.1.6. Please use LIN_ADVANCE."
  239. #elif defined(LIN_ADVANCE_E_D_RATIO)
  240. #error "LIN_ADVANCE (1.5) no longer uses LIN_ADVANCE_E_D_RATIO. Check your configuration."
  241. #elif defined(NEOPIXEL_RGBW_LED)
  242. #error "NEOPIXEL_RGBW_LED is now NEOPIXEL_LED. Please update your configuration."
  243. #elif ENABLED(DELTA) && defined(DELTA_PROBEABLE_RADIUS)
  244. #error "Remove DELTA_PROBEABLE_RADIUS and use MIN_PROBE_EDGE to inset the probe area instead."
  245. #elif ENABLED(DELTA) && defined(DELTA_CALIBRATION_RADIUS)
  246. #error "Remove DELTA_CALIBRATION_RADIUS and use MIN_PROBE_EDGE to inset the probe area instead."
  247. #elif defined(UBL_MESH_INSET)
  248. #error "UBL_MESH_INSET is now just MESH_INSET. Please update your configuration."
  249. #elif defined(UBL_MESH_MIN_X) || defined(UBL_MESH_MIN_Y) || defined(UBL_MESH_MAX_X) || defined(UBL_MESH_MAX_Y)
  250. #error "UBL_MESH_(MIN|MAX)_[XY] is now just MESH_(MIN|MAX)_[XY]. Please update your configuration."
  251. #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)
  252. #error "ABL_PROBE_PT_[123]_[XY] is no longer required. Please remove it from Configuration.h."
  253. #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)
  254. #error "UBL_PROBE_PT_[123]_[XY] is no longer required. Please remove it from Configuration.h."
  255. #elif defined(LEFT_PROBE_BED_POSITION)
  256. #error "LEFT_PROBE_BED_POSITION has been replaced by MIN_PROBE_EDGE_LEFT. Please update your configuration."
  257. #elif defined(RIGHT_PROBE_BED_POSITION)
  258. #error "RIGHT_PROBE_BED_POSITION has been replaced by MIN_PROBE_EDGE_RIGHT. Please update your configuration."
  259. #elif defined(FRONT_PROBE_BED_POSITION)
  260. #error "FRONT_PROBE_BED_POSITION has been replaced by MIN_PROBE_EDGE_FRONT. Please update your configuration."
  261. #elif defined(BACK_PROBE_BED_POSITION)
  262. #error "BACK_PROBE_BED_POSITION has been replaced by MIN_PROBE_EDGE_BACK. Please update your configuration."
  263. #elif defined(ENABLE_MESH_EDIT_GFX_OVERLAY)
  264. #error "ENABLE_MESH_EDIT_GFX_OVERLAY is now MESH_EDIT_GFX_OVERLAY. Please update your configuration."
  265. #elif defined(BABYSTEP_ZPROBE_GFX_REVERSE)
  266. #error "BABYSTEP_ZPROBE_GFX_REVERSE is now set by OVERLAY_GFX_REVERSE. Please update your configurations."
  267. #elif defined(UBL_GRANULAR_SEGMENTATION_FOR_CARTESIAN)
  268. #error "UBL_GRANULAR_SEGMENTATION_FOR_CARTESIAN is now SEGMENT_LEVELED_MOVES. Please update your configuration."
  269. #elif HAS_PID_HEATING && (defined(K1) || !defined(PID_K1))
  270. #error "K1 is now PID_K1. Please update your configuration."
  271. #elif defined(PROBE_DOUBLE_TOUCH)
  272. #error "PROBE_DOUBLE_TOUCH is now MULTIPLE_PROBING. Please update your configuration."
  273. #elif defined(ANET_KEYPAD_LCD)
  274. #error "ANET_KEYPAD_LCD is now ZONESTAR_LCD. Please update your configuration."
  275. #elif defined(LCD_I2C_SAINSMART_YWROBOT)
  276. #error "LCD_I2C_SAINSMART_YWROBOT is now LCD_SAINSMART_I2C_(1602|2004). Please update your configuration."
  277. #elif defined(MEASURED_LOWER_LIMIT) || defined(MEASURED_UPPER_LIMIT)
  278. #error "MEASURED_(UPPER|LOWER)_LIMIT is now FILWIDTH_ERROR_MARGIN. Please update your configuration."
  279. #elif defined(HAVE_TMCDRIVER)
  280. #error "HAVE_TMCDRIVER is now [AXIS]_DRIVER_TYPE TMC26X. Please update your Configuration.h."
  281. #elif defined(STEALTHCHOP)
  282. #error "STEALTHCHOP is now STEALTHCHOP_(XY|Z|E). Please update your Configuration_adv.h."
  283. #elif defined(HAVE_TMC26X)
  284. #error "HAVE_TMC26X is now [AXIS]_DRIVER_TYPE TMC26X. Please update your Configuration.h."
  285. #elif defined(HAVE_TMC2130)
  286. #error "HAVE_TMC2130 is now [AXIS]_DRIVER_TYPE TMC2130. Please update your Configuration.h."
  287. #elif defined(HAVE_TMC2208)
  288. #error "HAVE_TMC2208 is now [AXIS]_DRIVER_TYPE TMC2208. Please update your Configuration.h."
  289. #elif defined(HAVE_L6470DRIVER)
  290. #error "HAVE_L6470DRIVER is now [AXIS]_DRIVER_TYPE L6470. Please update your Configuration.h."
  291. #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) \
  292. || defined(E0_IS_TMC) || defined(E1_IS_TMC) || defined(E2_IS_TMC) || defined(E3_IS_TMC) || defined(E4_IS_TMC) || defined(E5_IS_TMC)
  293. #error "[AXIS]_IS_TMC is now [AXIS]_DRIVER_TYPE TMC26X. Please update your Configuration.h."
  294. #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) \
  295. || defined(E0_IS_TMC26X) || defined(E1_IS_TMC26X) || defined(E2_IS_TMC26X) || defined(E3_IS_TMC26X) || defined(E4_IS_TMC26X) || defined(E5_IS_TMC26X)
  296. #error "[AXIS]_IS_TMC26X is now [AXIS]_DRIVER_TYPE TMC26X. Please update your Configuration.h."
  297. #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) \
  298. || defined(E0_IS_TMC2130) || defined(E1_IS_TMC2130) || defined(E2_IS_TMC2130) || defined(E3_IS_TMC2130) || defined(E4_IS_TMC2130) || defined(E5_IS_TMC2130)
  299. #error "[AXIS]_IS_TMC2130 is now [AXIS]_DRIVER_TYPE TMC2130. Please update your Configuration.h."
  300. #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) \
  301. || defined(E0_IS_TMC2208) || defined(E1_IS_TMC2208) || defined(E2_IS_TMC2208) || defined(E3_IS_TMC2208) || defined(E4_IS_TMC2208) || defined(E5_IS_TMC2208)
  302. #error "[AXIS]_IS_TMC2208 is now [AXIS]_DRIVER_TYPE TMC2208. Please update your Configuration.h."
  303. #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) \
  304. || defined(E0_IS_L6470) || defined(E1_IS_L6470) || defined(E2_IS_L6470) || defined(E3_IS_L6470) || defined(E4_IS_L6470) || defined(E5_IS_L6470)
  305. #error "[AXIS]_IS_L6470 is now [AXIS]_DRIVER_TYPE L6470. Please update your Configuration.h."
  306. #elif defined(AUTOMATIC_CURRENT_CONTROL)
  307. #error "AUTOMATIC_CURRENT_CONTROL is now MONITOR_DRIVER_STATUS. Please update your configuration."
  308. #elif defined(FILAMENT_CHANGE_LOAD_LENGTH)
  309. #error "FILAMENT_CHANGE_LOAD_LENGTH is now FILAMENT_CHANGE_FAST_LOAD_LENGTH. Please update your configuration."
  310. #elif ENABLED(LEVEL_BED_CORNERS) && !defined(LEVEL_CORNERS_INSET)
  311. #error "LEVEL_BED_CORNERS requires a LEVEL_CORNERS_INSET value. Please update your Configuration.h."
  312. #elif defined(BEZIER_JERK_CONTROL)
  313. #error "BEZIER_JERK_CONTROL is now S_CURVE_ACCELERATION. Please update your configuration."
  314. #elif DISABLED(CLASSIC_JERK) && defined(JUNCTION_DEVIATION_FACTOR)
  315. #error "JUNCTION_DEVIATION_FACTOR is now JUNCTION_DEVIATION_MM. Please update your configuration."
  316. #elif defined(JUNCTION_ACCELERATION_FACTOR)
  317. #error "JUNCTION_ACCELERATION_FACTOR is obsolete. Delete it from Configuration_adv.h."
  318. #elif defined(JUNCTION_ACCELERATION)
  319. #error "JUNCTION_ACCELERATION is obsolete. Delete it from Configuration_adv.h."
  320. #elif defined(MAX7219_DEBUG_STEPPER_HEAD)
  321. #error "MAX7219_DEBUG_STEPPER_HEAD is now MAX7219_DEBUG_PLANNER_HEAD. Please update your configuration."
  322. #elif defined(MAX7219_DEBUG_STEPPER_TAIL)
  323. #error "MAX7219_DEBUG_STEPPER_TAIL is now MAX7219_DEBUG_PLANNER_TAIL. Please update your configuration."
  324. #elif defined(MAX7219_DEBUG_STEPPER_QUEUE)
  325. #error "MAX7219_DEBUG_STEPPER_QUEUE is now MAX7219_DEBUG_PLANNER_QUEUE. Please update your configuration."
  326. #elif defined(ENDSTOP_NOISE_FILTER)
  327. #error "ENDSTOP_NOISE_FILTER is now ENDSTOP_NOISE_THRESHOLD [2-7]. Please update your configuration."
  328. #elif defined(RETRACT_ZLIFT)
  329. #error "RETRACT_ZLIFT is now RETRACT_ZRAISE. Please update your Configuration_adv.h."
  330. #elif defined(TOOLCHANGE_PARK_ZLIFT) || defined(TOOLCHANGE_UNPARK_ZLIFT)
  331. #error "TOOLCHANGE_PARK_ZLIFT and TOOLCHANGE_UNPARK_ZLIFT are now TOOLCHANGE_ZRAISE. Please update your configuration."
  332. #elif defined(SINGLENOZZLE_TOOLCHANGE_ZRAISE)
  333. #error "SINGLENOZZLE_TOOLCHANGE_ZRAISE is now TOOLCHANGE_ZRAISE. Please update your configuration."
  334. #elif defined(SINGLENOZZLE_SWAP_LENGTH)
  335. #error "SINGLENOZZLE_SWAP_LENGTH is now TOOLCHANGE_FIL_SWAP_LENGTH. Please update your configuration."
  336. #elif defined(SINGLENOZZLE_SWAP_RETRACT_SPEED)
  337. #error "SINGLENOZZLE_SWAP_RETRACT_SPEED is now TOOLCHANGE_FIL_SWAP_RETRACT_SPEED. Please update your configuration."
  338. #elif defined(SINGLENOZZLE_SWAP_PRIME_SPEED)
  339. #error "SINGLENOZZLE_SWAP_PRIME_SPEED is now TOOLCHANGE_FIL_SWAP_PRIME_SPEED. Please update your configuration."
  340. #elif defined(SINGLENOZZLE_SWAP_PARK)
  341. #error "SINGLENOZZLE_SWAP_PARK is now TOOLCHANGE_PARK. Please update your configuration."
  342. #elif defined(SINGLENOZZLE_TOOLCHANGE_XY)
  343. #error "SINGLENOZZLE_TOOLCHANGE_XY is now TOOLCHANGE_PARK_XY. Please update your configuration."
  344. #elif defined(SINGLENOZZLE_PARK_XY_FEEDRATE)
  345. #error "SINGLENOZZLE_PARK_XY_FEEDRATE is now TOOLCHANGE_PARK_XY_FEEDRATE. Please update your configuration."
  346. #elif defined(PARKING_EXTRUDER_SECURITY_RAISE)
  347. #error "PARKING_EXTRUDER_SECURITY_RAISE is now TOOLCHANGE_ZRAISE. Please update your configuration."
  348. #elif defined(SWITCHING_TOOLHEAD_SECURITY_RAISE)
  349. #error "SWITCHING_TOOLHEAD_SECURITY_RAISE is now TOOLCHANGE_ZRAISE. Please update your configuration."
  350. #elif defined(G0_FEEDRATE) && G0_FEEDRATE == 0
  351. #error "G0_FEEDRATE is now used to set the G0 feedrate. Please update your configuration."
  352. #elif defined(MBL_Z_STEP)
  353. #error "MBL_Z_STEP is now MESH_EDIT_Z_STEP. Please update your configuration."
  354. #elif defined(CHDK)
  355. #error "CHDK is now CHDK_PIN. Please update your Configuration_adv.h."
  356. #elif defined(MAX6675_SS)
  357. #error "MAX6675_SS is now MAX6675_SS_PIN. Please update your configuration and/or pins."
  358. #elif defined(MAX6675_SS2)
  359. #error "MAX6675_SS2 is now MAX6675_SS2_PIN. Please update your configuration and/or pins."
  360. #elif defined(SPINDLE_LASER_ENABLE)
  361. #error "SPINDLE_LASER_ENABLE is now SPINDLE_FEATURE or LASER_FEATURE. Please update your Configuration_adv.h."
  362. #elif defined(SPINDLE_LASER_ENABLE_PIN)
  363. #error "SPINDLE_LASER_ENABLE_PIN is now SPINDLE_LASER_ENA_PIN. Please update your Configuration_adv.h and/or pins."
  364. #elif defined(SPINDLE_DIR_CHANGE)
  365. #error "SPINDLE_DIR_CHANGE is now SPINDLE_CHANGE_DIR. Please update your Configuration_adv.h."
  366. #elif defined(SPINDLE_STOP_ON_DIR_CHANGE)
  367. #error "SPINDLE_STOP_ON_DIR_CHANGE is now SPINDLE_CHANGE_DIR_STOP. Please update your Configuration_adv.h."
  368. #elif defined(SPINDLE_LASER_ENABLE_INVERT)
  369. #error "SPINDLE_LASER_ENABLE_INVERT is now SPINDLE_LASER_ACTIVE_HIGH. Please update your Configuration_adv.h."
  370. #elif defined(CHAMBER_HEATER_PIN)
  371. #error "CHAMBER_HEATER_PIN is now HEATER_CHAMBER_PIN. Please update your configuration and/or pins."
  372. #elif defined(TMC_Z_CALIBRATION)
  373. #error "TMC_Z_CALIBRATION has been deprecated in favor of Z_STEPPER_AUTO_ALIGN. Please update your configuration."
  374. #elif defined(Z_MIN_PROBE_ENDSTOP)
  375. #error "Z_MIN_PROBE_ENDSTOP is no longer required. Please remove it from Configuration.h."
  376. #elif defined(DUAL_NOZZLE_DUPLICATION_MODE)
  377. #error "DUAL_NOZZLE_DUPLICATION_MODE is now MULTI_NOZZLE_DUPLICATION. Please update your configuration."
  378. #elif defined(MENU_ITEM_CASE_LIGHT)
  379. #error "MENU_ITEM_CASE_LIGHT is now CASE_LIGHT_MENU. Please update your configuration."
  380. #elif defined(ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED)
  381. #error "ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED is now SD_ABORT_ON_ENDSTOP_HIT. Please update your Configuration_adv.h."
  382. #elif defined(LPC_SD_LCD) || defined(LPC_SD_ONBOARD) || defined(LPC_SD_CUSTOM_CABLE)
  383. #error "LPC_SD_(LCD|ONBOARD|CUSTOM_CABLE) are now SDCARD_CONNECTION. Please update your Configuration_adv.h."
  384. #elif defined(USB_SD_DISABLED)
  385. #error "USB_SD_DISABLED is now NO_SD_HOST_DRIVE. Please update your Configuration_adv.h."
  386. #elif defined(USB_SD_ONBOARD)
  387. #error "USB_SD_ONBOARD is obsolete. Disable NO_SD_HOST_DRIVE instead."
  388. #elif POWER_SUPPLY == 1
  389. #error "Replace POWER_SUPPLY 1 by enabling PSU_CONTROL and setting PSU_ACTIVE_HIGH to 'false'."
  390. #elif POWER_SUPPLY == 2
  391. #error "Replace POWER_SUPPLY 2 by enabling PSU_CONTROL and setting PSU_ACTIVE_HIGH to 'true'."
  392. #elif defined(POWER_SUPPLY)
  393. #error "POWER_SUPPLY is now obsolete. Please remove it from Configuration.h."
  394. #elif defined(MKS_ROBIN_TFT)
  395. #error "MKS_ROBIN_TFT is now FSMC_GRAPHICAL_TFT. Please update your configuration."
  396. #elif defined(SDPOWER)
  397. #error "SDPOWER is now SDPOWER_PIN. Please update your configuration and/or pins."
  398. #elif defined(STRING_SPLASH_LINE1) || defined(STRING_SPLASH_LINE2)
  399. #error "STRING_SPLASH_LINE[12] are now obsolete. Please remove them from Configuration.h."
  400. #elif defined(Z_PROBE_ALLEN_KEY_DEPLOY_1_X) || defined(Z_PROBE_ALLEN_KEY_STOW_1_X)
  401. #error "Z_PROBE_ALLEN_KEY_(DEPLOY|STOW) coordinates are now a single setting. Please update your configuration."
  402. #elif defined(X_PROBE_OFFSET_FROM_EXTRUDER) || defined(Y_PROBE_OFFSET_FROM_EXTRUDER) || defined(Z_PROBE_OFFSET_FROM_EXTRUDER)
  403. #error "[XYZ]_PROBE_OFFSET_FROM_EXTRUDER is now NOZZLE_TO_PROBE_OFFSET. Please update your configuration."
  404. #elif defined(MIN_PROBE_X) || defined(MIN_PROBE_Y) || defined(MAX_PROBE_X) || defined(MAX_PROBE_Y)
  405. #error "(MIN|MAX)_PROBE_[XY] are now calculated at runtime. Please remove them from Configuration.h."
  406. #elif defined(Z_STEPPER_ALIGN_X) || defined(Z_STEPPER_ALIGN_X)
  407. #error "Z_STEPPER_ALIGN_X and Z_STEPPER_ALIGN_Y are now combined as Z_STEPPER_ALIGN_XY. Please update your Configuration_adv.h."
  408. #elif defined(JUNCTION_DEVIATION)
  409. #error "JUNCTION_DEVIATION is no longer required. (See CLASSIC_JERK). Please remove it from Configuration.h."
  410. #elif defined(BABYSTEP_MULTIPLICATOR)
  411. #error "BABYSTEP_MULTIPLICATOR is now BABYSTEP_MULTIPLICATOR_[XY|Z]. Please update Configuration_adv.h."
  412. #elif defined(LULZBOT_TOUCH_UI)
  413. #error "LULZBOT_TOUCH_UI is now TOUCH_UI_FTDI_EVE. Please update your configuration."
  414. #elif defined(PS_DEFAULT_OFF)
  415. #error "PS_DEFAULT_OFF is now PSU_DEFAULT_OFF. Please update your configuration."
  416. #elif defined(FILAMENT_UNLOAD_RETRACT_LENGTH)
  417. #error "FILAMENT_UNLOAD_RETRACT_LENGTH is now FILAMENT_UNLOAD_PURGE_RETRACT. Please update Configuration_adv.h."
  418. #elif defined(FILAMENT_UNLOAD_DELAY)
  419. #error "FILAMENT_UNLOAD_DELAY is now FILAMENT_UNLOAD_PURGE_DELAY. Please update Configuration_adv.h."
  420. #elif defined(HOME_USING_SPREADCYCLE)
  421. #error "HOME_USING_SPREADCYCLE is now obsolete. Please remove it from Configuration_adv.h."
  422. #elif defined(DGUS_LCD)
  423. #error "DGUS_LCD is now DGUS_LCD_UI_(ORIGIN|FYSETC|HIPRECY). Please update your configuration."
  424. #endif
  425. /**
  426. * Marlin release, version and default string
  427. */
  428. #ifndef SHORT_BUILD_VERSION
  429. #error "SHORT_BUILD_VERSION must be specified."
  430. #elif !defined(DETAILED_BUILD_VERSION)
  431. #error "BUILD_VERSION must be specified."
  432. #elif !defined(STRING_DISTRIBUTION_DATE)
  433. #error "STRING_DISTRIBUTION_DATE must be specified."
  434. #elif !defined(PROTOCOL_VERSION)
  435. #error "PROTOCOL_VERSION must be specified."
  436. #elif !defined(MACHINE_NAME)
  437. #error "MACHINE_NAME must be specified."
  438. #elif !defined(SOURCE_CODE_URL)
  439. #error "SOURCE_CODE_URL must be specified."
  440. #elif !defined(DEFAULT_MACHINE_UUID)
  441. #error "DEFAULT_MACHINE_UUID must be specified."
  442. #elif !defined(WEBSITE_URL)
  443. #error "WEBSITE_URL must be specified."
  444. #endif
  445. /**
  446. * Serial
  447. */
  448. #if !(defined(__AVR__) && defined(USBCON))
  449. #if ENABLED(SERIAL_XON_XOFF) && RX_BUFFER_SIZE < 1024
  450. #error "SERIAL_XON_XOFF requires RX_BUFFER_SIZE >= 1024 for reliable transfers without drops."
  451. #elif RX_BUFFER_SIZE && (RX_BUFFER_SIZE < 2 || !IS_POWER_OF_2(RX_BUFFER_SIZE))
  452. #error "RX_BUFFER_SIZE must be a power of 2 greater than 1."
  453. #elif TX_BUFFER_SIZE && (TX_BUFFER_SIZE < 2 || TX_BUFFER_SIZE > 256 || !IS_POWER_OF_2(TX_BUFFER_SIZE))
  454. #error "TX_BUFFER_SIZE must be 0 or a power of 2 between 1 and 256."
  455. #endif
  456. #elif ANY(SERIAL_XON_XOFF, SERIAL_STATS_MAX_RX_QUEUED, SERIAL_STATS_DROPPED_RX)
  457. #error "SERIAL_XON_XOFF and SERIAL_STATS_* features not supported on USB-native AVR devices."
  458. #endif
  459. #if SERIAL_PORT > 7
  460. #error "Set SERIAL_PORT to the port on your board. Usually this is 0."
  461. #endif
  462. #if defined(SERIAL_PORT_2) && NUM_SERIAL < 2
  463. #error "SERIAL_PORT_2 is not supported for your MOTHERBOARD. Disable it to continue."
  464. #endif
  465. /**
  466. * Dual / Triple Stepper Drivers
  467. */
  468. #if BOTH(X_DUAL_STEPPER_DRIVERS, DUAL_X_CARRIAGE)
  469. #error "DUAL_X_CARRIAGE is not compatible with X_DUAL_STEPPER_DRIVERS."
  470. #elif ENABLED(X_DUAL_STEPPER_DRIVERS) && !(HAS_X2_ENABLE && HAS_X2_STEP && HAS_X2_DIR)
  471. #error "X_DUAL_STEPPER_DRIVERS requires X2 pins (and an extra E plug)."
  472. #elif ENABLED(Y_DUAL_STEPPER_DRIVERS) && !(HAS_Y2_ENABLE && HAS_Y2_STEP && HAS_Y2_DIR)
  473. #error "Y_DUAL_STEPPER_DRIVERS requires Y2 pins (and an extra E plug)."
  474. #elif ENABLED(Z_DUAL_STEPPER_DRIVERS)
  475. #if ENABLED(Z_TRIPLE_STEPPER_DRIVERS)
  476. #error "Please select either Z_TRIPLE_STEPPER_DRIVERS or Z_DUAL_STEPPER_DRIVERS, not both."
  477. #elif !(HAS_Z2_ENABLE && HAS_Z2_STEP && HAS_Z2_DIR)
  478. #error "Z_DUAL_STEPPER_DRIVERS requires Z2 pins (and an extra E plug)."
  479. #endif
  480. #elif ENABLED(Z_TRIPLE_STEPPER_DRIVERS) && !(HAS_Z2_ENABLE && HAS_Z2_STEP && HAS_Z2_DIR && HAS_Z3_ENABLE && HAS_Z3_STEP && HAS_Z3_DIR)
  481. #error "Z_TRIPLE_STEPPER_DRIVERS requires Z3 pins (and two extra E plugs)."
  482. #endif
  483. /**
  484. * Validate that the bed size fits
  485. */
  486. static_assert(X_MAX_LENGTH >= X_BED_SIZE, "Movement bounds (X_MIN_POS, X_MAX_POS) are too narrow to contain X_BED_SIZE.");
  487. static_assert(Y_MAX_LENGTH >= Y_BED_SIZE, "Movement bounds (Y_MIN_POS, Y_MAX_POS) are too narrow to contain Y_BED_SIZE.");
  488. /**
  489. * Granular software endstops (Marlin >= 1.1.7)
  490. */
  491. #if ENABLED(MIN_SOFTWARE_ENDSTOPS) && DISABLED(MIN_SOFTWARE_ENDSTOP_Z)
  492. #if IS_KINEMATIC
  493. #error "MIN_SOFTWARE_ENDSTOPS on DELTA/SCARA also requires MIN_SOFTWARE_ENDSTOP_Z."
  494. #elif NONE(MIN_SOFTWARE_ENDSTOP_X, MIN_SOFTWARE_ENDSTOP_Y)
  495. #error "MIN_SOFTWARE_ENDSTOPS requires at least one of the MIN_SOFTWARE_ENDSTOP_[XYZ] options."
  496. #endif
  497. #endif
  498. #if ENABLED(MAX_SOFTWARE_ENDSTOPS) && DISABLED(MAX_SOFTWARE_ENDSTOP_Z)
  499. #if IS_KINEMATIC
  500. #error "MAX_SOFTWARE_ENDSTOPS on DELTA/SCARA also requires MAX_SOFTWARE_ENDSTOP_Z."
  501. #elif NONE(MAX_SOFTWARE_ENDSTOP_X, MAX_SOFTWARE_ENDSTOP_Y)
  502. #error "MAX_SOFTWARE_ENDSTOPS requires at least one of the MAX_SOFTWARE_ENDSTOP_[XYZ] options."
  503. #endif
  504. #endif
  505. #if !defined(TARGET_LPC1768) && ANY( \
  506. ENDSTOPPULLDOWNS, \
  507. ENDSTOPPULLDOWN_XMAX, ENDSTOPPULLDOWN_YMAX, \
  508. ENDSTOPPULLDOWN_ZMAX, ENDSTOPPULLDOWN_XMIN, \
  509. ENDSTOPPULLDOWN_YMIN, ENDSTOPPULLDOWN_ZMIN \
  510. )
  511. #error "PULLDOWN pin mode is not available on the selected board."
  512. #endif
  513. #if BOTH(ENDSTOPPULLUPS, ENDSTOPPULLDOWNS)
  514. #error "Enable only one of ENDSTOPPULLUPS or ENDSTOPPULLDOWNS."
  515. #elif BOTH(FIL_RUNOUT_PULLUP, FIL_RUNOUT_PULLDOWN)
  516. #error "Enable only one of FIL_RUNOUT_PULLUP or FIL_RUNOUT_PULLDOWN."
  517. #elif BOTH(ENDSTOPPULLUP_XMAX, ENDSTOPPULLDOWN_XMAX)
  518. #error "Enable only one of ENDSTOPPULLUP_X_MAX or ENDSTOPPULLDOWN_X_MAX."
  519. #elif BOTH(ENDSTOPPULLUP_YMAX, ENDSTOPPULLDOWN_YMAX)
  520. #error "Enable only one of ENDSTOPPULLUP_Y_MAX or ENDSTOPPULLDOWN_Y_MAX."
  521. #elif BOTH(ENDSTOPPULLUP_ZMAX, ENDSTOPPULLDOWN_ZMAX)
  522. #error "Enable only one of ENDSTOPPULLUP_Z_MAX or ENDSTOPPULLDOWN_Z_MAX."
  523. #elif BOTH(ENDSTOPPULLUP_XMIN, ENDSTOPPULLDOWN_XMIN)
  524. #error "Enable only one of ENDSTOPPULLUP_X_MIN or ENDSTOPPULLDOWN_X_MIN."
  525. #elif BOTH(ENDSTOPPULLUP_YMIN, ENDSTOPPULLDOWN_YMIN)
  526. #error "Enable only one of ENDSTOPPULLUP_Y_MIN or ENDSTOPPULLDOWN_Y_MIN."
  527. #elif BOTH(ENDSTOPPULLUP_ZMIN, ENDSTOPPULLDOWN_ZMIN)
  528. #error "Enable only one of ENDSTOPPULLUP_Z_MIN or ENDSTOPPULLDOWN_Z_MIN."
  529. #endif
  530. /**
  531. * LCD Info Screen Style
  532. */
  533. #if LCD_INFO_SCREEN_STYLE > 0
  534. #if HAS_GRAPHICAL_LCD || LCD_WIDTH < 20 || LCD_HEIGHT < 4
  535. #error "Alternative LCD_INFO_SCREEN_STYLE requires 20x4 Character LCD."
  536. #elif LCD_INFO_SCREEN_STYLE > 1
  537. #error "LCD_INFO_SCREEN_STYLE only has options 0 and 1 at this time."
  538. #endif
  539. #endif
  540. /**
  541. * Progress Bar
  542. */
  543. #if ENABLED(LCD_PROGRESS_BAR)
  544. #if NONE(SDSUPPORT, LCD_SET_PROGRESS_MANUALLY)
  545. #error "LCD_PROGRESS_BAR requires SDSUPPORT or LCD_SET_PROGRESS_MANUALLY."
  546. #elif !HAS_CHARACTER_LCD
  547. #error "LCD_PROGRESS_BAR requires a character LCD."
  548. #elif HAS_GRAPHICAL_LCD
  549. #error "LCD_PROGRESS_BAR does not apply to graphical displays."
  550. #elif ENABLED(FILAMENT_LCD_DISPLAY)
  551. #error "LCD_PROGRESS_BAR and FILAMENT_LCD_DISPLAY are not fully compatible. Comment out this line to use both."
  552. #elif PROGRESS_MSG_EXPIRE < 0
  553. #error "PROGRESS_MSG_EXPIRE must be greater than or equal to 0."
  554. #endif
  555. #elif ENABLED(LCD_SET_PROGRESS_MANUALLY) && !HAS_GRAPHICAL_LCD && DISABLED(EXTENSIBLE_UI)
  556. #error "LCD_SET_PROGRESS_MANUALLY requires LCD_PROGRESS_BAR, Graphical LCD, or EXTENSIBLE_UI."
  557. #endif
  558. #if !HAS_LCD_MENU && ENABLED(SD_REPRINT_LAST_SELECTED_FILE)
  559. #error "SD_REPRINT_LAST_SELECTED_FILE currently requires a Marlin-native LCD menu."
  560. #endif
  561. /**
  562. * Custom Boot and Status screens
  563. */
  564. #if ENABLED(SHOW_CUSTOM_BOOTSCREEN) && !(HAS_GRAPHICAL_LCD || ENABLED(TOUCH_UI_FTDI_EVE))
  565. #error "SHOW_CUSTOM_BOOTSCREEN requires Graphical LCD or TOUCH_UI_FTDI_EVE."
  566. #elif ENABLED(CUSTOM_STATUS_SCREEN_IMAGE) && !HAS_GRAPHICAL_LCD
  567. #error "CUSTOM_STATUS_SCREEN_IMAGE requires a Graphical LCD."
  568. #endif
  569. /**
  570. * LCD Lightweight Screen Style
  571. */
  572. #if ENABLED(LIGHTWEIGHT_UI) && DISABLED(U8GLIB_ST7920)
  573. #error "LIGHTWEIGHT_UI requires a U8GLIB_ST7920-based display."
  574. #endif
  575. /**
  576. * SD File Sorting
  577. */
  578. #if ENABLED(SDCARD_SORT_ALPHA)
  579. #if SDSORT_LIMIT > 256
  580. #error "SDSORT_LIMIT must be 256 or smaller."
  581. #elif SDSORT_LIMIT < 10
  582. #error "SDSORT_LIMIT should be greater than 9 to be useful."
  583. #elif DISABLED(SDSORT_USES_RAM)
  584. #if ENABLED(SDSORT_DYNAMIC_RAM)
  585. #error "SDSORT_DYNAMIC_RAM requires SDSORT_USES_RAM (which reads the directory into RAM)."
  586. #elif ENABLED(SDSORT_CACHE_NAMES)
  587. #error "SDSORT_CACHE_NAMES requires SDSORT_USES_RAM (which reads the directory into RAM)."
  588. #endif
  589. #endif
  590. #if ENABLED(SDSORT_CACHE_NAMES) && DISABLED(SDSORT_DYNAMIC_RAM)
  591. #if SDSORT_CACHE_VFATS < 2
  592. #error "SDSORT_CACHE_VFATS must be 2 or greater!"
  593. #elif SDSORT_CACHE_VFATS > MAX_VFAT_ENTRIES
  594. #undef SDSORT_CACHE_VFATS
  595. #define SDSORT_CACHE_VFATS MAX_VFAT_ENTRIES
  596. #warning "SDSORT_CACHE_VFATS was reduced to MAX_VFAT_ENTRIES!"
  597. #endif
  598. #endif
  599. #endif
  600. #if defined(EVENT_GCODE_SD_STOP) && DISABLED(NOZZLE_PARK_FEATURE)
  601. static_assert(nullptr == strstr(EVENT_GCODE_SD_STOP, "G27"), "NOZZLE_PARK_FEATURE is required to use G27 in EVENT_GCODE_SD_STOP.");
  602. #endif
  603. /**
  604. * I2C Position Encoders
  605. */
  606. #if ENABLED(I2C_POSITION_ENCODERS)
  607. #if !BOTH(BABYSTEPPING, BABYSTEP_XY)
  608. #error "I2C_POSITION_ENCODERS requires BABYSTEPPING and BABYSTEP_XY."
  609. #elif !WITHIN(I2CPE_ENCODER_CNT, 1, 5)
  610. #error "I2CPE_ENCODER_CNT must be between 1 and 5."
  611. #endif
  612. #endif
  613. /**
  614. * Babystepping
  615. */
  616. #if ENABLED(BABYSTEPPING)
  617. #if ENABLED(SCARA)
  618. #error "BABYSTEPPING is not implemented for SCARA yet."
  619. #elif BOTH(DELTA, BABYSTEP_XY)
  620. #error "BABYSTEPPING only implemented for Z axis on deltabots."
  621. #elif BOTH(BABYSTEP_ZPROBE_OFFSET, MESH_BED_LEVELING)
  622. #error "MESH_BED_LEVELING and BABYSTEP_ZPROBE_OFFSET is not a valid combination"
  623. #elif ENABLED(BABYSTEP_ZPROBE_OFFSET) && !HAS_BED_PROBE
  624. #error "BABYSTEP_ZPROBE_OFFSET requires a probe."
  625. #elif ENABLED(BABYSTEP_ZPROBE_GFX_OVERLAY) && !HAS_GRAPHICAL_LCD
  626. #error "BABYSTEP_ZPROBE_GFX_OVERLAY requires a Graphical LCD."
  627. #elif ENABLED(BABYSTEP_ZPROBE_GFX_OVERLAY) && DISABLED(BABYSTEP_ZPROBE_OFFSET)
  628. #error "BABYSTEP_ZPROBE_GFX_OVERLAY requires a BABYSTEP_ZPROBE_OFFSET."
  629. #elif ENABLED(BABYSTEP_HOTEND_Z_OFFSET) && !HAS_HOTEND_OFFSET
  630. #error "BABYSTEP_HOTEND_Z_OFFSET requires 2 or more HOTENDS."
  631. #elif BOTH(BABYSTEP_ALWAYS_AVAILABLE, MOVE_Z_WHEN_IDLE)
  632. #error "BABYSTEP_ALWAYS_AVAILABLE and MOVE_Z_WHEN_IDLE are incompatible."
  633. #endif
  634. #endif
  635. /**
  636. * Filament Runout needs one or more pins and either SD Support or Auto print start detection
  637. */
  638. #if HAS_FILAMENT_SENSOR
  639. #if !PIN_EXISTS(FIL_RUNOUT)
  640. #error "FILAMENT_RUNOUT_SENSOR requires FIL_RUNOUT_PIN."
  641. #elif NUM_RUNOUT_SENSORS > E_STEPPERS
  642. #error "NUM_RUNOUT_SENSORS cannot exceed the number of E steppers."
  643. #elif NUM_RUNOUT_SENSORS > 1 && !PIN_EXISTS(FIL_RUNOUT2)
  644. #error "FILAMENT_RUNOUT_SENSOR with NUM_RUNOUT_SENSORS > 1 requires FIL_RUNOUT2_PIN."
  645. #elif NUM_RUNOUT_SENSORS > 2 && !PIN_EXISTS(FIL_RUNOUT3)
  646. #error "FILAMENT_RUNOUT_SENSOR with NUM_RUNOUT_SENSORS > 2 requires FIL_RUNOUT3_PIN."
  647. #elif NUM_RUNOUT_SENSORS > 3 && !PIN_EXISTS(FIL_RUNOUT4)
  648. #error "FILAMENT_RUNOUT_SENSOR with NUM_RUNOUT_SENSORS > 3 requires FIL_RUNOUT4_PIN."
  649. #elif NUM_RUNOUT_SENSORS > 4 && !PIN_EXISTS(FIL_RUNOUT5)
  650. #error "FILAMENT_RUNOUT_SENSOR with NUM_RUNOUT_SENSORS > 4 requires FIL_RUNOUT5_PIN."
  651. #elif NUM_RUNOUT_SENSORS > 5 && !PIN_EXISTS(FIL_RUNOUT6)
  652. #error "FILAMENT_RUNOUT_SENSOR with NUM_RUNOUT_SENSORS > 5 requires FIL_RUNOUT6_PIN."
  653. #elif NONE(SDSUPPORT, PRINTJOB_TIMER_AUTOSTART)
  654. #error "FILAMENT_RUNOUT_SENSOR requires SDSUPPORT or PRINTJOB_TIMER_AUTOSTART."
  655. #elif FILAMENT_RUNOUT_DISTANCE_MM < 0
  656. #error "FILAMENT_RUNOUT_DISTANCE_MM must be greater than or equal to zero."
  657. #elif DISABLED(ADVANCED_PAUSE_FEATURE)
  658. static_assert(nullptr == strstr(FILAMENT_RUNOUT_SCRIPT, "M600"), "ADVANCED_PAUSE_FEATURE is required to use M600 with FILAMENT_RUNOUT_SENSOR.");
  659. #endif
  660. #endif
  661. /**
  662. * Advanced Pause
  663. */
  664. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  665. #if !HAS_RESUME_CONTINUE
  666. #error "ADVANCED_PAUSE_FEATURE currently requires an LCD controller or EMERGENCY_PARSER."
  667. #elif ENABLED(EXTRUDER_RUNOUT_PREVENT)
  668. #error "EXTRUDER_RUNOUT_PREVENT is incompatible with ADVANCED_PAUSE_FEATURE."
  669. #elif ENABLED(PARK_HEAD_ON_PAUSE) && NONE(SDSUPPORT, NEWPANEL, EMERGENCY_PARSER)
  670. #error "PARK_HEAD_ON_PAUSE requires SDSUPPORT, EMERGENCY_PARSER, or an LCD controller."
  671. #elif ENABLED(HOME_BEFORE_FILAMENT_CHANGE) && DISABLED(PAUSE_PARK_NO_STEPPER_TIMEOUT)
  672. #error "HOME_BEFORE_FILAMENT_CHANGE requires PAUSE_PARK_NO_STEPPER_TIMEOUT."
  673. #elif DISABLED(NOZZLE_PARK_FEATURE)
  674. #error "ADVANCED_PAUSE_FEATURE requires NOZZLE_PARK_FEATURE."
  675. #elif ENABLED(PREVENT_LENGTHY_EXTRUDE) && FILAMENT_CHANGE_UNLOAD_LENGTH > EXTRUDE_MAXLENGTH
  676. #error "FILAMENT_CHANGE_UNLOAD_LENGTH must be less than or equal to EXTRUDE_MAXLENGTH."
  677. #elif ENABLED(PREVENT_LENGTHY_EXTRUDE) && FILAMENT_CHANGE_SLOW_LOAD_LENGTH > EXTRUDE_MAXLENGTH
  678. #error "FILAMENT_CHANGE_SLOW_LOAD_LENGTH must be less than or equal to EXTRUDE_MAXLENGTH."
  679. #elif ENABLED(PREVENT_LENGTHY_EXTRUDE) && FILAMENT_CHANGE_FAST_LOAD_LENGTH > EXTRUDE_MAXLENGTH
  680. #error "FILAMENT_CHANGE_FAST_LOAD_LENGTH must be less than or equal to EXTRUDE_MAXLENGTH."
  681. #endif
  682. #endif
  683. #if ENABLED(NOZZLE_PARK_FEATURE)
  684. constexpr float npp[] = NOZZLE_PARK_POINT;
  685. static_assert(COUNT(npp) == XYZ, "NOZZLE_PARK_POINT requires X, Y, and Z values.");
  686. #endif
  687. /**
  688. * Individual axis homing is useless for DELTAS
  689. */
  690. #if BOTH(INDIVIDUAL_AXIS_HOMING_MENU, DELTA)
  691. #error "INDIVIDUAL_AXIS_HOMING_MENU is incompatible with DELTA kinematics."
  692. #endif
  693. /**
  694. * Options only for EXTRUDERS > 1
  695. */
  696. #if EXTRUDERS > 1
  697. #if EXTRUDERS > 6
  698. #error "Marlin supports a maximum of 6 EXTRUDERS."
  699. #endif
  700. #if ENABLED(HEATERS_PARALLEL)
  701. #error "EXTRUDERS must be 1 with HEATERS_PARALLEL."
  702. #endif
  703. #if ENABLED(TOOLCHANGE_FILAMENT_SWAP)
  704. #ifndef TOOLCHANGE_FIL_SWAP_LENGTH
  705. #error "TOOLCHANGE_FILAMENT_SWAP requires TOOLCHANGE_FIL_SWAP_LENGTH. Please update your Configuration."
  706. #elif !defined(TOOLCHANGE_FIL_SWAP_RETRACT_SPEED)
  707. #error "TOOLCHANGE_FILAMENT_SWAP requires TOOLCHANGE_FIL_SWAP_RETRACT_SPEED. Please update your Configuration."
  708. #elif !defined(TOOLCHANGE_FIL_SWAP_PRIME_SPEED)
  709. #error "TOOLCHANGE_FILAMENT_SWAP requires TOOLCHANGE_FIL_SWAP_PRIME_SPEED. Please update your Configuration."
  710. #endif
  711. #endif
  712. #if ENABLED(TOOLCHANGE_PARK)
  713. #ifndef TOOLCHANGE_PARK_XY
  714. #error "TOOLCHANGE_PARK requires TOOLCHANGE_PARK_XY. Please update your Configuration."
  715. #elif !defined(TOOLCHANGE_PARK_XY_FEEDRATE)
  716. #error "TOOLCHANGE_PARK requires TOOLCHANGE_PARK_XY_FEEDRATE. Please update your Configuration."
  717. #endif
  718. #endif
  719. #ifndef TOOLCHANGE_ZRAISE
  720. #error "TOOLCHANGE_ZRAISE required for EXTRUDERS > 1. Please update your Configuration_adv.h."
  721. #endif
  722. #elif ENABLED(MK2_MULTIPLEXER)
  723. #error "MK2_MULTIPLEXER requires 2 or more EXTRUDERS."
  724. #elif ENABLED(SINGLENOZZLE)
  725. #error "SINGLENOZZLE requires 2 or more EXTRUDERS."
  726. #endif
  727. /**
  728. * Sanity checking for the Průša MK2 Multiplexer
  729. */
  730. #ifdef SNMM
  731. #error "SNMM is now MK2_MULTIPLEXER. Please update your configuration."
  732. #endif
  733. /**
  734. * A Dual Nozzle carriage with switching servo
  735. */
  736. #if ENABLED(SWITCHING_NOZZLE)
  737. #if ENABLED(DUAL_X_CARRIAGE)
  738. #error "SWITCHING_NOZZLE and DUAL_X_CARRIAGE are incompatible."
  739. #elif ENABLED(SINGLENOZZLE)
  740. #error "SWITCHING_NOZZLE and SINGLENOZZLE are incompatible."
  741. #elif EXTRUDERS != 2
  742. #error "SWITCHING_NOZZLE requires exactly 2 EXTRUDERS."
  743. #elif NUM_SERVOS < 1
  744. #error "SWITCHING_NOZZLE requires NUM_SERVOS >= 1."
  745. #endif
  746. #ifndef SWITCHING_NOZZLE_SERVO_NR
  747. #error "SWITCHING_NOZZLE requires SWITCHING_NOZZLE_SERVO_NR."
  748. #elif SWITCHING_NOZZLE_SERVO_NR == 0 && !PIN_EXISTS(SERVO0)
  749. #error "SERVO0_PIN must be defined for your SWITCHING_NOZZLE."
  750. #elif SWITCHING_NOZZLE_SERVO_NR == 1 && !PIN_EXISTS(SERVO1)
  751. #error "SERVO1_PIN must be defined for your SWITCHING_NOZZLE."
  752. #elif SWITCHING_NOZZLE_SERVO_NR == 2 && !PIN_EXISTS(SERVO2)
  753. #error "SERVO2_PIN must be defined for your SWITCHING_NOZZLE."
  754. #elif SWITCHING_NOZZLE_SERVO_NR == 3 && !PIN_EXISTS(SERVO3)
  755. #error "SERVO3_PIN must be defined for your SWITCHING_NOZZLE."
  756. #endif
  757. #ifdef SWITCHING_NOZZLE_E1_SERVO_NR
  758. #if SWITCHING_NOZZLE_E1_SERVO_NR == SWITCHING_NOZZLE_SERVO_NR
  759. #error "SWITCHING_NOZZLE_E1_SERVO_NR must be different from SWITCHING_NOZZLE_SERVO_NR."
  760. #elif SWITCHING_NOZZLE_E1_SERVO_NR == 0 && !PIN_EXISTS(SERVO0)
  761. #error "SERVO0_PIN must be defined for your SWITCHING_NOZZLE."
  762. #elif SWITCHING_NOZZLE_E1_SERVO_NR == 1 && !PIN_EXISTS(SERVO1)
  763. #error "SERVO1_PIN must be defined for your SWITCHING_NOZZLE."
  764. #elif SWITCHING_NOZZLE_E1_SERVO_NR == 2 && !PIN_EXISTS(SERVO2)
  765. #error "SERVO2_PIN must be defined for your SWITCHING_NOZZLE."
  766. #elif SWITCHING_NOZZLE_E1_SERVO_NR == 3 && !PIN_EXISTS(SERVO3)
  767. #error "SERVO3_PIN must be defined for your SWITCHING_NOZZLE."
  768. #endif
  769. #endif
  770. #endif
  771. /**
  772. * Single Stepper Dual Extruder with switching servo
  773. */
  774. #if ENABLED(SWITCHING_EXTRUDER)
  775. #if NUM_SERVOS < 1
  776. #error "SWITCHING_EXTRUDER requires NUM_SERVOS >= 1."
  777. #elif SWITCHING_EXTRUDER_SERVO_NR == 0 && !PIN_EXISTS(SERVO0)
  778. #error "SERVO0_PIN must be defined for your SWITCHING_EXTRUDER."
  779. #elif SWITCHING_EXTRUDER_SERVO_NR == 1 && !PIN_EXISTS(SERVO1)
  780. #error "SERVO1_PIN must be defined for your SWITCHING_EXTRUDER."
  781. #elif SWITCHING_EXTRUDER_SERVO_NR == 2 && !PIN_EXISTS(SERVO2)
  782. #error "SERVO2_PIN must be defined for your SWITCHING_EXTRUDER."
  783. #elif SWITCHING_EXTRUDER_SERVO_NR == 3 && !PIN_EXISTS(SERVO3)
  784. #error "SERVO3_PIN must be defined for your SWITCHING_EXTRUDER."
  785. #endif
  786. #if EXTRUDERS > 3
  787. #if NUM_SERVOS < 2
  788. #error "SWITCHING_EXTRUDER with 4 extruders requires NUM_SERVOS >= 2."
  789. #elif SWITCHING_EXTRUDER_E23_SERVO_NR == 0 && !PIN_EXISTS(SERVO0)
  790. #error "SERVO0_PIN must be defined for your SWITCHING_EXTRUDER."
  791. #elif SWITCHING_EXTRUDER_E23_SERVO_NR == 1 && !PIN_EXISTS(SERVO1)
  792. #error "SERVO1_PIN must be defined for your SWITCHING_EXTRUDER."
  793. #elif SWITCHING_EXTRUDER_E23_SERVO_NR == 2 && !PIN_EXISTS(SERVO2)
  794. #error "SERVO2_PIN must be defined for your SWITCHING_EXTRUDER."
  795. #elif SWITCHING_EXTRUDER_E23_SERVO_NR == 3 && !PIN_EXISTS(SERVO3)
  796. #error "SERVO3_PIN must be defined for your SWITCHING_EXTRUDER."
  797. #elif SWITCHING_EXTRUDER_E23_SERVO_NR == SWITCHING_EXTRUDER_SERVO_NR
  798. #error "SWITCHING_EXTRUDER_E23_SERVO_NR should be a different extruder from SWITCHING_EXTRUDER_SERVO_NR."
  799. #endif
  800. #endif
  801. #endif
  802. /**
  803. * Mixing Extruder requirements
  804. */
  805. #if ENABLED(MIXING_EXTRUDER)
  806. #if EXTRUDERS > 1
  807. #error "For MIXING_EXTRUDER set MIXING_STEPPERS > 1 instead of EXTRUDERS > 1."
  808. #elif MIXING_STEPPERS < 2
  809. #error "You must set MIXING_STEPPERS >= 2 for a mixing extruder."
  810. #elif ENABLED(FILAMENT_SENSOR)
  811. #error "MIXING_EXTRUDER is incompatible with FILAMENT_SENSOR. Comment out this line to use it anyway."
  812. #elif ENABLED(SWITCHING_EXTRUDER)
  813. #error "Please select either MIXING_EXTRUDER or SWITCHING_EXTRUDER, not both."
  814. #elif ENABLED(SINGLENOZZLE)
  815. #error "MIXING_EXTRUDER is incompatible with SINGLENOZZLE."
  816. #endif
  817. #endif
  818. /**
  819. * Linear Advance 1.5 - Check K value range
  820. */
  821. #if ENABLED(LIN_ADVANCE)
  822. static_assert(
  823. WITHIN(LIN_ADVANCE_K, 0, 10),
  824. "LIN_ADVANCE_K must be a value from 0 to 10 (Changed in LIN_ADVANCE v1.5, Marlin 1.1.9)."
  825. );
  826. #endif
  827. /**
  828. * Special tool-changing options
  829. */
  830. #if 1 < 0 \
  831. + ENABLED(SINGLENOZZLE) \
  832. + ENABLED(DUAL_X_CARRIAGE) \
  833. + ENABLED(PARKING_EXTRUDER) \
  834. + ENABLED(MAGNETIC_PARKING_EXTRUDER) \
  835. + ENABLED(SWITCHING_TOOLHEAD) \
  836. + ENABLED(MAGNETIC_SWITCHING_TOOLHEAD) \
  837. + ENABLED(ELECTROMAGNETIC_SWITCHING_TOOLHEAD)
  838. #error "Please select only one of SINGLENOZZLE, DUAL_X_CARRIAGE, PARKING_EXTRUDER, SWITCHING_TOOLHEAD, MAGNETIC_SWITCHING_TOOLHEAD, or ELECTROMAGNETIC_SWITCHING_TOOLHEAD."
  839. #endif
  840. /**
  841. * (Magnetic) Parking Extruder requirements
  842. */
  843. #if ANY(PARKING_EXTRUDER, MAGNETIC_PARKING_EXTRUDER)
  844. #if ENABLED(EXT_SOLENOID)
  845. #error "(MAGNETIC_)PARKING_EXTRUDER and EXT_SOLENOID are incompatible. (Pins are used twice.)"
  846. #elif EXTRUDERS != 2
  847. #error "(MAGNETIC_)PARKING_EXTRUDER requires exactly 2 EXTRUDERS."
  848. #elif !defined(PARKING_EXTRUDER_PARKING_X)
  849. #error "(MAGNETIC_)PARKING_EXTRUDER requires PARKING_EXTRUDER_PARKING_X."
  850. #elif !defined(TOOLCHANGE_ZRAISE)
  851. #error "(MAGNETIC_)PARKING_EXTRUDER requires TOOLCHANGE_ZRAISE."
  852. #elif TOOLCHANGE_ZRAISE < 0
  853. #error "TOOLCHANGE_ZRAISE must be 0 or higher."
  854. #elif ENABLED(PARKING_EXTRUDER)
  855. #if !PIN_EXISTS(SOL0, SOL1)
  856. #error "PARKING_EXTRUDER requires SOL0_PIN and SOL1_PIN."
  857. #elif !defined(PARKING_EXTRUDER_SOLENOIDS_PINS_ACTIVE) || !WITHIN(PARKING_EXTRUDER_SOLENOIDS_PINS_ACTIVE, LOW, HIGH)
  858. #error "PARKING_EXTRUDER_SOLENOIDS_PINS_ACTIVE must be defined as HIGH or LOW."
  859. #elif !defined(PARKING_EXTRUDER_SOLENOIDS_DELAY) || !WITHIN(PARKING_EXTRUDER_SOLENOIDS_DELAY, 0, 2000)
  860. #error "PARKING_EXTRUDER_SOLENOIDS_DELAY must be between 0 and 2000 (ms)."
  861. #endif
  862. #endif
  863. #endif
  864. /**
  865. * Switching Toolhead requirements
  866. */
  867. #if ENABLED(SWITCHING_TOOLHEAD)
  868. #ifndef SWITCHING_TOOLHEAD_SERVO_NR
  869. #error "SWITCHING_TOOLHEAD requires SWITCHING_TOOLHEAD_SERVO_NR."
  870. #elif EXTRUDERS < 2
  871. #error "SWITCHING_TOOLHEAD requires at least 2 EXTRUDERS."
  872. #elif NUM_SERVOS < (SWITCHING_TOOLHEAD_SERVO_NR - 1)
  873. #if SWITCHING_TOOLHEAD_SERVO_NR == 0
  874. #error "A SWITCHING_TOOLHEAD_SERVO_NR of 0 requires NUM_SERVOS >= 1."
  875. #elif SWITCHING_TOOLHEAD_SERVO_NR == 1
  876. #error "A SWITCHING_TOOLHEAD_SERVO_NR of 1 requires NUM_SERVOS >= 2."
  877. #elif SWITCHING_TOOLHEAD_SERVO_NR == 2
  878. #error "A SWITCHING_TOOLHEAD_SERVO_NR of 2 requires NUM_SERVOS >= 3."
  879. #elif SWITCHING_TOOLHEAD_SERVO_NR == 3
  880. #error "A SWITCHING_TOOLHEAD_SERVO_NR of 3 requires NUM_SERVOS >= 4."
  881. #endif
  882. #elif !defined(TOOLCHANGE_ZRAISE)
  883. #error "SWITCHING_TOOLHEAD requires TOOLCHANGE_ZRAISE."
  884. #elif TOOLCHANGE_ZRAISE < 0
  885. #error "TOOLCHANGE_ZRAISE must be 0 or higher."
  886. #endif
  887. #endif
  888. /**
  889. * (Electro)magnetic Switching Toolhead requirements
  890. */
  891. #if EITHER(MAGNETIC_SWITCHING_TOOLHEAD, ELECTROMAGNETIC_SWITCHING_TOOLHEAD)
  892. #ifndef SWITCHING_TOOLHEAD_Y_POS
  893. #error "(ELECTRO)MAGNETIC_SWITCHING_TOOLHEAD requires SWITCHING_TOOLHEAD_Y_POS"
  894. #elif !defined(SWITCHING_TOOLHEAD_X_POS)
  895. #error "(ELECTRO)MAGNETIC_SWITCHING_TOOLHEAD requires SWITCHING_TOOLHEAD_X_POS"
  896. #elif !defined(SWITCHING_TOOLHEAD_Z_HOP)
  897. #error "(ELECTRO)MAGNETIC_SWITCHING_TOOLHEAD requires SWITCHING_TOOLHEAD_Z_HOP."
  898. #elif !defined(SWITCHING_TOOLHEAD_Y_CLEAR)
  899. #error "(ELECTRO)MAGNETIC_SWITCHING_TOOLHEAD requires SWITCHING_TOOLHEAD_Y_CLEAR."
  900. #elif ENABLED(ELECTROMAGNETIC_SWITCHING_TOOLHEAD)
  901. #if ENABLED(EXT_SOLENOID)
  902. #error "(ELECTRO)MAGNETIC_SWITCHING_TOOLHEAD and EXT_SOLENOID are incompatible. (Pins are used twice.)"
  903. #elif !PIN_EXISTS(SOL0)
  904. #error "(ELECTRO)MAGNETIC_SWITCHING_TOOLHEAD requires SOL0_PIN."
  905. #endif
  906. #endif
  907. #endif
  908. /**
  909. * Part-Cooling Fan Multiplexer requirements
  910. */
  911. #if PIN_EXISTS(FANMUX1)
  912. #if !HAS_FANMUX
  913. #error "FANMUX0_PIN must be set before FANMUX1_PIN can be set."
  914. #endif
  915. #elif PIN_EXISTS(FANMUX2)
  916. #error "FANMUX0_PIN and FANMUX1_PIN must be set before FANMUX2_PIN can be set."
  917. #endif
  918. /**
  919. * Limited number of servos
  920. */
  921. #if NUM_SERVOS > NUM_SERVO_PLUGS
  922. #error "The selected board doesn't support enough servos for your configuration. Reduce NUM_SERVOS."
  923. #endif
  924. /**
  925. * Servo deactivation depends on servo endstops, switching nozzle, or switching extruder
  926. */
  927. #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)
  928. #error "Z_PROBE_SERVO_NR, switching nozzle, switching toolhead or switching extruder is required for DEACTIVATE_SERVOS_AFTER_MOVE."
  929. #endif
  930. /**
  931. * Required LCD language
  932. */
  933. #if HAS_CHARACTER_LCD && !defined(DISPLAY_CHARSET_HD44780)
  934. #error "You must set DISPLAY_CHARSET_HD44780 to JAPANESE, WESTERN or CYRILLIC for your LCD controller."
  935. #endif
  936. /**
  937. * Bed Heating Options - PID vs Limit Switching
  938. */
  939. #if BOTH(PIDTEMPBED, BED_LIMIT_SWITCHING)
  940. #error "To use BED_LIMIT_SWITCHING you must disable PIDTEMPBED."
  941. #endif
  942. /**
  943. * Kinematics
  944. */
  945. /**
  946. * Allow only one kinematic type to be defined
  947. */
  948. #if 1 < 0 \
  949. + ENABLED(DELTA) \
  950. + ENABLED(MORGAN_SCARA) \
  951. + ENABLED(COREXY) \
  952. + ENABLED(COREXZ) \
  953. + ENABLED(COREYZ) \
  954. + ENABLED(COREYX) \
  955. + ENABLED(COREZX) \
  956. + ENABLED(COREZY)
  957. #error "Please enable only one of DELTA, MORGAN_SCARA, COREXY, COREYX, COREXZ, COREZX, COREYZ, or COREZY."
  958. #endif
  959. /**
  960. * Delta requirements
  961. */
  962. #if ENABLED(DELTA)
  963. #if NONE(USE_XMAX_PLUG, USE_YMAX_PLUG, USE_ZMAX_PLUG)
  964. #error "You probably want to use Max Endstops for DELTA!"
  965. #elif ENABLED(ENABLE_LEVELING_FADE_HEIGHT) && DISABLED(AUTO_BED_LEVELING_BILINEAR) && !UBL_SEGMENTED
  966. #error "ENABLE_LEVELING_FADE_HEIGHT on DELTA requires AUTO_BED_LEVELING_BILINEAR or AUTO_BED_LEVELING_UBL."
  967. #elif ENABLED(DELTA_AUTO_CALIBRATION) && !(HAS_BED_PROBE || HAS_LCD_MENU)
  968. #error "DELTA_AUTO_CALIBRATION requires a probe or LCD Controller."
  969. #elif ENABLED(DELTA_CALIBRATION_MENU) && !HAS_LCD_MENU
  970. #error "DELTA_CALIBRATION_MENU requires an LCD Controller."
  971. #elif ABL_GRID
  972. #if (GRID_MAX_POINTS_X & 1) == 0 || (GRID_MAX_POINTS_Y & 1) == 0
  973. #error "DELTA requires GRID_MAX_POINTS_X and GRID_MAX_POINTS_Y to be odd numbers."
  974. #elif GRID_MAX_POINTS_X < 3
  975. #error "DELTA requires GRID_MAX_POINTS_X and GRID_MAX_POINTS_Y to be 3 or higher."
  976. #endif
  977. #endif
  978. #endif
  979. /**
  980. * Junction deviation is incompatible with kinematic systems.
  981. */
  982. #if DISABLED(CLASSIC_JERK) && IS_KINEMATIC
  983. #error "CLASSIC_JERK is required for DELTA and SCARA."
  984. #endif
  985. /**
  986. * Probes
  987. */
  988. /**
  989. * Allow only one probe option to be defined
  990. */
  991. #if 1 < 0 \
  992. + ENABLED(PROBE_MANUALLY) \
  993. + ENABLED(FIX_MOUNTED_PROBE) \
  994. + ENABLED(NOZZLE_AS_PROBE) \
  995. + (HAS_Z_SERVO_PROBE && DISABLED(BLTOUCH)) \
  996. + ENABLED(BLTOUCH) \
  997. + ENABLED(TOUCH_MI_PROBE) \
  998. + ENABLED(SOLENOID_PROBE) \
  999. + ENABLED(Z_PROBE_ALLEN_KEY) \
  1000. + ENABLED(Z_PROBE_SLED) \
  1001. + ENABLED(RACK_AND_PINION_PROBE) \
  1002. + ENABLED(SENSORLESS_PROBING)
  1003. #error "Please enable only one probe option: PROBE_MANUALLY, SENSORLESS_PROBING, BLTOUCH, FIX_MOUNTED_PROBE, NOZZLE_AS_PROBE, TOUCH_MI_PROBE, SOLENOID_PROBE, Z_PROBE_ALLEN_KEY, Z_PROBE_SLED, or Z Servo."
  1004. #endif
  1005. #if HAS_BED_PROBE
  1006. /**
  1007. * Z_PROBE_SLED is incompatible with DELTA
  1008. */
  1009. #if BOTH(Z_PROBE_SLED, DELTA)
  1010. #error "You cannot use Z_PROBE_SLED with DELTA."
  1011. #endif
  1012. /**
  1013. * SOLENOID_PROBE requirements
  1014. */
  1015. #if ENABLED(SOLENOID_PROBE)
  1016. #if ENABLED(EXT_SOLENOID)
  1017. #error "SOLENOID_PROBE is incompatible with EXT_SOLENOID."
  1018. #elif !HAS_SOLENOID_1
  1019. #error "SOLENOID_PROBE requires SOL1_PIN. It can be added to your Configuration.h."
  1020. #endif
  1021. #endif
  1022. /**
  1023. * NUM_SERVOS is required for a Z servo probe
  1024. */
  1025. #if HAS_Z_SERVO_PROBE
  1026. #ifndef NUM_SERVOS
  1027. #error "You must set NUM_SERVOS for a Z servo probe (Z_PROBE_SERVO_NR)."
  1028. #elif Z_PROBE_SERVO_NR == 0 && !PIN_EXISTS(SERVO0)
  1029. #error "SERVO0_PIN must be defined for your servo or BLTOUCH probe."
  1030. #elif Z_PROBE_SERVO_NR == 1 && !PIN_EXISTS(SERVO1)
  1031. #error "SERVO1_PIN must be defined for your servo or BLTOUCH probe."
  1032. #elif Z_PROBE_SERVO_NR == 2 && !PIN_EXISTS(SERVO2)
  1033. #error "SERVO2_PIN must be defined for your servo or BLTOUCH probe."
  1034. #elif Z_PROBE_SERVO_NR == 3 && !PIN_EXISTS(SERVO3)
  1035. #error "SERVO3_PIN must be defined for your servo or BLTOUCH probe."
  1036. #elif Z_PROBE_SERVO_NR >= NUM_SERVOS
  1037. #error "Z_PROBE_SERVO_NR must be smaller than NUM_SERVOS."
  1038. #endif
  1039. #endif
  1040. #if ENABLED(BLTOUCH)
  1041. #if BLTOUCH_DELAY < 200
  1042. #error "BLTOUCH_DELAY less than 200 is unsafe and is not supported."
  1043. #elif DISABLED(BLTOUCH_SET_5V_MODE) && NONE(ONBOARD_ENDSTOPPULLUPS, ENDSTOPPULLUPS, ENDSTOPPULLUP_ZMIN, ENDSTOPPULLUP_ZMIN_PROBE)
  1044. #error "BLTOUCH without BLTOUCH_SET_5V_MODE requires ENDSTOPPULLUPS, ENDSTOPPULLUP_ZMIN or ENDSTOPPULLUP_ZMIN_PROBE."
  1045. #endif
  1046. #endif
  1047. #if ENABLED(RACK_AND_PINION_PROBE) && !(defined(Z_PROBE_DEPLOY_X) && defined(Z_PROBE_RETRACT_X))
  1048. #error "RACK_AND_PINION_PROBE requires Z_PROBE_DEPLOY_X and Z_PROBE_RETRACT_X."
  1049. #endif
  1050. /**
  1051. * Touch-MI probe requirements
  1052. */
  1053. #if ENABLED(TOUCH_MI_PROBE)
  1054. #if DISABLED(Z_SAFE_HOMING)
  1055. #error "TOUCH_MI_PROBE requires Z_SAFE_HOMING."
  1056. #elif !defined(TOUCH_MI_RETRACT_Z)
  1057. #error "TOUCH_MI_PROBE requires TOUCH_MI_RETRACT_Z."
  1058. #elif defined(Z_AFTER_PROBING)
  1059. #error "TOUCH_MI_PROBE requires Z_AFTER_PROBING to be disabled."
  1060. #elif Z_HOMING_HEIGHT < 10
  1061. #error "TOUCH_MI_PROBE requires Z_HOMING_HEIGHT >= 10."
  1062. #elif Z_MIN_PROBE_ENDSTOP_INVERTING
  1063. #error "TOUCH_MI_PROBE requires Z_MIN_PROBE_ENDSTOP_INVERTING to be set to false."
  1064. #elif DISABLED(BABYSTEP_ZPROBE_OFFSET)
  1065. #error "TOUCH_MI_PROBE requires BABYSTEPPING with BABYSTEP_ZPROBE_OFFSET."
  1066. #elif !HAS_RESUME_CONTINUE
  1067. #error "TOUCH_MI_PROBE currently requires an LCD controller or EMERGENCY_PARSER."
  1068. #endif
  1069. #endif
  1070. /**
  1071. * Require pin options and pins to be defined
  1072. */
  1073. #if ENABLED(SENSORLESS_PROBING)
  1074. #if ENABLED(DELTA) && !(AXIS_HAS_STALLGUARD(X) && AXIS_HAS_STALLGUARD(Y) && AXIS_HAS_STALLGUARD(Z))
  1075. #error "SENSORLESS_PROBING requires TMC2130/2160/2209/5130/5160 drivers on X, Y, and Z."
  1076. #elif !AXIS_HAS_STALLGUARD(Z)
  1077. #error "SENSORLESS_PROBING requires a TMC2130/2160/2209/5130/5160 driver on Z."
  1078. #endif
  1079. #elif ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN)
  1080. #if DISABLED(USE_ZMIN_PLUG)
  1081. #error "Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN requires USE_ZMIN_PLUG to be enabled."
  1082. #elif !HAS_Z_MIN
  1083. #error "Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN requires the Z_MIN_PIN to be defined."
  1084. #elif Z_MIN_PROBE_ENDSTOP_INVERTING != Z_MIN_ENDSTOP_INVERTING
  1085. #error "Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN requires Z_MIN_ENDSTOP_INVERTING to match Z_MIN_PROBE_ENDSTOP_INVERTING."
  1086. #endif
  1087. #elif !HAS_Z_MIN_PROBE_PIN
  1088. #error "Z_MIN_PROBE_PIN must be defined if Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN is not enabled."
  1089. #endif
  1090. #if ENABLED(NOZZLE_AS_PROBE)
  1091. constexpr float sanity_nozzle_to_probe_offset[] = NOZZLE_TO_PROBE_OFFSET;
  1092. static_assert(sanity_nozzle_to_probe_offset[0] == 0.0 && sanity_nozzle_to_probe_offset[1] == 0.0,
  1093. "NOZZLE_AS_PROBE requires the X,Y offsets in NOZZLE_TO_PROBE_OFFSET to be 0,0.");
  1094. #endif
  1095. #if DISABLED(NOZZLE_AS_PROBE)
  1096. static_assert(MIN_PROBE_EDGE >= 0, "MIN_PROBE_EDGE must be >= 0.");
  1097. static_assert(MIN_PROBE_EDGE_BACK >= 0, "MIN_PROBE_EDGE_BACK must be >= 0.");
  1098. static_assert(MIN_PROBE_EDGE_FRONT >= 0, "MIN_PROBE_EDGE_FRONT must be >= 0.");
  1099. static_assert(MIN_PROBE_EDGE_LEFT >= 0, "MIN_PROBE_EDGE_LEFT must be >= 0.");
  1100. static_assert(MIN_PROBE_EDGE_RIGHT >= 0, "MIN_PROBE_EDGE_RIGHT must be >= 0.");
  1101. #endif
  1102. /**
  1103. * Make sure Z raise values are set
  1104. */
  1105. #ifndef Z_CLEARANCE_DEPLOY_PROBE
  1106. #error "You must define Z_CLEARANCE_DEPLOY_PROBE in your configuration."
  1107. #elif !defined(Z_CLEARANCE_BETWEEN_PROBES)
  1108. #error "You must define Z_CLEARANCE_BETWEEN_PROBES in your configuration."
  1109. #elif Z_CLEARANCE_DEPLOY_PROBE < 0
  1110. #error "Probes need Z_CLEARANCE_DEPLOY_PROBE >= 0."
  1111. #elif Z_CLEARANCE_BETWEEN_PROBES < 0
  1112. #error "Probes need Z_CLEARANCE_BETWEEN_PROBES >= 0."
  1113. #elif Z_AFTER_PROBING < 0
  1114. #error "Probes need Z_AFTER_PROBING >= 0."
  1115. #endif
  1116. #if MULTIPLE_PROBING || EXTRA_PROBING
  1117. #if !MULTIPLE_PROBING
  1118. #error "EXTRA_PROBING requires MULTIPLE_PROBING."
  1119. #elif MULTIPLE_PROBING < 2
  1120. #error "MULTIPLE_PROBING must be 2 or more."
  1121. #elif MULTIPLE_PROBING <= EXTRA_PROBING
  1122. #error "EXTRA_PROBING must be less than MULTIPLE_PROBING."
  1123. #endif
  1124. #endif
  1125. #if Z_PROBE_LOW_POINT > 0
  1126. #error "Z_PROBE_LOW_POINT must be less than or equal to 0."
  1127. #endif
  1128. #else
  1129. /**
  1130. * Require some kind of probe for bed leveling and probe testing
  1131. */
  1132. #if HAS_ABL_NOT_UBL && !PROBE_SELECTED
  1133. #error "Auto Bed Leveling requires one of these: PROBE_MANUALLY, FIX_MOUNTED_PROBE, NOZZLE_AS_PROBE, BLTOUCH, SOLENOID_PROBE, Z_PROBE_ALLEN_KEY, Z_PROBE_SLED, or a Z Servo."
  1134. #endif
  1135. #if ENABLED(Z_MIN_PROBE_REPEATABILITY_TEST)
  1136. #error "Z_MIN_PROBE_REPEATABILITY_TEST requires a probe: FIX_MOUNTED_PROBE, NOZZLE_AS_PROBE, BLTOUCH, SOLENOID_PROBE, Z_PROBE_ALLEN_KEY, Z_PROBE_SLED, or Z Servo."
  1137. #endif
  1138. #endif
  1139. /**
  1140. * Allow only one bed leveling option to be defined
  1141. */
  1142. #if 1 < 0 \
  1143. + ENABLED(AUTO_BED_LEVELING_LINEAR) \
  1144. + ENABLED(AUTO_BED_LEVELING_3POINT) \
  1145. + ENABLED(AUTO_BED_LEVELING_BILINEAR) \
  1146. + ENABLED(AUTO_BED_LEVELING_UBL) \
  1147. + ENABLED(MESH_BED_LEVELING)
  1148. #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."
  1149. #endif
  1150. /**
  1151. * Bed Leveling Requirements
  1152. */
  1153. #if ENABLED(AUTO_BED_LEVELING_UBL)
  1154. /**
  1155. * Unified Bed Leveling
  1156. */
  1157. // Hide PROBE_MANUALLY from the rest of the code
  1158. #undef PROBE_MANUALLY
  1159. #if IS_SCARA
  1160. #error "AUTO_BED_LEVELING_UBL does not yet support SCARA printers."
  1161. #elif DISABLED(EEPROM_SETTINGS)
  1162. #error "AUTO_BED_LEVELING_UBL requires EEPROM_SETTINGS. Please update your configuration."
  1163. #elif !WITHIN(GRID_MAX_POINTS_X, 3, 15) || !WITHIN(GRID_MAX_POINTS_Y, 3, 15)
  1164. #error "GRID_MAX_POINTS_[XY] must be a whole number between 3 and 15."
  1165. #elif !defined(RESTORE_LEVELING_AFTER_G28)
  1166. #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'."
  1167. #endif
  1168. #elif HAS_ABL_NOT_UBL
  1169. /**
  1170. * Auto Bed Leveling
  1171. */
  1172. /**
  1173. * Delta and SCARA have limited bed leveling options
  1174. */
  1175. #if IS_SCARA && DISABLED(AUTO_BED_LEVELING_BILINEAR)
  1176. #error "SCARA machines can only use the AUTO_BED_LEVELING_BILINEAR leveling option."
  1177. #endif
  1178. #elif ENABLED(MESH_BED_LEVELING)
  1179. // Hide PROBE_MANUALLY from the rest of the code
  1180. #undef PROBE_MANUALLY
  1181. /**
  1182. * Mesh Bed Leveling
  1183. */
  1184. #if ENABLED(DELTA)
  1185. #error "MESH_BED_LEVELING is not compatible with DELTA printers."
  1186. #elif GRID_MAX_POINTS_X > 9 || GRID_MAX_POINTS_Y > 9
  1187. #error "GRID_MAX_POINTS_X and GRID_MAX_POINTS_Y must be less than 10 for MBL."
  1188. #endif
  1189. #endif
  1190. #if HAS_MESH
  1191. #if HAS_CLASSIC_JERK
  1192. static_assert(DEFAULT_ZJERK > 0.1, "Low DEFAULT_ZJERK values are incompatible with mesh-based leveling.");
  1193. #endif
  1194. #elif ENABLED(G26_MESH_VALIDATION)
  1195. #error "G26_MESH_VALIDATION requires MESH_BED_LEVELING, AUTO_BED_LEVELING_BILINEAR, or AUTO_BED_LEVELING_UBL."
  1196. #endif
  1197. #if ENABLED(MESH_EDIT_GFX_OVERLAY) && !(ENABLED(AUTO_BED_LEVELING_UBL) && HAS_GRAPHICAL_LCD)
  1198. #error "MESH_EDIT_GFX_OVERLAY requires AUTO_BED_LEVELING_UBL and a Graphical LCD."
  1199. #endif
  1200. #if ENABLED(G29_RETRY_AND_RECOVER)
  1201. #if ENABLED(AUTO_BED_LEVELING_UBL)
  1202. #error "G29_RETRY_AND_RECOVER is not compatible with UBL."
  1203. #elif ENABLED(MESH_BED_LEVELING)
  1204. #error "G29_RETRY_AND_RECOVER is not compatible with MESH_BED_LEVELING."
  1205. #endif
  1206. #endif
  1207. /**
  1208. * LCD_BED_LEVELING requirements
  1209. */
  1210. #if ENABLED(LCD_BED_LEVELING)
  1211. #if !HAS_LCD_MENU
  1212. #error "LCD_BED_LEVELING requires a programmable LCD controller."
  1213. #elif !(ENABLED(MESH_BED_LEVELING) || HAS_ABL_NOT_UBL)
  1214. #error "LCD_BED_LEVELING requires MESH_BED_LEVELING or AUTO_BED_LEVELING."
  1215. #endif
  1216. #endif
  1217. /**
  1218. * Homing
  1219. */
  1220. #if X_HOME_BUMP_MM < 0 || Y_HOME_BUMP_MM < 0 || Z_HOME_BUMP_MM < 0
  1221. #error "[XYZ]_HOME_BUMP_MM must be greater than or equal to 0."
  1222. #endif
  1223. #if ENABLED(CODEPENDENT_XY_HOMING)
  1224. #if ENABLED(QUICK_HOME)
  1225. #error "QUICK_HOME is incompatible with CODEPENDENT_XY_HOMING."
  1226. #elif IS_KINEMATIC
  1227. #error "CODEPENDENT_XY_HOMING requires a Cartesian setup."
  1228. #endif
  1229. #endif
  1230. /**
  1231. * Make sure Z_SAFE_HOMING point is reachable
  1232. */
  1233. #if ENABLED(Z_SAFE_HOMING)
  1234. #if HAS_BED_PROBE && (ENABLED(DELTA) || IS_SCARA)
  1235. static_assert(WITHIN(Z_SAFE_HOMING_X_POINT, PROBE_X_MIN, PROBE_X_MAX), "Z_SAFE_HOMING_X_POINT is outside the probe region.");
  1236. static_assert(WITHIN(Z_SAFE_HOMING_Y_POINT, PROBE_Y_MIN, PROBE_Y_MAX), "Z_SAFE_HOMING_Y_POINT is outside the probe region.");
  1237. #else
  1238. 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.");
  1239. 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.");
  1240. #endif
  1241. #endif // Z_SAFE_HOMING
  1242. /**
  1243. * Make sure DISABLE_[XYZ] compatible with selected homing options
  1244. */
  1245. #if ANY(DISABLE_X, DISABLE_Y, DISABLE_Z)
  1246. #if EITHER(HOME_AFTER_DEACTIVATE, Z_SAFE_HOMING)
  1247. #error "DISABLE_[XYZ] is not compatible with HOME_AFTER_DEACTIVATE or Z_SAFE_HOMING."
  1248. #endif
  1249. #endif
  1250. /**
  1251. * Filament Width Sensor
  1252. */
  1253. #if ENABLED(FILAMENT_WIDTH_SENSOR)
  1254. #if !HAS_FILAMENT_WIDTH_SENSOR
  1255. #error "FILAMENT_WIDTH_SENSOR requires a FILWIDTH_PIN to be defined."
  1256. #elif ENABLED(NO_VOLUMETRICS)
  1257. #error "FILAMENT_WIDTH_SENSOR requires NO_VOLUMETRICS to be disabled."
  1258. #endif
  1259. #endif
  1260. /**
  1261. * ULTIPANEL encoder
  1262. */
  1263. #if ENABLED(ULTIPANEL) && NONE(NEWPANEL, SR_LCD_2W_NL) && !defined(SHIFT_CLK)
  1264. #error "ULTIPANEL requires some kind of encoder."
  1265. #endif
  1266. #if ENCODER_PULSES_PER_STEP < 0
  1267. #error "ENCODER_PULSES_PER_STEP should not be negative, use REVERSE_MENU_DIRECTION instead."
  1268. #endif
  1269. /**
  1270. * SAV_3DGLCD display options
  1271. */
  1272. #if ENABLED(SAV_3DGLCD)
  1273. #if NONE(U8GLIB_SSD1306, U8GLIB_SH1106)
  1274. #error "Enable a SAV_3DGLCD display type: U8GLIB_SSD1306 or U8GLIB_SH1106."
  1275. #elif BOTH(U8GLIB_SSD1306, U8GLIB_SH1106)
  1276. #error "Only enable one SAV_3DGLCD display type: U8GLIB_SSD1306 or U8GLIB_SH1106."
  1277. #endif
  1278. #endif
  1279. /**
  1280. * Allen Key
  1281. * Deploying the Allen Key probe uses big moves in z direction. Too dangerous for an unhomed z-axis.
  1282. */
  1283. #if ENABLED(Z_PROBE_ALLEN_KEY) && (Z_HOME_DIR < 0) && ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN)
  1284. #error "You can't home to a z min endstop with a Z_PROBE_ALLEN_KEY"
  1285. #endif
  1286. /**
  1287. * Dual X Carriage requirements
  1288. */
  1289. #if ENABLED(DUAL_X_CARRIAGE)
  1290. #if EXTRUDERS < 2
  1291. #error "DUAL_X_CARRIAGE requires 2 (or more) extruders."
  1292. #elif CORE_IS_XY || CORE_IS_XZ
  1293. #error "DUAL_X_CARRIAGE cannot be used with COREXY, COREYX, COREXZ, or COREZX."
  1294. #elif !(HAS_X2_ENABLE && HAS_X2_STEP && HAS_X2_DIR)
  1295. #error "DUAL_X_CARRIAGE requires X2 stepper pins to be defined."
  1296. #elif !HAS_X_MAX
  1297. #error "DUAL_X_CARRIAGE requires USE_XMAX_PLUG and an X Max Endstop."
  1298. #elif !defined(X2_HOME_POS) || !defined(X2_MIN_POS) || !defined(X2_MAX_POS)
  1299. #error "DUAL_X_CARRIAGE requires X2_HOME_POS, X2_MIN_POS, and X2_MAX_POS."
  1300. #elif X_HOME_DIR != -1 || X2_HOME_DIR != 1
  1301. #error "DUAL_X_CARRIAGE requires X_HOME_DIR -1 and X2_HOME_DIR 1."
  1302. #endif
  1303. #endif
  1304. /**
  1305. * Make sure auto fan pins don't conflict with the fan pin
  1306. */
  1307. #if HAS_AUTO_FAN
  1308. #if HAS_FAN0
  1309. #if E0_AUTO_FAN_PIN == FAN_PIN
  1310. #error "You cannot set E0_AUTO_FAN_PIN equal to FAN_PIN."
  1311. #elif E1_AUTO_FAN_PIN == FAN_PIN
  1312. #error "You cannot set E1_AUTO_FAN_PIN equal to FAN_PIN."
  1313. #elif E2_AUTO_FAN_PIN == FAN_PIN
  1314. #error "You cannot set E2_AUTO_FAN_PIN equal to FAN_PIN."
  1315. #elif E3_AUTO_FAN_PIN == FAN_PIN
  1316. #error "You cannot set E3_AUTO_FAN_PIN equal to FAN_PIN."
  1317. #endif
  1318. #endif
  1319. #endif
  1320. #if HAS_FAN0 && CONTROLLER_FAN_PIN == FAN_PIN
  1321. #error "You cannot set CONTROLLER_FAN_PIN equal to FAN_PIN."
  1322. #endif
  1323. #if ENABLED(USE_CONTROLLER_FAN)
  1324. #if !HAS_CONTROLLER_FAN
  1325. #error "USE_CONTROLLER_FAN requires a CONTROLLER_FAN_PIN. Define in Configuration_adv.h."
  1326. #elif E0_AUTO_FAN_PIN == CONTROLLER_FAN_PIN
  1327. #error "You cannot set E0_AUTO_FAN_PIN equal to CONTROLLER_FAN_PIN."
  1328. #elif E1_AUTO_FAN_PIN == CONTROLLER_FAN_PIN
  1329. #error "You cannot set E1_AUTO_FAN_PIN equal to CONTROLLER_FAN_PIN."
  1330. #elif E2_AUTO_FAN_PIN == CONTROLLER_FAN_PIN
  1331. #error "You cannot set E2_AUTO_FAN_PIN equal to CONTROLLER_FAN_PIN."
  1332. #elif E3_AUTO_FAN_PIN == CONTROLLER_FAN_PIN
  1333. #error "You cannot set E3_AUTO_FAN_PIN equal to CONTROLLER_FAN_PIN."
  1334. #endif
  1335. #endif
  1336. /**
  1337. * Case Light requirements
  1338. */
  1339. #if ENABLED(CASE_LIGHT_ENABLE)
  1340. #if !PIN_EXISTS(CASE_LIGHT)
  1341. #error "CASE_LIGHT_ENABLE requires CASE_LIGHT_PIN to be defined."
  1342. #elif CASE_LIGHT_PIN == FAN_PIN
  1343. #error "CASE_LIGHT_PIN conflicts with FAN_PIN. Resolve before continuing."
  1344. #endif
  1345. #endif
  1346. /**
  1347. * Required custom thermistor settings
  1348. */
  1349. #if ENABLED(HEATER_0_USER_THERMISTOR) && !(defined(HOTEND0_PULLUP_RESISTOR_OHMS) && defined(HOTEND0_RESISTANCE_25C_OHMS) && defined(HOTEND0_BETA))
  1350. #error "TEMP_SENSOR_0 1000 requires HOTEND0_PULLUP_RESISTOR_OHMS, HOTEND0_RESISTANCE_25C_OHMS and HOTEND0_BETA in Configuration_adv.h."
  1351. #elif ENABLED(HEATER_1_USER_THERMISTOR) && !(defined(HOTEND1_PULLUP_RESISTOR_OHMS) && defined(HOTEND1_RESISTANCE_25C_OHMS) && defined(HOTEND1_BETA))
  1352. #error "TEMP_SENSOR_1 1000 requires HOTEND1_PULLUP_RESISTOR_OHMS, HOTEND1_RESISTANCE_25C_OHMS and HOTEND1_BETA in Configuration_adv.h."
  1353. #elif ENABLED(HEATER_2_USER_THERMISTOR) && !(defined(HOTEND2_PULLUP_RESISTOR_OHMS) && defined(HOTEND2_RESISTANCE_25C_OHMS) && defined(HOTEND2_BETA))
  1354. #error "TEMP_SENSOR_2 1000 requires HOTEND2_PULLUP_RESISTOR_OHMS, HOTEND2_RESISTANCE_25C_OHMS and HOTEND2_BETA in Configuration_adv.h."
  1355. #elif ENABLED(HEATER_3_USER_THERMISTOR) && !(defined(HOTEND3_PULLUP_RESISTOR_OHMS) && defined(HOTEND3_RESISTANCE_25C_OHMS) && defined(HOTEND3_BETA))
  1356. #error "TEMP_SENSOR_3 1000 requires HOTEND3_PULLUP_RESISTOR_OHMS, HOTEND3_RESISTANCE_25C_OHMS and HOTEND3_BETA in Configuration_adv.h."
  1357. #elif ENABLED(HEATER_4_USER_THERMISTOR) && !(defined(HOTEND4_PULLUP_RESISTOR_OHMS) && defined(HOTEND4_RESISTANCE_25C_OHMS) && defined(HOTEND4_BETA))
  1358. #error "TEMP_SENSOR_4 1000 requires HOTEND4_PULLUP_RESISTOR_OHMS, HOTEND4_RESISTANCE_25C_OHMS and HOTEND4_BETA in Configuration_adv.h."
  1359. #elif ENABLED(HEATER_5_USER_THERMISTOR) && !(defined(HOTEND5_PULLUP_RESISTOR_OHMS) && defined(HOTEND5_RESISTANCE_25C_OHMS) && defined(HOTEND5_BETA))
  1360. #error "TEMP_SENSOR_5 1000 requires HOTEND5_PULLUP_RESISTOR_OHMS, HOTEND5_RESISTANCE_25C_OHMS and HOTEND5_BETA in Configuration_adv.h."
  1361. #elif ENABLED(HEATER_BED_USER_THERMISTOR) && !(defined(BED_PULLUP_RESISTOR_OHMS) && defined(BED_RESISTANCE_25C_OHMS) && defined(BED_BETA))
  1362. #error "TEMP_SENSOR_BED 1000 requires BED_PULLUP_RESISTOR_OHMS, BED_RESISTANCE_25C_OHMS and BED_BETA in Configuration_adv.h."
  1363. #elif ENABLED(HEATER_CHAMBER_USER_THERMISTOR) && !(defined(CHAMBER_PULLUP_RESISTOR_OHMS) && defined(CHAMBER_RESISTANCE_25C_OHMS) && defined(CHAMBER_BETA))
  1364. #error "TEMP_SENSOR_CHAMBER 1000 requires CHAMBER_PULLUP_RESISTOR_OHMS, CHAMBER_RESISTANCE_25C_OHMS and CHAMBER_BETA in Configuration_adv.h."
  1365. #endif
  1366. /**
  1367. * Test Heater, Temp Sensor, and Extruder Pins; Sensor Type must also be set.
  1368. */
  1369. #if !HAS_HEATER_0
  1370. #error "HEATER_0_PIN not defined for this board."
  1371. #elif !ANY_PIN(TEMP_0, MAX6675_SS)
  1372. #error "TEMP_0_PIN not defined for this board."
  1373. #elif ((defined(__AVR_ATmega644P__) || defined(__AVR_ATmega1284P__)) && !PIN_EXISTS(E0_STEP, E0_DIR))
  1374. #error "E0_STEP_PIN or E0_DIR_PIN not defined for this board."
  1375. #elif ( !(defined(__AVR_ATmega644P__) || defined(__AVR_ATmega1284P__)) && (!PIN_EXISTS(E0_STEP, E0_DIR) || !HAS_E0_ENABLE))
  1376. #error "E0_STEP_PIN, E0_DIR_PIN, or E0_ENABLE_PIN not defined for this board."
  1377. #elif EXTRUDERS && TEMP_SENSOR_0 == 0
  1378. #error "TEMP_SENSOR_0 is required with any extruders."
  1379. #endif
  1380. // Pins are required for heaters
  1381. #if ENABLED(HEATER_0_USES_MAX6675) && !PIN_EXISTS(MAX6675_SS)
  1382. #error "MAX6675_SS_PIN (required for TEMP_SENSOR_0) not defined for this board."
  1383. #elif (HOTENDS > 1 || ENABLED(HEATERS_PARALLEL)) && !HAS_HEATER_1
  1384. #error "HEATER_1_PIN not defined for this board."
  1385. #endif
  1386. #if HOTENDS > 1
  1387. #if ENABLED(HEATER_1_USES_MAX6675) && !PIN_EXISTS(MAX6675_SS2)
  1388. #error "MAX6675_SS2_PIN (required for TEMP_SENSOR_1) not defined for this board."
  1389. #elif TEMP_SENSOR_1 == 0
  1390. #error "TEMP_SENSOR_1 is required with 2 or more HOTENDS."
  1391. #elif !ANY_PIN(TEMP_1, MAX6675_SS2)
  1392. #error "TEMP_1_PIN not defined for this board."
  1393. #elif ENABLED(TEMP_SENSOR_1_AS_REDUNDANT)
  1394. #error "HOTENDS must be 1 with TEMP_SENSOR_1_AS_REDUNDANT."
  1395. #endif
  1396. #if HOTENDS > 2
  1397. #if TEMP_SENSOR_2 == 0
  1398. #error "TEMP_SENSOR_2 is required with 3 or more HOTENDS."
  1399. #elif !HAS_HEATER_2
  1400. #error "HEATER_2_PIN not defined for this board."
  1401. #elif !PIN_EXISTS(TEMP_2)
  1402. #error "TEMP_2_PIN not defined for this board."
  1403. #endif
  1404. #if HOTENDS > 3
  1405. #if TEMP_SENSOR_3 == 0
  1406. #error "TEMP_SENSOR_3 is required with 4 or more HOTENDS."
  1407. #elif !HAS_HEATER_3
  1408. #error "HEATER_3_PIN not defined for this board."
  1409. #elif !PIN_EXISTS(TEMP_3)
  1410. #error "TEMP_3_PIN not defined for this board."
  1411. #endif
  1412. #if HOTENDS > 4
  1413. #if TEMP_SENSOR_4 == 0
  1414. #error "TEMP_SENSOR_4 is required with 5 or more HOTENDS."
  1415. #elif !HAS_HEATER_4
  1416. #error "HEATER_4_PIN not defined for this board."
  1417. #elif !PIN_EXISTS(TEMP_4)
  1418. #error "TEMP_4_PIN not defined for this board."
  1419. #endif
  1420. #if HOTENDS > 5
  1421. #if TEMP_SENSOR_5 == 0
  1422. #error "TEMP_SENSOR_5 is required with 6 HOTENDS."
  1423. #elif !HAS_HEATER_5
  1424. #error "HEATER_5_PIN not defined for this board."
  1425. #elif !PIN_EXISTS(TEMP_5)
  1426. #error "TEMP_5_PIN not defined for this board."
  1427. #endif
  1428. #elif TEMP_SENSOR_5 != 0
  1429. #error "TEMP_SENSOR_5 shouldn't be set with only 5 HOTENDS."
  1430. #endif
  1431. #elif TEMP_SENSOR_4 != 0
  1432. #error "TEMP_SENSOR_4 shouldn't be set with only 4 HOTENDS."
  1433. #elif TEMP_SENSOR_5 != 0
  1434. #error "TEMP_SENSOR_5 shouldn't be set with only 4 HOTENDS."
  1435. #endif
  1436. #elif TEMP_SENSOR_3 != 0
  1437. #error "TEMP_SENSOR_3 shouldn't be set with only 3 HOTENDS."
  1438. #elif TEMP_SENSOR_4 != 0
  1439. #error "TEMP_SENSOR_4 shouldn't be set with only 3 HOTENDS."
  1440. #elif TEMP_SENSOR_5 != 0
  1441. #error "TEMP_SENSOR_5 shouldn't be set with only 3 HOTENDS."
  1442. #endif
  1443. #elif TEMP_SENSOR_2 != 0
  1444. #error "TEMP_SENSOR_2 shouldn't be set with only 2 HOTENDS."
  1445. #elif TEMP_SENSOR_3 != 0
  1446. #error "TEMP_SENSOR_3 shouldn't be set with only 2 HOTENDS."
  1447. #elif TEMP_SENSOR_4 != 0
  1448. #error "TEMP_SENSOR_4 shouldn't be set with only 2 HOTENDS."
  1449. #elif TEMP_SENSOR_5 != 0
  1450. #error "TEMP_SENSOR_5 shouldn't be set with only 2 HOTENDS."
  1451. #endif
  1452. #elif TEMP_SENSOR_1 != 0 && DISABLED(TEMP_SENSOR_1_AS_REDUNDANT)
  1453. #error "TEMP_SENSOR_1 shouldn't be set with only 1 HOTEND."
  1454. #elif TEMP_SENSOR_2 != 0
  1455. #error "TEMP_SENSOR_2 shouldn't be set with only 1 HOTEND."
  1456. #elif TEMP_SENSOR_3 != 0
  1457. #error "TEMP_SENSOR_3 shouldn't be set with only 1 HOTEND."
  1458. #elif TEMP_SENSOR_4 != 0
  1459. #error "TEMP_SENSOR_4 shouldn't be set with only 1 HOTEND."
  1460. #elif TEMP_SENSOR_5 != 0
  1461. #error "TEMP_SENSOR_5 shouldn't be set with only 1 HOTEND."
  1462. #endif
  1463. #if ENABLED(TEMP_SENSOR_1_AS_REDUNDANT) && TEMP_SENSOR_1 == 0
  1464. #error "TEMP_SENSOR_1 is required with TEMP_SENSOR_1_AS_REDUNDANT."
  1465. #endif
  1466. /**
  1467. * Temperature status LEDs
  1468. */
  1469. #if ENABLED(TEMP_STAT_LEDS) && !ANY_PIN(STAT_LED_RED, STAT_LED_BLUE)
  1470. #error "TEMP_STAT_LEDS requires STAT_LED_RED_PIN or STAT_LED_BLUE_PIN, preferably both."
  1471. #endif
  1472. /**
  1473. * LED Control Menu
  1474. */
  1475. #if ENABLED(LED_CONTROL_MENU) && !HAS_COLOR_LEDS
  1476. #error "LED_CONTROL_MENU requires BLINKM, RGB_LED, RGBW_LED, PCA9533, PCA9632, or NEOPIXEL_LED."
  1477. #endif
  1478. /**
  1479. * LED Backlight Timeout
  1480. */
  1481. #if defined(LED_BACKLIGHT_TIMEOUT) && !(ENABLED(PSU_CONTROL) && EITHER(FYSETC_MINI_12864_2_0, FYSETC_MINI_12864_2_1))
  1482. #error "LED_BACKLIGHT_TIMEOUT requires a FYSETC Mini Panel and a Power Switch."
  1483. #endif
  1484. /**
  1485. * Basic multi hotend duplication mode
  1486. */
  1487. #if ENABLED(MULTI_NOZZLE_DUPLICATION)
  1488. #if HOTENDS < 2
  1489. #error "MULTI_NOZZLE_DUPLICATION requires 2 or more hotends."
  1490. #elif ENABLED(DUAL_X_CARRIAGE)
  1491. #error "MULTI_NOZZLE_DUPLICATION is incompatible with DUAL_X_CARRIAGE."
  1492. #elif ENABLED(SINGLENOZZLE)
  1493. #error "MULTI_NOZZLE_DUPLICATION is incompatible with SINGLENOZZLE."
  1494. #elif ENABLED(MIXING_EXTRUDER)
  1495. #error "MULTI_NOZZLE_DUPLICATION is incompatible with MIXING_EXTRUDER."
  1496. #elif ENABLED(SWITCHING_EXTRUDER)
  1497. #error "MULTI_NOZZLE_DUPLICATION is incompatible with SWITCHING_EXTRUDER."
  1498. #endif
  1499. #endif
  1500. /**
  1501. * Test Extruder Stepper Pins
  1502. */
  1503. #if DISABLED(MK2_MULTIPLEXER) // MK2_MULTIPLEXER uses E0 stepper only
  1504. #if E_STEPPERS
  1505. #if !(PIN_EXISTS(E0_STEP, E0_DIR) && HAS_E0_ENABLE)
  1506. #error "E0_STEP_PIN, E0_DIR_PIN, or E0_ENABLE_PIN not defined for this board."
  1507. #endif
  1508. #if E_STEPPERS > 1
  1509. #if !(PIN_EXISTS(E1_STEP, E1_DIR) && HAS_E1_ENABLE)
  1510. #error "E1_STEP_PIN, E1_DIR_PIN, or E1_ENABLE_PIN not defined for this board."
  1511. #endif
  1512. #if E_STEPPERS > 2
  1513. #if !(PIN_EXISTS(E2_STEP, E2_DIR) && HAS_E2_ENABLE)
  1514. #error "E2_STEP_PIN, E2_DIR_PIN, or E2_ENABLE_PIN not defined for this board."
  1515. #endif
  1516. #if E_STEPPERS > 3
  1517. #if !(PIN_EXISTS(E3_STEP, E3_DIR) && HAS_E3_ENABLE)
  1518. #error "E3_STEP_PIN, E3_DIR_PIN, or E3_ENABLE_PIN not defined for this board."
  1519. #endif
  1520. #if E_STEPPERS > 4
  1521. #if !(PIN_EXISTS(E4_STEP, E4_DIR) && HAS_E4_ENABLE)
  1522. #error "E4_STEP_PIN, E4_DIR_PIN, or E4_ENABLE_PIN not defined for this board."
  1523. #endif
  1524. #if E_STEPPERS > 5
  1525. #if !(PIN_EXISTS(E5_STEP, E5_DIR) && HAS_E5_ENABLE)
  1526. #error "E5_STEP_PIN, E5_DIR_PIN, or E5_ENABLE_PIN not defined for this board."
  1527. #endif
  1528. #endif // E_STEPPERS > 5
  1529. #endif // E_STEPPERS > 4
  1530. #endif // E_STEPPERS > 3
  1531. #endif // E_STEPPERS > 2
  1532. #endif // E_STEPPERS > 1
  1533. #endif // E_STEPPERS
  1534. #endif
  1535. /**
  1536. * Endstop Tests
  1537. */
  1538. #define _PLUG_UNUSED_TEST(AXIS,PLUG) (DISABLED(USE_##PLUG##MIN_PLUG, USE_##PLUG##MAX_PLUG) && !(ENABLED(AXIS##_DUAL_ENDSTOPS) && WITHIN(AXIS##2_USE_ENDSTOP, _##PLUG##MAX_, _##PLUG##MIN_)))
  1539. #define _AXIS_PLUG_UNUSED_TEST(AXIS) (_PLUG_UNUSED_TEST(AXIS,X) && _PLUG_UNUSED_TEST(AXIS,Y) && _PLUG_UNUSED_TEST(AXIS,Z))
  1540. // At least 3 endstop plugs must be used
  1541. #if _AXIS_PLUG_UNUSED_TEST(X)
  1542. #error "You must enable USE_XMIN_PLUG or USE_XMAX_PLUG."
  1543. #endif
  1544. #if _AXIS_PLUG_UNUSED_TEST(Y)
  1545. #error "You must enable USE_YMIN_PLUG or USE_YMAX_PLUG."
  1546. #endif
  1547. #if _AXIS_PLUG_UNUSED_TEST(Z)
  1548. #error "You must enable USE_ZMIN_PLUG or USE_ZMAX_PLUG."
  1549. #endif
  1550. // Delta and Cartesian use 3 homing endstops
  1551. #if !IS_SCARA
  1552. #if X_HOME_DIR < 0 && DISABLED(USE_XMIN_PLUG)
  1553. #error "Enable USE_XMIN_PLUG when homing X to MIN."
  1554. #elif X_HOME_DIR > 0 && DISABLED(USE_XMAX_PLUG)
  1555. #error "Enable USE_XMAX_PLUG when homing X to MAX."
  1556. #elif Y_HOME_DIR < 0 && DISABLED(USE_YMIN_PLUG)
  1557. #error "Enable USE_YMIN_PLUG when homing Y to MIN."
  1558. #elif Y_HOME_DIR > 0 && DISABLED(USE_YMAX_PLUG)
  1559. #error "Enable USE_YMAX_PLUG when homing Y to MAX."
  1560. #endif
  1561. #endif
  1562. #if Z_HOME_DIR < 0 && DISABLED(USE_ZMIN_PLUG)
  1563. #error "Enable USE_ZMIN_PLUG when homing Z to MIN."
  1564. #elif Z_HOME_DIR > 0 && DISABLED(USE_ZMAX_PLUG)
  1565. #error "Enable USE_ZMAX_PLUG when homing Z to MAX."
  1566. #endif
  1567. // Dual endstops requirements
  1568. #if ENABLED(X_DUAL_ENDSTOPS)
  1569. #if !X2_USE_ENDSTOP
  1570. #error "You must set X2_USE_ENDSTOP with X_DUAL_ENDSTOPS."
  1571. #elif X2_USE_ENDSTOP == _XMIN_ && DISABLED(USE_XMIN_PLUG)
  1572. #error "USE_XMIN_PLUG is required when X2_USE_ENDSTOP is _XMIN_."
  1573. #elif X2_USE_ENDSTOP == _XMAX_ && DISABLED(USE_XMAX_PLUG)
  1574. #error "USE_XMAX_PLUG is required when X2_USE_ENDSTOP is _XMAX_."
  1575. #elif X2_USE_ENDSTOP == _YMIN_ && DISABLED(USE_YMIN_PLUG)
  1576. #error "USE_YMIN_PLUG is required when X2_USE_ENDSTOP is _YMIN_."
  1577. #elif X2_USE_ENDSTOP == _YMAX_ && DISABLED(USE_YMAX_PLUG)
  1578. #error "USE_YMAX_PLUG is required when X2_USE_ENDSTOP is _YMAX_."
  1579. #elif X2_USE_ENDSTOP == _ZMIN_ && DISABLED(USE_ZMIN_PLUG)
  1580. #error "USE_ZMIN_PLUG is required when X2_USE_ENDSTOP is _ZMIN_."
  1581. #elif X2_USE_ENDSTOP == _ZMAX_ && DISABLED(USE_ZMAX_PLUG)
  1582. #error "USE_ZMAX_PLUG is required when X2_USE_ENDSTOP is _ZMAX_."
  1583. #elif !HAS_X2_MIN && !HAS_X2_MAX
  1584. #error "X2_USE_ENDSTOP has been assigned to a nonexistent endstop!"
  1585. #elif ENABLED(DELTA)
  1586. #error "X_DUAL_ENDSTOPS is not compatible with DELTA."
  1587. #endif
  1588. #endif
  1589. #if ENABLED(Y_DUAL_ENDSTOPS)
  1590. #if !Y2_USE_ENDSTOP
  1591. #error "You must set Y2_USE_ENDSTOP with Y_DUAL_ENDSTOPS."
  1592. #elif Y2_USE_ENDSTOP == _XMIN_ && DISABLED(USE_XMIN_PLUG)
  1593. #error "USE_XMIN_PLUG is required when Y2_USE_ENDSTOP is _XMIN_."
  1594. #elif Y2_USE_ENDSTOP == _XMAX_ && DISABLED(USE_XMAX_PLUG)
  1595. #error "USE_XMAX_PLUG is required when Y2_USE_ENDSTOP is _XMAX_."
  1596. #elif Y2_USE_ENDSTOP == _YMIN_ && DISABLED(USE_YMIN_PLUG)
  1597. #error "USE_YMIN_PLUG is required when Y2_USE_ENDSTOP is _YMIN_."
  1598. #elif Y2_USE_ENDSTOP == _YMAX_ && DISABLED(USE_YMAX_PLUG)
  1599. #error "USE_YMAX_PLUG is required when Y2_USE_ENDSTOP is _YMAX_."
  1600. #elif Y2_USE_ENDSTOP == _ZMIN_ && DISABLED(USE_ZMIN_PLUG)
  1601. #error "USE_ZMIN_PLUG is required when Y2_USE_ENDSTOP is _ZMIN_."
  1602. #elif Y2_USE_ENDSTOP == _ZMAX_ && DISABLED(USE_ZMAX_PLUG)
  1603. #error "USE_ZMAX_PLUG is required when Y2_USE_ENDSTOP is _ZMAX_."
  1604. #elif !HAS_Y2_MIN && !HAS_Y2_MAX
  1605. #error "Y2_USE_ENDSTOP has been assigned to a nonexistent endstop!"
  1606. #elif ENABLED(DELTA)
  1607. #error "Y_DUAL_ENDSTOPS is not compatible with DELTA."
  1608. #endif
  1609. #endif
  1610. #if ENABLED(Z_DUAL_ENDSTOPS)
  1611. #if !Z2_USE_ENDSTOP
  1612. #error "You must set Z2_USE_ENDSTOP with Z_DUAL_ENDSTOPS."
  1613. #elif Z2_USE_ENDSTOP == _XMIN_ && DISABLED(USE_XMIN_PLUG)
  1614. #error "USE_XMIN_PLUG is required when Z2_USE_ENDSTOP is _XMIN_."
  1615. #elif Z2_USE_ENDSTOP == _XMAX_ && DISABLED(USE_XMAX_PLUG)
  1616. #error "USE_XMAX_PLUG is required when Z2_USE_ENDSTOP is _XMAX_."
  1617. #elif Z2_USE_ENDSTOP == _YMIN_ && DISABLED(USE_YMIN_PLUG)
  1618. #error "USE_YMIN_PLUG is required when Z2_USE_ENDSTOP is _YMIN_."
  1619. #elif Z2_USE_ENDSTOP == _YMAX_ && DISABLED(USE_YMAX_PLUG)
  1620. #error "USE_YMAX_PLUG is required when Z2_USE_ENDSTOP is _YMAX_."
  1621. #elif Z2_USE_ENDSTOP == _ZMIN_ && DISABLED(USE_ZMIN_PLUG)
  1622. #error "USE_ZMIN_PLUG is required when Z2_USE_ENDSTOP is _ZMIN_."
  1623. #elif Z2_USE_ENDSTOP == _ZMAX_ && DISABLED(USE_ZMAX_PLUG)
  1624. #error "USE_ZMAX_PLUG is required when Z2_USE_ENDSTOP is _ZMAX_."
  1625. #elif !HAS_Z2_MIN && !HAS_Z2_MAX
  1626. #error "Z2_USE_ENDSTOP has been assigned to a nonexistent endstop!"
  1627. #elif ENABLED(DELTA)
  1628. #error "Z_DUAL_ENDSTOPS is not compatible with DELTA."
  1629. #endif
  1630. #endif
  1631. #if ENABLED(Z_TRIPLE_ENDSTOPS)
  1632. #if !Z2_USE_ENDSTOP
  1633. #error "You must set Z2_USE_ENDSTOP with Z_TRIPLE_ENDSTOPS."
  1634. #elif Z2_USE_ENDSTOP == _XMIN_ && DISABLED(USE_XMIN_PLUG)
  1635. #error "USE_XMIN_PLUG is required when Z2_USE_ENDSTOP is _XMIN_."
  1636. #elif Z2_USE_ENDSTOP == _XMAX_ && DISABLED(USE_XMAX_PLUG)
  1637. #error "USE_XMAX_PLUG is required when Z2_USE_ENDSTOP is _XMAX_."
  1638. #elif Z2_USE_ENDSTOP == _YMIN_ && DISABLED(USE_YMIN_PLUG)
  1639. #error "USE_YMIN_PLUG is required when Z2_USE_ENDSTOP is _YMIN_."
  1640. #elif Z2_USE_ENDSTOP == _YMAX_ && DISABLED(USE_YMAX_PLUG)
  1641. #error "USE_YMAX_PLUG is required when Z2_USE_ENDSTOP is _YMAX_."
  1642. #elif Z2_USE_ENDSTOP == _ZMIN_ && DISABLED(USE_ZMIN_PLUG)
  1643. #error "USE_ZMIN_PLUG is required when Z2_USE_ENDSTOP is _ZMIN_."
  1644. #elif Z2_USE_ENDSTOP == _ZMAX_ && DISABLED(USE_ZMAX_PLUG)
  1645. #error "USE_ZMAX_PLUG is required when Z2_USE_ENDSTOP is _ZMAX_."
  1646. #elif !HAS_Z2_MIN && !HAS_Z2_MAX
  1647. #error "Z2_USE_ENDSTOP has been assigned to a nonexistent endstop!"
  1648. #elif ENABLED(DELTA)
  1649. #error "Z_TRIPLE_ENDSTOPS is not compatible with DELTA."
  1650. #endif
  1651. #if !Z3_USE_ENDSTOP
  1652. #error "You must set Z3_USE_ENDSTOP with Z_TRIPLE_ENDSTOPS."
  1653. #elif Z3_USE_ENDSTOP == _XMIN_ && DISABLED(USE_XMIN_PLUG)
  1654. #error "USE_XMIN_PLUG is required when Z3_USE_ENDSTOP is _XMIN_."
  1655. #elif Z3_USE_ENDSTOP == _XMAX_ && DISABLED(USE_XMAX_PLUG)
  1656. #error "USE_XMAX_PLUG is required when Z3_USE_ENDSTOP is _XMAX_."
  1657. #elif Z3_USE_ENDSTOP == _YMIN_ && DISABLED(USE_YMIN_PLUG)
  1658. #error "USE_YMIN_PLUG is required when Z3_USE_ENDSTOP is _YMIN_."
  1659. #elif Z3_USE_ENDSTOP == _YMAX_ && DISABLED(USE_YMAX_PLUG)
  1660. #error "USE_YMAX_PLUG is required when Z3_USE_ENDSTOP is _YMAX_."
  1661. #elif Z3_USE_ENDSTOP == _ZMIN_ && DISABLED(USE_ZMIN_PLUG)
  1662. #error "USE_ZMIN_PLUG is required when Z3_USE_ENDSTOP is _ZMIN_."
  1663. #elif Z3_USE_ENDSTOP == _ZMAX_ && DISABLED(USE_ZMAX_PLUG)
  1664. #error "USE_ZMAX_PLUG is required when Z3_USE_ENDSTOP is _ZMAX_."
  1665. #elif !HAS_Z3_MIN && !HAS_Z3_MAX
  1666. #error "Z3_USE_ENDSTOP has been assigned to a nonexistent endstop!"
  1667. #elif ENABLED(DELTA)
  1668. #error "Z_TRIPLE_ENDSTOPS is not compatible with DELTA."
  1669. #endif
  1670. #endif
  1671. #if defined(ENDSTOP_NOISE_THRESHOLD) && !WITHIN(ENDSTOP_NOISE_THRESHOLD, 2, 7)
  1672. #error "ENDSTOP_NOISE_THRESHOLD must be an integer from 2 to 7."
  1673. #endif
  1674. /**
  1675. * emergency-command parser
  1676. */
  1677. #if ENABLED(EMERGENCY_PARSER) && defined(__AVR__) && defined(USBCON)
  1678. #error "EMERGENCY_PARSER does not work on boards with AT90USB processors (USBCON)."
  1679. #endif
  1680. /**
  1681. * I2C bus
  1682. */
  1683. #if ENABLED(EXPERIMENTAL_I2CBUS) && I2C_SLAVE_ADDRESS > 0
  1684. #if I2C_SLAVE_ADDRESS < 8
  1685. #error "I2C_SLAVE_ADDRESS can't be less than 8. (Addresses 0 - 7 are reserved.)"
  1686. #elif I2C_SLAVE_ADDRESS > 127
  1687. #error "I2C_SLAVE_ADDRESS can't be over 127. (Only 7 bits allowed.)"
  1688. #endif
  1689. #endif
  1690. /**
  1691. * G38 Probe Target
  1692. */
  1693. #if ENABLED(G38_PROBE_TARGET)
  1694. #if !HAS_BED_PROBE
  1695. #error "G38_PROBE_TARGET requires a bed probe."
  1696. #elif !IS_CARTESIAN
  1697. #error "G38_PROBE_TARGET requires a Cartesian machine."
  1698. #endif
  1699. #endif
  1700. /**
  1701. * RGB_LED Requirements
  1702. */
  1703. #define _RGB_TEST (PIN_EXISTS(RGB_LED_R, RGB_LED_G, RGB_LED_B))
  1704. #if ENABLED(PRINTER_EVENT_LEDS) && !HAS_COLOR_LEDS
  1705. #error "PRINTER_EVENT_LEDS requires BLINKM, PCA9533, PCA9632, RGB_LED, RGBW_LED or NEOPIXEL_LED."
  1706. #elif ENABLED(RGB_LED)
  1707. #if !_RGB_TEST
  1708. #error "RGB_LED requires RGB_LED_R_PIN, RGB_LED_G_PIN, and RGB_LED_B_PIN."
  1709. #elif ENABLED(RGBW_LED)
  1710. #error "Please enable only one of RGB_LED and RGBW_LED."
  1711. #endif
  1712. #elif ENABLED(RGBW_LED)
  1713. #if !(_RGB_TEST && PIN_EXISTS(RGB_LED_W))
  1714. #error "RGBW_LED requires RGB_LED_R_PIN, RGB_LED_G_PIN, RGB_LED_B_PIN, and RGB_LED_W_PIN."
  1715. #endif
  1716. #elif ENABLED(NEOPIXEL_LED)
  1717. #if !(PIN_EXISTS(NEOPIXEL) && NEOPIXEL_PIXELS > 0)
  1718. #error "NEOPIXEL_LED requires NEOPIXEL_PIN and NEOPIXEL_PIXELS."
  1719. #endif
  1720. #endif
  1721. #undef _RGB_TEST
  1722. /**
  1723. * Auto Fan check for PWM pins
  1724. */
  1725. #if HAS_AUTO_FAN && EXTRUDER_AUTO_FAN_SPEED != 255
  1726. #define AF_ERR_SUFF "_AUTO_FAN_PIN is not a PWM pin. Set EXTRUDER_AUTO_FAN_SPEED to 255."
  1727. #if HAS_AUTO_FAN_0
  1728. static_assert(PWM_PIN(E0_AUTO_FAN_PIN), "E0" AF_ERR_SUFF);
  1729. #elif HAS_AUTO_FAN_1
  1730. static_assert(PWM_PIN(E1_AUTO_FAN_PIN), "E1" AF_ERR_SUFF);
  1731. #elif HAS_AUTO_FAN_2
  1732. static_assert(PWM_PIN(E2_AUTO_FAN_PIN), "E2" AF_ERR_SUFF);
  1733. #elif HAS_AUTO_FAN_3
  1734. static_assert(PWM_PIN(E3_AUTO_FAN_PIN), "E3" AF_ERR_SUFF);
  1735. #endif
  1736. #endif
  1737. /**
  1738. * Make sure only one display is enabled
  1739. */
  1740. #if 1 < 0 \
  1741. + (ENABLED(REPRAP_DISCOUNT_SMART_CONTROLLER) && DISABLED(IS_RRD_SC)) \
  1742. + (ENABLED(REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER) && DISABLED(IS_RRD_FG_SC)) \
  1743. + (ENABLED(ULTRA_LCD) && DISABLED(IS_ULTRA_LCD)) \
  1744. + (ENABLED(U8GLIB_SSD1306) && DISABLED(IS_U8GLIB_SSD1306)) \
  1745. + (ENABLED(MINIPANEL) && DISABLED(MKS_MINI_12864, ENDER2_STOCKDISPLAY)) \
  1746. + (ENABLED(REPRAPWORLD_KEYPAD) && DISABLED(IS_RRW_KEYPAD)) \
  1747. + (ENABLED(EXTENSIBLE_UI) && DISABLED(IS_EXTUI)) \
  1748. + (ENABLED(ULTIPANEL) && DISABLED(IS_ULTIPANEL)) \
  1749. + ENABLED(RADDS_DISPLAY) \
  1750. + ENABLED(ULTIMAKERCONTROLLER) \
  1751. + ENABLED(PANEL_ONE) \
  1752. + ENABLED(G3D_PANEL) \
  1753. + ENABLED(RIGIDBOT_PANEL) \
  1754. + ENABLED(MAKEBOARD_MINI_2_LINE_DISPLAY_1602) \
  1755. + ENABLED(ZONESTAR_LCD) \
  1756. + ENABLED(RA_CONTROL_PANEL) \
  1757. + ENABLED(LCD_SAINSMART_I2C_1602) \
  1758. + ENABLED(LCD_SAINSMART_I2C_2004) \
  1759. + ENABLED(LCM1602) \
  1760. + ENABLED(LCD_I2C_PANELOLU2) \
  1761. + ENABLED(LCD_I2C_VIKI) \
  1762. + ENABLED(SAV_3DLCD) \
  1763. + ENABLED(FF_INTERFACEBOARD) \
  1764. + ENABLED(REPRAPWORLD_GRAPHICAL_LCD) \
  1765. + ENABLED(VIKI2) \
  1766. + ENABLED(miniVIKI) \
  1767. + ENABLED(MAKRPANEL) \
  1768. + ENABLED(ELB_FULL_GRAPHIC_CONTROLLER) \
  1769. + ENABLED(BQ_LCD_SMART_CONTROLLER) \
  1770. + ENABLED(CARTESIO_UI) \
  1771. + ENABLED(LCD_FOR_MELZI) \
  1772. + ENABLED(ULTI_CONTROLLER) \
  1773. + ENABLED(MKS_MINI_12864) \
  1774. + ENABLED(ENDER2_STOCKDISPLAY) \
  1775. + ENABLED(FYSETC_MINI_12864_X_X) \
  1776. + ENABLED(FYSETC_MINI_12864_1_2) \
  1777. + ENABLED(FYSETC_MINI_12864_2_0) \
  1778. + ENABLED(FYSETC_MINI_12864_2_1) \
  1779. + ENABLED(CR10_STOCKDISPLAY) \
  1780. + ENABLED(ANET_FULL_GRAPHICS_LCD) \
  1781. + ENABLED(AZSMZ_12864) \
  1782. + ENABLED(SILVER_GATE_GLCD_CONTROLLER) \
  1783. + ENABLED(SAV_3DGLCD) \
  1784. + ENABLED(OLED_PANEL_TINYBOY2) \
  1785. + ENABLED(MKS_12864OLED) \
  1786. + ENABLED(MKS_12864OLED_SSD1306) \
  1787. + ENABLED(U8GLIB_SH1106_EINSTART) \
  1788. + ENABLED(OVERLORD_OLED) \
  1789. + ENABLED(DGUS_LCD_UI_ORIGIN) \
  1790. + ENABLED(DGUS_LCD_UI_FYSETC) \
  1791. + ENABLED(DGUS_LCD_UI_HIPRECY) \
  1792. + ENABLED(MALYAN_LCD) \
  1793. + ENABLED(TOUCH_UI_FTDI_EVE) \
  1794. + ENABLED(FSMC_GRAPHICAL_TFT)
  1795. #error "Please select no more than one LCD controller option."
  1796. #endif
  1797. #undef IS_RRD_SC
  1798. #undef IS_RRD_FG_SC
  1799. #undef IS_ULTRA_LCD
  1800. #undef IS_U8GLIB_SSD1306
  1801. #undef IS_RRW_KEYPAD
  1802. #undef IS_EXTUI
  1803. #undef IS_ULTIPANEL
  1804. /**
  1805. * FYSETC Mini 12864 RGB backlighting required
  1806. */
  1807. #if EITHER(FYSETC_MINI_12864_1_2, FYSETC_MINI_12864_2_0) && DISABLED(RGB_LED)
  1808. #error "RGB_LED is required for FYSETC_MINI_12864 1.2 and 2.0."
  1809. #elif EITHER(FYSETC_MINI_12864_2_0, FYSETC_MINI_12864_2_1) && DISABLED(LED_USER_PRESET_STARTUP)
  1810. #error "LED_USER_PRESET_STARTUP is required for FYSETC_MINI_12864 2.x displays."
  1811. #endif
  1812. /**
  1813. * Check existing CS pins against enabled TMC SPI drivers.
  1814. */
  1815. #define INVALID_TMC_SPI(ST) (AXIS_HAS_SPI(ST) && !PIN_EXISTS(ST##_CS))
  1816. #if INVALID_TMC_SPI(X)
  1817. #error "An SPI driven TMC driver on X requires X_CS_PIN."
  1818. #elif INVALID_TMC_SPI(X2)
  1819. #error "An SPI driven TMC driver on X2 requires X2_CS_PIN."
  1820. #elif INVALID_TMC_SPI(Y)
  1821. #error "An SPI driven TMC driver on Y requires Y_CS_PIN."
  1822. #elif INVALID_TMC_SPI(Y2)
  1823. #error "An SPI driven TMC driver on Y2 requires Y2_CS_PIN."
  1824. #elif INVALID_TMC_SPI(Z)
  1825. #error "An SPI driven TMC driver on Z requires Z_CS_PIN."
  1826. #elif INVALID_TMC_SPI(Z2)
  1827. #error "An SPI driven TMC driver on Z2 requires Z2_CS_PIN."
  1828. #elif INVALID_TMC_SPI(Z3)
  1829. #error "An SPI driven TMC driver on Z3 requires Z3_CS_PIN."
  1830. #elif INVALID_TMC_SPI(E0)
  1831. #error "An SPI driven TMC driver on E0 requires E0_CS_PIN."
  1832. #elif INVALID_TMC_SPI(E1)
  1833. #error "An SPI driven TMC driver on E1 requires E1_CS_PIN."
  1834. #elif INVALID_TMC_SPI(E2)
  1835. #error "An SPI driven TMC driver on E2 requires E2_CS_PIN."
  1836. #elif INVALID_TMC_SPI(E3)
  1837. #error "An SPI driven TMC driver on E3 requires E3_CS_PIN."
  1838. #elif INVALID_TMC_SPI(E4)
  1839. #error "An SPI driven TMC driver on E4 requires E4_CS_PIN."
  1840. #elif INVALID_TMC_SPI(E5)
  1841. #error "An SPI driven TMC driver on E5 requires E5_CS_PIN."
  1842. #endif
  1843. #undef INVALID_TMC_SPI
  1844. /**
  1845. * Check existing RX/TX pins against enable TMC UART drivers.
  1846. */
  1847. #define INVALID_TMC_UART(ST) (AXIS_HAS_UART(ST) && !(defined(ST##_HARDWARE_SERIAL) || (PIN_EXISTS(ST##_SERIAL_RX, ST##_SERIAL_TX))))
  1848. #if INVALID_TMC_UART(X)
  1849. #error "TMC2208 or TMC2209 on X requires X_HARDWARE_SERIAL or X_SERIAL_(RX|TX)_PIN."
  1850. #elif INVALID_TMC_UART(X2)
  1851. #error "TMC2208 or TMC2209 on X2 requires X2_HARDWARE_SERIAL or X2_SERIAL_(RX|TX)_PIN."
  1852. #elif INVALID_TMC_UART(Y)
  1853. #error "TMC2208 or TMC2209 on Y requires Y_HARDWARE_SERIAL or Y_SERIAL_(RX|TX)_PIN."
  1854. #elif INVALID_TMC_UART(Y2)
  1855. #error "TMC2208 or TMC2209 on Y2 requires Y2_HARDWARE_SERIAL or Y2_SERIAL_(RX|TX)_PIN."
  1856. #elif INVALID_TMC_UART(Z)
  1857. #error "TMC2208 or TMC2209 on Z requires Z_HARDWARE_SERIAL or Z_SERIAL_(RX|TX)_PIN."
  1858. #elif INVALID_TMC_UART(Z2)
  1859. #error "TMC2208 or TMC2209 on Z2 requires Z2_HARDWARE_SERIAL or Z2_SERIAL_(RX|TX)_PIN."
  1860. #elif INVALID_TMC_UART(Z3)
  1861. #error "TMC2208 or TMC2209 on Z3 requires Z3_HARDWARE_SERIAL or Z3_SERIAL_(RX|TX)_PIN."
  1862. #elif INVALID_TMC_UART(E0)
  1863. #error "TMC2208 or TMC2209 on E0 requires E0_HARDWARE_SERIAL or E0_SERIAL_(RX|TX)_PIN."
  1864. #elif INVALID_TMC_UART(E1)
  1865. #error "TMC2208 or TMC2209 on E1 requires E1_HARDWARE_SERIAL or E1_SERIAL_(RX|TX)_PIN."
  1866. #elif INVALID_TMC_UART(E2)
  1867. #error "TMC2208 or TMC2209 on E2 requires E2_HARDWARE_SERIAL or E2_SERIAL_(RX|TX)_PIN."
  1868. #elif INVALID_TMC_UART(E3)
  1869. #error "TMC2208 or TMC2209 on E3 requires E3_HARDWARE_SERIAL or E3_SERIAL_(RX|TX)_PIN."
  1870. #elif INVALID_TMC_UART(E4)
  1871. #error "TMC2208 or TMC2209 on E4 requires E4_HARDWARE_SERIAL or E4_SERIAL_(RX|TX)_PIN."
  1872. #elif INVALID_TMC_UART(E5)
  1873. #error "TMC2208 or TMC2209 on E5 requires E5_HARDWARE_SERIAL or E5_SERIAL_(RX|TX)_PIN."
  1874. #endif
  1875. #undef INVALID_TMC_UART
  1876. /**
  1877. * TMC2209 slave address values
  1878. */
  1879. #define INVALID_TMC_ADDRESS(ST) static_assert(0 <= ST##_SLAVE_ADDRESS && ST##_SLAVE_ADDRESS <= 3, "TMC2209 slave address must be 0, 1, 2 or 3")
  1880. #if AXIS_DRIVER_TYPE_X(TMC2209)
  1881. INVALID_TMC_ADDRESS(X);
  1882. #elif AXIS_DRIVER_TYPE_X2(TMC2209)
  1883. INVALID_TMC_ADDRESS(X2);
  1884. #elif AXIS_DRIVER_TYPE_Y(TMC2209)
  1885. INVALID_TMC_ADDRESS(Y);
  1886. #elif AXIS_DRIVER_TYPE_Y2(TMC2209)
  1887. INVALID_TMC_ADDRESS(Y2);
  1888. #elif AXIS_DRIVER_TYPE_Z(TMC2209)
  1889. INVALID_TMC_ADDRESS(Z);
  1890. #elif AXIS_DRIVER_TYPE_Z2(TMC2209)
  1891. INVALID_TMC_ADDRESS(Z2);
  1892. #elif AXIS_DRIVER_TYPE_Z3(TMC2209)
  1893. INVALID_TMC_ADDRESS(Z3);
  1894. #elif AXIS_DRIVER_TYPE_E0(TMC2209)
  1895. INVALID_TMC_ADDRESS(E0);
  1896. #elif AXIS_DRIVER_TYPE_E1(TMC2209)
  1897. INVALID_TMC_ADDRESS(E1);
  1898. #elif AXIS_DRIVER_TYPE_E2(TMC2209)
  1899. INVALID_TMC_ADDRESS(E2);
  1900. #elif AXIS_DRIVER_TYPE_E3(TMC2209)
  1901. INVALID_TMC_ADDRESS(E3);
  1902. #elif AXIS_DRIVER_TYPE_E4(TMC2209)
  1903. INVALID_TMC_ADDRESS(E4);
  1904. #elif AXIS_DRIVER_TYPE_E5(TMC2209)
  1905. INVALID_TMC_ADDRESS(E5);
  1906. #endif
  1907. #undef INVALID_TMC_ADDRESS
  1908. #if ENABLED(DELTA) && (ENABLED(STEALTHCHOP_XY) != ENABLED(STEALTHCHOP_Z))
  1909. #error "STEALTHCHOP_XY and STEALTHCHOP_Z must be the same on DELTA."
  1910. #endif
  1911. #if ENABLED(SENSORLESS_HOMING)
  1912. // Require STEALTHCHOP for SENSORLESS_HOMING on DELTA as the transition from spreadCycle to stealthChop
  1913. // is necessary in order to reset the stallGuard indication between the initial movement of all three
  1914. // towers to +Z and the individual homing of each tower. This restriction can be removed once a means of
  1915. // clearing the stallGuard activated status is found.
  1916. // Stall detection DIAG = HIGH : TMC2209
  1917. // Stall detection DIAG = LOW : TMC2130/TMC2160/TMC2660/TMC5130/TMC5160
  1918. #define X_ENDSTOP_INVERTING !AXIS_DRIVER_TYPE(X,TMC2209)
  1919. #define Y_ENDSTOP_INVERTING !AXIS_DRIVER_TYPE(Y,TMC2209)
  1920. #define Z_ENDSTOP_INVERTING !AXIS_DRIVER_TYPE(Z,TMC2209)
  1921. #if ENABLED(DELTA) && !BOTH(STEALTHCHOP_XY, STEALTHCHOP_Z)
  1922. #error "SENSORLESS_HOMING on DELTA currently requires STEALTHCHOP_XY and STEALTHCHOP_Z."
  1923. #elif X_SENSORLESS && X_HOME_DIR < 0 && NONE(ONBOARD_ENDSTOPPULLUPS, ENDSTOPPULLUPS, ENDSTOPPULLUP_XMIN)
  1924. #error "SENSORLESS_HOMING requires ENDSTOPPULLUP_XMIN (or ENDSTOPPULLUPS) when homing to X_MIN."
  1925. #elif X_SENSORLESS && X_HOME_DIR > 0 && NONE(ONBOARD_ENDSTOPPULLUPS, ENDSTOPPULLUPS, ENDSTOPPULLUP_XMAX)
  1926. #error "SENSORLESS_HOMING requires ENDSTOPPULLUP_XMAX (or ENDSTOPPULLUPS) when homing to X_MAX."
  1927. #elif Y_SENSORLESS && Y_HOME_DIR < 0 && NONE(ONBOARD_ENDSTOPPULLUPS, ENDSTOPPULLUPS, ENDSTOPPULLUP_YMIN)
  1928. #error "SENSORLESS_HOMING requires ENDSTOPPULLUP_YMIN (or ENDSTOPPULLUPS) when homing to Y_MIN."
  1929. #elif Y_SENSORLESS && Y_HOME_DIR > 0 && NONE(ONBOARD_ENDSTOPPULLUPS, ENDSTOPPULLUPS, ENDSTOPPULLUP_YMAX)
  1930. #error "SENSORLESS_HOMING requires ENDSTOPPULLUP_YMAX (or ENDSTOPPULLUPS) when homing to Y_MAX."
  1931. #elif Z_SENSORLESS && Z_HOME_DIR < 0 && NONE(ONBOARD_ENDSTOPPULLUPS, ENDSTOPPULLUPS, ENDSTOPPULLUP_ZMIN)
  1932. #error "SENSORLESS_HOMING requires ENDSTOPPULLUP_ZMIN (or ENDSTOPPULLUPS) when homing to Z_MIN."
  1933. #elif Z_SENSORLESS && Z_HOME_DIR > 0 && NONE(ONBOARD_ENDSTOPPULLUPS, ENDSTOPPULLUPS, ENDSTOPPULLUP_ZMAX)
  1934. #error "SENSORLESS_HOMING requires ENDSTOPPULLUP_ZMAX (or ENDSTOPPULLUPS) when homing to Z_MAX."
  1935. #elif X_SENSORLESS && X_HOME_DIR < 0 && X_MIN_ENDSTOP_INVERTING != X_ENDSTOP_INVERTING
  1936. #if X_ENDSTOP_INVERTING
  1937. #error "SENSORLESS_HOMING requires X_MIN_ENDSTOP_INVERTING = true when homing to X_MIN."
  1938. #else
  1939. #error "SENSORLESS_HOMING requires X_MIN_ENDSTOP_INVERTING = false when homing TMC2209 to X_MIN."
  1940. #endif
  1941. #elif X_SENSORLESS && X_HOME_DIR > 0 && X_MAX_ENDSTOP_INVERTING != X_ENDSTOP_INVERTING
  1942. #if X_ENDSTOP_INVERTING
  1943. #error "SENSORLESS_HOMING requires X_MAX_ENDSTOP_INVERTING = true when homing to X_MAX."
  1944. #else
  1945. #error "SENSORLESS_HOMING requires X_MAX_ENDSTOP_INVERTING = false when homing TMC2209 to X_MAX."
  1946. #endif
  1947. #elif Y_SENSORLESS && Y_HOME_DIR < 0 && Y_MIN_ENDSTOP_INVERTING != Y_ENDSTOP_INVERTING
  1948. #if Y_ENDSTOP_INVERTING
  1949. #error "SENSORLESS_HOMING requires Y_MIN_ENDSTOP_INVERTING = true when homing to Y_MIN."
  1950. #else
  1951. #error "SENSORLESS_HOMING requires Y_MIN_ENDSTOP_INVERTING = false when homing TMC2209 to Y_MIN."
  1952. #endif
  1953. #elif Y_SENSORLESS && Y_HOME_DIR > 0 && Y_MAX_ENDSTOP_INVERTING != Y_ENDSTOP_INVERTING
  1954. #if Y_ENDSTOP_INVERTING
  1955. #error "SENSORLESS_HOMING requires Y_MAX_ENDSTOP_INVERTING = true when homing to Y_MAX."
  1956. #else
  1957. #error "SENSORLESS_HOMING requires Y_MAX_ENDSTOP_INVERTING = false when homing TMC2209 to Y_MAX."
  1958. #endif
  1959. #elif Z_SENSORLESS && Z_HOME_DIR < 0 && Z_MIN_ENDSTOP_INVERTING != Z_ENDSTOP_INVERTING
  1960. #if Z_ENDSTOP_INVERTING
  1961. #error "SENSORLESS_HOMING requires Z_MIN_ENDSTOP_INVERTING = true when homing to Z_MIN."
  1962. #else
  1963. #error "SENSORLESS_HOMING requires Z_MIN_ENDSTOP_INVERTING = false when homing TMC2209 to Z_MIN."
  1964. #endif
  1965. #elif Z_SENSORLESS && Z_HOME_DIR > 0 && Z_MAX_ENDSTOP_INVERTING != Z_ENDSTOP_INVERTING
  1966. #if Z_ENDSTOP_INVERTING
  1967. #error "SENSORLESS_HOMING requires Z_MAX_ENDSTOP_INVERTING = true when homing to Z_MAX."
  1968. #else
  1969. #error "SENSORLESS_HOMING requires Z_MAX_ENDSTOP_INVERTING = false when homing TMC2209 to Z_MAX."
  1970. #endif
  1971. #elif ENDSTOP_NOISE_THRESHOLD
  1972. #error "SENSORLESS_HOMING is incompatible with ENDSTOP_NOISE_THRESHOLD."
  1973. #elif !(X_SENSORLESS || Y_SENSORLESS || Z_SENSORLESS)
  1974. #error "SENSORLESS_HOMING requires a TMC stepper driver with StallGuard on X, Y, or Z axes."
  1975. #endif
  1976. #undef X_ENDSTOP_INVERTING
  1977. #undef Y_ENDSTOP_INVERTING
  1978. #undef Z_ENDSTOP_INVERTING
  1979. #endif
  1980. // Sensorless probing requirements
  1981. #if ENABLED(SENSORLESS_PROBING)
  1982. #if ENABLED(DELTA) && !(X_SENSORLESS && Y_SENSORLESS && Z_SENSORLESS)
  1983. #error "SENSORLESS_PROBING for DELTA requires TMC stepper drivers with StallGuard on X, Y, and Z axes."
  1984. #elif !Z_SENSORLESS
  1985. #error "SENSORLESS_PROBING requires a TMC stepper driver with StallGuard on Z."
  1986. #endif
  1987. #endif
  1988. // Sensorless homing is required for both combined steppers in an H-bot
  1989. #if CORE_IS_XY && X_SENSORLESS != Y_SENSORLESS
  1990. #error "CoreXY requires both X and Y to use sensorless homing if either does."
  1991. #elif CORE_IS_XZ && X_SENSORLESS != Z_SENSORLESS
  1992. #error "CoreXZ requires both X and Z to use sensorless homing if either does."
  1993. #elif CORE_IS_YZ && Y_SENSORLESS != Z_SENSORLESS
  1994. #error "CoreYZ requires both Y and Z to use sensorless homing if either does."
  1995. #endif
  1996. // Other TMC feature requirements
  1997. #if ENABLED(HYBRID_THRESHOLD) && !STEALTHCHOP_ENABLED
  1998. #error "Enable STEALTHCHOP_(XY|Z|E) to use HYBRID_THRESHOLD."
  1999. #elif ENABLED(SENSORLESS_HOMING) && !HAS_STALLGUARD
  2000. #error "SENSORLESS_HOMING requires TMC2130, TMC2160, TMC2209, TMC2660, or TMC5160 stepper drivers."
  2001. #elif ENABLED(SENSORLESS_PROBING) && !HAS_STALLGUARD
  2002. #error "SENSORLESS_PROBING requires TMC2130, TMC2160, TMC2209, TMC2660, or TMC5160 stepper drivers."
  2003. #elif STEALTHCHOP_ENABLED && !HAS_STEALTHCHOP
  2004. #error "STEALTHCHOP requires TMC2130, TMC2160, TMC2208, TMC2209, or TMC5160 stepper drivers."
  2005. #endif
  2006. #define IN_CHAIN(A) ((A##_CHAIN_POS > 0) && !HAS_L64XX)
  2007. // TMC SPI Chaining
  2008. #if IN_CHAIN(X) || IN_CHAIN(Y) || IN_CHAIN(Z) || IN_CHAIN(X2) || IN_CHAIN(Y2) || IN_CHAIN(Z2) || IN_CHAIN(Z3) || IN_CHAIN(E0) || IN_CHAIN(E1) || IN_CHAIN(E2) || IN_CHAIN(E3) || IN_CHAIN(E4) || IN_CHAIN(E5)
  2009. #if (IN_CHAIN(X) && !PIN_EXISTS(X_CS) ) || (IN_CHAIN(Y) && !PIN_EXISTS(Y_CS) ) \
  2010. || (IN_CHAIN(Z) && !PIN_EXISTS(Z_CS) ) || (IN_CHAIN(X2) && !PIN_EXISTS(X2_CS)) \
  2011. || (IN_CHAIN(Y2) && !PIN_EXISTS(Y2_CS)) || (IN_CHAIN(Z2) && !PIN_EXISTS(Z2_CS)) \
  2012. || (IN_CHAIN(Z3) && !PIN_EXISTS(Z3_CS)) || (IN_CHAIN(E0) && !PIN_EXISTS(E0_CS)) \
  2013. || (IN_CHAIN(E1) && !PIN_EXISTS(E1_CS)) || (IN_CHAIN(E2) && !PIN_EXISTS(E2_CS)) \
  2014. || (IN_CHAIN(E3) && !PIN_EXISTS(E3_CS)) || (IN_CHAIN(E4) && !PIN_EXISTS(E4_CS)) \
  2015. || (IN_CHAIN(E5) && !PIN_EXISTS(E5_CS))
  2016. #error "All chained TMC drivers need a CS pin."
  2017. #else
  2018. #if IN_CHAIN(X)
  2019. #define CS_COMPARE X_CS_PIN
  2020. #elif IN_CHAIN(Y)
  2021. #define CS_COMPARE Y_CS_PIN
  2022. #elif IN_CHAIN(Z)
  2023. #define CS_COMPARE Z_CS_PIN
  2024. #elif IN_CHAIN(X2)
  2025. #define CS_COMPARE X2_CS_PIN
  2026. #elif IN_CHAIN(Y2)
  2027. #define CS_COMPARE Y2_CS_PIN
  2028. #elif IN_CHAIN(Z2)
  2029. #define CS_COMPARE Z2_CS_PIN
  2030. #elif IN_CHAIN(Z3)
  2031. #define CS_COMPARE Z3_CS_PIN
  2032. #elif IN_CHAIN(E0)
  2033. #define CS_COMPARE E0_CS_PIN
  2034. #elif IN_CHAIN(E1)
  2035. #define CS_COMPARE E1_CS_PIN
  2036. #elif IN_CHAIN(E2)
  2037. #define CS_COMPARE E2_CS_PIN
  2038. #elif IN_CHAIN(E3)
  2039. #define CS_COMPARE E3_CS_PIN
  2040. #elif IN_CHAIN(E4)
  2041. #define CS_COMPARE E4_CS_PIN
  2042. #elif IN_CHAIN(E5)
  2043. #define CS_COMPARE E5_CS_PIN
  2044. #endif
  2045. #if (IN_CHAIN(X) && X_CS_PIN != CS_COMPARE) || (IN_CHAIN(Y) && Y_CS_PIN != CS_COMPARE) \
  2046. || (IN_CHAIN(Z) && Z_CS_PIN != CS_COMPARE) || (IN_CHAIN(X2) && X2_CS_PIN != CS_COMPARE) \
  2047. || (IN_CHAIN(Y2) && Y2_CS_PIN != CS_COMPARE) || (IN_CHAIN(Z2) && Z2_CS_PIN != CS_COMPARE) \
  2048. || (IN_CHAIN(Z3) && Z3_CS_PIN != CS_COMPARE) || (IN_CHAIN(E0) && E0_CS_PIN != CS_COMPARE) \
  2049. || (IN_CHAIN(E1) && E1_CS_PIN != CS_COMPARE) || (IN_CHAIN(E2) && E2_CS_PIN != CS_COMPARE) \
  2050. || (IN_CHAIN(E3) && E3_CS_PIN != CS_COMPARE) || (IN_CHAIN(E4) && E4_CS_PIN != CS_COMPARE) \
  2051. || (IN_CHAIN(E5) && E5_CS_PIN != CS_COMPARE)
  2052. #error "All chained TMC drivers must use the same CS pin."
  2053. #endif
  2054. #endif
  2055. #undef CS_COMPARE
  2056. #endif
  2057. #undef IN_CHAIN
  2058. /**
  2059. * Digipot requirement
  2060. */
  2061. #if ENABLED(DIGIPOT_MCP4018)
  2062. #if !defined(DIGIPOTS_I2C_SDA_X) || !defined(DIGIPOTS_I2C_SDA_Y) || !defined(DIGIPOTS_I2C_SDA_Z) \
  2063. || !defined(DIGIPOTS_I2C_SDA_E0) || !defined(DIGIPOTS_I2C_SDA_E1)
  2064. #error "DIGIPOT_MCP4018 requires DIGIPOTS_I2C_SDA_* pins to be defined."
  2065. #endif
  2066. #endif
  2067. /**
  2068. * Check per-axis initializers for errors
  2069. */
  2070. constexpr float sanity_arr_1[] = DEFAULT_AXIS_STEPS_PER_UNIT,
  2071. sanity_arr_2[] = DEFAULT_MAX_FEEDRATE,
  2072. sanity_arr_3[] = DEFAULT_MAX_ACCELERATION;
  2073. #define _ARR_TEST(N,I) (sanity_arr_##N[_MIN(I,int(COUNT(sanity_arr_##N))-1)] > 0)
  2074. static_assert(COUNT(sanity_arr_1) >= XYZE, "DEFAULT_AXIS_STEPS_PER_UNIT requires X, Y, Z and E elements.");
  2075. static_assert(COUNT(sanity_arr_1) <= XYZE_N, "DEFAULT_AXIS_STEPS_PER_UNIT has too many elements. (Did you forget to enable DISTINCT_E_FACTORS?)");
  2076. static_assert( _ARR_TEST(1,0) && _ARR_TEST(1,1) && _ARR_TEST(1,2)
  2077. && _ARR_TEST(1,3) && _ARR_TEST(1,4) && _ARR_TEST(1,5)
  2078. && _ARR_TEST(1,6) && _ARR_TEST(1,7) && _ARR_TEST(1,8),
  2079. "DEFAULT_AXIS_STEPS_PER_UNIT values must be positive.");
  2080. static_assert(COUNT(sanity_arr_2) >= XYZE, "DEFAULT_MAX_FEEDRATE requires X, Y, Z and E elements.");
  2081. static_assert(COUNT(sanity_arr_2) <= XYZE_N, "DEFAULT_MAX_FEEDRATE has too many elements. (Did you forget to enable DISTINCT_E_FACTORS?)");
  2082. static_assert( _ARR_TEST(2,0) && _ARR_TEST(2,1) && _ARR_TEST(2,2)
  2083. && _ARR_TEST(2,3) && _ARR_TEST(2,4) && _ARR_TEST(2,5)
  2084. && _ARR_TEST(2,6) && _ARR_TEST(2,7) && _ARR_TEST(2,8),
  2085. "DEFAULT_MAX_FEEDRATE values must be positive.");
  2086. static_assert(COUNT(sanity_arr_3) >= XYZE, "DEFAULT_MAX_ACCELERATION requires X, Y, Z and E elements.");
  2087. static_assert(COUNT(sanity_arr_3) <= XYZE_N, "DEFAULT_MAX_ACCELERATION has too many elements. (Did you forget to enable DISTINCT_E_FACTORS?)");
  2088. static_assert( _ARR_TEST(3,0) && _ARR_TEST(3,1) && _ARR_TEST(3,2)
  2089. && _ARR_TEST(3,3) && _ARR_TEST(3,4) && _ARR_TEST(3,5)
  2090. && _ARR_TEST(3,6) && _ARR_TEST(3,7) && _ARR_TEST(3,8),
  2091. "DEFAULT_MAX_ACCELERATION values must be positive.");
  2092. #if ENABLED(LIMITED_MAX_ACCEL_EDITING)
  2093. #ifdef MAX_ACCEL_EDIT_VALUES
  2094. constexpr float sanity_arr_4[] = MAX_ACCEL_EDIT_VALUES;
  2095. static_assert(COUNT(sanity_arr_4) >= XYZE, "MAX_ACCEL_EDIT_VALUES requires X, Y, Z and E elements.");
  2096. static_assert(COUNT(sanity_arr_4) <= XYZE, "MAX_ACCEL_EDIT_VALUES has too many elements. X, Y, Z and E elements only.");
  2097. static_assert( _ARR_TEST(4,0) && _ARR_TEST(4,1) && _ARR_TEST(4,2)
  2098. && _ARR_TEST(4,3) && _ARR_TEST(4,4) && _ARR_TEST(4,5)
  2099. && _ARR_TEST(4,6) && _ARR_TEST(4,7) && _ARR_TEST(4,8),
  2100. "MAX_ACCEL_EDIT_VALUES values must be positive.");
  2101. #endif
  2102. #endif
  2103. #if ENABLED(LIMITED_MAX_FR_EDITING)
  2104. #ifdef MAX_FEEDRATE_EDIT_VALUES
  2105. constexpr float sanity_arr_5[] = MAX_FEEDRATE_EDIT_VALUES;
  2106. static_assert(COUNT(sanity_arr_5) >= XYZE, "MAX_FEEDRATE_EDIT_VALUES requires X, Y, Z and E elements.");
  2107. static_assert(COUNT(sanity_arr_5) <= XYZE, "MAX_FEEDRATE_EDIT_VALUES has too many elements. X, Y, Z and E elements only.");
  2108. static_assert( _ARR_TEST(5,0) && _ARR_TEST(5,1) && _ARR_TEST(5,2)
  2109. && _ARR_TEST(5,3) && _ARR_TEST(5,4) && _ARR_TEST(5,5)
  2110. && _ARR_TEST(5,6) && _ARR_TEST(5,7) && _ARR_TEST(5,8),
  2111. "MAX_FEEDRATE_EDIT_VALUES values must be positive.");
  2112. #endif
  2113. #endif
  2114. #if ENABLED(LIMITED_JERK_EDITING)
  2115. #ifdef MAX_JERK_EDIT_VALUES
  2116. constexpr float sanity_arr_6[] = MAX_JERK_EDIT_VALUES;
  2117. static_assert(COUNT(sanity_arr_6) >= XYZE, "MAX_JERK_EDIT_VALUES requires X, Y, Z and E elements.");
  2118. static_assert(COUNT(sanity_arr_6) <= XYZE, "MAX_JERK_EDIT_VALUES has too many elements. X, Y, Z and E elements only.");
  2119. static_assert( _ARR_TEST(6,0) && _ARR_TEST(6,1) && _ARR_TEST(6,2)
  2120. && _ARR_TEST(6,3) && _ARR_TEST(6,4) && _ARR_TEST(6,5)
  2121. && _ARR_TEST(6,6) && _ARR_TEST(6,7) && _ARR_TEST(6,8),
  2122. "MAX_JERK_EDIT_VALUES values must be positive.");
  2123. #endif
  2124. #endif
  2125. #undef _ARR_TEST
  2126. #if BOTH(CNC_COORDINATE_SYSTEMS, NO_WORKSPACE_OFFSETS)
  2127. #error "CNC_COORDINATE_SYSTEMS is incompatible with NO_WORKSPACE_OFFSETS."
  2128. #endif
  2129. #if !BLOCK_BUFFER_SIZE || !IS_POWER_OF_2(BLOCK_BUFFER_SIZE)
  2130. #error "BLOCK_BUFFER_SIZE must be a power of 2."
  2131. #endif
  2132. #if ENABLED(LED_CONTROL_MENU) && DISABLED(ULTIPANEL)
  2133. #error "LED_CONTROL_MENU requires an LCD controller."
  2134. #endif
  2135. #if ENABLED(CASE_LIGHT_USE_NEOPIXEL) && DISABLED(NEOPIXEL_LED)
  2136. #error "CASE_LIGHT_USE_NEOPIXEL requires NEOPIXEL_LED."
  2137. #endif
  2138. #if ENABLED(SKEW_CORRECTION)
  2139. #if !defined(XY_SKEW_FACTOR) && !(defined(XY_DIAG_AC) && defined(XY_DIAG_BD) && defined(XY_SIDE_AD))
  2140. #error "SKEW_CORRECTION requires XY_SKEW_FACTOR or XY_DIAG_AC, XY_DIAG_BD, XY_SIDE_AD."
  2141. #endif
  2142. #if ENABLED(SKEW_CORRECTION_FOR_Z)
  2143. #if !defined(XZ_SKEW_FACTOR) && !(defined(XZ_DIAG_AC) && defined(XZ_DIAG_BD) && defined(XZ_SIDE_AD))
  2144. #error "SKEW_CORRECTION requires XZ_SKEW_FACTOR or XZ_DIAG_AC, XZ_DIAG_BD, XZ_SIDE_AD."
  2145. #endif
  2146. #if !defined(YZ_SKEW_FACTOR) && !(defined(YZ_DIAG_AC) && defined(YZ_DIAG_BD) && defined(YZ_SIDE_AD))
  2147. #error "SKEW_CORRECTION requires YZ_SKEW_FACTOR or YZ_DIAG_AC, YZ_DIAG_BD, YZ_SIDE_AD."
  2148. #endif
  2149. #endif
  2150. #endif
  2151. #if ENABLED(BACKUP_POWER_SUPPLY) && !PIN_EXISTS(POWER_LOSS)
  2152. #error "BACKUP_POWER_SUPPLY requires a POWER_LOSS_PIN."
  2153. #endif
  2154. #if ENABLED(Z_STEPPER_AUTO_ALIGN)
  2155. #if !Z_MULTI_STEPPER_DRIVERS
  2156. #error "Z_STEPPER_AUTO_ALIGN requires Z_DUAL_STEPPER_DRIVERS or Z_TRIPLE_STEPPER_DRIVERS."
  2157. #elif !HAS_BED_PROBE
  2158. #error "Z_STEPPER_AUTO_ALIGN requires a Z-bed probe."
  2159. #elif ENABLED(Z_STEPPER_ALIGN_KNOWN_STEPPER_POSITIONS) && DISABLED(Z_TRIPLE_STEPPER_DRIVERS)
  2160. #error "Z_STEPPER_ALIGN_KNOWN_STEPPER_POSITIONS requires Z_TRIPLE_STEPPER_DRIVERS."
  2161. #endif
  2162. #endif
  2163. #if ENABLED(PRINTCOUNTER) && DISABLED(EEPROM_SETTINGS)
  2164. #error "PRINTCOUNTER requires EEPROM_SETTINGS. Please update your Configuration."
  2165. #endif
  2166. #if ENABLED(USB_FLASH_DRIVE_SUPPORT) && !PIN_EXISTS(USB_CS, USB_INTR)
  2167. #error "USB_CS_PIN and USB_INTR_PIN are required for USB_FLASH_DRIVE_SUPPORT."
  2168. #endif
  2169. #if ENABLED(SD_FIRMWARE_UPDATE) && !defined(__AVR_ATmega2560__)
  2170. #error "SD_FIRMWARE_UPDATE requires an ATmega2560-based (Arduino Mega) board."
  2171. #endif
  2172. #if ENABLED(GCODE_MACROS) && !WITHIN(GCODE_MACROS_SLOTS, 1, 10)
  2173. #error "GCODE_MACROS_SLOTS must be a number from 1 to 10."
  2174. #endif
  2175. #if ENABLED(CUSTOM_USER_MENUS)
  2176. #ifdef USER_GCODE_1
  2177. constexpr char _chr1 = USER_GCODE_1[strlen(USER_GCODE_1) - 1];
  2178. static_assert(_chr1 != '\n' && _chr1 != '\r', "USER_GCODE_1 cannot have a newline at the end. Please remove it.");
  2179. #endif
  2180. #ifdef USER_GCODE_2
  2181. constexpr char _chr2 = USER_GCODE_2[strlen(USER_GCODE_2) - 1];
  2182. static_assert(_chr2 != '\n' && _chr2 != '\r', "USER_GCODE_2 cannot have a newline at the end. Please remove it.");
  2183. #endif
  2184. #ifdef USER_GCODE_3
  2185. constexpr char _chr3 = USER_GCODE_3[strlen(USER_GCODE_3) - 1];
  2186. static_assert(_chr3 != '\n' && _chr3 != '\r', "USER_GCODE_3 cannot have a newline at the end. Please remove it.");
  2187. #endif
  2188. #ifdef USER_GCODE_4
  2189. constexpr char _chr4 = USER_GCODE_4[strlen(USER_GCODE_4) - 1];
  2190. static_assert(_chr4 != '\n' && _chr4 != '\r', "USER_GCODE_4 cannot have a newline at the end. Please remove it.");
  2191. #endif
  2192. #ifdef USER_GCODE_5
  2193. constexpr char _chr5 = USER_GCODE_5[strlen(USER_GCODE_5) - 1];
  2194. static_assert(_chr5 != '\n' && _chr5 != '\r', "USER_GCODE_5 cannot have a newline at the end. Please remove it.");
  2195. #endif
  2196. #endif
  2197. #if ENABLED(BACKLASH_COMPENSATION)
  2198. #if IS_CORE
  2199. #error "BACKLASH_COMPENSATION is incompatible with CORE kinematics."
  2200. #endif
  2201. #ifndef BACKLASH_DISTANCE_MM
  2202. #error "BACKLASH_COMPENSATION requires BACKLASH_DISTANCE_MM"
  2203. #endif
  2204. #ifndef BACKLASH_CORRECTION
  2205. #error "BACKLASH_COMPENSATION requires BACKLASH_CORRECTION"
  2206. #endif
  2207. #endif
  2208. #if ENABLED(GRADIENT_MIX) && MIXING_VIRTUAL_TOOLS < 2
  2209. #error "GRADIENT_MIX requires 2 or more MIXING_VIRTUAL_TOOLS."
  2210. #endif
  2211. /**
  2212. * Photo G-code requirements
  2213. */
  2214. #if ENABLED(PHOTO_GCODE)
  2215. #if (PIN_EXISTS(CHDK) + PIN_EXISTS(PHOTOGRAPH) + defined(PHOTO_SWITCH_POSITION)) > 1
  2216. #error "Please define only one of CHDK_PIN, PHOTOGRAPH_PIN, or PHOTO_SWITCH_POSITION."
  2217. #elif defined(PHOTO_SWITCH_POSITION) && !defined(PHOTO_POSITION)
  2218. #error "PHOTO_SWITCH_POSITION requires PHOTO_POSITION. Please update your Configuration_adv.h."
  2219. #elif PIN_EXISTS(CHDK) && defined(CHDK_DELAY)
  2220. #error "CHDK_DELAY has been replaced by PHOTO_SWITCH_MS. Please update your Configuration_adv.h."
  2221. #elif PIN_EXISTS(CHDK) && !defined(PHOTO_SWITCH_MS)
  2222. #error "PHOTO_SWITCH_MS is required with CHDK_PIN. Please update your Configuration_adv.h."
  2223. #elif defined(PHOTO_RETRACT_MM)
  2224. static_assert(PHOTO_RETRACT_MM + 0 >= 0, "PHOTO_RETRACT_MM must be >= 0.");
  2225. #endif
  2226. #endif
  2227. /**
  2228. * Prusa MMU2 requirements
  2229. */
  2230. #if ENABLED(PRUSA_MMU2)
  2231. #if DISABLED(NOZZLE_PARK_FEATURE)
  2232. #error "PRUSA_MMU2 requires NOZZLE_PARK_FEATURE."
  2233. #elif EXTRUDERS != 5
  2234. #error "PRUSA_MMU2 requires EXTRUDERS = 5."
  2235. #elif DISABLED(ADVANCED_PAUSE_FEATURE)
  2236. static_assert(nullptr == strstr(MMU2_FILAMENT_RUNOUT_SCRIPT, "M600"), "ADVANCED_PAUSE_FEATURE is required to use M600 with PRUSA_MMU2.");
  2237. #endif
  2238. #endif
  2239. /**
  2240. * Advanced PRINTCOUNTER settings
  2241. */
  2242. #if ENABLED(PRINTCOUNTER)
  2243. #if defined(SERVICE_INTERVAL_1) != defined(SERVICE_NAME_1)
  2244. #error "Both SERVICE_NAME_1 and SERVICE_INTERVAL_1 are required."
  2245. #elif defined(SERVICE_INTERVAL_2) != defined(SERVICE_NAME_2)
  2246. #error "Both SERVICE_NAME_2 and SERVICE_INTERVAL_2 are required."
  2247. #elif defined(SERVICE_INTERVAL_3) != defined(SERVICE_NAME_3)
  2248. #error "Both SERVICE_NAME_3 and SERVICE_INTERVAL_3 are required."
  2249. #endif
  2250. #endif
  2251. /**
  2252. * Require soft endstops for certain setups
  2253. */
  2254. #if !BOTH(MIN_SOFTWARE_ENDSTOPS, MAX_SOFTWARE_ENDSTOPS)
  2255. #if ENABLED(DUAL_X_CARRIAGE)
  2256. #error "DUAL_X_CARRIAGE requires both MIN_ and MAX_SOFTWARE_ENDSTOPS."
  2257. #elif HAS_HOTEND_OFFSET
  2258. #error "MIN_ and MAX_SOFTWARE_ENDSTOPS are both required with offset hotends."
  2259. #endif
  2260. #endif
  2261. /**
  2262. * Ensure this option is set intentionally
  2263. */
  2264. #if ENABLED(PSU_CONTROL)
  2265. #ifndef PSU_ACTIVE_HIGH
  2266. #error "PSU_CONTROL requires PSU_ACTIVE_HIGH to be defined as 'true' or 'false'."
  2267. #elif !PIN_EXISTS(PS_ON)
  2268. #error "PSU_CONTROL requires PS_ON_PIN."
  2269. #endif
  2270. #elif ENABLED(AUTO_POWER_CONTROL)
  2271. #error "AUTO_POWER_CONTROL requires PSU_CONTROL."
  2272. #endif
  2273. #if HAS_CUTTER
  2274. #define _PIN_CONFLICT(P) (PIN_EXISTS(P) && P##_PIN == SPINDLE_LASER_PWM_PIN)
  2275. #if BOTH(SPINDLE_FEATURE, LASER_FEATURE)
  2276. #error "Enable only one of SPINDLE_FEATURE or LASER_FEATURE."
  2277. #elif !PIN_EXISTS(SPINDLE_LASER_ENA)
  2278. #error "(SPINDLE|LASER)_FEATURE requires SPINDLE_LASER_ENA_PIN."
  2279. #elif ENABLED(SPINDLE_CHANGE_DIR) && !PIN_EXISTS(SPINDLE_DIR)
  2280. #error "SPINDLE_DIR_PIN is required for SPINDLE_CHANGE_DIR."
  2281. #elif ENABLED(SPINDLE_LASER_PWM)
  2282. #if !defined(SPINDLE_LASER_PWM_PIN) || SPINDLE_LASER_PWM_PIN < 0
  2283. #error "SPINDLE_LASER_PWM_PIN is required for SPINDLE_LASER_PWM."
  2284. #elif !PWM_PIN(SPINDLE_LASER_PWM_PIN)
  2285. #error "SPINDLE_LASER_PWM_PIN not assigned to a PWM pin."
  2286. #elif SPINDLE_LASER_POWERUP_DELAY < 1
  2287. #error "SPINDLE_LASER_POWERUP_DELAY must be greater than 0."
  2288. #elif SPINDLE_LASER_POWERDOWN_DELAY < 1
  2289. #error "SPINDLE_LASER_POWERDOWN_DELAY must be greater than 0."
  2290. #elif !defined(SPINDLE_LASER_PWM_INVERT)
  2291. #error "SPINDLE_LASER_PWM_INVERT is required for (SPINDLE|LASER)_FEATURE."
  2292. #elif !defined(SPEED_POWER_SLOPE) || !defined(SPEED_POWER_INTERCEPT) || !defined(SPEED_POWER_MIN) || !defined(SPEED_POWER_MAX)
  2293. #error "SPINDLE_LASER_PWM equation constant(s) missing."
  2294. #elif _PIN_CONFLICT(X_MIN)
  2295. #error "SPINDLE_LASER_PWM pin conflicts with X_MIN_PIN."
  2296. #elif _PIN_CONFLICT(X_MAX)
  2297. #error "SPINDLE_LASER_PWM pin conflicts with X_MAX_PIN."
  2298. #elif _PIN_CONFLICT(Z_STEP)
  2299. #error "SPINDLE_LASER_PWM pin conflicts with Z_STEP_PIN."
  2300. #elif _PIN_CONFLICT(CASE_LIGHT)
  2301. #error "SPINDLE_LASER_PWM_PIN conflicts with CASE_LIGHT_PIN."
  2302. #elif _PIN_CONFLICT(E0_AUTO_FAN)
  2303. #error "SPINDLE_LASER_PWM_PIN conflicts with E0_AUTO_FAN_PIN."
  2304. #elif _PIN_CONFLICT(E1_AUTO_FAN)
  2305. #error "SPINDLE_LASER_PWM_PIN conflicts with E1_AUTO_FAN_PIN."
  2306. #elif _PIN_CONFLICT(E2_AUTO_FAN)
  2307. #error "SPINDLE_LASER_PWM_PIN conflicts with E2_AUTO_FAN_PIN."
  2308. #elif _PIN_CONFLICT(E3_AUTO_FAN)
  2309. #error "SPINDLE_LASER_PWM_PIN conflicts with E3_AUTO_FAN_PIN."
  2310. #elif _PIN_CONFLICT(E4_AUTO_FAN)
  2311. #error "SPINDLE_LASER_PWM_PIN conflicts with E4_AUTO_FAN_PIN."
  2312. #elif _PIN_CONFLICT(E5_AUTO_FAN)
  2313. #error "SPINDLE_LASER_PWM_PIN conflicts with E5_AUTO_FAN_PIN."
  2314. #elif _PIN_CONFLICT(FAN)
  2315. #error "SPINDLE_LASER_PWM_PIN conflicts with FAN_PIN."
  2316. #elif _PIN_CONFLICT(FAN1)
  2317. #error "SPINDLE_LASER_PWM_PIN conflicts with FAN1_PIN."
  2318. #elif _PIN_CONFLICT(FAN2)
  2319. #error "SPINDLE_LASER_PWM_PIN conflicts with FAN2_PIN."
  2320. #elif _PIN_CONFLICT(CONTROLLERFAN)
  2321. #error "SPINDLE_LASER_PWM_PIN conflicts with CONTROLLERFAN_PIN."
  2322. #elif _PIN_CONFLICT(MOTOR_CURRENT_PWM_XY)
  2323. #error "SPINDLE_LASER_PWM_PIN conflicts with MOTOR_CURRENT_PWM_XY."
  2324. #elif _PIN_CONFLICT(MOTOR_CURRENT_PWM_Z)
  2325. #error "SPINDLE_LASER_PWM_PIN conflicts with MOTOR_CURRENT_PWM_Z."
  2326. #elif _PIN_CONFLICT(MOTOR_CURRENT_PWM_E)
  2327. #error "SPINDLE_LASER_PWM_PIN conflicts with MOTOR_CURRENT_PWM_E."
  2328. #endif
  2329. #endif
  2330. #undef _PIN_CONFLICT
  2331. #endif
  2332. #if !HAS_GRAPHICAL_LCD
  2333. #if ENABLED(PRINT_PROGRESS_SHOW_DECIMALS)
  2334. #error "PRINT_PROGRESS_SHOW_DECIMALS currently requires a Graphical LCD."
  2335. #elif ENABLED(SHOW_REMAINING_TIME)
  2336. #error "SHOW_REMAINING_TIME currently requires a Graphical LCD."
  2337. #endif
  2338. #endif