Machsupport Forum

G-Code, CAD, and CAM => G-Code, CAD, and CAM discussions => Topic started by: Chip on November 13, 2006, 03:32:10 PM

Title: STATUS: Radius to end of arc differs from radius to start on Line number #
Post by: Chip on November 13, 2006, 03:32:10 PM
Hi, All

If your using LasyCam and getting, STATUS: Radius to end of arc differs from radius to start on Line number # when running Mach3.

It generally happen's after running program in INC Mode, then loading Gcode with G02, G03 in it..

You need's to change your Post Pre and Post Amble's, as it is now it generate's a Pre G90 G80 G40, Post G40 G80 M30 in one line.

Mach3 doesn't read and process multi-Gcode command's on one line. may at some point.

Edit it to look like this.

Pre.
G90
G80
G40

Post.
G40
G80
G90 ( I added this may not be needed though)
M30

It's been driving me crazy.

Hope this Helps Chip