Parcourir la source

Warn on cold extrusion, dont error

InsanityAutomation il y a 6 ans
Parent
révision
f4d1f13358
2 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. 2
    2
      Marlin/src/feature/pause.cpp
  2. 1
    1
      Marlin/src/module/tool_change.cpp

+ 2
- 2
Marlin/src/feature/pause.cpp Voir le fichier

93
 
93
 
94
   #if ENABLED(PREVENT_COLD_EXTRUSION)
94
   #if ENABLED(PREVENT_COLD_EXTRUSION)
95
     if (!DEBUGGING(DRYRUN) && thermalManager.targetTooColdToExtrude(active_extruder)) {
95
     if (!DEBUGGING(DRYRUN) && thermalManager.targetTooColdToExtrude(active_extruder)) {
96
-      SERIAL_ERROR_MSG(MSG_ERR_HOTEND_TOO_COLD);
96
+      SERIAL_ECHO_MSG(MSG_ERR_HOTEND_TOO_COLD);
97
       return false;
97
       return false;
98
     }
98
     }
99
   #endif
99
   #endif
334
   #endif
334
   #endif
335
 
335
 
336
   if (!DEBUGGING(DRYRUN) && unload_length && thermalManager.targetTooColdToExtrude(active_extruder)) {
336
   if (!DEBUGGING(DRYRUN) && unload_length && thermalManager.targetTooColdToExtrude(active_extruder)) {
337
-    SERIAL_ERROR_MSG(MSG_ERR_HOTEND_TOO_COLD);
337
+    SERIAL_ECHO_MSG(MSG_ERR_HOTEND_TOO_COLD);
338
 
338
 
339
     #if HAS_LCD_MENU
339
     #if HAS_LCD_MENU
340
       if (show_lcd) { // Show status screen
340
       if (show_lcd) { // Show status screen

+ 1
- 1
Marlin/src/module/tool_change.cpp Voir le fichier

553
       #endif
553
       #endif
554
       if (should_swap) {
554
       if (should_swap) {
555
         if (too_cold) {
555
         if (too_cold) {
556
-          SERIAL_ERROR_MSG(MSG_ERR_HOTEND_TOO_COLD);
556
+          SERIAL_ECHO_MSG(MSG_ERR_HOTEND_TOO_COLD);
557
           #if ENABLED(SINGLENOZZLE)
557
           #if ENABLED(SINGLENOZZLE)
558
             active_extruder = tmp_extruder;
558
             active_extruder = tmp_extruder;
559
             return;
559
             return;

Chargement…
Annuler
Enregistrer