2016-03-25 06:19:46 +00:00
|
|
|
/**
|
2016-03-24 18:01:20 +00:00
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-03-25 06:19:46 +00:00
|
|
|
/**
|
2011-11-20 13:50:08 +00:00
|
|
|
stepper.h - stepper motor driver: executes motion plans of planner.c using the stepper motors
|
|
|
|
Part of Grbl
|
|
|
|
|
|
|
|
Copyright (c) 2009-2011 Simen Svale Skogsrud
|
|
|
|
|
|
|
|
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 stepper_h
|
2015-10-03 06:08:58 +00:00
|
|
|
#define stepper_h
|
2011-11-20 13:50:08 +00:00
|
|
|
|
|
|
|
#include "planner.h"
|
2015-02-23 15:12:35 +00:00
|
|
|
#include "stepper_indirection.h"
|
2011-11-20 13:50:08 +00:00
|
|
|
|
2015-07-31 05:28:11 +00:00
|
|
|
#if ENABLED(ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED)
|
2015-07-26 22:58:33 +00:00
|
|
|
extern bool abort_on_endstop_hit;
|
2013-09-29 16:20:06 +00:00
|
|
|
#endif
|
2011-12-12 18:34:37 +00:00
|
|
|
|
2011-11-20 13:50:08 +00:00
|
|
|
// Initialize and start the stepper motor subsystem
|
|
|
|
void st_init();
|
|
|
|
|
|
|
|
// Block until all buffered steps are executed
|
|
|
|
void st_synchronize();
|
|
|
|
|
|
|
|
// Set current position in steps
|
2015-10-03 06:08:58 +00:00
|
|
|
void st_set_position(const long& x, const long& y, const long& z, const long& e);
|
|
|
|
void st_set_e_position(const long& e);
|
2011-11-20 13:50:08 +00:00
|
|
|
|
|
|
|
// Get current position in steps
|
2016-04-11 08:03:10 +00:00
|
|
|
long st_get_position(AxisEnum axis);
|
2011-11-20 13:50:08 +00:00
|
|
|
|
2016-03-06 23:46:39 +00:00
|
|
|
// Get current axis position in mm
|
|
|
|
float st_get_axis_position_mm(AxisEnum axis);
|
2013-09-29 16:20:06 +00:00
|
|
|
|
2011-11-20 13:50:08 +00:00
|
|
|
// The stepper subsystem goes to sleep when it runs out of things to execute. Call this
|
|
|
|
// to notify the subsystem that it is time to go to work.
|
|
|
|
void st_wake_up();
|
|
|
|
|
2015-10-03 06:08:58 +00:00
|
|
|
|
2014-02-25 09:52:58 +00:00
|
|
|
void checkHitEndstops(); //call from somewhere to create an serial error message with the locations the endstops where hit, in case they were triggered
|
|
|
|
void endstops_hit_on_purpose(); //avoid creation of the message, i.e. after homing and before a routine call of checkHitEndstops();
|
2011-11-20 13:50:08 +00:00
|
|
|
|
2011-12-04 19:17:21 +00:00
|
|
|
void enable_endstops(bool check); // Enable/disable endstop checking
|
|
|
|
|
2016-03-24 10:18:45 +00:00
|
|
|
void enable_endstops_globally(bool check);
|
|
|
|
void endstops_not_homing();
|
|
|
|
|
2011-11-25 12:59:58 +00:00
|
|
|
void checkStepperErrors(); //Print errors detected by the stepper
|
2011-11-20 13:50:08 +00:00
|
|
|
|
2011-11-26 10:50:23 +00:00
|
|
|
void finishAndDisableSteppers();
|
|
|
|
|
2015-10-03 06:08:58 +00:00
|
|
|
extern block_t* current_block; // A pointer to the block currently being traced
|
2011-11-20 13:50:08 +00:00
|
|
|
|
2011-12-11 21:10:06 +00:00
|
|
|
void quickStop();
|
2012-08-30 07:16:57 +00:00
|
|
|
|
2016-03-20 01:44:08 +00:00
|
|
|
#if HAS_DIGIPOTSS
|
|
|
|
void digitalPotWrite(int address, int value);
|
|
|
|
#endif
|
2012-08-30 07:16:57 +00:00
|
|
|
void microstep_ms(uint8_t driver, int8_t ms1, int8_t ms2);
|
|
|
|
void microstep_mode(uint8_t driver, uint8_t stepping);
|
|
|
|
void digipot_init();
|
|
|
|
void digipot_current(uint8_t driver, int current);
|
|
|
|
void microstep_init();
|
|
|
|
void microstep_readings();
|
|
|
|
|
2015-07-31 05:28:11 +00:00
|
|
|
#if ENABLED(Z_DUAL_ENDSTOPS)
|
2015-03-24 17:06:44 +00:00
|
|
|
void In_Homing_Process(bool state);
|
|
|
|
void Lock_z_motor(bool state);
|
|
|
|
void Lock_z2_motor(bool state);
|
|
|
|
#endif
|
|
|
|
|
2015-07-31 05:28:11 +00:00
|
|
|
#if ENABLED(BABYSTEPPING)
|
2015-10-03 06:08:58 +00:00
|
|
|
void babystep(const uint8_t axis, const bool direction); // perform a short step with a single stepper motor, outside of any convention
|
Add the socalled "Babystepping" feature.
It is a realtime control over the head position via the LCD menu system that works _while_ printing.
Using it, one can e.g. tune the z-position in realtime, while printing the first layer.
Also, lost steps can be manually added/removed, but thats not the prime feature.
Stuff is placed into the Tune->Babystep *
It is not possible to have realtime control via gcode sending due to the buffering, so I did not include a gcode yet. However, it could be added, but it movements will not be realtime then.
Historically, a very similar thing was implemented for the "Kaamermaker" project, while Joris was babysitting his offspring, hence the name.
say goodby to fuddling around with the z-axis.
2013-10-06 19:14:51 +00:00
|
|
|
#endif
|
2015-10-03 06:08:58 +00:00
|
|
|
|
2011-11-25 12:43:06 +00:00
|
|
|
#endif
|