1HCL position failure home position G-code
-
@OwenD
I'm not trying to be anything but 1)most importantly seeking answers to this issue 2)humbled by this experience ...as it is for me to be a little ignorant and learning from someone who obviously knows more about this than I do.
Maybe I do not know the correct responses to your questions which is why I have been asking for a step by step solution to this problem as if maybe everyone who is using MB3 6HC in conjuction with 1HCL boards might be experiencing. I don't know, I can only assume the people over at Duet3d have run into this issue @dc42.
I apologize if maybe I have offended anyone in this conversation. I hope that through your networks/groups a simple solution can be found so that in the future anyone with this issue can find a solution by simply looking and finding it here. -
@supertb1 said in 1HCL position failure home position G-code:
@OwenD
No what I am saying is that while the system is running a program a manual move from intended path returns the ""Error: attempting to extrude with no tool selected." fault on the PanelDue 7." and then the aforementioned behavior ensues. And no I usually do not preheat the tool, that is in the gcode of the slicer app and yes the overall behaviour of any kind of motor stall of the X-Y axis needs to be "Go to the pause location" IE home Z+5. That is the ultamate goalMost likely your pause.g file has a retraction command in it, such as
G1 E-5
. You can suppress that message by making the retraction conditonal:if state.currentTool >= 0 G1 E-5
Similarly for the reprime command in resume.g.
-
@OwenD
Hey I wanted to thank one of my friends who knows this system pretty well, he suggested that i kept it simple and only used one command to solve my problem that I have been working to solve and this is what he came up with.;driver-error.g echo "Driver error has occurred" echo param.S ; send error message to console ;M83 ; relative extruder moves ;G1 E-10 F3600 ; retract 10mm of filament ;G90 ; relative positioning ;G1 Z5 F360 ; lift Z by 5mm ;G1 X0 Y0 F6000 ; go to X=0 Y=0 M25
Thanks for your help again @OwenD
-
@dc42 Please consider this issue closed, I can't wait for Mr. Rosario's Closed loop tuner pluggin to be available. The guy is so good at this platform and well worth the investment..
-
@supertb1 thanks, I'll mark it as solved then.
-
-