|
|
|
|
987
|
* | [-] |
|
987
|
* | [-] |
|
988
|
* O-- FRONT --+
|
988
|
* O-- FRONT --+
|
989
|
*/
|
989
|
*/
|
990
|
-//define NOZZLE_TO_PROBE_OFFSET { -37, 2, -3.04 }
|
|
|
991
|
-#define NOZZLE_TO_PROBE_OFFSET { -37, 2, -3 }
|
|
|
|
|
990
|
+#define NOZZLE_TO_PROBE_OFFSET { -37, 2, -3.04 }
|
992
|
|
991
|
|
993
|
// Most probes should stay away from the edges of the bed, but
|
992
|
// Most probes should stay away from the edges of the bed, but
|
994
|
// with NOZZLE_AS_PROBE this can be negative for a wider probing area.
|
993
|
// with NOZZLE_AS_PROBE this can be negative for a wider probing area.
|
|
|
|
|
1262
|
// For Cartesian machines, instead of dividing moves on mesh boundaries,
|
1261
|
// For Cartesian machines, instead of dividing moves on mesh boundaries,
|
1263
|
// split up moves into short segments like a Delta. This follows the
|
1262
|
// split up moves into short segments like a Delta. This follows the
|
1264
|
// contours of the bed more closely than edge-to-edge straight moves.
|
1263
|
// contours of the bed more closely than edge-to-edge straight moves.
|
1265
|
- #define SEGMENT_LEVELED_MOVES
|
|
|
|
|
1264
|
+ //#define SEGMENT_LEVELED_MOVES
|
1266
|
#define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
|
1265
|
#define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
|
1267
|
|
1266
|
|
1268
|
/**
|
1267
|
/**
|
|
|
|
|
1271
|
#define G26_MESH_VALIDATION
|
1270
|
#define G26_MESH_VALIDATION
|
1272
|
#if ENABLED(G26_MESH_VALIDATION)
|
1271
|
#if ENABLED(G26_MESH_VALIDATION)
|
1273
|
#define MESH_TEST_NOZZLE_SIZE 0.4 // (mm) Diameter of primary nozzle.
|
1272
|
#define MESH_TEST_NOZZLE_SIZE 0.4 // (mm) Diameter of primary nozzle.
|
1274
|
- #define MESH_TEST_LAYER_HEIGHT 0.2 // (mm) Default layer height for the G26 Mesh Validation Tool.
|
|
|
1275
|
- #define MESH_TEST_HOTEND_TEMP 205 // (°C) Default nozzle temperature for the G26 Mesh Validation Tool.
|
|
|
|
|
1273
|
+ #define MESH_TEST_LAYER_HEIGHT 0.1 // (mm) Default layer height for the G26 Mesh Validation Tool.
|
|
|
1274
|
+ #define MESH_TEST_HOTEND_TEMP 200 // (°C) Default nozzle temperature for the G26 Mesh Validation Tool.
|
1276
|
#define MESH_TEST_BED_TEMP 60 // (°C) Default bed temperature for the G26 Mesh Validation Tool.
|
1275
|
#define MESH_TEST_BED_TEMP 60 // (°C) Default bed temperature for the G26 Mesh Validation Tool.
|
1277
|
#define G26_XY_FEEDRATE 20 // (mm/s) Feedrate for XY Moves for the G26 Mesh Validation Tool.
|
1276
|
#define G26_XY_FEEDRATE 20 // (mm/s) Feedrate for XY Moves for the G26 Mesh Validation Tool.
|
1278
|
#define G26_RETRACT_MULTIPLIER 1.0 // G26 Q (retraction) used by default between mesh test elements.
|
1277
|
#define G26_RETRACT_MULTIPLIER 1.0 // G26 Q (retraction) used by default between mesh test elements.
|
|
|
|
|
1293
|
|
1292
|
|
1294
|
// Beyond the probed grid, continue the implied tilt?
|
1293
|
// Beyond the probed grid, continue the implied tilt?
|
1295
|
// Default is to maintain the height of the nearest edge.
|
1294
|
// Default is to maintain the height of the nearest edge.
|
1296
|
- #define EXTRAPOLATE_BEYOND_GRID
|
|
|
|
|
1295
|
+ //#define EXTRAPOLATE_BEYOND_GRID
|
1297
|
|
1296
|
|
1298
|
//
|
1297
|
//
|
1299
|
// Experimental Subdivision of the grid by Catmull-Rom method.
|
1298
|
// Experimental Subdivision of the grid by Catmull-Rom method.
|
1300
|
// Synthesizes intermediate points to produce a more detailed mesh.
|
1299
|
// Synthesizes intermediate points to produce a more detailed mesh.
|
1301
|
//
|
1300
|
//
|
1302
|
- #define ABL_BILINEAR_SUBDIVISION
|
|
|
|
|
1301
|
+ //#define ABL_BILINEAR_SUBDIVISION
|
1303
|
#if ENABLED(ABL_BILINEAR_SUBDIVISION)
|
1302
|
#if ENABLED(ABL_BILINEAR_SUBDIVISION)
|
1304
|
// Number of subdivisions between probe points
|
1303
|
// Number of subdivisions between probe points
|
1305
|
#define BILINEAR_SUBDIVISIONS 3
|
1304
|
#define BILINEAR_SUBDIVISIONS 3
|