Derek wrote:dezsoe wrote:Hi Derek,
I think I'm over the 100th run, and didn't have any problem with your code. I think it depends on some special constellation of stars... (I don't say I don't beleive what you wrote, just couldn't reproduce. I also have a jog issue, which happens cca. two times a year, so I could never reproduce it, but sometimes happens.)
Better try 101 times. That may work
These things are terrible to solve. I have run the M20001 hundreds of times and never had an issue. I have seen unexpected movement on probing macros before but it's pretty rare. One thing I will say is that when it glitches it stays glitched until you restart UCCNC. And it behaves the exact wrong way each time. This is a definite problem and macro related. I don't have to restart the computer just UCCNC.
Is there any log info I can save when it does?
Try replacing...
while(exec.IsMoving()){}
with...
while(exec.IsMoving())
{
exec.Wait(200);
}
I know it is a wild shot and is been said that it does not matter, but it is worth a try, isn't it?