浏览代码

Apply some PGM_P pointers

Scott Lahteine 6 年前
父节点
当前提交
6d94bbf618
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2
    2
      Marlin/src/gcode/calibrate/G33.cpp

+ 2
- 2
Marlin/src/gcode/calibrate/G33.cpp 查看文件

@@ -491,7 +491,7 @@ void GcodeSuite::G33() {
491 491
 
492 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 495
   serialprintPGM(checkingac);
496 496
   if (verbose_level == 0) SERIAL_PROTOCOLPGM(" (DRY-RUN)");
497 497
   SERIAL_EOL();
@@ -673,7 +673,7 @@ void GcodeSuite::G33() {
673 673
       }
674 674
     }
675 675
     else {                                                       // dry run
676
-      const char *enddryrun = PSTR("End DRY-RUN");
676
+      PGM_P enddryrun = PSTR("End DRY-RUN");
677 677
       serialprintPGM(enddryrun);
678 678
       SERIAL_PROTOCOL_SP(35);
679 679
       SERIAL_PROTOCOLPGM("std dev:");

正在加载...
取消
保存