Re: [Emc-developers] Found a new show stopper

2024-03-07 Thread gene heskett
On 3/7/24 15:41, Alan Condit via Emc-developers wrote: Gene, In the second block of code following the while loop you’re missing some more “call”s o1 while[#50 le 7] ( stop short ) ( Enf of MAIN WHILE LOOP ) o5 endif o6 if [#<_measure> lt 1] <<< is still 1 o7 do o call o call

Re: [Emc-developers] Found a new show stopper

2024-03-07 Thread gene heskett
On 3/7/24 12:55, John Allwine wrote: Lines 188-190 are missing calls. But they at this time, never execute as #<_measure> is 1, might as well be an M2 above them. On Thu, Mar 7, 2024 at 10:21 AM gene heskett wrote: On 3/7/24 12:12, andy pugh wrote: On Thu, 7 Mar 2024 at 16:44, gene

Re: [Emc-developers] Found a new show stopper

2024-03-07 Thread Alan Condit via Emc-developers
Gene, In the second block of code following the while loop you’re missing some more “call”s o1 while[#50 le 7] ( stop short ) ( Enf of MAIN WHILE LOOP ) o5 endif o6 if [#<_measure> lt 1] o7 do o call o call (see what its got) o call (move to it) (put drill hole call here) #50 = [#50 +1] o7

Re: [Emc-developers] Found a new show stopper

2024-03-07 Thread Alan Condit via Emc-developers
Gene, In the second block of code following the while loop you’re missing some more “call”s o1 while[#50 le 7] ( stop short ) ( Enf of MAIN WHILE LOOP ) o5 endif o6 if [#<_measure> lt 1] o7 do o call o call (see what its got) o call (move to it) (put drill hole call here) #50 = [#50 +1] o7

Re: [Emc-developers] Found a new show stopper

2024-03-07 Thread John Allwine
Lines 188-190 are missing calls. On Thu, Mar 7, 2024 at 10:21 AM gene heskett wrote: > On 3/7/24 12:12, andy pugh wrote: > > On Thu, 7 Mar 2024 at 16:44, gene heskett wrote: > > > >>> o > >>> > >>> It needs to be > >>> > >>> o CALL > >>> > >> What line Andy, call is there in line 160 of the

Re: [Emc-developers] Found a new show stopper

2024-03-07 Thread gene heskett
On 3/7/24 12:12, andy pugh wrote: On Thu, 7 Mar 2024 at 16:44, gene heskett wrote: o It needs to be o CALL What line Andy, call is there in line 160 of the main do/while loop, you've got week old code i think as I've posted two versions. That was from the version you posted 1 hour ago.

Re: [Emc-developers] Found a new show stopper

2024-03-07 Thread andy pugh
On Thu, 7 Mar 2024 at 16:44, gene heskett wrote: > > o > > > > It needs to be > > > > o CALL > > > What line Andy, call is there in line 160 of the main do/while loop, > you've got week old code i think as I've posted two versions. That was from the version you posted 1 hour ago. I can only

Re: [Emc-developers] Found a new show stopper

2024-03-07 Thread gene heskett
On 3/7/24 11:23, andy pugh wrote: As has been said, you are not calling the subroutines. I am surprised that the code even runs. You have o It needs to be o CALL What line Andy, call is there in line 160 of the main do/while loop, you've got week old code i think as I've posted two

Re: [Emc-developers] Found a new show stopper

2024-03-07 Thread andy pugh
As has been said, you are not calling the subroutines. I am surprised that the code even runs. You have o It needs to be o CALL -- atp "A motorcycle is a bicycle with a pandemonium attachment and is designed for the especial use of mechanical geniuses, daredevils and lunatics." — George

Re: [Emc-developers] Found a new show stopper

2024-03-07 Thread gene heskett
On 3/7/24 09:38, gene heskett wrote: See below> On 3/7/24 05:03, andy pugh wrote: On Thu, 7 Mar 2024 at 00:30, gene heskett wrote:   If there is any error that stops it, such as a probe trip when not in a probe move, its all done until shut down, restarted and rehomed. It really shouldn't

Re: [Emc-developers] Found a new show stopper

2024-03-07 Thread gene heskett
On 3/7/24 05:03, andy pugh wrote: On Thu, 7 Mar 2024 at 00:30, gene heskett wrote: If there is any error that stops it, such as a probe trip when not in a probe move, its all done until shut down, restarted and rehomed. It really shouldn't need a shutdown and restart. It did Andy, then

Re: [Emc-developers] Found a new show stopper

2024-03-07 Thread John Allwine
It looks like you’re missing a few calls in this loop. Not sure if that’s your problem, but it’s a place to start: o7 do o o (see what its got) o (move to it) (put drill hole call here) #50 = [#50 +1] o7 while [#50 le 7] > On Mar 6, 2024, at 5:28 PM, gene heskett wrote: > > On 3/6/24

Re: [Emc-developers] Found a new show stopper

2024-03-07 Thread andy pugh
On Thu, 7 Mar 2024 at 00:30, gene heskett wrote: > If there is > any error that stops it, such as a probe trip when not in a probe move, > its all done until shut down, restarted and rehomed. It really shouldn't need a shutdown and restart. -- atp "A motorcycle is a bicycle with a

Re: [Emc-developers] Found a new show stopper

2024-03-06 Thread gene heskett
On 3/6/24 15:49, gene heskett wrote: specifically the command to set spindle speed MUST BE LOWERCASE Nothing in a gcode file causing machine motion beyond S1000 will execute. No error messages of any kind either. Found it by surround the first move with (debug, msg) statements. I have not