How to save Linear Advance M572?
-
I have set the M572 to the desired result by sending gcode commands while printing.
Does it mean that the last M572 I sent is now saved in the firmware or do I have to save it to EEPROM somehow?
Also, how can I echo this command to see what is set in the system?
-
@roig12 you can just run bare M572 in the console.
RepRapFirmware does not have an EEPROM like Marlin.
You can either add an M501 at the end of config.g and add your M572 into config-override.g, or just put it directly into config.g somewhere near the end of the file.
-
@oliof Thanks alot!