瀏覽代碼

Make sure `leveled[]` is enabled for use

Scott Lahteine 7 年之前
父節點
當前提交
95590adf07
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2
    1
      Marlin/Marlin_main.cpp

+ 2
- 1
Marlin/Marlin_main.cpp 查看文件

@@ -8509,9 +8509,10 @@ void report_current_position() {
8509 8509
     SERIAL_PROTOCOLPGM("Raw:    ");
8510 8510
     report_xyz(current_position);
8511 8511
 
8512
+    float leveled[XYZ] = { current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS] };
8513
+
8512 8514
     #if PLANNER_LEVELING
8513 8515
       SERIAL_PROTOCOLPGM("Leveled:");
8514
-      float leveled[XYZ] = { current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS] };
8515 8516
       planner.apply_leveling(leveled);
8516 8517
       report_xyz(leveled);
8517 8518
 

Loading…
取消
儲存