Browse Source

Prevent serial buffer overrun in Pronterface

75ms might  be excessive...    But I know people are seeing problems with PronterFace as the client...
pull/1/head
Roxy-3D 7 years ago
committed by Scott Lahteine
parent
commit
306f44198e
  1. 1
      Marlin/src/feature/bedlevel/ubl/ubl.cpp

1
Marlin/src/feature/bedlevel/ubl/ubl.cpp

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

Loading…
Cancel
Save