Skip to content

Commit

Permalink
Remove newline from write
Browse files Browse the repository at this point in the history
  • Loading branch information
kglovern committed Jul 30, 2024
1 parent 8528173 commit 3689888
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/controllers/Grblhal/GrblHalController.js
Original file line number Diff line number Diff line change
Expand Up @@ -1028,7 +1028,7 @@ class GrblHalController {
this.actionMask.queryParserState.state = true;
this.actionMask.queryParserState.reply = false;
this.actionTime.queryParserState = now;
this.connection.write(`${GRBLHAL_REALTIME_COMMANDS.GCODE_REPORT}\n`); // $G equivalent
this.connection.write(`${GRBLHAL_REALTIME_COMMANDS.GCODE_REPORT}`); // $G equivalent
}
}, 500);

Expand Down

0 comments on commit 3689888

Please sign in to comment.