Skip to content

Commit

Permalink
fix error of custom commands with axis words
Browse files Browse the repository at this point in the history
- fix validation error of custom commands with axis words
  • Loading branch information
Paciente8159 committed Jan 19, 2025
1 parent ccc944b commit 74ba14b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uCNC/src/core/parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -1175,7 +1175,7 @@ static uint8_t parser_validate_command(parser_state_t *new_state, parser_words_t
}

// group 5 - feed rate mode
if (requires_feed && has_axis)
if (requires_feed && has_axis && !cmd->group_extended)
{
if (!CHECKFLAG(cmd->words, GCODE_WORD_F))
{
Expand Down

0 comments on commit 74ba14b

Please sign in to comment.