On Wed, 21 Oct 2020 at 14:52, Alan Condit <condit.a...@gmail.com> wrote:

> I have a bunch of wizards that I have written under 2.7 and under 2.8 they 
> won’t work. The biggest change is that you used to be able to write the 
> subroutine declaration as O< CutBevel > SUB [1] [2] [3]  like a formal 
> declaration of parameters. Now I have to go through and make all of them just 
> comments like O<CutBevel> SUB ([1] [2] [3]).

Subroutines get parameters strictly by position, they just appear as
#1, #2 etc. You can have a comment to document what they do, but I
don't think anything has changed there

The problem is actually line 76:

G00 X0.0 Z[#Zcut]

Should be

G00 X0.0 Z[#<Zcut>]

-- 
atp
"A motorcycle is a bicycle with a pandemonium attachment and is
designed for the especial use of mechanical geniuses, daredevils and
lunatics."
— George Fitch, Atlanta Constitution Newspaper, 1912


_______________________________________________
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users

Reply via email to