Browse Source

Level Corners with Probe option (#20241)

wmariz 3 years ago
parent
commit
58ac815822
No account linked to committer's email address

+ 6
- 0
Marlin/Configuration.h View File

@@ -1392,6 +1392,12 @@
1392 1392
   #define LEVEL_CORNERS_HEIGHT      0.0   // (mm) Z height of nozzle at leveling points
1393 1393
   #define LEVEL_CORNERS_Z_HOP       4.0   // (mm) Z height of nozzle between leveling points
1394 1394
   //#define LEVEL_CENTER_TOO              // Move to the center after the last corner
1395
+  //#define LEVEL_CORNERS_USE_PROBE
1396
+  #if ENABLED(LEVEL_CORNERS_USE_PROBE)
1397
+    #define LEVEL_CORNERS_PROBE_TOLERANCE 0.1
1398
+    #define LEVEL_CORNERS_VERIFY_RAISED   // After adjustment triggers the probe, re-probe to verify
1399
+    //#define LEVEL_CORNERS_AUDIO_FEEDBACK
1400
+  #endif
1395 1401
 #endif
1396 1402
 
1397 1403
 /**

+ 4
- 6
Marlin/src/feature/backlash.cpp View File

@@ -123,24 +123,22 @@ void Backlash::add_correction_steps(const int32_t &da, const int32_t &db, const
123 123
 }
124 124
 
125 125
 #if ENABLED(MEASURE_BACKLASH_WHEN_PROBING)
126
-  #if HAS_CUSTOM_PROBE_PIN
127
-    #define TEST_PROBE_PIN (READ(Z_MIN_PROBE_PIN) != Z_MIN_PROBE_ENDSTOP_INVERTING)
128
-  #else
129
-    #define TEST_PROBE_PIN (READ(Z_MIN_PIN) != Z_MIN_ENDSTOP_INVERTING)
130
-  #endif
126
+
127
+  #include "../module/probe.h"
131 128
 
132 129
   // Measure Z backlash by raising nozzle in increments until probe deactivates
133 130
   void Backlash::measure_with_probe() {
134 131
     if (measured_count.z == 255) return;
135 132
 
136 133
     const float start_height = current_position.z;
137
-    while (current_position.z < (start_height + BACKLASH_MEASUREMENT_LIMIT) && TEST_PROBE_PIN)
134
+    while (current_position.z < (start_height + BACKLASH_MEASUREMENT_LIMIT) && PROBE_TRIGGERED())
138 135
       do_blocking_move_to_z(current_position.z + BACKLASH_MEASUREMENT_RESOLUTION, MMM_TO_MMS(BACKLASH_MEASUREMENT_FEEDRATE));
139 136
 
140 137
     // The backlash from all probe points is averaged, so count the number of measurements
141 138
     measured_mm.z += current_position.z - start_height;
142 139
     measured_count.z++;
143 140
   }
141
+
144 142
 #endif
145 143
 
146 144
 #endif // BACKLASH_COMPENSATION

+ 2
- 9
Marlin/src/feature/bltouch.cpp View File

@@ -31,6 +31,7 @@ BLTouch bltouch;
31 31
 bool BLTouch::last_written_mode; // Initialized by settings.load, 0 = Open Drain; 1 = 5V Drain
32 32
 
33 33
 #include "../module/servo.h"
34
+#include "../module/probe.h"
34 35
 
35 36
 void stop();
36 37
 
@@ -90,15 +91,7 @@ void BLTouch::clear() {
90 91
   _stow();     // STOW to be ready for meaningful work. Could fail, don't care
91 92
 }
92 93
 
93
-bool BLTouch::triggered() {
94
-  return (
95
-    #if ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN)
96
-      READ(Z_MIN_PIN) != Z_MIN_ENDSTOP_INVERTING
97
-    #else
98
-      READ(Z_MIN_PROBE_PIN) != Z_MIN_PROBE_ENDSTOP_INVERTING
99
-    #endif
100
-  );
101
-}
94
+bool BLTouch::triggered() { return PROBE_TRIGGERED(); }
102 95
 
103 96
 bool BLTouch::deploy_proc() {
104 97
   // Do a DEPLOY

+ 5
- 3
Marlin/src/gcode/calibrate/G425.cpp View File

@@ -143,14 +143,16 @@ inline void park_above_object(measurements_t &m, const float uncertainty) {
143 143
 
144 144
 #endif
145 145
 
146
+#if !PIN_EXISTS(CALIBRATION)
147
+  #include "../../module/probe.h"
148
+#endif
149
+
146 150
 inline bool read_calibration_pin() {
147 151
   return (
148 152
     #if PIN_EXISTS(CALIBRATION)
149 153
       READ(CALIBRATION_PIN) != CALIBRATION_PIN_INVERTING
150
-    #elif HAS_CUSTOM_PROBE_PIN
151
-      READ(Z_MIN_PROBE_PIN) != Z_MIN_PROBE_ENDSTOP_INVERTING
152 154
     #else
153
-      READ(Z_MIN_PIN) != Z_MIN_ENDSTOP_INVERTING
155
+      PROBE_TRIGGERED()
154 156
     #endif
155 157
   );
156 158
 }

+ 3
- 1
Marlin/src/inc/SanityCheck.h View File

@@ -357,6 +357,8 @@
357 357
   #error "LEVEL_CORNERS_INSET is now LEVEL_CORNERS_INSET_LFRB."
358 358
 #elif ENABLED(LEVEL_BED_CORNERS) && !defined(LEVEL_CORNERS_INSET_LFRB)
359 359
   #error "LEVEL_BED_CORNERS requires LEVEL_CORNERS_INSET_LFRB values."
360
+#elif BOTH(LEVEL_CORNERS_USE_PROBE, SENSORLESS_PROBING)
361
+  #error "LEVEL_CORNERS_USE_PROBE is incompatible with SENSORLESS_PROBING."
360 362
 #elif defined(BEZIER_JERK_CONTROL)
361 363
   #error "BEZIER_JERK_CONTROL is now S_CURVE_ACCELERATION."
362 364
 #elif HAS_JUNCTION_DEVIATION && defined(JUNCTION_DEVIATION_FACTOR)
@@ -1603,7 +1605,7 @@ static_assert(hbm[Z_AXIS] >= 0, "HOMING_BUMP_MM.Z must be greater than or equal
1603 1605
  * Allen Key
1604 1606
  * Deploying the Allen Key probe uses big moves in z direction. Too dangerous for an unhomed z-axis.
1605 1607
  */
1606
-#if ENABLED(Z_PROBE_ALLEN_KEY) && (Z_HOME_DIR < 0) && ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN)
1608
+#if BOTH(Z_PROBE_ALLEN_KEY, Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN) && (Z_HOME_DIR < 0)
1607 1609
   #error "You can't home to a Z min endstop with a Z_PROBE_ALLEN_KEY."
1608 1610
 #endif
1609 1611
 

+ 3
- 0
Marlin/src/lcd/language/language_en.h View File

@@ -125,6 +125,8 @@ namespace Language_en {
125 125
   PROGMEM Language_Str MSG_BED_LEVELING                    = _UxGT("Bed Leveling");
126 126
   PROGMEM Language_Str MSG_LEVEL_BED                       = _UxGT("Level Bed");
127 127
   PROGMEM Language_Str MSG_LEVEL_CORNERS                   = _UxGT("Level Corners");
128
+  PROGMEM Language_Str MSG_LEVEL_CORNERS_RAISE             = _UxGT("Raise Bed Until Probe Triggered");
129
+  PROGMEM Language_Str MSG_LEVEL_CORNERS_IN_RANGE          = _UxGT("All Corners Within Tolerance. Level Bed");
128 130
   PROGMEM Language_Str MSG_NEXT_CORNER                     = _UxGT("Next Corner");
129 131
   PROGMEM Language_Str MSG_MESH_EDITOR                     = _UxGT("Mesh Editor");
130 132
   PROGMEM Language_Str MSG_EDIT_MESH                       = _UxGT("Edit Mesh");
@@ -379,6 +381,7 @@ namespace Language_en {
379 381
   PROGMEM Language_Str MSG_BUTTON_DONE                     = _UxGT("Done");
380 382
   PROGMEM Language_Str MSG_BUTTON_BACK                     = _UxGT("Back");
381 383
   PROGMEM Language_Str MSG_BUTTON_PROCEED                  = _UxGT("Proceed");
384
+  PROGMEM Language_Str MSG_BUTTON_SKIP                     = _UxGT("Skip");
382 385
   PROGMEM Language_Str MSG_PAUSING                         = _UxGT("Pausing...");
383 386
   PROGMEM Language_Str MSG_PAUSE_PRINT                     = _UxGT("Pause Print");
384 387
   PROGMEM Language_Str MSG_RESUME_PRINT                    = _UxGT("Resume Print");

+ 173
- 32
Marlin/src/lcd/menu/menu_bed_corners.cpp View File

@@ -44,53 +44,187 @@
44 44
   #define LEVEL_CORNERS_HEIGHT 0.0
45 45
 #endif
46 46
 
47
+#if ENABLED(LEVEL_CORNERS_USE_PROBE)
48
+  #include "../../module/probe.h"
49
+  #include "../../module/endstops.h"
50
+  #if ENABLED(BLTOUCH)
51
+    #include "../../feature/bltouch.h"
52
+  #endif
53
+  #ifndef LEVEL_CORNERS_PROBE_TOLERANCE
54
+    #define LEVEL_CORNERS_PROBE_TOLERANCE 0.1
55
+  #endif
56
+  #if ENABLED(LEVEL_CORNERS_AUDIO_FEEDBACK)
57
+    #include "../../libs/buzzer.h"
58
+    #define PROBE_BUZZ() BUZZ(200, 600)
59
+  #else
60
+    #define PROBE_BUZZ() NOOP
61
+  #endif
62
+  static float last_z;
63
+  static bool corner_probing_done;
64
+  static bool verify_corner;
65
+  static int good_points;
66
+#endif
67
+
47 68
 static_assert(LEVEL_CORNERS_Z_HOP >= 0, "LEVEL_CORNERS_Z_HOP must be >= 0. Please update your configuration.");
48 69
 
70
+extern const char G28_STR[];
71
+
49 72
 #if HAS_LEVELING
50 73
   static bool leveling_was_active = false;
51 74
 #endif
52 75
 
76
+static int8_t bed_corner;
77
+
53 78
 /**
54 79
  * Level corners, starting in the front-left corner.
55 80
  */
56
-static int8_t bed_corner;
57
-static inline void _lcd_goto_next_corner() {
58
-  constexpr float lfrb[4] = LEVEL_CORNERS_INSET_LFRB;
59
-  constexpr xy_pos_t lf { (X_MIN_BED) + lfrb[0], (Y_MIN_BED) + lfrb[1] },
60
-                     rb { (X_MAX_BED) - lfrb[2], (Y_MAX_BED) - lfrb[3] };
61
-  line_to_z(LEVEL_CORNERS_Z_HOP);
62
-  switch (bed_corner) {
63
-    case 0: current_position   = lf;   break; // copy xy
64
-    case 1: current_position.x = rb.x; break;
65
-    case 2: current_position.y = rb.y; break;
66
-    case 3: current_position.x = lf.x; break;
67
-    #if ENABLED(LEVEL_CENTER_TOO)
68
-      case 4: current_position.set(X_CENTER, Y_CENTER); break;
81
+#if ENABLED(LEVEL_CORNERS_USE_PROBE)
82
+
83
+  static inline void _lcd_level_bed_corners_probing() {
84
+    ui.goto_screen([]{ MenuItem_static::draw((LCD_HEIGHT - 1) / 2, GET_TEXT(MSG_PROBING_MESH)); });
85
+
86
+    float lfrb[4] = LEVEL_CORNERS_INSET_LFRB;
87
+    xy_pos_t lf { (X_MIN_BED) + lfrb[0] - probe.offset_xy.x , (Y_MIN_BED) + lfrb[1] - probe.offset_xy.y },
88
+             rb { (X_MAX_BED) - lfrb[2] - probe.offset_xy.x , (Y_MAX_BED) - lfrb[3] - probe.offset_xy.y };
89
+
90
+    do_blocking_move_to_z(LEVEL_CORNERS_Z_HOP - probe.offset.z);
91
+
92
+    switch (bed_corner) {
93
+      case 0: current_position   = lf;   break; // copy xy
94
+      case 1: current_position.x = rb.x; break;
95
+      case 2: current_position.y = rb.y; break;
96
+      case 3: current_position.x = lf.x; break;
97
+      #if ENABLED(LEVEL_CENTER_TOO)
98
+        case 4: current_position.set(X_CENTER - probe.offset_xy.x, Y_CENTER - probe.offset_xy.y); good_points--; break;
99
+      #endif
100
+    }
101
+
102
+    do_blocking_move_to_xy(current_position);
103
+
104
+    #if ENABLED(BLTOUCH) && DISABLED(BLTOUCH_HS_MODE)
105
+      bltouch.deploy(); // DEPLOY in LOW SPEED MODE on every probe action
69 106
     #endif
107
+    TERN_(QUIET_PROBING, probe.set_probing_paused(true));
108
+
109
+    // Move down until the probe is triggered
110
+    do_blocking_move_to_z(last_z - (LEVEL_CORNERS_PROBE_TOLERANCE), manual_feedrate_mm_s.z);
111
+
112
+    // Check to see if the probe was triggered
113
+    bool probe_triggered = TEST(endstops.trigger_state(), TERN(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN, Z_MIN, Z_MIN_PROBE));
114
+    if (!probe_triggered) {
115
+
116
+      static bool wait_for_probe;
117
+
118
+      ui.goto_screen([]{
119
+        MenuItem_confirm::select_screen(
120
+          GET_TEXT(MSG_BUTTON_DONE), GET_TEXT(MSG_BUTTON_SKIP)
121
+          , []{ corner_probing_done = true;
122
+                wait_for_probe = false;
123
+                TERN_(HAS_LEVELING, set_bed_leveling_enabled(leveling_was_active));
124
+                ui.goto_previous_screen_no_defer();
125
+            }
126
+          , []{ wait_for_probe = false; }
127
+          , GET_TEXT(MSG_LEVEL_CORNERS_RAISE)
128
+          , (const char*)nullptr, PSTR("")
129
+        );
130
+      });
131
+      ui.set_selection(true);
132
+
133
+      wait_for_probe = true;
134
+      while (wait_for_probe && !probe_triggered) {
135
+        probe_triggered = PROBE_TRIGGERED();
136
+        if (probe_triggered) PROBE_BUZZ();
137
+        idle();
138
+      }
139
+      wait_for_probe = false;
140
+
141
+      TERN_(LEVEL_CORNERS_VERIFY_RAISED, verify_corner = true);
142
+    }
143
+
144
+    TERN_(QUIET_PROBING, probe.set_probing_paused(false));
145
+
146
+    #if ENABLED(BLTOUCH) && DISABLED(BLTOUCH_HS_MODE)
147
+      bltouch.stow();
148
+    #endif
149
+
150
+    if (probe_triggered) {
151
+      endstops.hit_on_purpose();
152
+      if (!WITHIN(current_position.z, last_z - (LEVEL_CORNERS_PROBE_TOLERANCE), last_z + (LEVEL_CORNERS_PROBE_TOLERANCE))) {
153
+        last_z = current_position.z;
154
+        good_points = 0;
155
+      }
156
+      if (!verify_corner) good_points++;
157
+    }
158
+
159
+    if (!corner_probing_done) {
160
+      if (!verify_corner) bed_corner++;
161
+      if (bed_corner > 3) bed_corner = 0;
162
+      verify_corner = false;
163
+      if (good_points < 4)
164
+        _lcd_level_bed_corners_probing();
165
+      else {
166
+        ui.goto_screen([]{
167
+          MenuItem_confirm::confirm_screen(
168
+            []{ ui.goto_previous_screen_no_defer();
169
+                queue.inject_P(TERN(HAS_LEVELING, PSTR("G28\nG29"), G28_STR));
170
+              }
171
+            , []{ ui.goto_previous_screen_no_defer(); }
172
+            , GET_TEXT(MSG_LEVEL_CORNERS_IN_RANGE)
173
+            , (const char*)nullptr, PSTR("?")
174
+          );
175
+        });
176
+        ui.set_selection(true);
177
+      }
178
+    }
70 179
   }
71
-  line_to_current_position(manual_feedrate_mm_s.x);
72
-  line_to_z(LEVEL_CORNERS_HEIGHT);
73
-  if (++bed_corner > 3 + ENABLED(LEVEL_CENTER_TOO)) bed_corner = 0;
74
-}
180
+
181
+#else
182
+
183
+  static inline void _lcd_goto_next_corner() {
184
+    constexpr float lfrb[4] = LEVEL_CORNERS_INSET_LFRB;
185
+    constexpr xy_pos_t lf { (X_MIN_BED) + lfrb[0], (Y_MIN_BED) + lfrb[1] },
186
+                       rb { (X_MAX_BED) - lfrb[2], (Y_MAX_BED) - lfrb[3] };
187
+    line_to_z(LEVEL_CORNERS_Z_HOP);
188
+    switch (bed_corner) {
189
+      case 0: current_position   = lf;   break; // copy xy
190
+      case 1: current_position.x = rb.x; break;
191
+      case 2: current_position.y = rb.y; break;
192
+      case 3: current_position.x = lf.x; break;
193
+      #if ENABLED(LEVEL_CENTER_TOO)
194
+        case 4: current_position.set(X_CENTER, Y_CENTER); break;
195
+      #endif
196
+    }
197
+    line_to_current_position(manual_feedrate_mm_s.x);
198
+    line_to_z(LEVEL_CORNERS_HEIGHT);
199
+    if (++bed_corner > 3 + ENABLED(LEVEL_CENTER_TOO)) bed_corner = 0;
200
+  }
201
+
202
+#endif
75 203
 
76 204
 static inline void _lcd_level_bed_corners_homing() {
77 205
   _lcd_draw_homing();
78 206
   if (all_axes_homed()) {
79
-    bed_corner = 0;
80
-    ui.goto_screen([]{
81
-      MenuItem_confirm::select_screen(
82
-          GET_TEXT(MSG_BUTTON_NEXT), GET_TEXT(MSG_BUTTON_DONE)
83
-        , _lcd_goto_next_corner
84
-        , []{
85
-            TERN_(HAS_LEVELING, set_bed_leveling_enabled(leveling_was_active));
86
-            ui.goto_previous_screen_no_defer();
87
-          }
88
-        , GET_TEXT(TERN(LEVEL_CENTER_TOO, MSG_LEVEL_BED_NEXT_POINT, MSG_NEXT_CORNER))
89
-        , (const char*)nullptr, PSTR("?")
90
-      );
91
-    });
92
-    ui.set_selection(true);
93
-    _lcd_goto_next_corner();
207
+    #if ENABLED(LEVEL_CORNERS_USE_PROBE)
208
+      TERN_(LEVEL_CENTER_TOO, bed_corner = 4);
209
+      endstops.enable_z_probe(true);
210
+      ui.goto_screen(_lcd_level_bed_corners_probing);
211
+    #else
212
+      bed_corner = 0;
213
+      ui.goto_screen([]{
214
+        MenuItem_confirm::select_screen(
215
+            GET_TEXT(MSG_BUTTON_NEXT), GET_TEXT(MSG_BUTTON_DONE)
216
+          , _lcd_goto_next_corner
217
+          , []{
218
+              TERN_(HAS_LEVELING, set_bed_leveling_enabled(leveling_was_active));
219
+              ui.goto_previous_screen_no_defer();
220
+            }
221
+          , GET_TEXT(TERN(LEVEL_CENTER_TOO, MSG_LEVEL_BED_NEXT_POINT, MSG_NEXT_CORNER))
222
+          , (const char*)nullptr, PSTR("?")
223
+        );
224
+      });
225
+      ui.set_selection(true);
226
+      _lcd_goto_next_corner();
227
+    #endif
94 228
   }
95 229
 }
96 230
 
@@ -107,6 +241,13 @@ void _lcd_level_bed_corners() {
107 241
     set_bed_leveling_enabled(false);
108 242
   #endif
109 243
 
244
+  #if ENABLED(LEVEL_CORNERS_USE_PROBE)
245
+    last_z = LEVEL_CORNERS_HEIGHT;
246
+    corner_probing_done = false;
247
+    verify_corner = false;
248
+    good_points = 0;
249
+  #endif
250
+
110 251
   ui.goto_screen(_lcd_level_bed_corners_homing);
111 252
 }
112 253
 

+ 5
- 1
Marlin/src/module/endstops.cpp View File

@@ -48,6 +48,10 @@
48 48
   #include "../feature/joystick.h"
49 49
 #endif
50 50
 
51
+#if HAS_BED_PROBE
52
+  #include "probe.h"
53
+#endif
54
+
51 55
 Endstops endstops;
52 56
 
53 57
 // private:
@@ -455,7 +459,7 @@ void _O2 Endstops::report_states() {
455 459
     ES_REPORT(Z4_MAX);
456 460
   #endif
457 461
   #if HAS_CUSTOM_PROBE_PIN
458
-    print_es_state(READ(Z_MIN_PROBE_PIN) != Z_MIN_PROBE_ENDSTOP_INVERTING, PSTR(STR_Z_PROBE));
462
+    print_es_state(PROBE_TRIGGERED(), PSTR(STR_Z_PROBE));
459 463
   #endif
460 464
   #if HAS_FILAMENT_SENSOR
461 465
     #if NUM_RUNOUT_SENSORS == 1

+ 3
- 17
Marlin/src/module/probe.cpp View File

@@ -270,13 +270,7 @@ FORCE_INLINE void probe_specific_action(const bool deploy) {
270 270
   #if ENABLED(PAUSE_BEFORE_DEPLOY_STOW)
271 271
     do {
272 272
       #if ENABLED(PAUSE_PROBE_DEPLOY_WHEN_TRIGGERED)
273
-        if (deploy == (
274
-          #if HAS_CUSTOM_PROBE_PIN
275
-            READ(Z_MIN_PROBE_PIN) == Z_MIN_PROBE_ENDSTOP_INVERTING
276
-          #else
277
-            READ(Z_MIN_PIN) == Z_MIN_ENDSTOP_INVERTING
278
-          #endif
279
-        )) break;
273
+        if (deploy == PROBE_TRIGGERED()) break;
280 274
       #endif
281 275
 
282 276
       BUZZ(100, 659);
@@ -375,23 +369,15 @@ bool Probe::set_deployed(const bool deploy) {
375 369
   const xy_pos_t old_xy = current_position;
376 370
 
377 371
   #if ENABLED(PROBE_TRIGGERED_WHEN_STOWED_TEST)
378
-    #if HAS_CUSTOM_PROBE_PIN
379
-      #define PROBE_STOWED() (READ(Z_MIN_PROBE_PIN) != Z_MIN_PROBE_ENDSTOP_INVERTING)
380
-    #else
381
-      #define PROBE_STOWED() (READ(Z_MIN_PIN) != Z_MIN_ENDSTOP_INVERTING)
382
-    #endif
383
-  #endif
384
-
385
-  #ifdef PROBE_STOWED
386 372
 
387 373
     // Only deploy/stow if needed
388
-    if (PROBE_STOWED() == deploy) {
374
+    if (PROBE_TRIGGERED() == deploy) {
389 375
       if (!deploy) endstops.enable_z_probe(false); // Switch off triggered when stowed probes early
390 376
                                                    // otherwise an Allen-Key probe can't be stowed.
391 377
       probe_specific_action(deploy);
392 378
     }
393 379
 
394
-    if (PROBE_STOWED() == deploy) {                // Unchanged after deploy/stow action?
380
+    if (PROBE_TRIGGERED() == deploy) {             // Unchanged after deploy/stow action?
395 381
       if (IsRunning()) {
396 382
         SERIAL_ERROR_MSG("Z-Probe failed");
397 383
         LCD_ALERTMESSAGEPGM_P(PSTR("Err: ZPROBE"));

+ 6
- 0
Marlin/src/module/probe.h View File

@@ -38,6 +38,12 @@
38 38
   };
39 39
 #endif
40 40
 
41
+#if HAS_CUSTOM_PROBE_PIN
42
+  #define PROBE_TRIGGERED() (READ(Z_MIN_PROBE_PIN) != Z_MIN_PROBE_ENDSTOP_INVERTING)
43
+#else
44
+  #define PROBE_TRIGGERED() (READ(Z_MIN_PIN) != Z_MIN_ENDSTOP_INVERTING)
45
+#endif
46
+
41 47
 class Probe {
42 48
 public:
43 49
 

+ 1
- 0
buildroot/tests/LPC1769-tests View File

@@ -19,6 +19,7 @@ opt_set TEMP_SENSOR_1 -1
19 19
 opt_set TEMP_SENSOR_BED 5
20 20
 opt_enable VIKI2 SDSUPPORT ADAPTIVE_FAN_SLOWING NO_FAN_SLOWING_IN_PID_TUNING \
21 21
            FIX_MOUNTED_PROBE AUTO_BED_LEVELING_BILINEAR G29_RETRY_AND_RECOVER Z_MIN_PROBE_REPEATABILITY_TEST DEBUG_LEVELING_FEATURE \
22
+           LEVEL_BED_CORNERS LEVEL_CORNERS_USE_PROBE LEVEL_CORNERS_VERIFY_RAISED \
22 23
            BABYSTEPPING BABYSTEP_XY BABYSTEP_ZPROBE_OFFSET BABYSTEP_ZPROBE_GFX_OVERLAY \
23 24
            PRINTCOUNTER NOZZLE_PARK_FEATURE NOZZLE_CLEAN_FEATURE SLOW_PWM_HEATERS PIDTEMPBED EEPROM_SETTINGS INCH_MODE_SUPPORT TEMPERATURE_UNITS_SUPPORT \
24 25
            Z_SAFE_HOMING ADVANCED_PAUSE_FEATURE PARK_HEAD_ON_PAUSE \

Loading…
Cancel
Save