Skip to content

Commit 60cd1ec

Browse files
committed
🩹 Fix G33 output
See MarlinFirmware#26299
1 parent 09d0b4d commit 60cd1ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Marlin/src/gcode/calibrate/G33.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -464,8 +464,8 @@ void GcodeSuite::G33() {
464464
SERIAL_ECHOLNPGM("G33 Auto Calibrate");
465465

466466
// Report settings
467-
PGM_P const checkingac = PSTR("Checking... AC");
468-
SERIAL_ECHOPGM_P(checkingac);
467+
FSTR_P const checkingac = F("Checking... AC");
468+
SERIAL_ECHOF(checkingac);
469469
SERIAL_ECHOPGM(" at radius:", dcr);
470470
if (verbose_level == 0) SERIAL_ECHOPGM(" (DRY-RUN)");
471471
SERIAL_EOL();

0 commit comments

Comments
 (0)