mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-30 05:48:02 +00:00
Sanity-check mutually-exclusive G34 features (#19706)
This commit is contained in:
parent
8b060a3902
commit
d3d423a322
1 changed files with 4 additions and 0 deletions
|
@ -2803,6 +2803,10 @@ static_assert( _ARR_TEST(3,0) && _ARR_TEST(3,1) && _ARR_TEST(3,2)
|
|||
#endif
|
||||
#endif
|
||||
|
||||
#if BOTH(Z_STEPPER_AUTO_ALIGN, MECHANICAL_GANTRY_CALIBRATION)
|
||||
#error "You cannot use Z_STEPPER_AUTO_ALIGN and MECHANICAL_GANTRY_CALIBRATION at the same time."
|
||||
#endif
|
||||
|
||||
#if ENABLED(PRINTCOUNTER) && DISABLED(EEPROM_SETTINGS)
|
||||
#error "PRINTCOUNTER requires EEPROM_SETTINGS. Please update your Configuration."
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue