2009-01-25 00:48:56 +01:00
|
|
|
/*
|
|
|
|
spindle_control.h - spindle control methods
|
|
|
|
Part of Grbl
|
|
|
|
|
2013-12-31 06:02:05 +01:00
|
|
|
Copyright (c) 2012-2014 Sungeun K. Jeon
|
2011-01-14 16:45:18 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef spindle_control_h
|
|
|
|
#define spindle_control_h
|
|
|
|
|
2014-01-11 04:22:10 +01:00
|
|
|
|
|
|
|
#define SPINDLE_DISABLE 0 // Must be zero.
|
|
|
|
#define SPINDLE_ENABLE_CW 1
|
|
|
|
#define SPINDLE_ENABLE_CCW 2
|
|
|
|
|
2009-01-25 00:48:56 +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
|
|
|
|
|
|
|
// Kills spindle.
|
2009-01-25 00:48:56 +01:00
|
|
|
void spindle_stop();
|
|
|
|
|
|
|
|
#endif
|