Explorar el Código

Fix M503 output for M145

Fixes #7978
Scott Lahteine hace 6 años
padre
commit
9cf5b96971
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      Marlin/configuration_store.cpp

+ 1
- 1
Marlin/configuration_store.cpp Ver fichero

@@ -1808,8 +1808,8 @@ void MarlinSettings::reset() {
1808 1808
         CONFIG_ECHO_START;
1809 1809
         SERIAL_ECHOLNPGM("Material heatup parameters:");
1810 1810
       }
1811
-      CONFIG_ECHO_START;
1812 1811
       for (uint8_t i = 0; i < COUNT(lcd_preheat_hotend_temp); i++) {
1812
+        CONFIG_ECHO_START;
1813 1813
         SERIAL_ECHOPAIR("  M145 S", (int)i);
1814 1814
         SERIAL_ECHOPAIR(" H", TEMP_UNIT(lcd_preheat_hotend_temp[i]));
1815 1815
         SERIAL_ECHOPAIR(" B", TEMP_UNIT(lcd_preheat_bed_temp[i]));

Loading…
Cancelar
Guardar