Welcome! Log In Create A New Profile

Advanced

POWER_LOSS_RECOVERY do not work properly

Posted by Burak 
POWER_LOSS_RECOVERY do not work properly
September 14, 2021 05:06PM
Hello,


I pause the print then turn off and wait a while and turn it on again however there is not resume print.
I defined POWER_LOSS_RECOVERY but it does not work and I am sure power loss recovery is enabled while printing

how can I fix it?


my printer is ender 3 pro with skr mini v2 and bltouch

Thanks,

Edited 1 time(s). Last edit at 09/14/2021 05:46PM by Burak.
Attachments:
open | download - Configuration.txt (108 KB)
open | download - Configuration_adv.txt (166.4 KB)
Re: POWER_LOSS_RECOVERY do not work properly
September 14, 2021 10:34PM
That controller has a POWER_LOSS_PIN on the motherboard.

ie In the pins files is this

//
// Power-loss Detection
//
#ifndef POWER_LOSS_PIN
#define POWER_LOSS_PIN PC12 // Power Loss Detection: PWR-DET
#endif


You need to change this in Configuration_adv.h from

//#define POWER_LOSS_PIN 44 // Pin to detect power loss. Set to -1 to disable default pin on boards without module.

to

#define POWER_LOSS_PIN -1 // Pin to detect power loss. Set to -1 to disable default pin on boards without module.


Presuming your not using power loss detection boards..
Re: POWER_LOSS_RECOVERY do not work properly
September 15, 2021 12:58PM
I updated line to this

#define POWER_LOSS_RECOVERY
#if ENABLED(POWER_LOSS_RECOVERY)
#define PLR_ENABLED_DEFAULT true // Power Loss Recovery enabled by default. (Set with 'M413 Sn' & M500)
//#define BACKUP_POWER_SUPPLY // Backup power / UPS to move the steppers on power loss
//#define POWER_LOSS_ZRAISE 2 // (mm) Z axis raise on resume (on power loss with UPS)
#define POWER_LOSS_PIN -1 // Pin to detect power loss. Set to -1 to disable default pin on boards without module.

and tested but still it does not work.

I do not have power loss detection board.
Sorry, only registered users may post in this forum.

Click here to login