Skip to content

Commit

Permalink
Merge pull request #789 from tomjnixon/fix_status_report_mask
Browse files Browse the repository at this point in the history
fix inversion of status_report_mask position type bit
  • Loading branch information
Paciente8159 authored Nov 24, 2024
2 parents 73f9b53 + f7364d7 commit 721ded8
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 721ded8

Please sign in to comment.