Skip to content

Commit

Permalink
Wrap PGM string in F()
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Oct 7, 2023
1 parent e4bbbd0 commit 33bfc79
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 @@ -460,9 +460,8 @@ void GcodeSuite::G33() {
SERIAL_ECHOLNPGM("G33 Auto Calibrate");

// Report settings
SString<14> checkingac(F("Checking... AC"));
checkingac.echo();
SERIAL_ECHOPGM(" at radius:", dcr);
FSTR_P 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 33bfc79

Please sign in to comment.