Merge remote-tracking branch 'upstream/edge' into upstreamedge
[clinton/Smoothieware.git] / src / libs / Module.h
index 53921b7..8a9134b 100644 (file)
@@ -8,8 +8,6 @@
 #ifndef MODULE_H
 #define MODULE_H
 
-#include "platform_memory.h" // needed in case the mdouke is loaded in AHB0 so it can delete itself properly
-
 // See : http://smoothieware.org/listofevents
 // When adding a new event the virtual method needs to be defined in class Module and the method pointer need to be defined in
 // Module.cpp:16 in the same order
@@ -17,10 +15,6 @@ enum _EVENT_ENUM {
     ON_MAIN_LOOP,
     ON_CONSOLE_LINE_RECEIVED,
     ON_GCODE_RECEIVED,
-    ON_GCODE_EXECUTE,
-    ON_SPEED_CHANGE,
-    ON_BLOCK_BEGIN,
-    ON_BLOCK_END,
     ON_IDLE,
     ON_SECOND_TICK,
     ON_GET_PUBLIC_DATA,
@@ -50,10 +44,6 @@ public:
     virtual void on_main_loop(void *) {};
     virtual void on_console_line_received(void *) {};
     virtual void on_gcode_received(void *) {};
-    virtual void on_gcode_execute(void *) {};
-    virtual void on_speed_change(void *) {};
-    virtual void on_block_begin(void *) {};
-    virtual void on_block_end(void *) {};
     virtual void on_idle(void *) {};
     virtual void on_second_tick(void *) {};
     virtual void on_get_public_data(void *) {};