Skip to content

Commit

Permalink
🩹 Fix G33 output (#26299)
Browse files Browse the repository at this point in the history
Co-authored-by: Scott Lahteine <[email protected]>
  • Loading branch information
0r31 and thinkyhead authored Oct 7, 2023
1 parent 014609a commit 4cab751
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Marlin/src/gcode/calibrate/G33.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -459,9 +459,8 @@ void GcodeSuite::G33() {
SERIAL_ECHOLNPGM("G33 Auto Calibrate");

// Report settings
PGM_P const checkingac = PSTR("Checking... AC");
SERIAL_ECHOPGM_P(checkingac);
SERIAL_ECHOPGM(" at radius:", dcr);
FSTR_P const checkingac = F("Checking... AC");
SERIAL_ECHO(checkingac, F(" at radius:"), dcr);
if (verbose_level == 0) SERIAL_ECHOPGM(" (DRY-RUN)");
SERIAL_EOL();
ui.set_status(checkingac);
Expand Down

0 comments on commit 4cab751

Please sign in to comment.