refactor ON_HALT, add THEKERNEL->is_halted() for modules that just need to test it...
[clinton/Smoothieware.git] / src / modules / communication / GcodeDispatch.h
index 18c356d..0fcdbd4 100644 (file)
@@ -21,7 +21,6 @@ public:
 
     virtual void on_module_loaded();
     virtual void on_console_line_received(void *line);
-    void on_halt(void *arg);
 
 private:
     int currentline;
@@ -30,7 +29,6 @@ private:
     uint8_t last_g;
     struct {
         bool uploading: 1;
-        bool halted: 1;
     };
 };