Skip to content

Commit

Permalink
fix inversion of status_report_mask position type bit
Browse files Browse the repository at this point in the history
issue was introduced in 0caa36f
  • Loading branch information
tomjnixon committed Nov 24, 2024
1 parent 73f9b53 commit f7364d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uCNC/src/interface/grbl_protocol.c
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ void proto_status(void)
}

proto_putc('|');
if (!(g_settings.status_report_mask & 1))
if ((g_settings.status_report_mask & 1))
{
proto_putc('M');
}
Expand Down

0 comments on commit f7364d7

Please sign in to comment.