Disable UBL_G26_MESH_EDITING by default
This commit is contained in:
parent
9e4bd6b3b5
commit
edbc024d76
|
@ -120,7 +120,7 @@ script:
|
||||||
# Test a simple build of AUTO_BED_LEVELING_UBL
|
# Test a simple build of AUTO_BED_LEVELING_UBL
|
||||||
#
|
#
|
||||||
- restore_configs
|
- restore_configs
|
||||||
- opt_enable AUTO_BED_LEVELING_UBL FIX_MOUNTED_PROBE EEPROM_SETTINGS G3D_PANEL
|
- opt_enable AUTO_BED_LEVELING_UBL UBL_G26_MESH_EDITING FIX_MOUNTED_PROBE EEPROM_SETTINGS G3D_PANEL
|
||||||
- build_marlin
|
- build_marlin
|
||||||
#
|
#
|
||||||
# Test a Sled Z Probe
|
# Test a Sled Z Probe
|
||||||
|
|
|
@ -862,7 +862,7 @@
|
||||||
#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_MESH_EDIT_ENABLED // Enable G26 mesh editing
|
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
||||||
|
|
||||||
#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_MESH_EDIT_ENABLED)
|
#if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_EDITING)
|
||||||
|
|
||||||
#include "Marlin.h"
|
#include "Marlin.h"
|
||||||
#include "Configuration.h"
|
#include "Configuration.h"
|
||||||
|
@ -896,4 +896,4 @@
|
||||||
return UBL_OK;
|
return UBL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // AUTO_BED_LEVELING_UBL && UBL_MESH_EDIT_ENABLED
|
#endif // AUTO_BED_LEVELING_UBL && UBL_G26_MESH_EDITING
|
||||||
|
|
|
@ -5344,7 +5344,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_MESH_EDIT_ENABLED)
|
#if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_EDITING)
|
||||||
|
|
||||||
inline void gcode_M49() {
|
inline void gcode_M49() {
|
||||||
ubl.g26_debug_flag = !ubl.g26_debug_flag;
|
ubl.g26_debug_flag = !ubl.g26_debug_flag;
|
||||||
|
@ -5352,7 +5352,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_MESH_EDIT_ENABLED
|
#endif // AUTO_BED_LEVELING_UBL && UBL_G26_MESH_EDITING
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* M75: Start print timer
|
* M75: Start print timer
|
||||||
|
@ -8601,7 +8601,7 @@ void process_next_command() {
|
||||||
break;
|
break;
|
||||||
#endif // INCH_MODE_SUPPORT
|
#endif // INCH_MODE_SUPPORT
|
||||||
|
|
||||||
#if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_MESH_EDIT_ENABLED)
|
#if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_EDITING)
|
||||||
case 26: // G26: Mesh Validation Pattern generation
|
case 26: // G26: Mesh Validation Pattern generation
|
||||||
gcode_G26();
|
gcode_G26();
|
||||||
break;
|
break;
|
||||||
|
@ -8617,7 +8617,7 @@ void process_next_command() {
|
||||||
gcode_G28();
|
gcode_G28();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
#if PLANNER_LEVELING && !ENABLED(AUTO_BED_LEVELING_UBL) || ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_MESH_EDIT_ENABLED)
|
#if PLANNER_LEVELING && !ENABLED(AUTO_BED_LEVELING_UBL) || ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_EDITING)
|
||||||
case 29: // G29 Detailed Z probe, probes the bed at 3 or more points,
|
case 29: // G29 Detailed Z probe, probes the bed at 3 or more points,
|
||||||
// or provides access to the UBL System if enabled.
|
// or provides access to the UBL System if enabled.
|
||||||
gcode_G29();
|
gcode_G29();
|
||||||
|
@ -8733,11 +8733,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_MESH_EDIT_ENABLED)
|
#if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_EDITING)
|
||||||
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_MESH_EDIT_ENABLED
|
#endif // AUTO_BED_LEVELING_UBL && UBL_G26_MESH_EDITING
|
||||||
|
|
||||||
case 75: // M75: Start print timer
|
case 75: // M75: Start print timer
|
||||||
gcode_M75(); break;
|
gcode_M75(); break;
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
#include "MarlinConfig.h"
|
#include "MarlinConfig.h"
|
||||||
|
|
||||||
#if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_MESH_EDIT_ENABLED)
|
#if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_EDITING)
|
||||||
//#include "vector_3.h"
|
//#include "vector_3.h"
|
||||||
//#include "qr_solve.h"
|
//#include "qr_solve.h"
|
||||||
|
|
||||||
|
|
|
@ -863,7 +863,7 @@
|
||||||
#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_MESH_EDIT_ENABLED // Enable G26 mesh editing
|
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
|
|
@ -846,7 +846,7 @@
|
||||||
#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_MESH_EDIT_ENABLED // Enable G26 mesh editing
|
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
|
|
@ -846,7 +846,7 @@
|
||||||
#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_MESH_EDIT_ENABLED // Enable G26 mesh editing
|
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
|
|
@ -855,7 +855,7 @@
|
||||||
#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_MESH_EDIT_ENABLED // Enable G26 mesh editing
|
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
|
|
@ -857,7 +857,7 @@
|
||||||
#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_MESH_EDIT_ENABLED // Enable G26 mesh editing
|
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
|
|
@ -892,7 +892,7 @@
|
||||||
#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_MESH_EDIT_ENABLED // Enable G26 mesh editing
|
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
|
|
@ -863,7 +863,7 @@
|
||||||
#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_MESH_EDIT_ENABLED // Enable G26 mesh editing
|
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
|
|
@ -863,7 +863,7 @@
|
||||||
#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_MESH_EDIT_ENABLED // Enable G26 mesh editing
|
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
|
|
@ -863,7 +863,7 @@
|
||||||
#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_MESH_EDIT_ENABLED // Enable G26 mesh editing
|
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
|
|
@ -862,7 +862,7 @@
|
||||||
#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_MESH_EDIT_ENABLED // Enable G26 mesh editing
|
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
|
|
@ -878,7 +878,7 @@
|
||||||
#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_MESH_EDIT_ENABLED // Enable G26 mesh editing
|
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
|
|
@ -884,7 +884,7 @@
|
||||||
#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_MESH_EDIT_ENABLED // Enable G26 mesh editing
|
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
|
|
@ -855,7 +855,7 @@
|
||||||
#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_MESH_EDIT_ENABLED // Enable G26 mesh editing
|
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
|
|
@ -863,7 +863,7 @@
|
||||||
#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_MESH_EDIT_ENABLED // Enable G26 mesh editing
|
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
|
|
@ -968,7 +968,7 @@
|
||||||
#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_MESH_EDIT_ENABLED // Enable G26 mesh editing
|
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
|
|
@ -954,7 +954,7 @@
|
||||||
#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_MESH_EDIT_ENABLED // Enable G26 mesh editing
|
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
|
|
@ -958,7 +958,7 @@
|
||||||
#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_MESH_EDIT_ENABLED // Enable G26 mesh editing
|
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
|
|
@ -957,7 +957,7 @@
|
||||||
#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_MESH_EDIT_ENABLED // Enable G26 mesh editing
|
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
|
|
@ -967,7 +967,7 @@
|
||||||
#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_MESH_EDIT_ENABLED // Enable G26 mesh editing
|
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
|
|
@ -866,7 +866,7 @@
|
||||||
#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_MESH_EDIT_ENABLED // Enable G26 mesh editing
|
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
|
|
@ -859,7 +859,7 @@
|
||||||
#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_MESH_EDIT_ENABLED // Enable G26 mesh editing
|
//#define UBL_G26_MESH_EDITING // Enable G26 mesh editing
|
||||||
|
|
||||||
#elif ENABLED(MESH_BED_LEVELING)
|
#elif ENABLED(MESH_BED_LEVELING)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue