smoothie port to mbed online compiler (smoothieware.org)

Dependencies:   mbed

For documentation, license, ..., please check http://smoothieware.org/

This version has been tested with a 3 axis machine

Committer:
scachat
Date:
Tue Jul 31 21:11:18 2012 +0000
Revision:
0:31e91bb0ef3c
smoothie port to mbed online compiler

Who changed what in which revision?

UserRevisionLine numberNew contents of line
scachat 0:31e91bb0ef3c 1 #ifndef SERIALMESSAGE_H
scachat 0:31e91bb0ef3c 2 #define SERIALMESSAGE_H
scachat 0:31e91bb0ef3c 3 #include "libs/StreamOutput.h"
scachat 0:31e91bb0ef3c 4 struct SerialMessage {
scachat 0:31e91bb0ef3c 5 StreamOutput* stream;
scachat 0:31e91bb0ef3c 6 std::string message;
scachat 0:31e91bb0ef3c 7 };
scachat 0:31e91bb0ef3c 8 #endif