Explorar el Código

Merge pull request #5948 from thinkyhead/rc_fix_status_printf

Fix "Heating..." message
Scott Lahteine hace 7 años
padre
commit
21fb347eee
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2
    2
      Marlin/Marlin_main.cpp

+ 2
- 2
Marlin/Marlin_main.cpp Ver fichero

5308
       }
5308
       }
5309
     #endif
5309
     #endif
5310
 
5310
 
5311
-    if (code_value_temp_abs() > thermalManager.degHotend(target_extruder)) status_printf(0, "E%i %s", target_extruder + 1, PSTR(MSG_HEATING));
5311
+    if (code_value_temp_abs() > thermalManager.degHotend(target_extruder)) status_printf(0, PSTR("E%i %s"), target_extruder + 1, MSG_HEATING);
5312
   }
5312
   }
5313
 
5313
 
5314
   #if ENABLED(AUTOTEMP)
5314
   #if ENABLED(AUTOTEMP)
5506
       else print_job_timer.start();
5506
       else print_job_timer.start();
5507
     #endif
5507
     #endif
5508
 
5508
 
5509
-    if (thermalManager.isHeatingHotend(target_extruder)) status_printf(0, "E%i %s", target_extruder + 1, PSTR(MSG_HEATING));
5509
+    if (thermalManager.isHeatingHotend(target_extruder)) status_printf(0, PSTR("E%i %s"), target_extruder + 1, MSG_HEATING);
5510
   }
5510
   }
5511
 
5511
 
5512
   #if ENABLED(AUTOTEMP)
5512
   #if ENABLED(AUTOTEMP)

Loading…
Cancelar
Guardar