Trouble setting up Resume after power failure
-
I have been trying to get the resume after power failure to work. I have followed the setup at https://duet3d.dozuki.com/Wiki/Setting_up_to_resume_a_print_after_a_power_failure.
Im using a standard endstop for the Zmax and an IR probe at the Zmin. When I run a print it homes then goes to zmax and states that it has finished one layer, raises to 200mm then back to zmax and states it has done another layer. Im not sure what to do from here, any help will be appreciated.
Config
; Configuration file for Duet WiFi (firmware version 1.20 or newer)
; executed by the firmware on start-up
;
; generated by RepRapFirmware Configuration Tool on Tue Mar 27 2018 01:16:55 GMT-0500 (Central Daylight Time); General preferences
G90 ; Send absolute coordinates…
M83 ; ...but relative extruder movesM667 S1 ; Select CoreXY mode
; Network
M550 P**** ; Set machine name
M552 S1 ; Enable network
;*** Access point is configured manually via M587
M586 P0 S1 ; Enable HTTP
M586 P1 S0 ; Disable FTP
M586 P2 S0 ; Disable Telnet; Drives
M569 P0 S0 ; Drive 0 goes backwards
M569 P1 S0 ; Drive 1 goes backwards
M569 P2 S0 ; Drive 2 goes backwards
M569 P3 S1 ; Drive 3 goes forwards
M350 X16 Y16 Z16 E16 I1 ; Configure microstepping with interpolation
M92 X80 Y80 Z400 E814 ; Set steps per mm
M566 X900 Y900 Z12 E120 ; Set maximum instantaneous speed changes (mm/min)
M203 X6000 Y6000 Z180 E1200 ; Set maximum speeds (mm/min)
M201 X500 Y500 Z250 E250 ; Set accelerations (mm/s^2)
M906 X800 Y800 Z800 E800 I30 ; Set motor currents (mA) and motor idle factor in per cent
M84 S30 ; Set idle timeout; Axis Limits
M208 X0 Y0 Z0 S1 ; Set axis minima
M208 X300 Y300 S0 ; Set axis maxima
M208 Z491.3 S1; Endstops
M574 X1 Y1 S1 ; Set active high endstops
M574 Z2 S1; Z-Probe
M574 Z1 S1 ; Set endstops controlled by probe
M558 P1 H5 F120 T6000 ; Set Z probe type to unmodulated and the dive height + speeds
G31 P500 X0 Y0 Z1.8 ; Set Z probe trigger value, offset and trigger height
M557 X25:275 Y25:275 S65 ; Define mesh grid; Heaters
M301 H0 S1.00 P10 I0.1 D200 T0.4 W180 B30 ; Use PID on bed heater (may require further tuning)
M305 P0 T100000 B3974 C0 R4700 ; Set thermistor + ADC parameters for heater 0
M143 H0 S120 ; Set temperature limit for heater 0 to 120C
M305 P1 T100000 B4725 C7.060000e-8 R4700 ; Set thermistor + ADC parameters for heater 1
M143 H1 S280 ; Set temperature limit for heater 1 to 280C; Fans
M106 P0 S0.3 I0 F500 H-1 ; Set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned off
M106 P1 S1 I0 F500 H1 T45 ; Set fan 1 value, PWM signal inversion and frequency. Thermostatic control is turned on
M106 P2 S1 I0 F500 H1 T45 ; Set fan 2 value, PWM signal inversion and frequency. Thermostatic control is turned on; Tools
M563 P0 D0 H1 ; Define tool 0
G10 P0 X0 Y0 Z0 ; Set tool 0 axis offsets
G10 P0 R0 S0 ; Set initial tool 0 active and standby temperatures to 0CM911 S21.0 R23.0 P"M913 X0 Y0 M83 G1 Z3 E-5 F1000" ; Automatic saving after power loss is enabled
; Custom settings are not configured
Home Z
; generated by RepRapFirmware Configuration Tool on Tue Mar 27 2018 01:16:55 GMT-0500 (Central Daylight Time)
G91 ; relative positioning
G1 Z5 F6000 S2 ; lift Z relative to current position
G90 ; absolute positioning
G1 X25 Y25 F6000 ; go to first probe point
G30 ; home Z by probing the bed; Uncomment the following lines to lift Z after probing
;G91 ; relative positioning
;G1 Z5 F100 S2 ; lift Z relative to current position
;G90 ; absolute positioningresurrect-prologue.g
M116 ; wait for temperatures
G28 X0 Y0 ; Home X and Y to min
G1 S1 Z500
M83 ; Relative Extrusion
G1 E4 F3600 ; Undo the retraction that was done in the M911 Power Fail Script -
1. To be clear: the problem occurs when you run a normal print? Or did you mean it occurs when you resurrect a print?
2. Was the printer working before you added the M911 line? If so, does it work again if you comment out the M911 line? If so, at the end of a print if you run M122, what values are shown for the minimum and maximum VIN voltage?
3. The M911 line is not quite right, it should be:
M911 S21.0 R23.0 P"M913 X0 Y0 M83 G91 G1 Z3 E-5 F1000" ; Automatic saving after power loss is enabled
because you want the axes to be in relative mode when you execute the G1 Z3.
4. In your resurrect-prologue.g file you need to home Z to Z max with something like this:
G1 S1 Z500 Fnnn
with a suitable F parameter for your machine. Then if you want, back off a few mm and home again at a slower speed.
-
It was happening with a normal print, Ill make these adjustments and give it a try.
Thank You!
-
I have tried your changes with the same result, I also commented out the M911 command and it did the same thing. THe only thing that is changing between the working config and the not working config is the endstop setup.
Working Config
; Axis Limits
M208 X0 Y0 Z0 S1 ; Set axis minima
M208 X300 Y300 Z500 S0 ; Set axis maxima; Endstops
M574 X1 Y1 S1 ; Set active high endstops; Z-Probe
M574 Z1 S2 ; Set endstops controlled by probe
M558 P1 H5 F120 T6000 ; Set Z probe type to unmodulated and the dive height + speeds
G31 P500 X0 Y0 Z1.8 ; Set Z probe trigger value, offset and trigger height
M557 X25:275 Y25:275 S65 ; Define mesh gridNot Working
; Axis Limits
M208 X0 Y0 Z0 S1 ; Set axis minima
M208 X300 Y300 S0 ; Set axis maxima
M208 Z491.3 S1; Endstops
M574 X1 Y1 S1 ; Set active high endstops
M574 Z2 S1; Z-Probe
M574 Z1 S1 ; Set endstops controlled by probe
M558 P1 H5 F120 T6000 ; Set Z probe type to unmodulated and the dive height + speeds
G31 P500 X0 Y0 Z1.8 ; Set Z probe trigger value, offset and trigger height
M557 X25:275 Y25:275 S65 ; Define mesh grid -
Why do you have the line M574 Z1 S1 in config.g if you are using a Z max endstop switch?
-
I used the reprap config and it was in there from that, ill remove it and test it again.
-
Removed the M574 code
; Configuration file for Duet WiFi (firmware version 1.20 or newer)
; executed by the firmware on start-up
;
; generated by RepRapFirmware Configuration Tool on Tue Mar 27 2018 01:16:55 GMT-0500 (Central Daylight Time); General preferences
G90 ; Send absolute coordinates…
M83 ; ...but relative extruder movesM667 S1 ; Select CoreXY mode
; Network
M550 P***** ; Set machine name
M552 S1 ; Enable network
;*** Access point is configured manually via M587
M586 P0 S1 ; Enable HTTP
M586 P1 S0 ; Disable FTP
M586 P2 S0 ; Disable Telnet; Drives
M569 P0 S0 ; Drive 0 goes backwards
M569 P1 S0 ; Drive 1 goes backwards
M569 P2 S0 ; Drive 2 goes backwards
M569 P3 S1 ; Drive 3 goes forwards
M350 X16 Y16 Z16 E16 I1 ; Configure microstepping with interpolation
M92 X80 Y80 Z400 E814 ; Set steps per mm
M566 X900 Y900 Z12 E120 ; Set maximum instantaneous speed changes (mm/min)
M203 X6000 Y6000 Z180 E1200 ; Set maximum speeds (mm/min)
M201 X500 Y500 Z250 E250 ; Set accelerations (mm/s^2)
M906 X800 Y800 Z800 E800 I30 ; Set motor currents (mA) and motor idle factor in per cent
M84 S30 ; Set idle timeout; Axis Limits
M208 X0 Y0 Z0 S1 ; Set axis minima
M208 X300 Y300 S0 ; Set axis maxima
M208 Z491.3 S1; Endstops
M574 X1 Y1 S1 ; Set active high endstops
M574 Z2 S1; Z-Probe
M558 P1 H5 F120 T6000 ; Set Z probe type to unmodulated and the dive height + speeds
G31 P500 X0 Y0 Z1.8 ; Set Z probe trigger value, offset and trigger height
M557 X25:275 Y25:275 S65 ; Define mesh grid; Heaters
M301 H0 S1.00 P10 I0.1 D200 T0.4 W180 B30 ; Use PID on bed heater (may require further tuning)
M305 P0 T100000 B3974 C0 R4700 ; Set thermistor + ADC parameters for heater 0
M143 H0 S120 ; Set temperature limit for heater 0 to 120C
M305 P1 T100000 B4725 C7.060000e-8 R4700 ; Set thermistor + ADC parameters for heater 1
M143 H1 S280 ; Set temperature limit for heater 1 to 280C; Fans
M106 P0 S0.3 I0 F500 H-1 ; Set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned off
M106 P1 S1 I0 F500 H1 T45 ; Set fan 1 value, PWM signal inversion and frequency. Thermostatic control is turned on
M106 P2 S1 I0 F500 H1 T45 ; Set fan 2 value, PWM signal inversion and frequency. Thermostatic control is turned on; Tools
M563 P0 D0 H1 ; Define tool 0
G10 P0 X0 Y0 Z0 ; Set tool 0 axis offsets
G10 P0 R0 S0 ; Set initial tool 0 active and standby temperatures to 0CM911 S21.0 R23.0 P"M913 X0 Y0 M83 G91 G1 Z3 E-5 F1000" ; Automatic saving after power loss is enabled
; Custom settings are not configured
The print begins, reaches temp, homes zxy to min and runs a four point bed probing. Then the printer lowers the bed to the max and once it reaches max begins to move up to 200mm and then goes back down to the max. It continues this cycle and counts each cycle as a layer. This Gcode has been ran successfully before implementing the M911 code and adding the Zmax endstop.
-
Your
M291M208 Z491.3 command should have S0 not S1 because it is setting the upper limit. -
M208?
Ill try out M208 Z491.3 S0