mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-11-24 20:43:32 +00:00
Fix report_current_position
Thanks @RowanMeara!
This commit is contained in:
parent
c9f88297b8
commit
5926159890
@ -8463,7 +8463,7 @@ void report_current_position() {
|
|||||||
SERIAL_PROTOCOLPGM("X:");
|
SERIAL_PROTOCOLPGM("X:");
|
||||||
SERIAL_PROTOCOL(LOGICAL_X_POSITION(current_position[X_AXIS]));
|
SERIAL_PROTOCOL(LOGICAL_X_POSITION(current_position[X_AXIS]));
|
||||||
SERIAL_PROTOCOLPGM(" Y:");
|
SERIAL_PROTOCOLPGM(" Y:");
|
||||||
SERIAL_PROTOCOL(LOGICAL_X_POSITION(current_position[Y_AXIS]));
|
SERIAL_PROTOCOL(LOGICAL_Y_POSITION(current_position[Y_AXIS]));
|
||||||
SERIAL_PROTOCOLPGM(" Z:");
|
SERIAL_PROTOCOLPGM(" Z:");
|
||||||
SERIAL_PROTOCOL(LOGICAL_Z_POSITION(current_position[Z_AXIS]));
|
SERIAL_PROTOCOL(LOGICAL_Z_POSITION(current_position[Z_AXIS]));
|
||||||
SERIAL_PROTOCOLPGM(" E:");
|
SERIAL_PROTOCOLPGM(" E:");
|
||||||
|
Loading…
Reference in New Issue
Block a user