The code below - genrated by hole pocketing of my CAM prog - causes my Z axis servo to die by following error on line N190. The material machined is soft plastic and this certainly is not a problem of lack of power in the Z motor. On several occasions the latest Mach3 version xx.038 stalled and reported of an error on in the R I J values but the simulation goes fine though. G91.1 is used for I,J.
....
N90 (BEGIN - First Tool Macro)
N100 M901
N110 M6 T2
N120 M904
N130 G00 X175.2191 Y54.7403
N140 G00 Z5.0000
N150 M03 S16000
N160 (END - First Tool Macro)
N170 G01 Z-0.3650 F1000.0
N180 G17
N190 G03 X175.2602 Y55.0000 Z-7.0000 I-0.8691 J0.2597 F2600.0
.....
If I change the z movement to the previous line it works, like this:
...
N170 G01 Z-0.3650 F1000.0
N180 G17 Z-7
N190 G03 X175.2602 Y55.0000 I-0.8691 J0.2597 F2600.0
...
How Mach handles line N190 is what is of interest here I guess.