소스 검색

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…
취소
저장