Update Configuration.h files to better names (#6814)
Changed UBL_G26_MESH_EDITING to UBL_G26_MESH_VALIDATION Added UBL_MESH_EDIT_MOVES_Z to prepare for that change (coming next)
This commit is contained in:
parent
ea906e4da7
commit
364f8fb613
@ -886,7 +886,8 @@
|
|||||||
#define UBL_PROBE_PT_2_Y 20
|
#define UBL_PROBE_PT_2_Y 20
|
||||||
#define UBL_PROBE_PT_3_X 180
|
#define UBL_PROBE_PT_3_X 180
|
||||||
#define UBL_PROBE_PT_3_Y 20
|
#define UBL_PROBE_PT_3_Y 20
|
||||||
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
#define UBL_G26_MESH_VALIDATION // Enable G26 mesh validation
|
||||||
|
#define UBL_MESH_EDIT_MOVES_Z // Sophisticated users prefer no movement of nozzle
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
|
|
||||||
#include "MarlinConfig.h"
|
#include "MarlinConfig.h"
|
||||||
|
|
||||||
#if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_EDITING)
|
#if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_VALIDATION)
|
||||||
|
|
||||||
#include "ubl.h"
|
#include "ubl.h"
|
||||||
#include "Marlin.h"
|
#include "Marlin.h"
|
||||||
@ -873,4 +873,4 @@
|
|||||||
return UBL_OK;
|
return UBL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // AUTO_BED_LEVELING_UBL && UBL_G26_MESH_EDITING
|
#endif // AUTO_BED_LEVELING_UBL && UBL_G26_MESH_VALIDATION
|
||||||
|
@ -57,7 +57,7 @@
|
|||||||
* G12 - Clean tool
|
* G12 - Clean tool
|
||||||
* G20 - Set input units to inches
|
* G20 - Set input units to inches
|
||||||
* G21 - Set input units to millimeters
|
* G21 - Set input units to millimeters
|
||||||
* G26 - Mesh Validation Pattern (Requires UBL_G26_MESH_EDITING)
|
* G26 - Mesh Validation Pattern (Requires UBL_G26_MESH_VALIDATION)
|
||||||
* G27 - Park Nozzle (Requires NOZZLE_PARK_FEATURE)
|
* G27 - Park Nozzle (Requires NOZZLE_PARK_FEATURE)
|
||||||
* G28 - Home one or more axes
|
* G28 - Home one or more axes
|
||||||
* G29 - Detailed Z probe, probes the bed at 3 or more points. Will fail if you haven't homed yet.
|
* G29 - Detailed Z probe, probes the bed at 3 or more points. Will fail if you haven't homed yet.
|
||||||
@ -6613,7 +6613,7 @@ inline void gcode_M42() {
|
|||||||
|
|
||||||
#endif // Z_MIN_PROBE_REPEATABILITY_TEST
|
#endif // Z_MIN_PROBE_REPEATABILITY_TEST
|
||||||
|
|
||||||
#if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_EDITING)
|
#if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_VALIDATION)
|
||||||
|
|
||||||
inline void gcode_M49() {
|
inline void gcode_M49() {
|
||||||
ubl.g26_debug_flag ^= true;
|
ubl.g26_debug_flag ^= true;
|
||||||
@ -6621,7 +6621,7 @@ inline void gcode_M42() {
|
|||||||
serialprintPGM(ubl.g26_debug_flag ? PSTR("on.") : PSTR("off."));
|
serialprintPGM(ubl.g26_debug_flag ? PSTR("on.") : PSTR("off."));
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // AUTO_BED_LEVELING_UBL && UBL_G26_MESH_EDITING
|
#endif // AUTO_BED_LEVELING_UBL && UBL_G26_MESH_VALIDATION
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* M75: Start print timer
|
* M75: Start print timer
|
||||||
@ -10096,7 +10096,7 @@ void process_next_command() {
|
|||||||
break;
|
break;
|
||||||
#endif // INCH_MODE_SUPPORT
|
#endif // INCH_MODE_SUPPORT
|
||||||
|
|
||||||
#if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_EDITING)
|
#if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_VALIDATION)
|
||||||
case 26: // G26: Mesh Validation Pattern generation
|
case 26: // G26: Mesh Validation Pattern generation
|
||||||
gcode_G26();
|
gcode_G26();
|
||||||
break;
|
break;
|
||||||
@ -10248,11 +10248,11 @@ void process_next_command() {
|
|||||||
break;
|
break;
|
||||||
#endif // Z_MIN_PROBE_REPEATABILITY_TEST
|
#endif // Z_MIN_PROBE_REPEATABILITY_TEST
|
||||||
|
|
||||||
#if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_EDITING)
|
#if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_VALIDATION)
|
||||||
case 49: // M49: Turn on or off G26 debug flag for verbose output
|
case 49: // M49: Turn on or off G26 debug flag for verbose output
|
||||||
gcode_M49();
|
gcode_M49();
|
||||||
break;
|
break;
|
||||||
#endif // AUTO_BED_LEVELING_UBL && UBL_G26_MESH_EDITING
|
#endif // AUTO_BED_LEVELING_UBL && UBL_G26_MESH_VALIDATION
|
||||||
|
|
||||||
case 75: // M75: Start print timer
|
case 75: // M75: Start print timer
|
||||||
gcode_M75(); break;
|
gcode_M75(); break;
|
||||||
|
@ -157,7 +157,9 @@
|
|||||||
#elif defined(UBL_MESH_NUM_X_POINTS) || defined(UBL_MESH_NUM_Y_POINTS)
|
#elif defined(UBL_MESH_NUM_X_POINTS) || defined(UBL_MESH_NUM_Y_POINTS)
|
||||||
#error "UBL_MESH_NUM_[XY]_POINTS is now GRID_MAX_POINTS_[XY]. Please update your configuration."
|
#error "UBL_MESH_NUM_[XY]_POINTS is now GRID_MAX_POINTS_[XY]. Please update your configuration."
|
||||||
#elif defined(UBL_MESH_EDIT_ENABLED)
|
#elif defined(UBL_MESH_EDIT_ENABLED)
|
||||||
#error "UBL_MESH_EDIT_ENABLED is now UBL_G26_MESH_EDITING. Please update your configuration."
|
#error "UBL_MESH_EDIT_ENABLED is now UBL_G26_MESH_VALIDATION. Please update your configuration."
|
||||||
|
#elif defined(UBL_MESH_EDITING)
|
||||||
|
#error "UBL_MESH_EDITING is now UBL_G26_MESH_VALIDATION. Please update your configuration."
|
||||||
#elif defined(BEEPER)
|
#elif defined(BEEPER)
|
||||||
#error "BEEPER is now BEEPER_PIN. Please update your pins definitions."
|
#error "BEEPER is now BEEPER_PIN. Please update your pins definitions."
|
||||||
#elif defined(SDCARDDETECT)
|
#elif defined(SDCARDDETECT)
|
||||||
|
@ -884,7 +884,8 @@
|
|||||||
#define UBL_PROBE_PT_2_Y 20
|
#define UBL_PROBE_PT_2_Y 20
|
||||||
#define UBL_PROBE_PT_3_X 180
|
#define UBL_PROBE_PT_3_X 180
|
||||||
#define UBL_PROBE_PT_3_Y 20
|
#define UBL_PROBE_PT_3_Y 20
|
||||||
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
#define UBL_G26_MESH_VALIDATION // Enable G26 mesh validation
|
||||||
|
#define UBL_MESH_EDIT_MOVES_Z // Sophisticated users prefer no movement of nozzle
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
@ -868,7 +868,8 @@
|
|||||||
#define UBL_PROBE_PT_2_Y 20
|
#define UBL_PROBE_PT_2_Y 20
|
||||||
#define UBL_PROBE_PT_3_X 180
|
#define UBL_PROBE_PT_3_X 180
|
||||||
#define UBL_PROBE_PT_3_Y 20
|
#define UBL_PROBE_PT_3_Y 20
|
||||||
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
#define UBL_G26_MESH_VALIDATION // Enable G26 mesh validation
|
||||||
|
#define UBL_MESH_EDIT_MOVES_Z // Sophisticated users prefer no movement of nozzle
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
@ -868,7 +868,8 @@
|
|||||||
#define UBL_PROBE_PT_2_Y 20
|
#define UBL_PROBE_PT_2_Y 20
|
||||||
#define UBL_PROBE_PT_3_X 180
|
#define UBL_PROBE_PT_3_X 180
|
||||||
#define UBL_PROBE_PT_3_Y 20
|
#define UBL_PROBE_PT_3_Y 20
|
||||||
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
#define UBL_G26_MESH_VALIDATION // Enable G26 mesh validation
|
||||||
|
#define UBL_MESH_EDIT_MOVES_Z // Sophisticated users prefer no movement of nozzle
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
@ -890,7 +890,8 @@
|
|||||||
#define UBL_PROBE_PT_2_Y 25
|
#define UBL_PROBE_PT_2_Y 25
|
||||||
#define UBL_PROBE_PT_3_X 180
|
#define UBL_PROBE_PT_3_X 180
|
||||||
#define UBL_PROBE_PT_3_Y 25
|
#define UBL_PROBE_PT_3_Y 25
|
||||||
#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
#define UBL_G26_MESH_VALIDATION // Enable G26 mesh validation
|
||||||
|
#define UBL_MESH_EDIT_MOVES_Z // Sophisticated users prefer no movement of nozzle
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
@ -876,7 +876,8 @@
|
|||||||
#define UBL_PROBE_PT_2_Y 20
|
#define UBL_PROBE_PT_2_Y 20
|
||||||
#define UBL_PROBE_PT_3_X 180
|
#define UBL_PROBE_PT_3_X 180
|
||||||
#define UBL_PROBE_PT_3_Y 20
|
#define UBL_PROBE_PT_3_Y 20
|
||||||
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
#define UBL_G26_MESH_VALIDATION // Enable G26 mesh validation
|
||||||
|
#define UBL_MESH_EDIT_MOVES_Z // Sophisticated users prefer no movement of nozzle
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
@ -879,7 +879,8 @@
|
|||||||
#define UBL_PROBE_PT_2_Y 20
|
#define UBL_PROBE_PT_2_Y 20
|
||||||
#define UBL_PROBE_PT_3_X 180
|
#define UBL_PROBE_PT_3_X 180
|
||||||
#define UBL_PROBE_PT_3_Y 20
|
#define UBL_PROBE_PT_3_Y 20
|
||||||
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
#define UBL_G26_MESH_VALIDATION // Enable G26 mesh validation
|
||||||
|
#define UBL_MESH_EDIT_MOVES_Z // Sophisticated users prefer no movement of nozzle
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
@ -914,7 +914,8 @@
|
|||||||
#define UBL_PROBE_PT_2_Y 20
|
#define UBL_PROBE_PT_2_Y 20
|
||||||
#define UBL_PROBE_PT_3_X 180
|
#define UBL_PROBE_PT_3_X 180
|
||||||
#define UBL_PROBE_PT_3_Y 20
|
#define UBL_PROBE_PT_3_Y 20
|
||||||
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
#define UBL_G26_MESH_VALIDATION // Enable G26 mesh validation
|
||||||
|
#define UBL_MESH_EDIT_MOVES_Z // Sophisticated users prefer no movement of nozzle
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
@ -885,7 +885,8 @@
|
|||||||
#define UBL_PROBE_PT_2_Y 20
|
#define UBL_PROBE_PT_2_Y 20
|
||||||
#define UBL_PROBE_PT_3_X 180
|
#define UBL_PROBE_PT_3_X 180
|
||||||
#define UBL_PROBE_PT_3_Y 20
|
#define UBL_PROBE_PT_3_Y 20
|
||||||
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
#define UBL_G26_MESH_VALIDATION // Enable G26 mesh validation
|
||||||
|
#define UBL_MESH_EDIT_MOVES_Z // Sophisticated users prefer no movement of nozzle
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
@ -885,7 +885,8 @@
|
|||||||
#define UBL_PROBE_PT_2_Y 20
|
#define UBL_PROBE_PT_2_Y 20
|
||||||
#define UBL_PROBE_PT_3_X 180
|
#define UBL_PROBE_PT_3_X 180
|
||||||
#define UBL_PROBE_PT_3_Y 20
|
#define UBL_PROBE_PT_3_Y 20
|
||||||
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
#define UBL_G26_MESH_VALIDATION // Enable G26 mesh validation
|
||||||
|
#define UBL_MESH_EDIT_MOVES_Z // Sophisticated users prefer no movement of nozzle
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
@ -885,7 +885,8 @@
|
|||||||
#define UBL_PROBE_PT_2_Y 20
|
#define UBL_PROBE_PT_2_Y 20
|
||||||
#define UBL_PROBE_PT_3_X 180
|
#define UBL_PROBE_PT_3_X 180
|
||||||
#define UBL_PROBE_PT_3_Y 20
|
#define UBL_PROBE_PT_3_Y 20
|
||||||
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
#define UBL_G26_MESH_VALIDATION // Enable G26 mesh validation
|
||||||
|
#define UBL_MESH_EDIT_MOVES_Z // Sophisticated users prefer no movement of nozzle
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
@ -884,7 +884,8 @@
|
|||||||
#define UBL_PROBE_PT_2_Y 20
|
#define UBL_PROBE_PT_2_Y 20
|
||||||
#define UBL_PROBE_PT_3_X 180
|
#define UBL_PROBE_PT_3_X 180
|
||||||
#define UBL_PROBE_PT_3_Y 20
|
#define UBL_PROBE_PT_3_Y 20
|
||||||
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
#define UBL_G26_MESH_VALIDATION // Enable G26 mesh validation
|
||||||
|
#define UBL_MESH_EDIT_MOVES_Z // Sophisticated users prefer no movement of nozzle
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
@ -901,7 +901,8 @@
|
|||||||
#define UBL_PROBE_PT_2_Y 20
|
#define UBL_PROBE_PT_2_Y 20
|
||||||
#define UBL_PROBE_PT_3_X 180
|
#define UBL_PROBE_PT_3_X 180
|
||||||
#define UBL_PROBE_PT_3_Y 20
|
#define UBL_PROBE_PT_3_Y 20
|
||||||
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
#define UBL_G26_MESH_VALIDATION // Enable G26 mesh validation
|
||||||
|
#define UBL_MESH_EDIT_MOVES_Z // Sophisticated users prefer no movement of nozzle
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
@ -905,7 +905,8 @@
|
|||||||
#define UBL_PROBE_PT_2_Y 20
|
#define UBL_PROBE_PT_2_Y 20
|
||||||
#define UBL_PROBE_PT_3_X 180
|
#define UBL_PROBE_PT_3_X 180
|
||||||
#define UBL_PROBE_PT_3_Y 20
|
#define UBL_PROBE_PT_3_Y 20
|
||||||
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
#define UBL_G26_MESH_VALIDATION // Enable G26 mesh validation
|
||||||
|
#define UBL_MESH_EDIT_MOVES_Z // Sophisticated users prefer no movement of nozzle
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
@ -941,7 +941,8 @@
|
|||||||
#define UBL_PROBE_PT_2_Y 20
|
#define UBL_PROBE_PT_2_Y 20
|
||||||
#define UBL_PROBE_PT_3_X 180
|
#define UBL_PROBE_PT_3_X 180
|
||||||
#define UBL_PROBE_PT_3_Y 20
|
#define UBL_PROBE_PT_3_Y 20
|
||||||
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
#define UBL_G26_MESH_VALIDATION // Enable G26 mesh validation
|
||||||
|
#define UBL_MESH_EDIT_MOVES_Z // Sophisticated users prefer no movement of nozzle
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
@ -876,7 +876,8 @@
|
|||||||
#define UBL_PROBE_PT_2_Y 20
|
#define UBL_PROBE_PT_2_Y 20
|
||||||
#define UBL_PROBE_PT_3_X 180
|
#define UBL_PROBE_PT_3_X 180
|
||||||
#define UBL_PROBE_PT_3_Y 20
|
#define UBL_PROBE_PT_3_Y 20
|
||||||
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
#define UBL_G26_MESH_VALIDATION // Enable G26 mesh validation
|
||||||
|
#define UBL_MESH_EDIT_MOVES_Z // Sophisticated users prefer no movement of nozzle
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
@ -885,7 +885,8 @@
|
|||||||
#define UBL_PROBE_PT_2_Y 20
|
#define UBL_PROBE_PT_2_Y 20
|
||||||
#define UBL_PROBE_PT_3_X 180
|
#define UBL_PROBE_PT_3_X 180
|
||||||
#define UBL_PROBE_PT_3_Y 20
|
#define UBL_PROBE_PT_3_Y 20
|
||||||
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
#define UBL_G26_MESH_VALIDATION // Enable G26 mesh validation
|
||||||
|
#define UBL_MESH_EDIT_MOVES_Z // Sophisticated users prefer no movement of nozzle
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
@ -1004,7 +1004,8 @@
|
|||||||
#define UBL_PROBE_PT_2_Y 20
|
#define UBL_PROBE_PT_2_Y 20
|
||||||
#define UBL_PROBE_PT_3_X 180
|
#define UBL_PROBE_PT_3_X 180
|
||||||
#define UBL_PROBE_PT_3_Y 20
|
#define UBL_PROBE_PT_3_Y 20
|
||||||
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
#define UBL_G26_MESH_VALIDATION // Enable G26 mesh validation
|
||||||
|
#define UBL_MESH_EDIT_MOVES_Z // Sophisticated users prefer no movement of nozzle
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
@ -1006,7 +1006,8 @@
|
|||||||
#define UBL_PROBE_PT_2_Y 20
|
#define UBL_PROBE_PT_2_Y 20
|
||||||
#define UBL_PROBE_PT_3_X 180
|
#define UBL_PROBE_PT_3_X 180
|
||||||
#define UBL_PROBE_PT_3_Y 20
|
#define UBL_PROBE_PT_3_Y 20
|
||||||
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
#define UBL_G26_MESH_VALIDATION // Enable G26 mesh validation
|
||||||
|
#define UBL_MESH_EDIT_MOVES_Z // Sophisticated users prefer no movement of nozzle
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
@ -995,7 +995,8 @@
|
|||||||
#define UBL_PROBE_PT_2_Y 20
|
#define UBL_PROBE_PT_2_Y 20
|
||||||
#define UBL_PROBE_PT_3_X 180
|
#define UBL_PROBE_PT_3_X 180
|
||||||
#define UBL_PROBE_PT_3_Y 20
|
#define UBL_PROBE_PT_3_Y 20
|
||||||
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
#define UBL_G26_MESH_VALIDATION // Enable G26 mesh validation
|
||||||
|
#define UBL_MESH_EDIT_MOVES_Z // Sophisticated users prefer no movement of nozzle
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
@ -998,7 +998,8 @@
|
|||||||
#define UBL_PROBE_PT_2_Y 20
|
#define UBL_PROBE_PT_2_Y 20
|
||||||
#define UBL_PROBE_PT_3_X 180
|
#define UBL_PROBE_PT_3_X 180
|
||||||
#define UBL_PROBE_PT_3_Y 20
|
#define UBL_PROBE_PT_3_Y 20
|
||||||
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
#define UBL_G26_MESH_VALIDATION // Enable G26 mesh validation
|
||||||
|
#define UBL_MESH_EDIT_MOVES_Z // Sophisticated users prefer no movement of nozzle
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
@ -1004,7 +1004,8 @@
|
|||||||
#define UBL_PROBE_PT_2_Y 20
|
#define UBL_PROBE_PT_2_Y 20
|
||||||
#define UBL_PROBE_PT_3_X 180
|
#define UBL_PROBE_PT_3_X 180
|
||||||
#define UBL_PROBE_PT_3_Y 20
|
#define UBL_PROBE_PT_3_Y 20
|
||||||
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
#define UBL_G26_MESH_VALIDATION // Enable G26 mesh validation
|
||||||
|
#define UBL_MESH_EDIT_MOVES_Z // Sophisticated users prefer no movement of nozzle
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
@ -1062,7 +1062,8 @@
|
|||||||
#define UBL_PROBE_PT_2_Y 20
|
#define UBL_PROBE_PT_2_Y 20
|
||||||
#define UBL_PROBE_PT_3_X 180
|
#define UBL_PROBE_PT_3_X 180
|
||||||
#define UBL_PROBE_PT_3_Y 20
|
#define UBL_PROBE_PT_3_Y 20
|
||||||
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
#define UBL_G26_MESH_VALIDATION // Enable G26 mesh validation
|
||||||
|
#define UBL_MESH_EDIT_MOVES_Z // Sophisticated users prefer no movement of nozzle
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
@ -902,7 +902,8 @@
|
|||||||
#define UBL_PROBE_PT_2_Y 63
|
#define UBL_PROBE_PT_2_Y 63
|
||||||
#define UBL_PROBE_PT_3_X 348
|
#define UBL_PROBE_PT_3_X 348
|
||||||
#define UBL_PROBE_PT_3_Y 211
|
#define UBL_PROBE_PT_3_Y 211
|
||||||
#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
#define UBL_G26_MESH_VALIDATION // Enable G26 mesh validation
|
||||||
|
#define UBL_MESH_EDIT_MOVES_Z // Sophisticated users prefer no movement of nozzle
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
@ -888,7 +888,8 @@
|
|||||||
#define UBL_PROBE_PT_2_Y 20
|
#define UBL_PROBE_PT_2_Y 20
|
||||||
#define UBL_PROBE_PT_3_X 180
|
#define UBL_PROBE_PT_3_X 180
|
||||||
#define UBL_PROBE_PT_3_Y 20
|
#define UBL_PROBE_PT_3_Y 20
|
||||||
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
#define UBL_G26_MESH_VALIDATION // Enable G26 mesh validation
|
||||||
|
#define UBL_MESH_EDIT_MOVES_Z // Sophisticated users prefer no movement of nozzle
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
@ -881,7 +881,8 @@
|
|||||||
#define UBL_PROBE_PT_2_Y 20
|
#define UBL_PROBE_PT_2_Y 20
|
||||||
#define UBL_PROBE_PT_3_X 180
|
#define UBL_PROBE_PT_3_X 180
|
||||||
#define UBL_PROBE_PT_3_Y 20
|
#define UBL_PROBE_PT_3_Y 20
|
||||||
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
#define UBL_G26_MESH_VALIDATION // Enable G26 mesh validation
|
||||||
|
#define UBL_MESH_EDIT_MOVES_Z // Sophisticated users prefer no movement of nozzle
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
@ -890,7 +890,8 @@
|
|||||||
#define UBL_PROBE_PT_2_Y 20
|
#define UBL_PROBE_PT_2_Y 20
|
||||||
#define UBL_PROBE_PT_3_X 180
|
#define UBL_PROBE_PT_3_X 180
|
||||||
#define UBL_PROBE_PT_3_Y 20
|
#define UBL_PROBE_PT_3_Y 20
|
||||||
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
#define UBL_G26_MESH_VALIDATION // Enable G26 mesh validation
|
||||||
|
#define UBL_MESH_EDIT_MOVES_Z // Sophisticated users prefer no movement of nozzle
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user