Browse Source

🩹 Fix G60/G61 debug code (#24231)

ellensp 2 years ago
parent
commit
49db4ef5e4
No account linked to committer's email address
1 changed files with 5 additions and 5 deletions
  1. 5
    5
      Marlin/src/gcode/feature/pause/G60.cpp

+ 5
- 5
Marlin/src/gcode/feature/pause/G60.cpp View File

@@ -50,14 +50,14 @@ void GcodeSuite::G60() {
50 50
   {
51 51
     const xyze_pos_t &pos = stored_position[slot];
52 52
     DEBUG_ECHOPGM(STR_SAVED_POS " S", slot, " :");
53
-    DEBUG_ECHOLNPAIR_F_P(
53
+    DEBUG_ECHOLNPGM_P(
54 54
       LIST_N(DOUBLE(NUM_AXES),
55
-        SP_Y_STR, pos.x, SP_Y_STR, pos.y, SP_Z_STR, pos.z,
56
-        SP_I_STR, pos.i, SP_J_STR, pos.j, SP_K_STR, pos.k,
57
-        SP_U_STR, pos.u, SP_V_STR, pos.v, SP_W_STR, pos.w
55
+        SP_X_LBL, pos.x, SP_Y_LBL, pos.y, SP_Z_LBL, pos.z,
56
+        SP_I_LBL, pos.i, SP_J_LBL, pos.j, SP_K_LBL, pos.k,
57
+        SP_U_LBL, pos.u, SP_V_LBL, pos.v, SP_W_LBL, pos.w
58 58
       )
59 59
       #if HAS_EXTRUDERS
60
-        , SP_E_STR, pos.e
60
+        , SP_E_LBL, pos.e
61 61
       #endif
62 62
     );
63 63
   }

Loading…
Cancel
Save