3.5 rc1 SBC Pause.g not executing
-
Hi all,
pause.g is present but it's not running when I pause the print via the webinterface, the printhead just stops moving.M122: https://pastebin.com/ZXgpTmJX
pause.g:
echo "pausing..." G10.1 ; retract M98 P"CT_off.g" G91 ; use relative positioning G1 S2 Z10 F5000 ; lift Z 5mm G90 ; back to absolute positioning G1 X0 Y200 F50000 ; move out the way.
running M98 P"pause.g" runs just fine.
-
RepRapFirmware for Duet 3 MB6HC version 3.5.0-rc.1 (2023-08-31 16:19:24) running on Duet 3 MB6HC v1.01 (SBC mode)
Is it pause.g or Pause.g?
-
What happens when you run
M98 P"pause.g"
If there is a problem with your G10.1.g macro or the other macro being called, then it might be aborting pause.g
-
@OwenD Running
M98 P"pause.g"
works just fine, the whole macro executes, so the problem is not in G10.1 -
@Phaedrux it's "pause.g"
-
-
-
I found the issue:
I have another axis defined, which I don't use for normal printing.
If this axis is not homed then pause.g isn't executed.
Homing all axis solves my issue -