Browse Source

Fix spacing of debug output in homeaxis

Scott Lahteine 8 years ago
parent
commit
6eaf4f4909
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/Marlin_main.cpp

+ 2
- 2
Marlin/Marlin_main.cpp View File

2467
   do_homing_move(axis, 1.5 * max_length(axis) * axis_home_dir);
2467
   do_homing_move(axis, 1.5 * max_length(axis) * axis_home_dir);
2468
 
2468
 
2469
   #if ENABLED(DEBUG_LEVELING_FEATURE)
2469
   #if ENABLED(DEBUG_LEVELING_FEATURE)
2470
-    if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPAIR("> 1st Home", current_position[axis]);
2470
+    if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPAIR("> 1st Home ", current_position[axis]);
2471
   #endif
2471
   #endif
2472
 
2472
 
2473
   // Move away from the endstop by the axis HOME_BUMP_MM
2473
   // Move away from the endstop by the axis HOME_BUMP_MM
2477
   do_homing_move(axis, 2 * home_bump_mm(axis) * axis_home_dir, get_homing_bump_feedrate(axis));
2477
   do_homing_move(axis, 2 * home_bump_mm(axis) * axis_home_dir, get_homing_bump_feedrate(axis));
2478
 
2478
 
2479
   #if ENABLED(DEBUG_LEVELING_FEATURE)
2479
   #if ENABLED(DEBUG_LEVELING_FEATURE)
2480
-    if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPAIR("> 2nd Home", current_position[axis]);
2480
+    if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPAIR("> 2nd Home ", current_position[axis]);
2481
   #endif
2481
   #endif
2482
 
2482
 
2483
   #if ENABLED(Z_DUAL_ENDSTOPS)
2483
   #if ENABLED(Z_DUAL_ENDSTOPS)

Loading…
Cancel
Save