2009-01-28 23:48:21 +01:00
|
|
|
/*
|
2011-02-11 00:34:53 +01:00
|
|
|
stepper.h - stepper motor driver: executes motion plans of planner.c using the stepper motors
|
2009-01-28 23:48:21 +01:00
|
|
|
Part of Grbl
|
|
|
|
|
2014-05-18 18:01:05 +02:00
|
|
|
The MIT License (MIT)
|
|
|
|
|
|
|
|
GRBL(tm) - Embedded CNC g-code interpreter and motion-controller
|
2011-01-14 16:45:18 +01:00
|
|
|
Copyright (c) 2009-2011 Simen Svale Skogsrud
|
2011-12-09 02:47:48 +01:00
|
|
|
Copyright (c) 2011 Sungeun K. Jeon
|
2009-01-28 23:48:21 +01:00
|
|
|
|
2014-05-18 18:01:05 +02:00
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
2009-01-28 23:48:21 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef stepper_h
|
|
|
|
#define stepper_h
|
|
|
|
|
|
|
|
#include <avr/io.h>
|
|
|
|
|
2011-12-09 02:47:48 +01:00
|
|
|
// Initialize and setup the stepper motor subsystem
|
2009-01-28 23:48:21 +01:00
|
|
|
void st_init();
|
|
|
|
|
2012-11-01 16:37:27 +01:00
|
|
|
// Enable steppers, but cycle does not start unless called by motion control or runtime command.
|
|
|
|
void st_wake_up();
|
|
|
|
|
2011-12-09 02:47:48 +01:00
|
|
|
// Immediately disables steppers
|
|
|
|
void st_go_idle();
|
2009-01-28 23:48:21 +01:00
|
|
|
|
2011-12-09 02:47:48 +01:00
|
|
|
// Reset the stepper subsystem variables
|
|
|
|
void st_reset();
|
2011-02-11 00:34:53 +01:00
|
|
|
|
2011-10-12 04:51:04 +02:00
|
|
|
// Notify the stepper subsystem to start executing the g-code program in buffer.
|
|
|
|
void st_cycle_start();
|
2009-01-28 23:48:21 +01:00
|
|
|
|
2011-12-09 02:47:48 +01:00
|
|
|
// Reinitializes the buffer after a feed hold for a resume.
|
|
|
|
void st_cycle_reinitialize();
|
|
|
|
|
|
|
|
// Initiates a feed hold of the running program
|
|
|
|
void st_feed_hold();
|
|
|
|
|
2009-01-28 23:48:21 +01:00
|
|
|
#endif
|