M851 XY 3 point followup (incomplete) (#15361)
This commit is contained in:
parent
66d0221077
commit
e9cf46a9a5
@ -1251,19 +1251,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1381,6 +1381,8 @@
|
|||||||
|
|
||||||
#if HAS_BED_PROBE
|
#if HAS_BED_PROBE
|
||||||
|
|
||||||
|
//#define VALIDATE_MESH_TILT
|
||||||
|
|
||||||
#include "../../../libs/vector_3.h"
|
#include "../../../libs/vector_3.h"
|
||||||
|
|
||||||
void unified_bed_leveling::tilt_mesh_based_on_probed_grid(const bool do_3_pt_leveling) {
|
void unified_bed_leveling::tilt_mesh_based_on_probed_grid(const bool do_3_pt_leveling) {
|
||||||
@ -1392,7 +1394,9 @@
|
|||||||
float measured_z;
|
float measured_z;
|
||||||
bool abort_flag = false;
|
bool abort_flag = false;
|
||||||
|
|
||||||
//float z1, z2, z3; // Needed for algorithm validation below
|
#ifdef VALIDATE_MESH_TILT
|
||||||
|
float z1, z2, z3; // Needed for algorithm validation below
|
||||||
|
#endif
|
||||||
|
|
||||||
struct linear_fit_data lsf_results;
|
struct linear_fit_data lsf_results;
|
||||||
incremental_LSF_reset(&lsf_results);
|
incremental_LSF_reset(&lsf_results);
|
||||||
@ -1403,17 +1407,19 @@
|
|||||||
ui.status_printf_P(0, PSTR(MSG_LCD_TILTING_MESH " 1/3"));
|
ui.status_printf_P(0, PSTR(MSG_LCD_TILTING_MESH " 1/3"));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
measured_z = probe_at_point(PROBE_PT_1_X, PROBE_PT_1_Y, PROBE_PT_RAISE, g29_verbose_level);
|
measured_z = probe_at_point(x_min, y_min, PROBE_PT_RAISE, g29_verbose_level);
|
||||||
if (isnan(measured_z))
|
if (isnan(measured_z))
|
||||||
abort_flag = true;
|
abort_flag = true;
|
||||||
else {
|
else {
|
||||||
measured_z -= get_z_correction(PROBE_PT_1_X, PROBE_PT_1_Y);
|
measured_z -= get_z_correction(x_min, y_min);
|
||||||
//z1 = measured_z;
|
#ifdef VALIDATE_MESH_TILT
|
||||||
|
z1 = measured_z;
|
||||||
|
#endif
|
||||||
if (g29_verbose_level > 3) {
|
if (g29_verbose_level > 3) {
|
||||||
serial_spaces(16);
|
serial_spaces(16);
|
||||||
SERIAL_ECHOLNPAIR("Corrected_Z=", measured_z);
|
SERIAL_ECHOLNPAIR("Corrected_Z=", measured_z);
|
||||||
}
|
}
|
||||||
incremental_LSF(&lsf_results, PROBE_PT_1_X, PROBE_PT_1_Y, measured_z);
|
incremental_LSF(&lsf_results, x_min, y_min, measured_z);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!abort_flag) {
|
if (!abort_flag) {
|
||||||
@ -1422,17 +1428,19 @@
|
|||||||
ui.status_printf_P(0, PSTR(MSG_LCD_TILTING_MESH " 2/3"));
|
ui.status_printf_P(0, PSTR(MSG_LCD_TILTING_MESH " 2/3"));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
measured_z = probe_at_point(PROBE_PT_2_X, PROBE_PT_2_Y, PROBE_PT_RAISE, g29_verbose_level);
|
measured_z = probe_at_point(x_max, y_min, PROBE_PT_RAISE, g29_verbose_level);
|
||||||
//z2 = measured_z;
|
#ifdef VALIDATE_MESH_TILT
|
||||||
|
z2 = measured_z;
|
||||||
|
#endif
|
||||||
if (isnan(measured_z))
|
if (isnan(measured_z))
|
||||||
abort_flag = true;
|
abort_flag = true;
|
||||||
else {
|
else {
|
||||||
measured_z -= get_z_correction(PROBE_PT_2_X, PROBE_PT_2_Y);
|
measured_z -= get_z_correction(x_max, y_min);
|
||||||
if (g29_verbose_level > 3) {
|
if (g29_verbose_level > 3) {
|
||||||
serial_spaces(16);
|
serial_spaces(16);
|
||||||
SERIAL_ECHOLNPAIR("Corrected_Z=", measured_z);
|
SERIAL_ECHOLNPAIR("Corrected_Z=", measured_z);
|
||||||
}
|
}
|
||||||
incremental_LSF(&lsf_results, PROBE_PT_2_X, PROBE_PT_2_Y, measured_z);
|
incremental_LSF(&lsf_results, x_max, y_min, measured_z);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1442,17 +1450,20 @@
|
|||||||
ui.status_printf_P(0, PSTR(MSG_LCD_TILTING_MESH " 3/3"));
|
ui.status_printf_P(0, PSTR(MSG_LCD_TILTING_MESH " 3/3"));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
measured_z = probe_at_point(PROBE_PT_3_X, PROBE_PT_3_Y, PROBE_PT_STOW, g29_verbose_level);
|
const float center_probe = (x_max - x_min) / 2;
|
||||||
//z3 = measured_z;
|
measured_z = probe_at_point(center_probe, y_max, PROBE_PT_STOW, g29_verbose_level);
|
||||||
|
#ifdef VALIDATE_MESH_TILT
|
||||||
|
z3 = measured_z;
|
||||||
|
#endif
|
||||||
if (isnan(measured_z))
|
if (isnan(measured_z))
|
||||||
abort_flag = true;
|
abort_flag = true;
|
||||||
else {
|
else {
|
||||||
measured_z -= get_z_correction(PROBE_PT_3_X, PROBE_PT_3_Y);
|
measured_z -= get_z_correction(center_probe, y_max);
|
||||||
if (g29_verbose_level > 3) {
|
if (g29_verbose_level > 3) {
|
||||||
serial_spaces(16);
|
serial_spaces(16);
|
||||||
SERIAL_ECHOLNPAIR("Corrected_Z=", measured_z);
|
SERIAL_ECHOLNPAIR("Corrected_Z=", measured_z);
|
||||||
}
|
}
|
||||||
incremental_LSF(&lsf_results, PROBE_PT_3_X, PROBE_PT_3_Y, measured_z);
|
incremental_LSF(&lsf_results, center_probe, y_max, measured_z);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1598,34 +1609,34 @@
|
|||||||
* is calculated. The Z error between the probed point locations and the get_z_correction()
|
* is calculated. The Z error between the probed point locations and the get_z_correction()
|
||||||
* numbers for those locations should be 0.
|
* numbers for those locations should be 0.
|
||||||
*/
|
*/
|
||||||
#if 0
|
#ifdef VALIDATE_MESH_TILT
|
||||||
float t, t1, d;
|
float t, t1, d;
|
||||||
t = normal.x * (PROBE_PT_1_X) + normal.y * (PROBE_PT_1_Y);
|
t = normal.x * x_min + normal.y * y_min;
|
||||||
d = t + normal.z * z1;
|
d = t + normal.z * z1;
|
||||||
DEBUG_ECHOPAIR_F("D from 1st point: ", d, 6);
|
DEBUG_ECHOPAIR_F("D from 1st point: ", d, 6);
|
||||||
DEBUG_ECHOLNPAIR_F(" Z error: ", normal.z*z1-get_z_correction(PROBE_PT_1_X, PROBE_PT_1_Y), 6);
|
DEBUG_ECHOLNPAIR_F(" Z error: ", normal.z * z1 - get_z_correction(x_min, y_min), 6);
|
||||||
|
|
||||||
t = normal.x * (PROBE_PT_2_X) + normal.y * (PROBE_PT_2_Y);
|
t = normal.x * x_max + normal.y * y_min;
|
||||||
d = t + normal.z * z2;
|
d = t + normal.z * z2;
|
||||||
DEBUG_EOL();
|
DEBUG_EOL();
|
||||||
DEBUG_ECHOPAIR_F("D from 2nd point: ", d, 6);
|
DEBUG_ECHOPAIR_F("D from 2nd point: ", d, 6);
|
||||||
DEBUG_ECHOLNPAIR_F(" Z error: ", normal.z*z2-get_z_correction(PROBE_PT_2_X, PROBE_PT_2_Y), 6);
|
DEBUG_ECHOLNPAIR_F(" Z error: ", normal.z * z2 - get_z_correction(x_max, y_min), 6);
|
||||||
|
|
||||||
t = normal.x * (PROBE_PT_3_X) + normal.y * (PROBE_PT_3_Y);
|
t = normal.x * ((x_max - x_min) / 2) + normal.y * (y_min);
|
||||||
d = t + normal.z * z3;
|
d = t + normal.z * z3;
|
||||||
DEBUG_ECHOPAIR_F("D from 3rd point: ", d, 6);
|
DEBUG_ECHOPAIR_F("D from 3rd point: ", d, 6);
|
||||||
DEBUG_ECHOLNPAIR_F(" Z error: ", normal.z*z3-get_z_correction(PROBE_PT_3_X, PROBE_PT_3_Y), 6);
|
DEBUG_ECHOLNPAIR_F(" Z error: ", normal.z * z3 - get_z_correction((x_max - x_min) / 2, y_max), 6);
|
||||||
|
|
||||||
t = normal.x * (Z_SAFE_HOMING_X_POINT) + normal.y * (Z_SAFE_HOMING_Y_POINT);
|
t = normal.x * (Z_SAFE_HOMING_X_POINT) + normal.y * (Z_SAFE_HOMING_Y_POINT);
|
||||||
d = t + normal.z * 0;
|
d = t + normal.z * 0;
|
||||||
DEBUG_ECHOLNPAIR_F("D from home location with Z=0 : ", d, 6);
|
DEBUG_ECHOLNPAIR_F("D from home location with Z=0 : ", d, 6);
|
||||||
|
|
||||||
t = normal.x * (Z_SAFE_HOMING_X_POINT) + normal.y * (Z_SAFE_HOMING_Y_POINT);
|
t = normal.x * (Z_SAFE_HOMING_X_POINT) + normal.y * (Z_SAFE_HOMING_Y_POINT);
|
||||||
d = t + get_z_correction(Z_SAFE_HOMING_X_POINT, Z_SAFE_HOMING_Y_POINT); // normal.z * 0;
|
d = t + get_z_correction(Z_SAFE_HOMING_X_POINT, Z_SAFE_HOMING_Y_POINT); // normal.z * 0;
|
||||||
DEBUG_ECHOPAIR_F("D from home location using mesh value for Z: ", d, 6);
|
DEBUG_ECHOPAIR_F("D from home location using mesh value for Z: ", d, 6);
|
||||||
|
|
||||||
DEBUG_ECHOPAIR(" Z error: (", Z_SAFE_HOMING_X_POINT, ",", Z_SAFE_HOMING_Y_POINT);
|
DEBUG_ECHOPAIR(" Z error: (", Z_SAFE_HOMING_X_POINT, ",", Z_SAFE_HOMING_Y_POINT);
|
||||||
DEBUG_ECHOLNPAIR_F(") = ", get_z_correction(Z_SAFE_HOMING_X_POINT, Z_SAFE_HOMING_Y_POINT), 6);
|
DEBUG_ECHOLNPAIR_F(") = ", get_z_correction(Z_SAFE_HOMING_X_POINT, Z_SAFE_HOMING_Y_POINT), 6);
|
||||||
#endif
|
#endif
|
||||||
} // DEBUGGING(LEVELING)
|
} // DEBUGGING(LEVELING)
|
||||||
|
|
||||||
|
@ -266,10 +266,11 @@ G29_TYPE GcodeSuite::G29() {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Probe at 3 arbitrary points
|
// Probe at 3 arbitrary points
|
||||||
|
const float x_min = probe_min_x(), x_max = probe_max_x(), y_min = probe_min_y(), y_max = probe_max_y();
|
||||||
ABL_VAR vector_3 points[3] = {
|
ABL_VAR vector_3 points[3] = {
|
||||||
vector_3(PROBE_PT_1_X, PROBE_PT_1_Y, 0),
|
vector_3(x_min, y_min, 0),
|
||||||
vector_3(PROBE_PT_2_X, PROBE_PT_2_Y, 0),
|
vector_3(x_max, y_min, 0),
|
||||||
vector_3(PROBE_PT_3_X, PROBE_PT_3_Y, 0)
|
vector_3((x_max - x_min) / 2, y_max, 0)
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // AUTO_BED_LEVELING_3POINT
|
#endif // AUTO_BED_LEVELING_3POINT
|
||||||
|
@ -200,6 +200,10 @@
|
|||||||
#undef SLOWDOWN
|
#undef SLOWDOWN
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef MESH_INSET
|
||||||
|
#define MESH_INSET 0
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Safe Homing Options
|
* Safe Homing Options
|
||||||
*/
|
*/
|
||||||
@ -1490,15 +1494,6 @@ constexpr float nozzle_to_probe_offset[XYZ] = NOZZLE_TO_PROBE_OFFSET;
|
|||||||
#define PROBE_Y_MIN (Y_CENTER - (SCARA_PRINTABLE_RADIUS) + MIN_PROBE_EDGE)
|
#define PROBE_Y_MIN (Y_CENTER - (SCARA_PRINTABLE_RADIUS) + MIN_PROBE_EDGE)
|
||||||
#define PROBE_X_MAX (X_CENTER + SCARA_PRINTABLE_RADIUS - (MIN_PROBE_EDGE))
|
#define PROBE_X_MAX (X_CENTER + SCARA_PRINTABLE_RADIUS - (MIN_PROBE_EDGE))
|
||||||
#define PROBE_Y_MAX (Y_CENTER + SCARA_PRINTABLE_RADIUS - (MIN_PROBE_EDGE))
|
#define PROBE_Y_MAX (Y_CENTER + SCARA_PRINTABLE_RADIUS - (MIN_PROBE_EDGE))
|
||||||
|
|
||||||
#else
|
|
||||||
|
|
||||||
// Boundaries for Cartesian probing based on bed limits
|
|
||||||
#define PROBE_X_MIN (_MAX(X_MIN_BED + MIN_PROBE_EDGE, X_MIN_POS + nozzle_to_probe_offset[X_AXIS]))
|
|
||||||
#define PROBE_Y_MIN (_MAX(Y_MIN_BED + MIN_PROBE_EDGE, Y_MIN_POS + nozzle_to_probe_offset[Y_AXIS]))
|
|
||||||
#define PROBE_X_MAX (_MIN(X_MAX_BED - (MIN_PROBE_EDGE), X_MAX_POS + nozzle_to_probe_offset[X_AXIS]))
|
|
||||||
#define PROBE_Y_MAX (_MIN(Y_MAX_BED - (MIN_PROBE_EDGE), Y_MAX_POS + nozzle_to_probe_offset[Y_AXIS]))
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if ENABLED(SEGMENT_LEVELED_MOVES) && !defined(LEVELED_SEGMENT_LENGTH)
|
#if ENABLED(SEGMENT_LEVELED_MOVES) && !defined(LEVELED_SEGMENT_LENGTH)
|
||||||
@ -1508,7 +1503,7 @@ constexpr float nozzle_to_probe_offset[XYZ] = NOZZLE_TO_PROBE_OFFSET;
|
|||||||
/**
|
/**
|
||||||
* Default mesh area is an area with an inset margin on the print area.
|
* Default mesh area is an area with an inset margin on the print area.
|
||||||
*/
|
*/
|
||||||
#if EITHER(MESH_BED_LEVELING, AUTO_BED_LEVELING_UBL)
|
#if ANY(MESH_BED_LEVELING, AUTO_BED_LEVELING_UBL, AUTO_BED_LEVELING_BILINEAR)
|
||||||
#if IS_KINEMATIC
|
#if IS_KINEMATIC
|
||||||
// Probing points may be verified at compile time within the radius
|
// Probing points may be verified at compile time within the radius
|
||||||
// using static_assert(HYPOT2(X2-X1,Y2-Y1)<=sq(DELTA_PRINTABLE_RADIUS),"bad probe point!")
|
// using static_assert(HYPOT2(X2-X1,Y2-Y1)<=sq(DELTA_PRINTABLE_RADIUS),"bad probe point!")
|
||||||
@ -1548,54 +1543,6 @@ constexpr float nozzle_to_probe_offset[XYZ] = NOZZLE_TO_PROBE_OFFSET;
|
|||||||
|
|
||||||
#endif // MESH_BED_LEVELING || AUTO_BED_LEVELING_UBL
|
#endif // MESH_BED_LEVELING || AUTO_BED_LEVELING_UBL
|
||||||
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_UBL, AUTO_BED_LEVELING_3POINT)
|
|
||||||
#if IS_KINEMATIC
|
|
||||||
#define SIN0 0.0
|
|
||||||
#define SIN120 0.866025
|
|
||||||
#define SIN240 -0.866025
|
|
||||||
#define COS0 1.0
|
|
||||||
#define COS120 -0.5
|
|
||||||
#define COS240 -0.5
|
|
||||||
#ifndef PROBE_PT_1_X
|
|
||||||
#define PROBE_PT_1_X (X_CENTER + (_PROBE_RADIUS) * COS0)
|
|
||||||
#endif
|
|
||||||
#ifndef PROBE_PT_1_Y
|
|
||||||
#define PROBE_PT_1_Y (Y_CENTER + (_PROBE_RADIUS) * SIN0)
|
|
||||||
#endif
|
|
||||||
#ifndef PROBE_PT_2_X
|
|
||||||
#define PROBE_PT_2_X (X_CENTER + (_PROBE_RADIUS) * COS120)
|
|
||||||
#endif
|
|
||||||
#ifndef PROBE_PT_2_Y
|
|
||||||
#define PROBE_PT_2_Y (Y_CENTER + (_PROBE_RADIUS) * SIN120)
|
|
||||||
#endif
|
|
||||||
#ifndef PROBE_PT_3_X
|
|
||||||
#define PROBE_PT_3_X (X_CENTER + (_PROBE_RADIUS) * COS240)
|
|
||||||
#endif
|
|
||||||
#ifndef PROBE_PT_3_Y
|
|
||||||
#define PROBE_PT_3_Y (Y_CENTER + (_PROBE_RADIUS) * SIN240)
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#ifndef PROBE_PT_1_X
|
|
||||||
#define PROBE_PT_1_X PROBE_X_MIN
|
|
||||||
#endif
|
|
||||||
#ifndef PROBE_PT_1_Y
|
|
||||||
#define PROBE_PT_1_Y PROBE_Y_MIN
|
|
||||||
#endif
|
|
||||||
#ifndef PROBE_PT_2_X
|
|
||||||
#define PROBE_PT_2_X PROBE_X_MAX
|
|
||||||
#endif
|
|
||||||
#ifndef PROBE_PT_2_Y
|
|
||||||
#define PROBE_PT_2_Y PROBE_Y_MIN
|
|
||||||
#endif
|
|
||||||
#ifndef PROBE_PT_3_X
|
|
||||||
#define PROBE_PT_3_X X_CENTER
|
|
||||||
#endif
|
|
||||||
#ifndef PROBE_PT_3_Y
|
|
||||||
#define PROBE_PT_3_Y PROBE_Y_MAX
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Buzzer/Speaker
|
* Buzzer/Speaker
|
||||||
*/
|
*/
|
||||||
|
@ -248,9 +248,11 @@
|
|||||||
#elif defined(UBL_MESH_MIN_X) || defined(UBL_MESH_MIN_Y) || defined(UBL_MESH_MAX_X) || defined(UBL_MESH_MAX_Y)
|
#elif defined(UBL_MESH_MIN_X) || defined(UBL_MESH_MIN_Y) || defined(UBL_MESH_MAX_X) || defined(UBL_MESH_MAX_Y)
|
||||||
#error "UBL_MESH_(MIN|MAX)_[XY] is now just MESH_(MIN|MAX)_[XY]. Please update your configuration."
|
#error "UBL_MESH_(MIN|MAX)_[XY] is now just MESH_(MIN|MAX)_[XY]. Please update your configuration."
|
||||||
#elif defined(ABL_PROBE_PT_1_X) || defined(ABL_PROBE_PT_1_Y) || defined(ABL_PROBE_PT_2_X) || defined(ABL_PROBE_PT_2_Y) || defined(ABL_PROBE_PT_3_X) || defined(ABL_PROBE_PT_3_Y)
|
#elif defined(ABL_PROBE_PT_1_X) || defined(ABL_PROBE_PT_1_Y) || defined(ABL_PROBE_PT_2_X) || defined(ABL_PROBE_PT_2_Y) || defined(ABL_PROBE_PT_3_X) || defined(ABL_PROBE_PT_3_Y)
|
||||||
#error "ABL_PROBE_PT_[123]_[XY] is now PROBE_PT_[123]_[XY]. Please update your configuration."
|
#error "ABL_PROBE_PT_[123]_[XY] is no longer required. Please remove it from Configuration.h."
|
||||||
#elif defined(UBL_PROBE_PT_1_X) || defined(UBL_PROBE_PT_1_Y) || defined(UBL_PROBE_PT_2_X) || defined(UBL_PROBE_PT_2_Y) || defined(UBL_PROBE_PT_3_X) || defined(UBL_PROBE_PT_3_Y)
|
#elif defined(UBL_PROBE_PT_1_X) || defined(UBL_PROBE_PT_1_Y) || defined(UBL_PROBE_PT_2_X) || defined(UBL_PROBE_PT_2_Y) || defined(UBL_PROBE_PT_3_X) || defined(UBL_PROBE_PT_3_Y)
|
||||||
#error "UBL_PROBE_PT_[123]_[XY] is now PROBE_PT_[123]_[XY]. Please update your configuration."
|
#error "UBL_PROBE_PT_[123]_[XY] is no longer required. Please remove it from Configuration.h."
|
||||||
|
#elif defined(PROBE_PT_1_X) || defined(PROBE_PT_1_Y) || defined(PROBE_PT_2_X) || defined(PROBE_PT_2_Y) || defined(PROBE_PT_3_X) || defined(PROBE_PT_3_Y)
|
||||||
|
#error "PROBE_PT_[123]_[XY] is no longer required. Please remove it from Configuration.h."
|
||||||
#elif defined(ENABLE_MESH_EDIT_GFX_OVERLAY)
|
#elif defined(ENABLE_MESH_EDIT_GFX_OVERLAY)
|
||||||
#error "ENABLE_MESH_EDIT_GFX_OVERLAY is now MESH_EDIT_GFX_OVERLAY. Please update your configuration."
|
#error "ENABLE_MESH_EDIT_GFX_OVERLAY is now MESH_EDIT_GFX_OVERLAY. Please update your configuration."
|
||||||
#elif defined(BABYSTEP_ZPROBE_GFX_REVERSE)
|
#elif defined(BABYSTEP_ZPROBE_GFX_REVERSE)
|
||||||
@ -1206,19 +1208,6 @@ static_assert(Y_MAX_LENGTH >= Y_BED_SIZE, "Movement bounds (Y_MIN_POS, Y_MAX_POS
|
|||||||
* Bed Leveling Requirements
|
* Bed Leveling Requirements
|
||||||
*/
|
*/
|
||||||
|
|
||||||
//
|
|
||||||
// !! TODO: REPLACE WITH TESTS IN THE 3-POINT LEVELING CODE !!
|
|
||||||
//
|
|
||||||
|
|
||||||
//#if EITHER(AUTO_BED_LEVELING_UBL, AUTO_BED_LEVELING_3POINT)
|
|
||||||
// static_assert(WITHIN(PROBE_PT_1_X, PROBE_X_MIN, PROBE_X_MAX), "PROBE_PT_1_X is outside the probe region.");
|
|
||||||
// static_assert(WITHIN(PROBE_PT_2_X, PROBE_X_MIN, PROBE_X_MAX), "PROBE_PT_2_X is outside the probe region.");
|
|
||||||
// static_assert(WITHIN(PROBE_PT_3_X, PROBE_X_MIN, PROBE_X_MAX), "PROBE_PT_3_X is outside the probe region.");
|
|
||||||
// static_assert(WITHIN(PROBE_PT_1_Y, PROBE_Y_MIN, PROBE_Y_MAX), "PROBE_PT_1_Y is outside the probe region.");
|
|
||||||
// static_assert(WITHIN(PROBE_PT_2_Y, PROBE_Y_MIN, PROBE_Y_MAX), "PROBE_PT_2_Y is outside the probe region.");
|
|
||||||
// static_assert(WITHIN(PROBE_PT_3_Y, PROBE_Y_MIN, PROBE_Y_MAX), "PROBE_PT_3_Y is outside the probe region.");
|
|
||||||
//#endif
|
|
||||||
|
|
||||||
#if ENABLED(AUTO_BED_LEVELING_UBL)
|
#if ENABLED(AUTO_BED_LEVELING_UBL)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -1318,12 +1307,9 @@ static_assert(Y_MAX_LENGTH >= Y_BED_SIZE, "Movement bounds (Y_MIN_POS, Y_MAX_POS
|
|||||||
* Make sure Z_SAFE_HOMING point is reachable
|
* Make sure Z_SAFE_HOMING point is reachable
|
||||||
*/
|
*/
|
||||||
#if ENABLED(Z_SAFE_HOMING)
|
#if ENABLED(Z_SAFE_HOMING)
|
||||||
#if HAS_BED_PROBE
|
#if HAS_BED_PROBE && (ENABLED(DELTA) || IS_SCARA)
|
||||||
//
|
static_assert(WITHIN(Z_SAFE_HOMING_X_POINT, PROBE_X_MIN, PROBE_X_MAX), "Z_SAFE_HOMING_X_POINT is outside the probe region.");
|
||||||
// !! TODO: REPLACE WITH TESTS IN THE Z_SAFE_HOMING CODE !!
|
static_assert(WITHIN(Z_SAFE_HOMING_Y_POINT, PROBE_Y_MIN, PROBE_Y_MAX), "Z_SAFE_HOMING_Y_POINT is outside the probe region.");
|
||||||
//
|
|
||||||
//static_assert(WITHIN(Z_SAFE_HOMING_X_POINT, PROBE_X_MIN, PROBE_X_MAX), "Z_SAFE_HOMING_X_POINT is outside the probe region.");
|
|
||||||
//static_assert(WITHIN(Z_SAFE_HOMING_Y_POINT, PROBE_Y_MIN, PROBE_Y_MAX), "Z_SAFE_HOMING_Y_POINT is outside the probe region.");
|
|
||||||
#else
|
#else
|
||||||
static_assert(WITHIN(Z_SAFE_HOMING_X_POINT, X_MIN_POS, X_MAX_POS), "Z_SAFE_HOMING_X_POINT can't be reached by the nozzle.");
|
static_assert(WITHIN(Z_SAFE_HOMING_X_POINT, X_MIN_POS, X_MAX_POS), "Z_SAFE_HOMING_X_POINT can't be reached by the nozzle.");
|
||||||
static_assert(WITHIN(Z_SAFE_HOMING_Y_POINT, Y_MIN_POS, Y_MAX_POS), "Z_SAFE_HOMING_Y_POINT can't be reached by the nozzle.");
|
static_assert(WITHIN(Z_SAFE_HOMING_Y_POINT, Y_MIN_POS, Y_MAX_POS), "Z_SAFE_HOMING_Y_POINT can't be reached by the nozzle.");
|
||||||
|
@ -44,13 +44,13 @@ exec_test $1 $2 "Smoothieboard with many features"
|
|||||||
restore_configs
|
restore_configs
|
||||||
use_example_configs delta/generic
|
use_example_configs delta/generic
|
||||||
opt_set MOTHERBOARD BOARD_COHESION3D_REMIX
|
opt_set MOTHERBOARD BOARD_COHESION3D_REMIX
|
||||||
opt_enable AUTO_BED_LEVELING_BILINEAR EEPROM_SETTINGS EEPROM_CHITCHAT BAUD_RATE_GCODE
|
|
||||||
opt_disable Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN
|
|
||||||
opt_set X_DRIVER_TYPE TMC2130
|
opt_set X_DRIVER_TYPE TMC2130
|
||||||
opt_set Y_DRIVER_TYPE TMC2130
|
opt_set Y_DRIVER_TYPE TMC2130
|
||||||
opt_set Z_DRIVER_TYPE TMC2130
|
opt_set Z_DRIVER_TYPE TMC2130
|
||||||
opt_enable TMC_USE_SW_SPI MONITOR_DRIVER_STATUS STEALTHCHOP_XY STEALTHCHOP_Z HYBRID_THRESHOLD TMC_DEBUG \
|
opt_enable AUTO_BED_LEVELING_BILINEAR EEPROM_SETTINGS EEPROM_CHITCHAT BAUD_RATE_GCODE \
|
||||||
SENSORLESS_PROBING X_STALL_SENSITIVITY Y_STALL_SENSITIVITY Z_STALL_SENSITIVITY
|
TMC_USE_SW_SPI MONITOR_DRIVER_STATUS STEALTHCHOP_XY STEALTHCHOP_Z HYBRID_THRESHOLD \
|
||||||
|
SENSORLESS_PROBING X_STALL_SENSITIVITY Y_STALL_SENSITIVITY Z_STALL_SENSITIVITY TMC_DEBUG
|
||||||
|
opt_disable Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN
|
||||||
exec_test $1 $2 "Cohesion3D Remix DELTA + ABL Bilinear + EEPROM + SENSORLESS_PROBING"
|
exec_test $1 $2 "Cohesion3D Remix DELTA + ABL Bilinear + EEPROM + SENSORLESS_PROBING"
|
||||||
|
|
||||||
# clean up
|
# clean up
|
||||||
|
@ -1251,19 +1251,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1257,19 +1257,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1252,19 +1252,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1252,19 +1252,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1271,19 +1271,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1330,19 +1330,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1330,19 +1330,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1251,19 +1251,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1262,19 +1262,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1251,19 +1251,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1251,19 +1251,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1356,19 +1356,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1262,19 +1262,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1263,19 +1263,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1261,19 +1261,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1252,19 +1252,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1251,19 +1251,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1251,19 +1251,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1251,19 +1251,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1239,19 +1239,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1251,19 +1251,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1239,19 +1239,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1250,19 +1250,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1261,19 +1261,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1252,19 +1252,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1254,19 +1254,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1270,19 +1270,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1254,19 +1254,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1254,19 +1254,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1261,19 +1261,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1255,19 +1255,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1255,19 +1255,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1261,19 +1261,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1254,19 +1254,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1251,19 +1251,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1256,19 +1256,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1261,19 +1261,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1256,19 +1256,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1256,19 +1256,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1256,19 +1256,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1256,19 +1256,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1256,19 +1256,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1253,19 +1253,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1233,19 +1233,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1233,19 +1233,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1244,19 +1244,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1236,19 +1236,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1236,19 +1236,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1236,19 +1236,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1266,19 +1266,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1251,19 +1251,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1258,19 +1258,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1272,19 +1272,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1271,19 +1271,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1251,19 +1251,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1251,19 +1251,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1238,19 +1238,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1255,19 +1255,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1258,19 +1258,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1263,19 +1263,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1258,19 +1258,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1271,19 +1271,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1250,19 +1250,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1255,19 +1255,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1255,19 +1255,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1252,19 +1252,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1251,19 +1251,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1259,19 +1259,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1251,19 +1251,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1300,19 +1300,6 @@ Black rubber belt(MXL), 18 - tooth aluminium pulley : 87.489 step per mm (Huxley
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1251,19 +1251,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1249,19 +1249,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1260,19 +1260,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1251,19 +1251,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1253,19 +1253,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1251,19 +1251,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1253,19 +1253,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1282,19 +1282,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1256,19 +1256,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1249,19 +1249,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1256,19 +1256,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1256,19 +1256,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1251,19 +1251,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1307,19 +1307,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1251,19 +1251,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1255,19 +1255,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1272,19 +1272,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1251,19 +1251,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1262,19 +1262,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1251,19 +1251,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1251,19 +1251,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1260,19 +1260,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1281,19 +1281,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
@ -1251,19 +1251,6 @@
|
|||||||
|
|
||||||
#endif // BED_LEVELING
|
#endif // BED_LEVELING
|
||||||
|
|
||||||
/**
|
|
||||||
* Points to probe for all 3-point Leveling procedures.
|
|
||||||
* Override if the automatically selected points are inadequate.
|
|
||||||
*/
|
|
||||||
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
|
|
||||||
//#define PROBE_PT_1_X 15
|
|
||||||
//#define PROBE_PT_1_Y 180
|
|
||||||
//#define PROBE_PT_2_X 15
|
|
||||||
//#define PROBE_PT_2_Y 20
|
|
||||||
//#define PROBE_PT_3_X 170
|
|
||||||
//#define PROBE_PT_3_Y 20
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a bed leveling sub-menu for ABL or MBL.
|
* Add a bed leveling sub-menu for ABL or MBL.
|
||||||
* Include a guided procedure if manual probing is enabled.
|
* Include a guided procedure if manual probing is enabled.
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user