Browse Source

Update printer name if M862.3 is called but not M862.2

Guðni Már Gilbert 2 years ago
parent
commit
46184a9447
1 changed files with 4 additions and 1 deletions
  1. 4 1
      Firmware/Marlin_main.cpp

+ 4 - 1
Firmware/Marlin_main.cpp

@@ -8129,7 +8129,10 @@ Sigma_Exit:
                     break;
                case ClPrintChecking::_Smodel:     // ~ .3
                     if(code_seen('P'))
-                         printer_smodel_check(strchr_pointer);
+                    {
+                        fSetMmuMode(MMU2::mmu2.Enabled());
+                        printer_smodel_check(strchr_pointer);
+                    }
                     else if(code_seen('Q'))
                          SERIAL_PROTOCOLLNRPGM(sPrinterName);
                     break;