presumably fixed the feed rate computation

This commit is contained in:
Simen Svale Skogsrud
2009-02-04 14:01:24 +01:00
parent 7f9a9d27e2
commit d012440518
6 changed files with 47 additions and 32 deletions

View File

@@ -25,7 +25,12 @@
// A character to acknowledge that the execution has started
#define EXECUTION_MARKER '~'
// Initialize the serial protocol
void sp_init();
// Called by motion control just before the motion starts
void sp_send_execution_marker();
// Read command lines from the serial port and execute them as they
// come in. Blocks until the serial buffer is emptied.
void sp_process();
#endif