mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-19 16:16:13 +00:00
🔧 Check G29_RETRY_AND_RECOVER requirements (#21921)
This commit is contained in:
parent
daab75b7ea
commit
493e6c2cba
1 changed files with 2 additions and 6 deletions
|
@ -1631,12 +1631,8 @@ static_assert(Y_MAX_LENGTH >= Y_BED_SIZE, "Movement bounds (Y_MIN_POS, Y_MAX_POS
|
|||
#error "MESH_EDIT_GFX_OVERLAY requires AUTO_BED_LEVELING_UBL and a Graphical LCD."
|
||||
#endif
|
||||
|
||||
#if ENABLED(G29_RETRY_AND_RECOVER)
|
||||
#if ENABLED(AUTO_BED_LEVELING_UBL)
|
||||
#error "G29_RETRY_AND_RECOVER is not compatible with UBL."
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
#error "G29_RETRY_AND_RECOVER is not compatible with MESH_BED_LEVELING."
|
||||
#endif
|
||||
#if ENABLED(G29_RETRY_AND_RECOVER) && NONE(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_LINEAR, AUTO_BED_LEVELING_BILINEAR)
|
||||
#error "G29_RETRY_AND_RECOVER requires AUTO_BED_LEVELING_3POINT, LINEAR, or BILINEAR."
|
||||
#endif
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue