|
|
@ -357,10 +357,6 @@ |
|
|
|
#error "FILAMENT_CHANGE_LOAD_LENGTH is now FILAMENT_CHANGE_FAST_LOAD_LENGTH." |
|
|
|
#elif defined(LEVEL_CORNERS_INSET) |
|
|
|
#error "LEVEL_CORNERS_INSET is now LEVEL_CORNERS_INSET_LFRB." |
|
|
|
#elif ENABLED(LEVEL_BED_CORNERS) && !defined(LEVEL_CORNERS_INSET_LFRB) |
|
|
|
#error "LEVEL_BED_CORNERS requires LEVEL_CORNERS_INSET_LFRB values." |
|
|
|
#elif BOTH(LEVEL_CORNERS_USE_PROBE, SENSORLESS_PROBING) |
|
|
|
#error "LEVEL_CORNERS_USE_PROBE is incompatible with SENSORLESS_PROBING." |
|
|
|
#elif defined(BEZIER_JERK_CONTROL) |
|
|
|
#error "BEZIER_JERK_CONTROL is now S_CURVE_ACCELERATION." |
|
|
|
#elif HAS_JUNCTION_DEVIATION && defined(JUNCTION_DEVIATION_FACTOR) |
|
|
@ -1433,6 +1429,18 @@ static_assert(Y_MAX_LENGTH >= Y_BED_SIZE, "Movement bounds (Y_MIN_POS, Y_MAX_POS |
|
|
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
#if ENABLED(LEVEL_BED_CORNERS) |
|
|
|
#ifndef LEVEL_CORNERS_INSET_LFRB |
|
|
|
#error "LEVEL_BED_CORNERS requires LEVEL_CORNERS_INSET_LFRB values." |
|
|
|
#elif ENABLED(LEVEL_CORNERS_USE_PROBE) |
|
|
|
#if !HAS_BED_PROBE |
|
|
|
#error "LEVEL_CORNERS_USE_PROBE requires a real probe." |
|
|
|
#elif ENABLED(SENSORLESS_PROBING) |
|
|
|
#error "LEVEL_CORNERS_USE_PROBE is incompatible with SENSORLESS_PROBING." |
|
|
|
#endif |
|
|
|
#endif |
|
|
|
#endif |
|
|
|
|
|
|
|
/**
|
|
|
|
* Allow only one bed leveling option to be defined |
|
|
|
*/ |
|
|
|