Browse Source

Apply some PGM_P pointers

Scott Lahteine 6 years ago
parent
commit
6d94bbf618
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/src/gcode/calibrate/G33.cpp

+ 2
- 2
Marlin/src/gcode/calibrate/G33.cpp View File

491
 
491
 
492
   // Report settings
492
   // Report settings
493
 
493
 
494
-  const char *checkingac = PSTR("Checking... AC"); // TODO: Make translatable string
494
+  PGM_P checkingac = PSTR("Checking... AC"); // TODO: Make translatable string
495
   serialprintPGM(checkingac);
495
   serialprintPGM(checkingac);
496
   if (verbose_level == 0) SERIAL_PROTOCOLPGM(" (DRY-RUN)");
496
   if (verbose_level == 0) SERIAL_PROTOCOLPGM(" (DRY-RUN)");
497
   SERIAL_EOL();
497
   SERIAL_EOL();
673
       }
673
       }
674
     }
674
     }
675
     else {                                                       // dry run
675
     else {                                                       // dry run
676
-      const char *enddryrun = PSTR("End DRY-RUN");
676
+      PGM_P enddryrun = PSTR("End DRY-RUN");
677
       serialprintPGM(enddryrun);
677
       serialprintPGM(enddryrun);
678
       SERIAL_PROTOCOL_SP(35);
678
       SERIAL_PROTOCOL_SP(35);
679
       SERIAL_PROTOCOLPGM("std dev:");
679
       SERIAL_PROTOCOLPGM("std dev:");

Loading…
Cancel
Save