mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-02-16 14:27:32 +00:00
🩹 Fix settings G21 report (#23338)
This commit is contained in:
parent
c80ef71c6b
commit
1b876c170f
1 changed files with 4 additions and 3 deletions
|
@ -3171,12 +3171,13 @@ void MarlinSettings::reset() {
|
||||||
// Announce current units, in case inches are being displayed
|
// Announce current units, in case inches are being displayed
|
||||||
//
|
//
|
||||||
CONFIG_ECHO_HEADING("Linear Units");
|
CONFIG_ECHO_HEADING("Linear Units");
|
||||||
|
CONFIG_ECHO_START();
|
||||||
#if ENABLED(INCH_MODE_SUPPORT)
|
#if ENABLED(INCH_MODE_SUPPORT)
|
||||||
SERIAL_ECHO_MSG(" G2", AS_DIGIT(parser.linear_unit_factor == 1.0), " ;");
|
SERIAL_ECHOPGM(" G2", AS_DIGIT(parser.linear_unit_factor == 1.0), " ;");
|
||||||
#else
|
#else
|
||||||
SERIAL_ECHO_MSG(" G21 ;");
|
SERIAL_ECHOPGM(" G21 ;");
|
||||||
#endif
|
#endif
|
||||||
gcode.say_units();
|
gcode.say_units(); // " (in/mm)"
|
||||||
|
|
||||||
//
|
//
|
||||||
// M149 Temperature units
|
// M149 Temperature units
|
||||||
|
|
Loading…
Reference in a new issue