remove the minimum stepper rate as it is no longer used
[clinton/Smoothieware.git] / src / libs / StepperMotor.h
CommitLineData
7b49793d 1/*
feb204be
AW
2 This file is part of Smoothie (http://smoothieware.org/). The motion control part is heavily based on Grbl (https://github.com/simen/grbl).
3 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.
4 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.
7b49793d 5 You should have received a copy of the GNU General Public License along with Smoothie. If not, see <http://www.gnu.org/licenses/>.
feb204be
AW
6*/
7
a3bb687b 8#pragma once
feb204be 9
9e6014a6 10#include "Module.h"
5673fe39 11#include "Pin.h"
feb204be 12
9e6014a6 13class StepperMotor : public Module {
feb204be 14 public:
9c5fa39a 15 StepperMotor(Pin& step, Pin& dir, Pin& en);
3494f3d0 16 ~StepperMotor();
203213ae 17
d1d120e1
JM
18 // called from step ticker ISR
19 inline void step() { step_pin.set(1); current_position_steps += (direction?-1:1); }
20 // called from unstep ISR
8b260c2c 21 inline void unstep() { step_pin.set(0); }
d1d120e1
JM
22 // called from step ticker ISR
23 inline void set_direction(bool f) { dir_pin.set(f); direction= f; }
9c5fa39a 24
203213ae 25 inline void enable(bool state) { en_pin.set(!state); };
9e6014a6 26 inline bool is_enabled() const { return !en_pin.get(); };
d1d120e1 27 inline bool is_moving() const { return moving; };
9c5fa39a 28
58b69de8 29 void manual_step(bool dir);
9c5fa39a 30
eab91f11 31 bool which_direction() const { return direction; }
670fa10b 32
2fa50ca0 33 float get_steps_per_second() const { return steps_per_second; }
2fa50ca0 34 float get_steps_per_mm() const { return steps_per_mm; }
78d0e16a
MM
35 void change_steps_per_mm(float);
36 void change_last_milestone(float);
90f70d46 37 float get_last_milestone(void) const { return last_milestone_mm; }
58c32991 38 float get_current_position(void) const { return (float)current_position_steps/steps_per_mm; }
d1d120e1 39 uint32_t get_current_step(void) const { return current_position_steps; }
3494f3d0
JM
40 float get_max_rate(void) const { return max_rate; }
41 void set_max_rate(float mr) { max_rate= mr; }
670fa10b 42
78d0e16a 43 int steps_to_target(float);
670fa10b 44
2fa50ca0
JM
45 friend class StepTicker;
46 friend class Stepper;
47 friend class Planner;
48 friend class Robot;
49
50 private:
9e6014a6
JM
51 void on_halt(void *argument);
52 void on_enable(void *argument);
3494f3d0 53
1fce036c 54 int index;
670fa10b 55
9c5fa39a
MM
56 Pin step_pin;
57 Pin dir_pin;
58 Pin en_pin;
feb204be 59
1ad23cd3 60 float steps_per_second;
78d0e16a 61 float steps_per_mm;
3494f3d0 62 float max_rate; // this is not really rate it is in mm/sec, misnamed used in Robot and Extruder
78d0e16a 63
58c32991 64 volatile int32_t current_position_steps;
78d0e16a
MM
65 int32_t last_milestone_steps;
66 float last_milestone_mm;
67
778093ce 68 volatile struct {
d1d120e1
JM
69 volatile bool direction:1;
70 volatile bool moving:1;
ec543686 71 };
feb204be
AW
72};
73