소스 검색

Fix formatting of extrapolate debug output

Scott Lahteine 8 년 전
부모
커밋
9a6c66602f
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2
    1
      Marlin/Marlin_main.cpp

+ 2
- 1
Marlin/Marlin_main.cpp 파일 보기

@@ -2267,7 +2267,7 @@ static void clean_up_after_endstop_or_probe_move() {
2267 2267
         if (y < 10) SERIAL_CHAR(' ');
2268 2268
         SERIAL_ECHO((int)y);
2269 2269
         SERIAL_CHAR(ydir ? (ydir > 0 ? '+' : '-') : ' ');
2270
-        SERIAL_ECHOLN(']');
2270
+        SERIAL_CHAR(']');
2271 2271
       }
2272 2272
     #endif
2273 2273
     if (bed_level_grid[x][y] < 999.0) {
@@ -2276,6 +2276,7 @@ static void clean_up_after_endstop_or_probe_move() {
2276 2276
       #endif
2277 2277
       return;  // Don't overwrite good values.
2278 2278
     }
2279
+    SERIAL_EOL;
2279 2280
 
2280 2281
     // Get X neighbors, Y neighbors, and XY neighbors
2281 2282
     float a1 = bed_level_grid[x + xdir][y], a2 = bed_level_grid[x + xdir * 2][y],

Loading…
취소
저장