Browse Source

Fix "M145" output in M503 report

Scott Lahteine 9 years ago
parent
commit
7253a1971d
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/configuration_store.cpp

+ 2
- 2
Marlin/configuration_store.cpp View File

@@ -730,12 +730,12 @@ void Config_PrintSettings(bool forReplay) {
730 730
       SERIAL_ECHOLNPGM("Material heatup parameters:");
731 731
       CONFIG_ECHO_START;
732 732
     }
733
-    SERIAL_ECHOPAIR("  M145 M0 H", (unsigned long)plaPreheatHotendTemp);
733
+    SERIAL_ECHOPAIR("  M145 S0 H", (unsigned long)plaPreheatHotendTemp);
734 734
     SERIAL_ECHOPAIR(" B", (unsigned long)plaPreheatHPBTemp);
735 735
     SERIAL_ECHOPAIR(" F", (unsigned long)plaPreheatFanSpeed);
736 736
     SERIAL_EOL;
737 737
     CONFIG_ECHO_START;
738
-    SERIAL_ECHOPAIR("  M145 M1 H", (unsigned long)absPreheatHotendTemp);
738
+    SERIAL_ECHOPAIR("  M145 S1 H", (unsigned long)absPreheatHotendTemp);
739 739
     SERIAL_ECHOPAIR(" B", (unsigned long)absPreheatHPBTemp);
740 740
     SERIAL_ECHOPAIR(" F", (unsigned long)absPreheatFanSpeed);
741 741
     SERIAL_EOL;

Loading…
Cancel
Save