mirror of
https://github.com/MarlinFirmware/Configurations.git
synced 2025-07-06 22:47:35 -06:00
parent
1e27e4caa0
commit
6de8b37433
337 changed files with 6403 additions and 0 deletions
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2069,6 +2069,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2068,6 +2068,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2068,6 +2068,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2146,6 +2146,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2147,6 +2147,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2068,6 +2068,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2142,6 +2142,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2070,6 +2070,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2069,6 +2069,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2069,6 +2069,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2069,6 +2069,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2073,6 +2073,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2073,6 +2073,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2073,6 +2073,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2073,6 +2073,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2070,6 +2070,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2068,6 +2068,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2068,6 +2068,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2127,6 +2127,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2086,6 +2086,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2068,6 +2068,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2083,6 +2083,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2065,6 +2065,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2065,6 +2065,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2085,6 +2085,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2074,6 +2074,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2068,6 +2068,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2081,6 +2081,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2068,6 +2068,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2069,6 +2069,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2068,6 +2068,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2083,6 +2083,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2068,6 +2068,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2068,6 +2068,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2076,6 +2076,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2076,6 +2076,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2070,6 +2070,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2070,6 +2070,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2069,6 +2069,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2070,6 +2070,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2071,6 +2071,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2092,6 +2092,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2095,6 +2095,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2066,6 +2066,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2068,6 +2068,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2068,6 +2068,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2070,6 +2070,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2068,6 +2068,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2070,6 +2070,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2068,6 +2068,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2072,6 +2072,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2068,6 +2068,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2068,6 +2068,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2075,6 +2075,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2068,6 +2068,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2068,6 +2068,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -2067,6 +2067,25 @@
|
|||
|
||||
//#define UBL_MESH_WIZARD // Run several commands in a row to get a complete mesh
|
||||
|
||||
/**
|
||||
* Probing not allowed within the position of an obstacle.
|
||||
*/
|
||||
//#define AVOID_OBSTACLES
|
||||
#if ENABLED(AVOID_OBSTACLES)
|
||||
#define CLIP_W 23 // Bed clip width, should be padded a few mm over its physical size
|
||||
#define CLIP_H 14 // Bed clip height, should be padded a few mm over its physical size
|
||||
|
||||
// Obstacle Rectangles defined as { X1, Y1, X2, Y2 }
|
||||
#define OBSTACLE1 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE2 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, 0, (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, CLIP_H }
|
||||
#define OBSTACLE3 { (X_BED_SIZE) / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
#define OBSTACLE4 { (X_BED_SIZE) * 3 / 4 - (CLIP_W) / 2, ((Y_BED_SIZE) - (CLIP_H)), (X_BED_SIZE) * 3 / 4 + (CLIP_W) / 2, Y_BED_SIZE }
|
||||
|
||||
// The probed grid must be inset for G29 J. This is okay, since it is
|
||||
// only used to compute a linear transformation for the mesh itself.
|
||||
#define G29J_MESH_TILT_MARGIN ((CLIP_H) + 1)
|
||||
#endif
|
||||
|
||||
#elif ENABLED(MESH_BED_LEVELING)
|
||||
|
||||
//===========================================================================
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue