Machine moves when you stop program in the middle
- tommylight
- Away
- Moderator
- Posts: 19422
- Thank you received: 6516
Please Log in or Create an account to join the conversation.
- Aciera
- Offline
- Administrator
- Posts: 3964
- Thank you received: 1716
Also try to uncomment one of those lines at a time and see when the bug appears again.
Please Log in or Create an account to join the conversation.
- cakeslob
- Offline
- Platinum Member
- Posts: 789
- Thank you received: 230
github.com/cakeslob/RRW_LAB/blob/main/Li.../remora-xyzRE_ts.ini
We use the same probe stuff, which I havent exactly changed either.
Anyone else wanna chime in, but the thing that stands out the most is 2.7 classic 2.7
github.com/LinuxCNC/linuxcnc/issues/579
Please Log in or Create an account to join the conversation.
- tommylight
- Away
- Moderator
- Posts: 19422
- Thank you received: 6516
There should be a way to use on_abort only during probing routines, and that is strictly whe it should be active.
Shooting from the hip here, but i really do not like it being in the main ini file.
Please Log in or Create an account to join the conversation.
- cakeslob
- Offline
- Platinum Member
- Posts: 789
- Thank you received: 230
btvpimill try putting nothing in your abort, or even just a g4 dwell command, and see if it does the same thing
edit, tommy, there is actually a separate abort function specifically for probe abort for this easyprobe addon called probe_escape.ngc that does other stuffÂ
Please Log in or Create an account to join the conversation.
- btvpimill
- Offline
- Elite Member
- Posts: 220
- Thank you received: 3
I will try to get the config zipped and posted here.
I will try and test 1 line at a time to see if I can narrow it down.
Please Log in or Create an account to join the conversation.
- Aciera
- Offline
- Administrator
- Posts: 3964
- Thank you received: 1716
github.com/LinuxCNC/linuxcnc/issues/579I found the trigger. If I use ON_ABORT_COMMAND to call a subroutine:
ON_ABORT_COMMAND=O <on_abort> call
even an empty sub will make it fail. I got the file down to this and it still failed:
o<on_abort> sub
o<on_abort> endsub
m2
If I comment out ON_ABORT_COMMAND I can't get the fault to happen.
So removing the ON_ABORT_COMMAND from the ini file should fix this for you if you are on some earlier version.
[edit]
I will try to get the config zipped and posted here.
No need for that anymore as the bug has been identified to be in the source code of your version of linuxcnc
Please Log in or Create an account to join the conversation.
- tommylight
- Away
- Moderator
- Posts: 19422
- Thank you received: 6516
I am glad!
edit, tommy, there is actually a separate abort function specifically for probe abort for this easyprobe addon called probe_escape.ngc that does other stuffÂ
Please Log in or Create an account to join the conversation.
- btvpimill
- Offline
- Elite Member
- Posts: 220
- Thank you received: 3
Please Log in or Create an account to join the conversation.
- cakeslob
- Offline
- Platinum Member
- Posts: 789
- Thank you received: 230
but the on abort stuff doesnt look like it will effect probe stuff, as it is advised to use the probe abort button on the probe panel [x] button
Please Log in or Create an account to join the conversation.