00001 #ifndef _GCODE_PROCESS_H00002 #define _GCODE_PROCESS_H00003
00004 #include "gcode_parse.h"00005
00006 // the current tool00007 extern uint8_t tool;
00008 // the tool to be changed when we get an M600009 extern uint8_t next_tool;
00010
00011 // when we have a whole line, feed it to this00012 voidprocess_gcode_command(void);
00013
00014 #endif /* _GCODE_PROCESS_H */