浏览代码

🩹 Fix G33 Delta Sensorless Probing compile (#24291)

lujios 3 年前
父节点
当前提交
3b142e531c
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      Marlin/src/gcode/calibrate/G33.cpp

+ 1
- 1
Marlin/src/gcode/calibrate/G33.cpp 查看文件

@@ -437,7 +437,7 @@ void GcodeSuite::G33() {
437 437
   const bool stow_after_each = parser.seen_test('E');
438 438
 
439 439
   #if HAS_DELTA_SENSORLESS_PROBING
440
-    probe.test_sensitivity.set(!parser.seen_test('X'), !parser.seen_test('Y'), !parser.seen_test('Z'));
440
+    probe.test_sensitivity = { !parser.seen_test('X'), !parser.seen_test('Y'), !parser.seen_test('Z') };
441 441
     const bool do_save_offset_adj = parser.seen_test('S');
442 442
   #endif
443 443
 

正在加载...
取消
保存