🩹 Fix G60/G61 debug code (#24231)
This commit is contained in:
parent
2461138661
commit
6523b92014
|
@ -48,10 +48,13 @@ void GcodeSuite::G60() {
|
||||||
|
|
||||||
#if ENABLED(SAVED_POSITIONS_DEBUG)
|
#if ENABLED(SAVED_POSITIONS_DEBUG)
|
||||||
{
|
{
|
||||||
DEBUG_ECHOPGM(STR_SAVED_POS " S", slot, " :");
|
|
||||||
const xyze_pos_t &pos = stored_position[slot];
|
const xyze_pos_t &pos = stored_position[slot];
|
||||||
|
DEBUG_ECHOPGM(STR_SAVED_POS " S", slot, " :");
|
||||||
DEBUG_ECHOLNPGM_P(
|
DEBUG_ECHOLNPGM_P(
|
||||||
LIST_N(DOUBLE(LINEAR_AXES), SP_X_STR, pos.x, SP_Y_STR, pos.y, SP_Z_STR, pos.z, SP_I_STR, pos.i, SP_J_STR, pos.j, SP_K_STR, pos.k)
|
LIST_N(DOUBLE(LINEAR_AXES),
|
||||||
|
SP_X_LBL, pos.x, SP_Y_LBL, pos.y, SP_Z_LBL, pos.z,
|
||||||
|
SP_I_LBL, pos.i, SP_J_LBL, pos.j, SP_K_LBL, pos.k
|
||||||
|
)
|
||||||
#if HAS_EXTRUDERS
|
#if HAS_EXTRUDERS
|
||||||
, SP_E_LBL, pos.e
|
, SP_E_LBL, pos.e
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue