🩹 Fix G60/G61 debug code (#24231)

This commit is contained in:
ellensp 2022-06-02 21:28:07 +12:00 committed by GitHub
parent 08c51a405a
commit 49db4ef5e4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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