Explorar el Código

Restore documented M503 behavior

Scott Lahteine hace 4 años
padre
commit
dd6efe96e7
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      Marlin/src/gcode/eeprom/M500-M504.cpp

+ 1
- 1
Marlin/src/gcode/eeprom/M500-M504.cpp Ver fichero

@@ -52,7 +52,7 @@ void GcodeSuite::M502() {
52 52
    * M503: print settings currently in memory
53 53
    */
54 54
   void GcodeSuite::M503() {
55
-    (void)settings.report(parser.boolval('S', true));
55
+    (void)settings.report(!parser.boolval('S', true));
56 56
   }
57 57
 
58 58
 #endif // !DISABLE_M503

Loading…
Cancelar
Guardar