Sfoglia il codice sorgente

Fix M503 output for M145

Fixes #7978
Scott Lahteine 7 anni fa
parent
commit
63257dc083
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      Marlin/src/module/configuration_store.cpp

+ 1
- 1
Marlin/src/module/configuration_store.cpp Vedi File

@@ -1784,8 +1784,8 @@ void MarlinSettings::reset() {
1784 1784
         CONFIG_ECHO_START;
1785 1785
         SERIAL_ECHOLNPGM("Material heatup parameters:");
1786 1786
       }
1787
-      CONFIG_ECHO_START;
1788 1787
       for (uint8_t i = 0; i < COUNT(lcd_preheat_hotend_temp); i++) {
1788
+        CONFIG_ECHO_START;
1789 1789
         SERIAL_ECHOPAIR("  M145 S", (int)i);
1790 1790
         SERIAL_ECHOPAIR(" H", TEMP_UNIT(lcd_preheat_hotend_temp[i]));
1791 1791
         SERIAL_ECHOPAIR(" B", TEMP_UNIT(lcd_preheat_bed_temp[i]));

Loading…
Annulla
Salva