mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-03-13 01:40:09 +00:00
🚸 Fix G33 display precision (3 digits) (#27186)
This commit is contained in:
parent
2b9a62093a
commit
b7c07f1329
1 changed files with 1 additions and 1 deletions
|
@ -634,7 +634,7 @@ void GcodeSuite::G33() {
|
|||
}
|
||||
SERIAL_EOL();
|
||||
|
||||
MString<20> msg(F("Calibration sd:"));
|
||||
MString<21> msg(F("Calibration sd:"));
|
||||
if (zero_std_dev_min < 1)
|
||||
msg.appendf(F("0.%03i"), (int)LROUND(zero_std_dev_min * 1000.0f));
|
||||
else
|
||||
|
|
Loading…
Add table
Reference in a new issue