Skip to content

Commit

Permalink
🔧 Forbid UBL Hilbert Curve on DELTA (MarlinFirmware#26296)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bob-the-Kuhn authored and EvilGremlin committed Oct 26, 2023
1 parent 36ad30a commit 782d85b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Marlin/src/inc/SanityCheck.h
Original file line number Diff line number Diff line change
Expand Up @@ -1517,6 +1517,8 @@ static_assert(COUNT(arm) == LOGICAL_AXES, "AXIS_RELATIVE_MODES must contain " _L
#error "AUTO_BED_LEVELING_UBL requires EEPROM_SETTINGS."
#elif !WITHIN(GRID_MAX_POINTS_X, 3, 255) || !WITHIN(GRID_MAX_POINTS_Y, 3, 255)
#error "GRID_MAX_POINTS_[XY] must be between 3 and 255."
#elif ALL(UBL_HILBERT_CURVE, DELTA)
#error "UBL_HILBERT_CURVE can only be used with a square / rectangular printable area."
#endif
#elif ENABLED(MESH_BED_LEVELING)
#if ENABLED(DELTA)
Expand Down

0 comments on commit 782d85b

Please sign in to comment.