in marlin 1.1.9 we have the option power_loss_recovery (http://marlinfw.org/docs/gcode/M413.html).
There are two versions:
- Software, which still does not work in 1.1.9 and has been delayed to stable 2.0.0, and saves only the last layer number to be able to continue after the power returns.
- hardware, which detects the voltage drop on pin 44, and stores the last available position on the SD card.
Code: Select all
// #define POWER_LOSS_RECOVERY
#if ENABLED (POWER_LOSS_RECOVERY)
// # define POWER_LOSS_PIN 44 // Pin to detect power loss
// # define POWER_LOSS_STATE HIGH // State of pin indicating power loss
#endif
So I was looking in the schema of my GT 2560 rev.A where I can find pin 44 ... but I can not find it.
Can anybody help me?
Here the video for arduino+ramp1.4
https://www.youtube.com/watch?v=7C92yt1lnzA
regards
MaX