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

Revision:
0:31e91bb0ef3c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/libs/utils.h	Tue Jul 31 21:11:18 2012 +0000
@@ -0,0 +1,29 @@
+#ifndef utils_h
+#define utils_h
+
+#include <stdint.h>
+using namespace std;
+#include <string>
+#include <vector>
+using std::string;
+
+string lc(string str);
+
+string remove_non_number( string str );
+
+uint16_t get_checksum(string to_check);
+
+vector<uint16_t> get_checksums(string key);
+
+string shift_parameter( string &parameters );
+
+string get_arguments( string possible_command );
+
+bool file_exists( string file_name );
+
+void system_reset( void );
+
+
+
+
+#endif