2011-01-14 15:45:18 +00:00
|
|
|
/*
|
2011-02-10 23:34:53 +00:00
|
|
|
planner.c - buffers movement commands and manages the acceleration profile plan
|
2011-01-14 15:45:18 +00:00
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
2011-02-11 00:31:44 +00:00
|
|
|
/* The ring buffer implementation gleaned from the wiring_serial library by David A. Mellis. */
|
|
|
|
|
2011-01-14 15:45:18 +00:00
|
|
|
#include <inttypes.h>
|
|
|
|
#include <math.h>
|
2011-01-14 16:13:33 +00:00
|
|
|
#include <stdlib.h>
|
2011-01-14 15:45:18 +00:00
|
|
|
|
2011-02-10 23:34:53 +00:00
|
|
|
#include "planner.h"
|
2011-01-14 15:45:18 +00:00
|
|
|
#include "nuts_bolts.h"
|
|
|
|
#include "stepper.h"
|
2011-02-04 23:45:41 +00:00
|
|
|
#include "settings.h"
|
2011-02-04 23:55:37 +00:00
|
|
|
#include "config.h"
|
2011-01-22 22:29:02 +00:00
|
|
|
#include "wiring_serial.h"
|
2011-01-14 15:45:18 +00:00
|
|
|
|
2011-02-10 23:44:18 +00:00
|
|
|
// The number of linear motions that can be in the plan at any give time
|
2011-02-18 20:46:18 +00:00
|
|
|
#define BLOCK_BUFFER_SIZE 16
|
2011-02-10 23:44:18 +00:00
|
|
|
|
2011-02-11 23:03:58 +00:00
|
|
|
static block_t block_buffer[BLOCK_BUFFER_SIZE]; // A ring buffer for motion instructions
|
2011-02-18 23:32:36 +00:00
|
|
|
static volatile uint8_t block_buffer_head; // Index of the next block to be pushed
|
|
|
|
static volatile uint8_t block_buffer_tail; // Index of the block to process now
|
2011-01-25 22:33:19 +00:00
|
|
|
|
2011-02-06 22:23:34 +00:00
|
|
|
// The current position of the tool in absolute steps
|
2011-02-11 23:03:58 +00:00
|
|
|
static int32_t position[3];
|
2011-02-06 22:23:34 +00:00
|
|
|
|
2011-02-06 21:25:01 +00:00
|
|
|
static uint8_t acceleration_manager_enabled; // Acceleration management active?
|
2011-01-14 15:45:18 +00:00
|
|
|
|
2011-02-11 22:53:58 +00:00
|
|
|
#define ONE_MINUTE_OF_MICROSECONDS 60000000.0
|
|
|
|
|
2011-01-24 19:55:25 +00:00
|
|
|
// Calculates the distance (not time) it takes to accelerate from initial_rate to target_rate using the
|
|
|
|
// given acceleration:
|
2011-02-19 22:03:10 +00:00
|
|
|
static double estimate_acceleration_distance(double initial_rate, double target_rate, double acceleration) {
|
2011-01-25 13:07:01 +00:00
|
|
|
return(
|
|
|
|
(target_rate*target_rate-initial_rate*initial_rate)/
|
|
|
|
(2L*acceleration)
|
|
|
|
);
|
2011-01-14 15:45:18 +00:00
|
|
|
}
|
|
|
|
|
2011-01-24 19:55:25 +00:00
|
|
|
/* + <- some maximum rate we don't care about
|
2011-01-22 22:29:02 +00:00
|
|
|
/|\
|
2011-01-23 20:14:38 +00:00
|
|
|
/ | \
|
|
|
|
/ | + <- final_rate
|
|
|
|
/ | |
|
|
|
|
initial_rate -> +----+--+
|
|
|
|
^ ^
|
|
|
|
| |
|
|
|
|
intersection_distance distance */
|
|
|
|
|
2011-02-18 23:32:36 +00:00
|
|
|
|
|
|
|
// This function gives you the point at which you must start braking (at the rate of -acceleration) if
|
|
|
|
// you started at speed initial_rate and accelerated until this point and want to end at the final_rate after
|
|
|
|
// a total travel of distance. This can be used to compute the intersection point between acceleration and
|
|
|
|
// deceleration in the cases where the trapezoid has no plateau (i.e. never reaches maximum speed)
|
|
|
|
|
2011-02-19 22:03:10 +00:00
|
|
|
static double intersection_distance(double initial_rate, double final_rate, double acceleration, double distance) {
|
2011-01-25 13:07:01 +00:00
|
|
|
return(
|
|
|
|
(2*acceleration*distance-initial_rate*initial_rate+final_rate*final_rate)/
|
|
|
|
(4*acceleration)
|
|
|
|
);
|
2011-01-14 15:45:18 +00:00
|
|
|
}
|
|
|
|
|
2011-01-24 19:55:25 +00:00
|
|
|
/*
|
|
|
|
+--------+ <- nominal_rate
|
|
|
|
/ \
|
|
|
|
nominal_rate*entry_factor -> + \
|
|
|
|
| + <- nominal_rate*exit_factor
|
|
|
|
+-------------+
|
|
|
|
time -->
|
|
|
|
*/
|
|
|
|
|
2011-02-18 23:32:36 +00:00
|
|
|
// Calculates trapezoid parameters so that the entry- and exit-speed is compensated by the provided factors.
|
|
|
|
// The factors represent a factor of braking and must be in the range 0.0-1.0.
|
|
|
|
|
2011-02-19 22:03:10 +00:00
|
|
|
static void calculate_trapezoid_for_block(block_t *block, double entry_factor, double exit_factor) {
|
2011-01-23 20:14:38 +00:00
|
|
|
block->initial_rate = ceil(block->nominal_rate*entry_factor);
|
2011-02-16 21:58:53 +00:00
|
|
|
block->final_rate = ceil(block->nominal_rate*exit_factor);
|
2011-01-23 20:14:38 +00:00
|
|
|
int32_t acceleration_per_minute = block->rate_delta*ACCELERATION_TICKS_PER_SECOND*60.0;
|
2011-01-22 22:29:02 +00:00
|
|
|
int32_t accelerate_steps =
|
2011-01-23 20:14:38 +00:00
|
|
|
ceil(estimate_acceleration_distance(block->initial_rate, block->nominal_rate, acceleration_per_minute));
|
2011-01-22 22:29:02 +00:00
|
|
|
int32_t decelerate_steps =
|
2011-02-16 21:58:53 +00:00
|
|
|
floor(estimate_acceleration_distance(block->nominal_rate, block->final_rate, -acceleration_per_minute));
|
2011-01-24 19:55:25 +00:00
|
|
|
|
|
|
|
// Calculate the size of Plateau of Nominal Rate.
|
2011-01-22 22:29:02 +00:00
|
|
|
int32_t plateau_steps = block->step_event_count-accelerate_steps-decelerate_steps;
|
2011-01-24 19:55:25 +00:00
|
|
|
|
|
|
|
// Is the Plateau of Nominal Rate smaller than nothing? That means no cruising, and we will
|
|
|
|
// have to use intersection_distance() to calculate when to abort acceleration and start braking
|
|
|
|
// in order to reach the final_rate exactly at the end of this block.
|
2011-01-22 22:29:02 +00:00
|
|
|
if (plateau_steps < 0) {
|
2011-01-23 20:14:38 +00:00
|
|
|
accelerate_steps = ceil(
|
2011-02-16 21:58:53 +00:00
|
|
|
intersection_distance(block->initial_rate, block->final_rate, acceleration_per_minute, block->step_event_count));
|
2011-02-03 12:20:31 +00:00
|
|
|
plateau_steps = 0;
|
2011-01-22 22:29:02 +00:00
|
|
|
}
|
2011-01-24 19:55:25 +00:00
|
|
|
|
2011-01-22 22:29:02 +00:00
|
|
|
block->accelerate_until = accelerate_steps;
|
|
|
|
block->decelerate_after = accelerate_steps+plateau_steps;
|
|
|
|
}
|
2011-01-14 15:56:44 +00:00
|
|
|
|
2011-01-24 20:30:51 +00:00
|
|
|
// Calculates the maximum allowable speed at this point when you must be able to reach target_velocity using the
|
2011-01-24 19:55:25 +00:00
|
|
|
// acceleration within the allotted distance.
|
2011-02-19 22:03:10 +00:00
|
|
|
static double max_allowable_speed(double acceleration, double target_velocity, double distance) {
|
2011-01-25 13:07:01 +00:00
|
|
|
return(
|
2011-02-03 11:54:32 +00:00
|
|
|
sqrt(target_velocity*target_velocity-2*acceleration*60*60*distance)
|
2011-01-25 13:07:01 +00:00
|
|
|
);
|
2011-01-14 23:27:08 +00:00
|
|
|
}
|
|
|
|
|
2011-01-24 19:55:25 +00:00
|
|
|
// "Junction jerk" in this context is the immediate change in speed at the junction of two blocks.
|
|
|
|
// This method will calculate the junction jerk as the euclidean distance between the nominal
|
|
|
|
// velocities of the respective blocks.
|
2011-02-19 22:03:10 +00:00
|
|
|
static double junction_jerk(block_t *before, block_t *after) {
|
2011-01-24 19:55:25 +00:00
|
|
|
return(sqrt(
|
|
|
|
pow(before->speed_x-after->speed_x, 2)+
|
|
|
|
pow(before->speed_y-after->speed_y, 2)+
|
|
|
|
pow(before->speed_z-after->speed_z, 2))
|
|
|
|
);
|
2011-01-14 23:27:08 +00:00
|
|
|
}
|
|
|
|
|
2011-02-04 21:09:09 +00:00
|
|
|
// Calculate a braking factor to reach baseline speed which is max_jerk/2, e.g. the
|
|
|
|
// speed under which you cannot exceed max_jerk no matter what you do.
|
2011-02-19 22:03:10 +00:00
|
|
|
static double factor_for_safe_speed(block_t *block) {
|
2011-02-17 20:41:41 +00:00
|
|
|
if(settings.max_jerk < block->nominal_speed) {
|
|
|
|
return(settings.max_jerk/block->nominal_speed);
|
|
|
|
} else {
|
|
|
|
return(1.0);
|
|
|
|
}
|
2011-02-04 21:09:09 +00:00
|
|
|
}
|
|
|
|
|
2011-01-24 22:08:44 +00:00
|
|
|
// The kernel called by planner_recalculate() when scanning the plan from last to first entry.
|
2011-02-19 22:03:10 +00:00
|
|
|
static void planner_reverse_pass_kernel(block_t *previous, block_t *current, block_t *next) {
|
2011-01-25 13:07:01 +00:00
|
|
|
if(!current) { return; }
|
2011-01-24 19:55:25 +00:00
|
|
|
|
2011-01-14 23:27:08 +00:00
|
|
|
double entry_factor = 1.0;
|
2011-01-24 19:55:25 +00:00
|
|
|
double exit_factor;
|
2011-01-14 23:27:08 +00:00
|
|
|
if (next) {
|
|
|
|
exit_factor = next->entry_factor;
|
|
|
|
} else {
|
2011-02-04 21:09:09 +00:00
|
|
|
exit_factor = factor_for_safe_speed(current);
|
2011-01-14 23:27:08 +00:00
|
|
|
}
|
|
|
|
|
2011-01-24 19:55:25 +00:00
|
|
|
// Calculate the entry_factor for the current block.
|
2011-01-14 23:27:08 +00:00
|
|
|
if (previous) {
|
2011-01-24 19:55:25 +00:00
|
|
|
// Reduce speed so that junction_jerk is within the maximum allowed
|
|
|
|
double jerk = junction_jerk(previous, current);
|
2011-01-14 23:27:08 +00:00
|
|
|
if (jerk > settings.max_jerk) {
|
|
|
|
entry_factor = (settings.max_jerk/jerk);
|
|
|
|
}
|
2011-01-24 19:55:25 +00:00
|
|
|
// If the required deceleration across the block is too rapid, reduce the entry_factor accordingly.
|
2011-01-24 20:30:51 +00:00
|
|
|
if (entry_factor > exit_factor) {
|
2011-01-24 19:55:25 +00:00
|
|
|
double max_entry_speed = max_allowable_speed(-settings.acceleration,current->nominal_speed*exit_factor,
|
2011-01-14 23:27:08 +00:00
|
|
|
current->millimeters);
|
|
|
|
double max_entry_factor = max_entry_speed/current->nominal_speed;
|
|
|
|
if (max_entry_factor < entry_factor) {
|
|
|
|
entry_factor = max_entry_factor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2011-02-04 21:09:09 +00:00
|
|
|
entry_factor = factor_for_safe_speed(current);
|
2011-01-14 23:27:08 +00:00
|
|
|
}
|
2011-02-10 22:48:17 +00:00
|
|
|
|
2011-01-24 20:30:51 +00:00
|
|
|
// Store result
|
2011-01-14 23:27:08 +00:00
|
|
|
current->entry_factor = entry_factor;
|
|
|
|
}
|
|
|
|
|
2011-01-25 13:07:01 +00:00
|
|
|
// planner_recalculate() needs to go over the current plan twice. Once in reverse and once forward. This
|
2011-01-24 19:55:25 +00:00
|
|
|
// implements the reverse pass.
|
2011-02-19 22:03:10 +00:00
|
|
|
static void planner_reverse_pass() {
|
2011-01-24 20:30:51 +00:00
|
|
|
auto int8_t block_index = block_buffer_head;
|
2011-01-25 21:51:37 +00:00
|
|
|
block_t *block[3] = {NULL, NULL, NULL};
|
2011-02-04 21:09:09 +00:00
|
|
|
while(block_index != block_buffer_tail) {
|
|
|
|
block_index--;
|
|
|
|
if(block_index < 0) {
|
|
|
|
block_index = BLOCK_BUFFER_SIZE-1;
|
|
|
|
}
|
2011-01-14 23:27:08 +00:00
|
|
|
block[2]= block[1];
|
|
|
|
block[1]= block[0];
|
|
|
|
block[0] = &block_buffer[block_index];
|
2011-01-24 20:30:51 +00:00
|
|
|
planner_reverse_pass_kernel(block[0], block[1], block[2]);
|
2011-01-14 23:27:08 +00:00
|
|
|
}
|
2011-01-24 19:55:25 +00:00
|
|
|
planner_reverse_pass_kernel(NULL, block[0], block[1]);
|
|
|
|
}
|
|
|
|
|
2011-01-24 22:08:44 +00:00
|
|
|
// The kernel called by planner_recalculate() when scanning the plan from first to last entry.
|
2011-02-19 22:03:10 +00:00
|
|
|
static void planner_forward_pass_kernel(block_t *previous, block_t *current, block_t *next) {
|
2011-01-25 13:07:01 +00:00
|
|
|
if(!current) { return; }
|
2011-01-24 20:30:51 +00:00
|
|
|
// If the previous block is an acceleration block, but it is not long enough to
|
|
|
|
// complete the full speed change within the block, we need to adjust out entry
|
|
|
|
// speed accordingly. Remember current->entry_factor equals the exit factor of
|
|
|
|
// the previous block.
|
|
|
|
if(previous->entry_factor < current->entry_factor) {
|
|
|
|
double max_entry_speed = max_allowable_speed(-settings.acceleration,
|
|
|
|
current->nominal_speed*previous->entry_factor, previous->millimeters);
|
|
|
|
double max_entry_factor = max_entry_speed/current->nominal_speed;
|
|
|
|
if (max_entry_factor < current->entry_factor) {
|
|
|
|
current->entry_factor = max_entry_factor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-25 13:07:01 +00:00
|
|
|
// planner_recalculate() needs to go over the current plan twice. Once in reverse and once forward. This
|
2011-01-24 22:08:44 +00:00
|
|
|
// implements the forward pass.
|
2011-02-19 22:03:10 +00:00
|
|
|
static void planner_forward_pass() {
|
2011-01-24 20:30:51 +00:00
|
|
|
int8_t block_index = block_buffer_tail;
|
2011-01-25 21:51:37 +00:00
|
|
|
block_t *block[3] = {NULL, NULL, NULL};
|
2011-01-24 20:30:51 +00:00
|
|
|
|
|
|
|
while(block_index != block_buffer_head) {
|
|
|
|
block[0] = block[1];
|
|
|
|
block[1] = block[2];
|
|
|
|
block[2] = &block_buffer[block_index];
|
|
|
|
planner_forward_pass_kernel(block[0],block[1],block[2]);
|
|
|
|
block_index = (block_index+1) % BLOCK_BUFFER_SIZE;
|
|
|
|
}
|
|
|
|
planner_forward_pass_kernel(block[1], block[2], NULL);
|
|
|
|
}
|
|
|
|
|
2011-01-24 22:08:44 +00:00
|
|
|
// Recalculates the trapezoid speed profiles for all blocks in the plan according to the
|
|
|
|
// entry_factor for each junction. Must be called by planner_recalculate() after
|
|
|
|
// updating the blocks.
|
2011-02-19 22:03:10 +00:00
|
|
|
static void planner_recalculate_trapezoids() {
|
2011-01-24 19:55:25 +00:00
|
|
|
int8_t block_index = block_buffer_tail;
|
2011-01-25 21:51:37 +00:00
|
|
|
block_t *current;
|
|
|
|
block_t *next = NULL;
|
2011-01-24 20:30:51 +00:00
|
|
|
|
|
|
|
while(block_index != block_buffer_head) {
|
|
|
|
current = next;
|
|
|
|
next = &block_buffer[block_index];
|
|
|
|
if (current) {
|
|
|
|
calculate_trapezoid_for_block(current, current->entry_factor, next->entry_factor);
|
|
|
|
}
|
2011-01-24 19:55:25 +00:00
|
|
|
block_index = (block_index+1) % BLOCK_BUFFER_SIZE;
|
2011-01-14 23:27:08 +00:00
|
|
|
}
|
2011-02-04 21:09:09 +00:00
|
|
|
calculate_trapezoid_for_block(next, next->entry_factor, factor_for_safe_speed(next));
|
2011-01-14 23:27:08 +00:00
|
|
|
}
|
|
|
|
|
2011-01-24 22:08:44 +00:00
|
|
|
// Recalculates the motion plan according to the following algorithm:
|
2011-01-25 13:07:01 +00:00
|
|
|
//
|
2011-01-25 21:51:37 +00:00
|
|
|
// 1. Go over every block in reverse order and calculate a junction speed reduction (i.e. block_t.entry_factor)
|
2011-01-25 13:07:01 +00:00
|
|
|
// so that:
|
|
|
|
// a. The junction jerk is within the set limit
|
|
|
|
// b. No speed reduction within one block requires faster deceleration than the one, true constant
|
|
|
|
// acceleration.
|
|
|
|
// 2. Go over every block in chronological order and dial down junction speed reduction values if
|
|
|
|
// a. The speed increase within one block would require faster accelleration than the one, true
|
|
|
|
// constant acceleration.
|
|
|
|
//
|
2011-01-24 22:08:44 +00:00
|
|
|
// When these stages are complete all blocks have an entry_factor that will allow all speed changes to
|
|
|
|
// be performed using only the one, true constant acceleration, and where no junction jerk is jerkier than
|
|
|
|
// the set limit. Finally it will:
|
2011-01-25 13:07:01 +00:00
|
|
|
//
|
|
|
|
// 3. Recalculate trapezoids for all blocks.
|
2011-01-24 22:08:44 +00:00
|
|
|
|
2011-02-19 22:03:10 +00:00
|
|
|
static void planner_recalculate() {
|
2011-01-24 20:30:51 +00:00
|
|
|
planner_reverse_pass();
|
|
|
|
planner_forward_pass();
|
|
|
|
planner_recalculate_trapezoids();
|
2011-01-24 19:55:25 +00:00
|
|
|
}
|
|
|
|
|
2011-01-25 12:55:11 +00:00
|
|
|
void plan_init() {
|
|
|
|
block_buffer_head = 0;
|
|
|
|
block_buffer_tail = 0;
|
2011-02-18 22:04:12 +00:00
|
|
|
plan_set_acceleration_manager_enabled(true);
|
2011-02-06 22:23:34 +00:00
|
|
|
clear_vector(position);
|
2011-01-25 12:55:11 +00:00
|
|
|
}
|
2011-01-24 22:08:44 +00:00
|
|
|
|
2011-02-06 21:25:01 +00:00
|
|
|
void plan_set_acceleration_manager_enabled(int enabled) {
|
|
|
|
if ((!!acceleration_manager_enabled) != (!!enabled)) {
|
2011-01-14 23:27:08 +00:00
|
|
|
st_synchronize();
|
2011-02-06 21:25:01 +00:00
|
|
|
acceleration_manager_enabled = !!enabled;
|
2011-01-14 23:27:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-06 21:25:01 +00:00
|
|
|
int plan_is_acceleration_manager_enabled() {
|
|
|
|
return(acceleration_manager_enabled);
|
2011-01-14 23:27:08 +00:00
|
|
|
}
|
|
|
|
|
2011-02-17 22:59:10 +00:00
|
|
|
void plan_discard_current_block() {
|
2011-02-06 22:52:12 +00:00
|
|
|
if (block_buffer_head != block_buffer_tail) {
|
|
|
|
block_buffer_tail = (block_buffer_tail + 1) % BLOCK_BUFFER_SIZE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-17 22:59:10 +00:00
|
|
|
block_t *plan_get_current_block() {
|
2011-02-06 22:52:12 +00:00
|
|
|
if (block_buffer_head == block_buffer_tail) { return(NULL); }
|
|
|
|
return(&block_buffer[block_buffer_tail]);
|
|
|
|
}
|
|
|
|
|
2011-02-06 22:23:34 +00:00
|
|
|
// Add a new linear movement to the buffer. steps_x, _y and _z is the absolute position in
|
|
|
|
// mm. Microseconds specify how many microseconds the move should take to perform. To aid acceleration
|
2011-01-14 15:56:44 +00:00
|
|
|
// calculation the caller must also provide the physical length of the line in millimeters.
|
2011-02-06 22:23:34 +00:00
|
|
|
void plan_buffer_line(double x, double y, double z, double feed_rate, int invert_feed_rate) {
|
|
|
|
// The target position of the tool in absolute steps
|
|
|
|
|
|
|
|
// Calculate target position in absolute steps
|
|
|
|
int32_t target[3];
|
2011-02-06 22:27:04 +00:00
|
|
|
target[X_AXIS] = lround(x*settings.steps_per_mm[X_AXIS]);
|
|
|
|
target[Y_AXIS] = lround(y*settings.steps_per_mm[Y_AXIS]);
|
2011-02-10 12:06:18 +00:00
|
|
|
target[Z_AXIS] = lround(z*settings.steps_per_mm[Z_AXIS]);
|
|
|
|
|
2011-01-14 15:56:44 +00:00
|
|
|
// Calculate the buffer head after we push this byte
|
|
|
|
int next_buffer_head = (block_buffer_head + 1) % BLOCK_BUFFER_SIZE;
|
|
|
|
// If the buffer is full: good! That means we are well ahead of the robot.
|
|
|
|
// Rest here until there is room in the buffer.
|
|
|
|
while(block_buffer_tail == next_buffer_head) { sleep_mode(); }
|
|
|
|
// Prepare to set up new block
|
2011-01-25 21:51:37 +00:00
|
|
|
block_t *block = &block_buffer[block_buffer_head];
|
2011-01-14 15:56:44 +00:00
|
|
|
// Number of steps for each axis
|
2011-02-10 22:48:17 +00:00
|
|
|
block->steps_x = labs(target[X_AXIS]-position[X_AXIS]);
|
|
|
|
block->steps_y = labs(target[Y_AXIS]-position[Y_AXIS]);
|
|
|
|
block->steps_z = labs(target[Z_AXIS]-position[Z_AXIS]);
|
2011-01-14 15:56:44 +00:00
|
|
|
block->step_event_count = max(block->steps_x, max(block->steps_y, block->steps_z));
|
|
|
|
// Bail if this is a zero-length block
|
|
|
|
if (block->step_event_count == 0) { return; };
|
2011-02-06 22:23:34 +00:00
|
|
|
|
2011-02-10 22:48:17 +00:00
|
|
|
double delta_x_mm = (target[X_AXIS]-position[X_AXIS])/settings.steps_per_mm[X_AXIS];
|
|
|
|
double delta_y_mm = (target[Y_AXIS]-position[Y_AXIS])/settings.steps_per_mm[Y_AXIS];
|
|
|
|
double delta_z_mm = (target[Z_AXIS]-position[Z_AXIS])/settings.steps_per_mm[Z_AXIS];
|
|
|
|
block->millimeters = sqrt(square(delta_x_mm) + square(delta_y_mm) + square(delta_z_mm));
|
|
|
|
|
|
|
|
|
2011-02-06 22:23:34 +00:00
|
|
|
uint32_t microseconds;
|
|
|
|
if (!invert_feed_rate) {
|
|
|
|
microseconds = lround((block->millimeters/feed_rate)*1000000);
|
|
|
|
} else {
|
|
|
|
microseconds = lround(ONE_MINUTE_OF_MICROSECONDS/feed_rate);
|
|
|
|
}
|
|
|
|
|
2011-01-14 15:56:44 +00:00
|
|
|
// Calculate speed in mm/minute for each axis
|
|
|
|
double multiplier = 60.0*1000000.0/microseconds;
|
2011-02-10 22:48:17 +00:00
|
|
|
block->speed_x = delta_x_mm * multiplier;
|
|
|
|
block->speed_y = delta_y_mm * multiplier;
|
|
|
|
block->speed_z = delta_z_mm * multiplier;
|
|
|
|
block->nominal_speed = block->millimeters * multiplier;
|
|
|
|
block->nominal_rate = ceil(block->step_event_count * multiplier);
|
2011-02-03 09:42:00 +00:00
|
|
|
block->entry_factor = 0.0;
|
2011-01-14 15:56:44 +00:00
|
|
|
|
|
|
|
// Compute the acceleration rate for the trapezoid generator. Depending on the slope of the line
|
|
|
|
// average travel per step event changes. For a line along one axis the travel per step event
|
|
|
|
// is equal to the travel/step in the particular axis. For a 45 degree line the steppers of both
|
|
|
|
// axes might step for every step event. Travel per step event is then sqrt(travel_x^2+travel_y^2).
|
|
|
|
// To generate trapezoids with contant acceleration between blocks the rate_delta must be computed
|
|
|
|
// specifically for each line to compensate for this phenomenon:
|
2011-02-06 22:23:34 +00:00
|
|
|
double travel_per_step = block->millimeters/block->step_event_count;
|
2011-01-23 20:14:38 +00:00
|
|
|
block->rate_delta = ceil(
|
2011-01-22 22:29:02 +00:00
|
|
|
((settings.acceleration*60.0)/(ACCELERATION_TICKS_PER_SECOND))/ // acceleration mm/sec/sec per acceleration_tick
|
2011-01-24 19:55:25 +00:00
|
|
|
travel_per_step); // convert to: acceleration steps/min/acceleration_tick
|
2011-02-06 21:25:01 +00:00
|
|
|
if (acceleration_manager_enabled) {
|
2011-02-06 22:23:34 +00:00
|
|
|
// compute a preliminary conservative acceleration trapezoid
|
2011-02-04 21:09:09 +00:00
|
|
|
double safe_speed_factor = factor_for_safe_speed(block);
|
2011-02-06 22:23:34 +00:00
|
|
|
calculate_trapezoid_for_block(block, safe_speed_factor, safe_speed_factor);
|
2011-01-14 16:13:33 +00:00
|
|
|
} else {
|
2011-02-03 09:42:00 +00:00
|
|
|
block->initial_rate = block->nominal_rate;
|
2011-02-16 21:58:53 +00:00
|
|
|
block->final_rate = block->nominal_rate;
|
2011-01-22 22:29:02 +00:00
|
|
|
block->accelerate_until = 0;
|
2011-02-03 09:42:00 +00:00
|
|
|
block->decelerate_after = block->step_event_count;
|
2011-01-14 16:13:33 +00:00
|
|
|
block->rate_delta = 0;
|
|
|
|
}
|
2011-01-14 15:56:44 +00:00
|
|
|
|
|
|
|
// Compute direction bits for this block
|
|
|
|
block->direction_bits = 0;
|
2011-02-06 22:27:04 +00:00
|
|
|
if (target[X_AXIS] < position[X_AXIS]) { block->direction_bits |= (1<<X_DIRECTION_BIT); }
|
|
|
|
if (target[Y_AXIS] < position[Y_AXIS]) { block->direction_bits |= (1<<Y_DIRECTION_BIT); }
|
|
|
|
if (target[Z_AXIS] < position[Z_AXIS]) { block->direction_bits |= (1<<Z_DIRECTION_BIT); }
|
2011-02-06 22:23:34 +00:00
|
|
|
|
2011-01-14 15:56:44 +00:00
|
|
|
// Move buffer head
|
2011-02-06 22:23:34 +00:00
|
|
|
block_buffer_head = next_buffer_head;
|
|
|
|
// Update position
|
|
|
|
memcpy(position, target, sizeof(target)); // position[] = target[]
|
2011-01-24 22:08:44 +00:00
|
|
|
|
2011-02-10 12:06:18 +00:00
|
|
|
if (acceleration_manager_enabled) { planner_recalculate(); }
|
2011-02-10 23:34:53 +00:00
|
|
|
st_wake_up();
|
2011-01-14 15:56:44 +00:00
|
|
|
}
|