mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-03-01 20:37:05 +00:00
Apply some PGM_P pointers
This commit is contained in:
parent
9bfabc1f13
commit
6d94bbf618
1 changed files with 2 additions and 2 deletions
|
@ -491,7 +491,7 @@ void GcodeSuite::G33() {
|
||||||
|
|
||||||
// Report settings
|
// Report settings
|
||||||
|
|
||||||
const char *checkingac = PSTR("Checking... AC"); // TODO: Make translatable string
|
PGM_P checkingac = PSTR("Checking... AC"); // TODO: Make translatable string
|
||||||
serialprintPGM(checkingac);
|
serialprintPGM(checkingac);
|
||||||
if (verbose_level == 0) SERIAL_PROTOCOLPGM(" (DRY-RUN)");
|
if (verbose_level == 0) SERIAL_PROTOCOLPGM(" (DRY-RUN)");
|
||||||
SERIAL_EOL();
|
SERIAL_EOL();
|
||||||
|
@ -673,7 +673,7 @@ void GcodeSuite::G33() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else { // dry run
|
else { // dry run
|
||||||
const char *enddryrun = PSTR("End DRY-RUN");
|
PGM_P enddryrun = PSTR("End DRY-RUN");
|
||||||
serialprintPGM(enddryrun);
|
serialprintPGM(enddryrun);
|
||||||
SERIAL_PROTOCOL_SP(35);
|
SERIAL_PROTOCOL_SP(35);
|
||||||
SERIAL_PROTOCOLPGM("std dev:");
|
SERIAL_PROTOCOLPGM("std dev:");
|
||||||
|
|
Loading…
Reference in a new issue