smoothie port to mbed online compiler (smoothieware.org)

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Module.cpp Source File

Module.cpp

00001 /*  
00002       This file is part of Smoothie (http://smoothieware.org/). The motion control part is heavily based on Grbl (https://github.com/simen/grbl).
00003       Smoothie is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
00004       Smoothie is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
00005       You should have received a copy of the GNU General Public License along with Smoothie. If not, see <http://www.gnu.org/licenses/>. 
00006 */
00007 
00008 #include "libs/Module.h"
00009 #include "libs/Kernel.h"
00010 
00011 Module::Module(){ }
00012 
00013 void Module::on_module_loaded(){
00014 }
00015 
00016 void Module::register_for_event(int event_id){
00017     this->kernel->register_for_event(event_id, this);
00018 }
00019 
00020 void Module::on_main_loop(             void * argument){}
00021 void Module::on_console_line_received( void * argument){}
00022 void Module::on_gcode_received(        void * argument){}
00023 void Module::on_stepper_wake_up(       void * argument){}
00024 void Module::on_gcode_execute(         void * argument){}
00025 void Module::on_speed_change(          void * argument){}
00026 void Module::on_block_begin(           void * argument){}
00027 void Module::on_block_end(             void * argument){}
00028 void Module::on_config_reload(         void * argument){}
00029 void Module::on_play(                  void * argument){}
00030 void Module::on_pause(                 void * argument){}
00031 void Module::on_idle(                  void * argument){}