Prevent serial buffer overrun in Pronterface

75ms might  be excessive...    But I know people are seeing problems with PronterFace as the client...
This commit is contained in:
Roxy-3D 2018-02-25 21:59:19 -06:00 committed by Scott Lahteine
parent 966d9af98a
commit 306f44198e

View file

@ -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
}
}