Hello Guest it is March 28, 2024, 05:26:18 AM

Author Topic: G Code Error  (Read 5873 times)

0 Members and 1 Guest are viewing this topic.

G Code Error
« on: November 25, 2009, 04:52:19 PM »
I have the following code that I'm running as a test just to see if everything moves the way it's supposed to.    I'm getting the following error...

R ijk words all missing for arcline 15.

The program stops on line 15 and generates this error.  I'm not sure what this means considering that this line is a Z retract move, not an arc in the XY plane.  Has anyone seen this error before?  Other than this error, the machine runs the program as it should.

Thanks...

N0 T1M6
N1 G0 X0.0000 Y0.0000
N2 G0 X18.5195 Y12.4166
N3 G0Z-0.125 M3 G4P1
N4 G3 X18.0140 Y11.9222 I-0.0020 J-0.5036 F120.0
N5 G2 X16.5481 Y8.0635 I-5.9863 J0.0664
N6 G2 X12.3093 Y5.9928 I-4.5431 J3.9260
N7 G2 X8.0635 Y7.4519 I-0.3134 J5.9952
N8 G2 X5.9928 Y11.6907 I3.9260 J4.5431
N9 G2 X7.4519 Y15.9365 I5.9952 J0.3134
N10 G2 X11.5374 Y17.9975 I4.5431 J-3.9260
N11 G2 X16.2534 Y16.2531 I0.4648 J-5.9905
N12 G2 X18.0140 Y11.9222 I-4.2339 J-4.2445
N13 G3 X18.5084 Y11.4167 I0.5036 J-0.0020
N14 M5
N15 Z0.125    (Generates Error Here)
N16 G0 X0.0000 Y0.0000
N17 G0X0Y0
N18 M30
Re: G Code Error
« Reply #1 on: November 25, 2009, 06:00:53 PM »
G3 is modal - stays in effect until changed.

Put a G00 or G01 in front of the Z move
Re: G Code Error
« Reply #2 on: November 25, 2009, 06:15:34 PM »
G3 is modal - stays in effect until changed.

Put a G00 or G01 in front of the Z move

Thanks very much...That's what I get for messing with too much at one time.  I was playing with some posts and that got changed.