smoothie port to mbed online compiler (smoothieware.org)
For documentation, license, ..., please check http://smoothieware.org/
This version has been tested with a 3 axis machine
libs/Module.cpp@0:31e91bb0ef3c, 2012-07-31 (annotated)
- Committer:
- scachat
- Date:
- Tue Jul 31 21:11:18 2012 +0000
- Revision:
- 0:31e91bb0ef3c
smoothie port to mbed online compiler
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
scachat | 0:31e91bb0ef3c | 1 | /* |
scachat | 0:31e91bb0ef3c | 2 | This file is part of Smoothie (http://smoothieware.org/). The motion control part is heavily based on Grbl (https://github.com/simen/grbl). |
scachat | 0:31e91bb0ef3c | 3 | 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. |
scachat | 0:31e91bb0ef3c | 4 | 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. |
scachat | 0:31e91bb0ef3c | 5 | You should have received a copy of the GNU General Public License along with Smoothie. If not, see <http://www.gnu.org/licenses/>. |
scachat | 0:31e91bb0ef3c | 6 | */ |
scachat | 0:31e91bb0ef3c | 7 | |
scachat | 0:31e91bb0ef3c | 8 | #include "libs/Module.h" |
scachat | 0:31e91bb0ef3c | 9 | #include "libs/Kernel.h" |
scachat | 0:31e91bb0ef3c | 10 | |
scachat | 0:31e91bb0ef3c | 11 | Module::Module(){ } |
scachat | 0:31e91bb0ef3c | 12 | |
scachat | 0:31e91bb0ef3c | 13 | void Module::on_module_loaded(){ |
scachat | 0:31e91bb0ef3c | 14 | } |
scachat | 0:31e91bb0ef3c | 15 | |
scachat | 0:31e91bb0ef3c | 16 | void Module::register_for_event(int event_id){ |
scachat | 0:31e91bb0ef3c | 17 | this->kernel->register_for_event(event_id, this); |
scachat | 0:31e91bb0ef3c | 18 | } |
scachat | 0:31e91bb0ef3c | 19 | |
scachat | 0:31e91bb0ef3c | 20 | void Module::on_main_loop( void * argument){} |
scachat | 0:31e91bb0ef3c | 21 | void Module::on_console_line_received( void * argument){} |
scachat | 0:31e91bb0ef3c | 22 | void Module::on_gcode_received( void * argument){} |
scachat | 0:31e91bb0ef3c | 23 | void Module::on_stepper_wake_up( void * argument){} |
scachat | 0:31e91bb0ef3c | 24 | void Module::on_gcode_execute( void * argument){} |
scachat | 0:31e91bb0ef3c | 25 | void Module::on_speed_change( void * argument){} |
scachat | 0:31e91bb0ef3c | 26 | void Module::on_block_begin( void * argument){} |
scachat | 0:31e91bb0ef3c | 27 | void Module::on_block_end( void * argument){} |
scachat | 0:31e91bb0ef3c | 28 | void Module::on_config_reload( void * argument){} |
scachat | 0:31e91bb0ef3c | 29 | void Module::on_play( void * argument){} |
scachat | 0:31e91bb0ef3c | 30 | void Module::on_pause( void * argument){} |
scachat | 0:31e91bb0ef3c | 31 | void Module::on_idle( void * argument){} |