Skip to content
Snippets Groups Projects
Commit 306f4419 authored by Roxy-3D's avatar Roxy-3D Committed by Scott Lahteine
Browse files

Prevent serial buffer overrun in Pronterface

75ms might  be excessive...    But I know people are seeing problems with PronterFace as the client...
parent 966d9af9
Branches
Tags
No related merge requests found
......@@ -63,6 +63,7 @@
SERIAL_ECHOPAIR_P(port, " ; X", LOGICAL_X_POSITION(mesh_index_to_xpos(x)));
SERIAL_ECHOPAIR_P(port, ", Y", LOGICAL_Y_POSITION(mesh_index_to_ypos(y)));
SERIAL_EOL_P(port);
safe_delay(75); // Prevent Printrun from exploding
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment