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

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