Apply UBL mesh bounds to remaining configs
This commit is contained in:
@ -645,6 +645,11 @@
|
||||
#define MESH_MAX_X (X_MAX_POS - (MESH_INSET))
|
||||
#define MESH_MIN_Y (Y_MIN_POS + MESH_INSET)
|
||||
#define MESH_MAX_Y (Y_MAX_POS - (MESH_INSET))
|
||||
#elif ENABLED(AUTO_BED_LEVELING_UBL)
|
||||
#define UBL_MESH_MIN_X (X_MIN_POS + UBL_MESH_INSET)
|
||||
#define UBL_MESH_MAX_X (X_MAX_POS - (UBL_MESH_INSET))
|
||||
#define UBL_MESH_MIN_Y (Y_MIN_POS + UBL_MESH_INSET)
|
||||
#define UBL_MESH_MAX_Y (Y_MAX_POS - (UBL_MESH_INSET))
|
||||
#endif
|
||||
|
||||
// @section extras
|
||||
|
Reference in New Issue
Block a user