Skip to content

Rejects valid G-Code for simple circle #958

Description

@fireup924

When I create a simple circle in my CAM program without lead-in or lead-out it will Post a simplified G-Code and grblHAL will give a

"error:26 No axis words found in block for g-code command or current modal state which requires them."

Here's the G-Code that it will fail on, even though it's a valid G-Code

G20
G90
G40
G17
G92X0.0Y0.0Z0.
G0 X10.375 Y5.8438
M3
G3 I-4.5312 F100.0
M5
M30

I have to manually copy the X,Y positions to G3 line for it to except the G-Code such as:

G20
G90
G40
G17
G92X0.0Y0.0Z0.
G0 X10.375 Y5.8438
M3
G3 X10.375 Y5.8438 I-4.5312 F100.0
M5
M30

Is there a way to fix this in the grblHAL G-Code parser?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions