2009-01-25 00:48:56 +01:00
|
|
|
/*
|
|
|
|
spindle_control.h - spindle control methods
|
2015-02-16 01:36:08 +01:00
|
|
|
Part of Grbl
|
2009-01-25 00:48:56 +01:00
|
|
|
|
2015-01-15 06:14:52 +01:00
|
|
|
Copyright (c) 2012-2015 Sungeun K. Jeon
|
2015-02-16 01:36:08 +01:00
|
|
|
Copyright (c) 2009-2011 Simen Svale Skogsrud
|
2009-01-25 00:48:56 +01:00
|
|
|
|
|
|
|
Grbl 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.
|
|
|
|
|
|
|
|
Grbl 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.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Grbl. If not, see <http://www.gnu.org/licenses/>.
|
2014-08-07 13:58:04 +02:00
|
|
|
*/
|
2009-01-25 00:48:56 +01:00
|
|
|
|
|
|
|
#ifndef spindle_control_h
|
|
|
|
#define spindle_control_h
|
|
|
|
|
2014-01-11 04:22:10 +01:00
|
|
|
|
2014-01-04 20:12:44 +01:00
|
|
|
// Initializes spindle pins and hardware PWM, if enabled.
|
2009-01-25 00:48:56 +01:00
|
|
|
void spindle_init();
|
2014-01-04 20:12:44 +01:00
|
|
|
|
|
|
|
// Sets spindle direction and spindle rpm via PWM, if enabled.
|
2014-01-11 04:22:10 +01:00
|
|
|
void spindle_run(uint8_t direction, float rpm);
|
2014-01-04 20:12:44 +01:00
|
|
|
|
2015-01-15 06:14:52 +01:00
|
|
|
void spindle_set_state(uint8_t state, float rpm);
|
|
|
|
|
2014-01-04 20:12:44 +01:00
|
|
|
// Kills spindle.
|
2009-01-25 00:48:56 +01:00
|
|
|
void spindle_stop();
|
|
|
|
|
|
|
|
#endif
|