Merge pull request #555 from wolfmanjm/fix/harden-homing-zprobe
[clinton/Smoothieware.git] / src / modules / robot / Stepper.cpp
1 /*
2 This file is part of Smoothie (http://smoothieware.org/). The motion control part is heavily based on Grbl (https://github.com/simen/grbl) with additions from Sungeun K. Jeon (https://github.com/chamnit/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.
5 You should have received a copy of the GNU General Public License along with Smoothie. If not, see <http://www.gnu.org/licenses/>.
6 */
7
8 #include "Stepper.h"
9
10 #include "libs/Module.h"
11 #include "libs/Kernel.h"
12 #include "Planner.h"
13 #include "Conveyor.h"
14 #include "StepperMotor.h"
15 #include "Robot.h"
16 #include "checksumm.h"
17 #include "SlowTicker.h"
18 #include "Config.h"
19 #include "ConfigValue.h"
20 #include "Gcode.h"
21 #include "Block.h"
22 #include "StepTicker.h"
23
24 #include <vector>
25 using namespace std;
26
27 #include "libs/nuts_bolts.h"
28 #include "libs/Hook.h"
29
30 #include <mri.h>
31
32 // The stepper reacts to blocks that have XYZ movement to transform them into actual stepper motor moves
33 // TODO: This does accel, accel should be in StepperMotor
34
35 Stepper::Stepper()
36 {
37 this->current_block = NULL;
38 this->paused = false;
39 this->force_speed_update = false;
40 this->halted= false;
41 }
42
43 //Called when the module has just been loaded
44 void Stepper::on_module_loaded()
45 {
46 this->register_for_event(ON_BLOCK_BEGIN);
47 this->register_for_event(ON_BLOCK_END);
48 this->register_for_event(ON_GCODE_EXECUTE);
49 this->register_for_event(ON_GCODE_RECEIVED);
50 this->register_for_event(ON_PLAY);
51 this->register_for_event(ON_PAUSE);
52 this->register_for_event(ON_HALT);
53
54 // Get onfiguration
55 this->on_config_reload(this);
56
57 // Acceleration ticker
58 THEKERNEL->step_ticker->register_acceleration_tick_handler([this](){trapezoid_generator_tick(); });
59
60 // Attach to the end_of_move stepper event
61 THEKERNEL->robot->alpha_stepper_motor->attach(this, &Stepper::stepper_motor_finished_move );
62 THEKERNEL->robot->beta_stepper_motor->attach( this, &Stepper::stepper_motor_finished_move );
63 THEKERNEL->robot->gamma_stepper_motor->attach(this, &Stepper::stepper_motor_finished_move );
64 }
65
66 // Get configuration from the config file
67 void Stepper::on_config_reload(void *argument)
68 {
69 // Steppers start off by default
70 this->turn_enable_pins_off();
71 }
72
73 // When the play/pause button is set to pause, or a module calls the ON_PAUSE event
74 void Stepper::on_pause(void *argument)
75 {
76 this->paused = true;
77 THEKERNEL->robot->alpha_stepper_motor->pause();
78 THEKERNEL->robot->beta_stepper_motor->pause();
79 THEKERNEL->robot->gamma_stepper_motor->pause();
80 }
81
82 // When the play/pause button is set to play, or a module calls the ON_PLAY event
83 void Stepper::on_play(void *argument)
84 {
85 // TODO: Re-compute the whole queue for a cold-start
86 this->paused = false;
87 THEKERNEL->robot->alpha_stepper_motor->unpause();
88 THEKERNEL->robot->beta_stepper_motor->unpause();
89 THEKERNEL->robot->gamma_stepper_motor->unpause();
90 }
91
92 void Stepper::on_halt(void *argument)
93 {
94 if(argument == nullptr) {
95 this->turn_enable_pins_off();
96 this->halted= true;
97 }else{
98 this->halted= false;
99 }
100 }
101
102 void Stepper::on_gcode_received(void *argument)
103 {
104 Gcode *gcode = static_cast<Gcode *>(argument);
105 // Attach gcodes to the last block for on_gcode_execute
106 if( gcode->has_m && (gcode->m == 84 || gcode->m == 17 || gcode->m == 18 )) {
107 THEKERNEL->conveyor->append_gcode(gcode);
108 }
109 }
110
111 // React to enable/disable gcodes
112 void Stepper::on_gcode_execute(void *argument)
113 {
114 Gcode *gcode = static_cast<Gcode *>(argument);
115
116 if( gcode->has_m) {
117 if( gcode->m == 17 ) {
118 this->turn_enable_pins_on();
119 }
120 if( (gcode->m == 84 || gcode->m == 18) && !gcode->has_letter('E') ) {
121 this->turn_enable_pins_off();
122 }
123 }
124 }
125
126 // Enable steppers
127 void Stepper::turn_enable_pins_on()
128 {
129 for (StepperMotor *m : THEKERNEL->robot->actuators)
130 m->enable(true);
131 this->enable_pins_status = true;
132 }
133
134 // Disable steppers
135 void Stepper::turn_enable_pins_off()
136 {
137 for (StepperMotor *m : THEKERNEL->robot->actuators)
138 m->enable(false);
139 this->enable_pins_status = false;
140 }
141
142 // A new block is popped from the queue
143 void Stepper::on_block_begin(void *argument)
144 {
145 Block *block = static_cast<Block *>(argument);
146
147 // Mark the new block as of interrest to us, handle blocks that have no axis moves properly (like Extrude blocks etc)
148 if(block->millimeters > 0.0F && (block->steps[ALPHA_STEPPER] > 0 || block->steps[BETA_STEPPER] > 0 || block->steps[GAMMA_STEPPER] > 0) ) {
149 block->take();
150
151 } else {
152 // none of the steppers move this block so make sure they know that
153 for(auto a : THEKERNEL->robot->actuators) {
154 a->set_moved_last_block(false);
155 }
156 return;
157 }
158
159 // We can't move with the enable pins off
160 if( this->enable_pins_status == false ) {
161 this->turn_enable_pins_on();
162 }
163
164 // Setup : instruct stepper motors to move
165 // Find the stepper with the more steps, it's the one the speed calculations will want to follow
166 this->main_stepper= nullptr;
167 if( block->steps[ALPHA_STEPPER] > 0 ) {
168 THEKERNEL->robot->alpha_stepper_motor->move( block->direction_bits[ALPHA_STEPPER], block->steps[ALPHA_STEPPER])->set_moved_last_block(true);
169 this->main_stepper = THEKERNEL->robot->alpha_stepper_motor;
170 }else{
171 THEKERNEL->robot->alpha_stepper_motor->set_moved_last_block(false);
172 }
173
174 if( block->steps[BETA_STEPPER ] > 0 ) {
175 THEKERNEL->robot->beta_stepper_motor->move( block->direction_bits[BETA_STEPPER], block->steps[BETA_STEPPER ])->set_moved_last_block(true);
176 if(this->main_stepper == nullptr || THEKERNEL->robot->beta_stepper_motor->get_steps_to_move() > this->main_stepper->get_steps_to_move())
177 this->main_stepper = THEKERNEL->robot->beta_stepper_motor;
178 }else{
179 THEKERNEL->robot->beta_stepper_motor->set_moved_last_block(false);
180 }
181
182 if( block->steps[GAMMA_STEPPER] > 0 ) {
183 THEKERNEL->robot->gamma_stepper_motor->move( block->direction_bits[GAMMA_STEPPER], block->steps[GAMMA_STEPPER])->set_moved_last_block(true);
184 if(this->main_stepper == nullptr || THEKERNEL->robot->gamma_stepper_motor->get_steps_to_move() > this->main_stepper->get_steps_to_move())
185 this->main_stepper = THEKERNEL->robot->gamma_stepper_motor;
186 }else{
187 THEKERNEL->robot->gamma_stepper_motor->set_moved_last_block(false);
188 }
189
190 this->current_block = block;
191
192 // Setup acceleration for this block
193 this->trapezoid_generator_reset();
194
195 // Set the initial speed for this move
196 this->trapezoid_generator_tick();
197
198 // synchronize the acceleration timer with the start of the new block so it does not drift and randomly fire during the block
199 THEKERNEL->step_ticker->synchronize_acceleration(false);
200
201 // set a flag to synchronize the acceleration timer with the deceleration step, and fire it immediately we get to that step
202 if( block->decelerate_after > 0 && block->decelerate_after+1 < this->main_stepper->steps_to_move ) {
203 this->main_stepper->signal_step= block->decelerate_after+1; // we make it +1 as deceleration does not start until steps > decelerate_after
204 }
205 }
206
207 // Current block is discarded
208 void Stepper::on_block_end(void *argument)
209 {
210 this->current_block = NULL; //stfu !
211 }
212
213 // When a stepper motor has finished it's assigned movement
214 uint32_t Stepper::stepper_motor_finished_move(uint32_t dummy)
215 {
216 // We care only if none is still moving
217 if( THEKERNEL->robot->alpha_stepper_motor->moving || THEKERNEL->robot->beta_stepper_motor->moving || THEKERNEL->robot->gamma_stepper_motor->moving ) {
218 return 0;
219 }
220
221 // This block is finished, release it
222 if( this->current_block != NULL ) {
223 this->current_block->release();
224 }
225
226 return 0;
227 }
228
229
230 // This is called ACCELERATION_TICKS_PER_SECOND times per second by the step_event
231 // interrupt. It can be assumed that the trapezoid-generator-parameters and the
232 // current_block stays untouched by outside handlers for the duration of this function call.
233 // NOTE caled at the same priority as PendSV so it may make that longer but it is better that having htis pre empted by pendsv
234 void Stepper::trapezoid_generator_tick(void)
235 {
236 // Do not do the accel math for nothing
237 if(this->current_block && !this->paused && this->main_stepper->moving ) {
238
239 // Store this here because we use it a lot down there
240 uint32_t current_steps_completed = this->main_stepper->stepped;
241 float last_rate= trapezoid_adjusted_rate;
242
243 if( this->force_speed_update ) {
244 // Do not accel, just set the value
245 this->force_speed_update = false;
246 last_rate= -1;
247
248 } else if(THEKERNEL->conveyor->is_flushing()) {
249 // if we are flushing the queue, decelerate to 0 then finish this block
250 if (trapezoid_adjusted_rate > current_block->rate_delta * 1.5F) {
251 trapezoid_adjusted_rate -= current_block->rate_delta;
252
253 } else if (trapezoid_adjusted_rate == current_block->rate_delta * 0.5F) {
254 for (auto i : THEKERNEL->robot->actuators) i->move(i->direction, 0); // stop motors
255 if (current_block) current_block->release();
256 THEKERNEL->call_event(ON_SPEED_CHANGE, 0); // tell others we stopped
257 return;
258
259 } else {
260 trapezoid_adjusted_rate = current_block->rate_delta * 0.5F;
261 }
262
263 } else if(current_steps_completed <= this->current_block->accelerate_until) {
264 // If we are accelerating
265 // Increase speed
266 this->trapezoid_adjusted_rate += this->current_block->rate_delta;
267 if (this->trapezoid_adjusted_rate > this->current_block->nominal_rate ) {
268 this->trapezoid_adjusted_rate = this->current_block->nominal_rate;
269 }
270
271 } else if (current_steps_completed > this->current_block->decelerate_after) {
272 // If we are decelerating
273 // Reduce speed
274 // NOTE: We will only reduce speed if the result will be > 0. This catches small
275 // rounding errors that might leave steps hanging after the last trapezoid tick.
276 if(this->trapezoid_adjusted_rate > this->current_block->rate_delta * 1.5F) {
277 this->trapezoid_adjusted_rate -= this->current_block->rate_delta;
278 } else {
279 this->trapezoid_adjusted_rate = this->current_block->rate_delta * 1.5F;
280 }
281 if(this->trapezoid_adjusted_rate < this->current_block->final_rate ) {
282 this->trapezoid_adjusted_rate = this->current_block->final_rate;
283 }
284
285 } else if (trapezoid_adjusted_rate != current_block->nominal_rate) {
286 // If we are cruising
287 // Make sure we cruise at exactly nominal rate
288 this->trapezoid_adjusted_rate = this->current_block->nominal_rate;
289 }
290
291 if(last_rate != trapezoid_adjusted_rate) {
292 // don't call this if speed did not change
293 this->set_step_events_per_second(this->trapezoid_adjusted_rate);
294 }
295 }
296 }
297
298 // Initializes the trapezoid generator from the current block. Called whenever a new
299 // block begins.
300 inline void Stepper::trapezoid_generator_reset()
301 {
302 this->trapezoid_adjusted_rate = this->current_block->initial_rate;
303 this->force_speed_update = true;
304 }
305
306 // Update the speed for all steppers
307 void Stepper::set_step_events_per_second( float steps_per_second )
308 {
309 float isps= steps_per_second / this->current_block->steps_event_count;
310
311 // Instruct the stepper motors
312 if( THEKERNEL->robot->alpha_stepper_motor->moving ) {
313 THEKERNEL->robot->alpha_stepper_motor->set_speed(isps * this->current_block->steps[ALPHA_STEPPER]);
314 }
315 if( THEKERNEL->robot->beta_stepper_motor->moving ) {
316 THEKERNEL->robot->beta_stepper_motor->set_speed(isps * this->current_block->steps[BETA_STEPPER]);
317 }
318 if( THEKERNEL->robot->gamma_stepper_motor->moving ) {
319 THEKERNEL->robot->gamma_stepper_motor->set_speed(isps * this->current_block->steps[GAMMA_STEPPER]);
320 }
321
322 // Other modules might want to know the speed changed
323 THEKERNEL->call_event(ON_SPEED_CHANGE, this);
324 }
325
326