Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Paciente8159 committed Feb 24, 2024
1 parent 599059f commit 704e981
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 @@ -507,7 +507,7 @@ static uint8_t parser_grbl_command(void)
case 'R':
if (grbl_cmd_str[1] == 'S' && grbl_cmd_str[2] == 'T' && c == '=' && grbl_cmd_len == 3)
{
grbl_cmd_str[3] == '=';
grbl_cmd_str[3] = '=';
grbl_cmd_len++;
c = serial_getc();
if (serial_getc() == EOL)
Expand Down

0 comments on commit 704e981

Please sign in to comment.