Skip to content

Commit

Permalink
emcrsh: fix bug with extra reply line for 'get spindle_override'
Browse files Browse the repository at this point in the history
  • Loading branch information
Sigma1912 committed Nov 16, 2024
1 parent 3385223 commit d85194b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/emc/usr_intf/emcrsh.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2554,7 +2554,7 @@ static cmdResponseType getSpindleOverride(connectionRecType *context)
continue;

double percent = emcStatus->motion.spindle[n].spindle_scale * 100.0;
dprintf(context->cliSock, "SPINDLE_OVERRIDE %d %f\r\n", n, percent);
OUT("SPINDLE_OVERRIDE %d %f", n, percent);
}

return rtNoError;
Expand Down

0 comments on commit d85194b

Please sign in to comment.