Skip to content

Commit

Permalink
🚸 Fix G33 display precision (3 digits) (#27186)
Browse files Browse the repository at this point in the history
  • Loading branch information
thisiskeithb authored Jul 9, 2024
1 parent 2b9a620 commit b7c07f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/gcode/calibrate/G33.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b7c07f1

Please sign in to comment.