One at a time error
-
Hi
can anyone solve this issue i'm having.
when printing more the one object in one at a time mode, I get "Error: Attempting to extrude with no tool selected" when the second object starts to print.
I think this is a T0/T1 issue going by posts with similar problems but the suggestions on there don't seem to be working or I've missed the fix.
normal printing is ok without any tool selection issuesprinter. ender 3 v2 with hemera single head
duet 3 mini 3 wifi+ fw 3.4.5 dwc 3.4.4 wifi 1.27
cura 5.2.1cura scripts are standard
current duet config file belowfile attempting to print. 1st model ends layer 60 which is line 10723
looser_chain x4.gcodethanks for your help
-
@jdandcoke You should change T1 to T0 in your config file:
; Tools M563 P0 S"hemera" D0 H1 F0 ; define tool 1 G10 P0 X0 Y0 Z0 ; set tool 1 axis offsets G10 P0 R0 S0 ; set initial tool 1 active and standby temperatures to 0C ; Custom settings M574 Z2 S1 P"io2.in" ;configure active-high endstop for high on z M204 P600 T2000 ;Set accelerations (mm/s^2) for print travel moves M912 P0 S-8 ;CPU temperature calibration M572 D0 S0 ;Pressure Advance M280 P0 S160 ;Clear any alarms M402 ;Retract pin just in case ; Miscellaneous M501 ; load saved parameters from non-volatile memory T0 ; select first tool
There is no T1 in your G-code job either.
-
@chrishamm if you are referring to the miscellaneous section. i have already tried that and running a simulation gave the same error. is i put it back to how it was before
-
@jdandcoke I am referring to the Tools section in the first place (P0 instead of P1).
-
@chrishamm that seemed to work running a simulation. I didn't know P defined the tool I thought T did.
Just ruining a real print now, so I'll soon know.
Thank you -
@jdandcoke P defines the tool number in M563 eg:
M563 P0 S"hemera" D0 H1 F0
T[number} selects the tool eg:
T0
Ian