Stéphane Cachat
/
Smoothie
smoothie port to mbed online compiler (smoothieware.org)
Embed:
(wiki syntax)
Show/hide line numbers
Spindle.h
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 #ifndef SPINDLE_MODULE_H 00009 #define SPINDLE_MODULE_H 00010 00011 #include "libs/Module.h" 00012 #include "mbed.h" 00013 #include "libs/Kernel.h" 00014 #include "modules/communication/utils/Gcode.h" 00015 00016 #define spindle_module_enable_checksum 43962 00017 #define spindle_pin_checksum 54937 00018 00019 class Spindle : public Module{ 00020 public: 00021 Spindle(); 00022 virtual void on_module_loaded(); 00023 virtual void on_config_reload(void* argument); 00024 virtual void on_block_end(void* argument); 00025 virtual void on_block_begin(void* argument); 00026 virtual void on_play(void* argument); 00027 virtual void on_pause(void* argument); 00028 virtual void on_gcode_execute(void* argument); 00029 private: 00030 void set_spindle(); 00031 bool spindle_on; // Spindle status 00032 Pin* spindle_pin; 00033 }; 00034 00035 00036 00037 00038 00039 00040 00041 00042 00043 00044 00045 00046 00047 00048 00049 00050 00051 #endif
Generated on Tue Jul 12 2022 14:14:42 by 1.7.2