Fix binary protocol error

This commit is contained in:
Chris Pepper 2019-02-28 02:31:42 +00:00 committed by GitHub
parent 2c10222e87
commit 7de6476b3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -453,9 +453,8 @@ void gcode_line_error(PGM_P const err, const int8_t port) {
stream_state = StreamState::STREAM_HEADER; // defer packet confirmation to STREAM_HEADER state
else {
if (bytes_received < stream_header.filesize) {
stream_state = StreamState::PACKET_RESET; // reset and receive next packet
SERIAL_ECHOLNPGM("ok"); // transmit confirm packet received and valid token
SERIAL_ECHOLN(packet.header.id);
stream_state = StreamState::PACKET_RESET; // reset and receive next packet
SERIAL_ECHOLNPAIR("ok", packet.header.id); // transmit confirm packet received and valid token
}
else
stream_state = StreamState::STREAM_COMPLETE; // no more data required