2011-01-14 16:45:18 +01:00
/*
2011-02-11 00:34:53 +01:00
planner . c - buffers movement commands and manages the acceleration profile plan
2011-01-14 16:45:18 +01:00
Part of Grbl
Copyright ( c ) 2009 - 2011 Simen Svale Skogsrud
2012-01-29 04:41:08 +01:00
Copyright ( c ) 2011 - 2012 Sungeun K . Jeon
2011-12-09 02:47:48 +01:00
Copyright ( c ) 2011 Jens Geisler
2011-09-03 23:31:48 +02:00
2011-01-14 16:45:18 +01:00
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 01:31:44 +01:00
/* The ring buffer implementation gleaned from the wiring_serial library by David A. Mellis. */
2013-02-20 14:56:47 +01:00
# include <avr/interrupt.h>
New startup script setting. New dry run, check gcode switches. New system state variable. Lots of reorganizing.
(All v0.8 features installed. Still likely buggy, but now thourough
testing will need to start to squash them all. As soon as we're done,
this will be pushed to master and v0.9 development will be started.
Please report ANY issues to us so we can get this rolled out ASAP.)
- User startup script! A user can now save one (up to 5 as compile-time
option) block of g-code in EEPROM memory. This will be run everytime
Grbl resets. Mainly to be used as a way to set your preferences, like
G21, G54, etc.
- New dry run and check g-code switches. Dry run moves ALL motions at
rapids rate ignoring spindle, coolant, and dwell commands. For rapid
physical proofing of your code. The check g-code switch ignores all
motion and provides the user a way to check if there are any errors in
their program that Grbl may not like.
- Program restart! (sort of). Program restart is typically an advanced
feature that allows users to restart a program mid-stream. The check
g-code switch can perform this feature by enabling the switch at the
start of the program, and disabling it at the desired point with some
minimal changes.
- New system state variable. This state variable tracks all of the
different state processes that Grbl performs, i.e. cycle start, feed
hold, homing, etc. This is mainly for making managing of these task
easier and more clear.
- Position lost state variable. Only when homing is enabled, Grbl will
refuse to move until homing is completed and position is known. This is
mainly for safety. Otherwise, it will let users fend for themselves.
- Moved the default settings defines into config.h. The plan is to
eventually create a set of config.h's for particular as-built machines
to help users from doing it themselves.
- Moved around misc defines into .h files. And lots of other little
things.
2012-11-03 18:32:23 +01:00
# include <inttypes.h>
2011-01-14 17:13:33 +01:00
# include <stdlib.h>
2013-02-20 14:56:47 +01:00
# include <stdio.h>
2011-02-11 00:34:53 +01:00
# include "planner.h"
2011-01-14 16:45:18 +01:00
# include "nuts_bolts.h"
# include "stepper.h"
2011-02-05 00:45:41 +01:00
# include "settings.h"
2011-02-05 00:55:37 +01:00
# include "config.h"
2011-12-09 02:47:48 +01:00
# include "protocol.h"
2013-02-20 14:56:47 +01:00
# include "motion_control.h"
2011-01-14 16:45:18 +01:00
2013-02-20 15:04:26 +01:00
uint32_t planner_steps_counter ;
2012-12-21 16:51:36 +01:00
# define SOME_LARGE_VALUE 1.0E+38 // Used by rapids and acceleration maximization calculations. Just needs
2013-01-06 20:04:02 +01:00
// to be larger than any feasible (mm/min)^2 or mm/sec^2 value.
2012-12-17 00:23:24 +01:00
2011-02-12 00:03:58 +01:00
static block_t block_buffer [ BLOCK_BUFFER_SIZE ] ; // A ring buffer for motion instructions
2011-02-19 00:32:36 +01: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-12-09 02:47:48 +01:00
static uint8_t next_buffer_head ; // Index of the next buffer head
2013-02-20 14:56:47 +01:00
static uint8_t planned_block_tail ; // Index of the latest block that is optimally planned
2012-12-20 01:30:09 +01:00
// static *block_t block_buffer_planned;
2011-01-25 23:33:19 +01:00
2012-01-10 16:34:48 +01:00
// Define planner variables
typedef struct {
2012-12-12 01:42:29 +01:00
int32_t position [ N_AXIS ] ; // The planner position of the tool in absolute steps. Kept separate
// from g-code position for movements requiring multiple line motions,
// i.e. arcs, canned cycles, and backlash compensation.
float previous_unit_vec [ N_AXIS ] ; // Unit vector of previous path line segment
float previous_nominal_speed_sqr ; // Nominal speed of previous path line segment
2012-12-17 00:23:24 +01:00
float last_x , last_y , last_z ; // Target position of previous path line segment
2012-01-10 16:34:48 +01:00
} planner_t ;
static planner_t pl ;
2011-09-03 23:31:48 +02:00
2012-12-17 00:23:24 +01:00
2011-09-03 23:31:48 +02:00
// Returns the index of the next block in the ring buffer
2011-09-14 05:57:16 +02:00
// NOTE: Removed modulo (%) operator, which uses an expensive divide and multiplication.
2011-12-09 02:47:48 +01:00
static uint8_t next_block_index ( uint8_t block_index )
{
2011-09-14 05:57:16 +02:00
block_index + + ;
if ( block_index = = BLOCK_BUFFER_SIZE ) { block_index = 0 ; }
return ( block_index ) ;
2011-09-03 23:31:48 +02:00
}
// Returns the index of the previous block in the ring buffer
2011-12-09 02:47:48 +01:00
static uint8_t prev_block_index ( uint8_t block_index )
{
2011-09-18 13:36:55 +02:00
if ( block_index = = 0 ) { block_index = BLOCK_BUFFER_SIZE ; }
block_index - - ;
2011-09-03 23:31:48 +02:00
return ( block_index ) ;
}
2012-12-08 23:00:58 +01:00
/* STEPPER VELOCITY PROFILE DEFINITION
less than nominal rate - > +
+ - - - - - - - - + < - nominal_rate / | \
/ \ / | \
initial_rate - > + \ / | + < - next - > initial_rate
| + < - next - > initial_rate / | |
+ - - - - - - - - - - - - - + initial_rate - > + - - - - + - - +
time - - > ^ ^ ^ ^
| | | |
decelerate distance decelerate distance
Calculates trapezoid parameters for stepper algorithm . Each block velocity profiles can be
described as either a trapezoidal or a triangular shape . The trapezoid occurs when the block
reaches the nominal speed of the block and cruises for a period of time . A triangle occurs
when the nominal speed is not reached within the block . Some other special cases exist ,
such as pure ac / de - celeration velocity profiles from beginning to end or a trapezoid that
has no deceleration period when the next block resumes acceleration .
2011-09-04 07:22:27 +02:00
2012-12-08 23:00:58 +01:00
The following function determines the type of velocity profile and stores the minimum required
information for the stepper algorithm to execute the calculated profiles . In this case , only
2012-12-11 02:50:18 +01:00
the new initial rate and n_steps until deceleration are computed , since the stepper algorithm
2012-12-08 23:00:58 +01:00
already handles acceleration and cruising and just needs to know when to start decelerating .
*/
2013-02-20 14:56:47 +01:00
static uint8_t calculate_trapezoid_for_block ( block_t * block , uint8_t idx , float entry_speed_sqr , float exit_speed_sqr )
2012-12-08 23:00:58 +01:00
{
// Compute new initial rate for stepper algorithm
2013-02-20 14:56:47 +01:00
uint32_t initial_rate = ceil ( sqrt ( entry_speed_sqr ) * ( RANADE_MULTIPLIER / ( 60 * ISR_TICKS_PER_SECOND ) ) ) ; // (mult*mm/isr_tic)
2012-12-17 00:23:24 +01:00
2012-12-14 16:27:02 +01:00
// TODO: Compute new nominal rate if a feedrate override occurs.
// block->nominal_rate = ceil(feed_rate*(RANADE_MULTIPLIER/(60.0*ISR_TICKS_PER_SECOND))); // (mult*mm/isr_tic)
2011-09-07 03:39:14 +02:00
2012-12-11 02:50:18 +01:00
// Compute efficiency variable for following calculations. Removes a float divide and multiply.
// TODO: If memory allows, this can be kept in the block buffer since it doesn't change, even after feed holds.
2012-12-14 16:27:02 +01:00
float steps_per_mm_div_2_acc = block - > step_event_count / ( 2 * block - > acceleration * block - > millimeters ) ;
2012-12-11 02:50:18 +01:00
// First determine intersection distance (in steps) from the exit point for a triangular profile.
// Computes: steps_intersect = steps/mm * ( distance/2 + (v_entry^2-v_exit^2)/(4*acceleration) )
2012-12-12 01:42:29 +01:00
int32_t intersect_distance = ceil ( 0.5 * ( block - > step_event_count + steps_per_mm_div_2_acc * ( entry_speed_sqr - exit_speed_sqr ) ) ) ;
2011-01-24 21:30:51 +01:00
2012-12-08 23:00:58 +01:00
// Check if this is a pure acceleration block by a intersection distance less than zero. Also
// prevents signed and unsigned integer conversion errors.
2013-02-20 14:56:47 +01:00
uint32_t decelerate_after = 0 ;
if ( intersect_distance > 0 ) {
2012-12-11 02:50:18 +01:00
// Determine deceleration distance (in steps) from nominal speed to exit speed for a trapezoidal profile.
2012-12-08 23:00:58 +01:00
// Value is never negative. Nominal speed is always greater than or equal to the exit speed.
2012-12-11 02:50:18 +01:00
// Computes: steps_decelerate = steps/mm * ( (v_nominal^2 - v_exit^2)/(2*acceleration) )
2013-02-20 14:56:47 +01:00
decelerate_after = ceil ( steps_per_mm_div_2_acc * ( block - > nominal_speed_sqr - exit_speed_sqr ) ) ;
2011-09-03 23:31:48 +02:00
2012-12-08 23:00:58 +01:00
// The lesser of the two triangle and trapezoid distances always defines the velocity profile.
2013-02-20 14:56:47 +01:00
if ( decelerate_after > intersect_distance ) { decelerate_after = intersect_distance ; }
2011-10-12 04:51:04 +02:00
2012-12-08 23:00:58 +01:00
// Finally, check if this is a pure deceleration block.
2013-02-20 14:56:47 +01:00
if ( decelerate_after > block - > step_event_count ) { decelerate_after = block - > step_event_count ; }
}
// safe block adjustment
cli ( ) ;
uint8_t block_buffer_tail_hold = block_buffer_tail ; // store to avoid reading volatile twice
uint8_t block_buffer_head_hold = block_buffer_head ; // store to avoid reading volatile twice
uint8_t idx_inside_queue ;
// is the current block inside the queue? if not: the stepper overtook us
if ( block_buffer_head_hold > = block_buffer_tail_hold ) idx_inside_queue = idx > = block_buffer_tail_hold & & idx < = block_buffer_head_hold ;
else idx_inside_queue = idx < = block_buffer_head_hold | | idx > = block_buffer_tail_hold ;
if ( idx_inside_queue & & ( idx ! = block_buffer_tail_hold | | idx = = block_buffer_head_hold | | ! st_is_decelerating ( ) ) ) {
block - > decelerate_after = decelerate_after ;
block - > initial_rate = initial_rate ;
sei ( ) ;
return ( true ) ;
} else {
sei ( ) ;
return ( false ) ; // this block is currently being processed by the stepper and it already finished accelerating or the stepper is already finished with this block: we can no longer change anything here
2012-12-08 23:00:58 +01:00
}
2011-08-16 03:37:22 +02:00
}
2012-12-08 23:00:58 +01:00
2011-08-16 03:37:22 +02:00
2011-09-07 03:39:14 +02:00
/* PLANNER SPEED DEFINITION
+ - - - - - - - - + < - current - > nominal_speed
/ \
current - > entry_speed - > + \
| + < - next - > entry_speed
+ - - - - - - - - - - - - - +
2012-12-08 23:00:58 +01:00
time - - >
Recalculates the motion plan according to the following algorithm :
2011-09-14 05:57:16 +02:00
2012-12-08 23:00:58 +01:00
1. Go over every block in reverse order and calculate a junction speed reduction ( i . e . block_t . entry_speed )
so that :
a . The junction speed is equal to or less than the maximum junction speed limit
b . No speed reduction within one block requires faster deceleration than the acceleration limits .
c . The last ( or newest appended ) block is planned from a complete stop .
2. Go over every block in chronological ( forward ) order and dial down junction speed values if
a . The speed increase within one block would require faster acceleration than the acceleration limits .
When these stages are complete , all blocks have a junction entry speed that will allow all speed changes
to be performed using the overall limiting acceleration value , and where no junction speed is greater
than the max limit . In other words , it just computed the fastest possible velocity profile through all
buffered blocks , where the final buffered block is planned to come to a full stop when the buffer is fully
executed . Finally it will :
3. Convert the plan to data that the stepper algorithm needs . Only block trapezoids adjacent to a
a planner - modified junction speed with be updated , the others are assumed ok as is .
All planner computations ( 1 ) ( 2 ) are performed in floating point to minimize numerical round - off errors . Only
when planned values are converted to stepper rate parameters ( 3 ) , these are integers . If another motion block
is added while executing , the planner will re - plan and update the stored optimal velocity profile as it goes .
2012-12-17 00:23:24 +01:00
Conceptually , the planner works like blowing up a balloon , where the balloon is the velocity profile . It ' s
constrained by the speeds at the beginning and end of the buffer , along with the maximum junction speeds and
nominal speeds of each block . Once a plan is computed , or balloon filled , this is the optimal velocity profile
through all of the motions in the buffer . Whenever a new block is added , this changes some of the limiting
conditions , or how the balloon is filled , so it has to be re - calculated to get the new optimal velocity profile .
Also , since the planner only computes on what ' s in the planner buffer , some motions with lots of short line
segments , like arcs , may seem to move slow . This is because there simply isn ' t enough combined distance traveled
in the entire buffer to accelerate up to the nominal speed and then decelerate to a stop at the end of the
buffer . There are a few simple solutions to this : ( 1 ) Maximize the machine acceleration . The planner will be
able to compute higher speed profiles within the same combined distance . ( 2 ) Increase line segment ( s ) distance .
The more combined distance the planner has to use , the faster it can go . ( 3 ) Increase the MINIMUM_PLANNER_SPEED .
Not recommended . This will change what speed the planner plans to at the end of the buffer . Can lead to lost
steps when coming to a stop . ( 4 ) [ BEST ] Increase the planner buffer size . The more combined distance , the
bigger the balloon , or faster it can go . But this is not possible for 328 p Arduinos because its limited memory
is already maxed out . Future ARM versions should not have this issue , with look - ahead planner blocks numbering
up to a hundred or more .
NOTE : Since this function is constantly re - calculating for every new incoming block , it must be as efficient
as possible . For example , in situations like arc generation or complex curves , the short , rapid line segments
can execute faster than new blocks can be added , and the planner buffer will then starve and empty , leading
to weird hiccup - like jerky motions .
2012-12-08 23:00:58 +01:00
*/
2013-02-20 14:56:47 +01:00
static uint8_t planner_recalculate ( )
2012-12-08 23:00:58 +01:00
{
2013-02-20 14:56:47 +01:00
uint8_t current_block_idx = block_buffer_head ;
block_t * curr_block = & block_buffer [ current_block_idx ] ;
uint8_t plan_unchanged = 1 ;
2012-12-20 01:30:09 +01:00
2013-02-20 15:04:26 +01:00
planner_steps_counter = 0 ;
2013-02-20 14:56:47 +01:00
if ( current_block_idx ! = block_buffer_tail ) { // we cannot do anything to only one block
float max_entry_speed_sqr ;
float next_entry_speed_sqr = 0.0 ;
// loop backwards to possibly postpone deceleration
while ( current_block_idx ! = planned_block_tail ) { // the second block is the one where we start the forward loop
if ( current_block_idx = = block_buffer_tail ) {
planned_block_tail = current_block_idx ;
break ;
}
2013-02-20 15:04:26 +01:00
planner_steps_counter + + ;
2013-02-20 14:56:47 +01:00
// TODO: Determine maximum entry speed at junction for feedrate overrides, since they can alter
// the planner nominal speeds at any time. This calc could be done in the override handler, but
// this could require an additional variable to be stored to differentiate the programmed nominal
// speeds, max junction speed, and override speeds/scalar.
// If entry speed is already at the maximum entry speed, no need to recheck. Block is cruising.
// If not, block in state of acceleration or deceleration. Reset entry speed to maximum and
// check for maximum allowable speed reductions to ensure maximum possible planned speed.
if ( curr_block - > entry_speed_sqr ! = curr_block - > max_entry_speed_sqr ) {
// default if next_entry_speed_sqr > curr_block->max_entry_speed_sqr || max_entry_speed_sqr > curr_block->max_entry_speed_sqr
curr_block - > entry_speed_sqr = curr_block - > max_entry_speed_sqr ;
if ( next_entry_speed_sqr < curr_block - > max_entry_speed_sqr ) {
// Computes: v_entry^2 = v_exit^2 + 2*acceleration*distance
max_entry_speed_sqr = next_entry_speed_sqr + 2 * curr_block - > acceleration * curr_block - > millimeters ;
if ( max_entry_speed_sqr < curr_block - > max_entry_speed_sqr ) {
curr_block - > entry_speed_sqr = max_entry_speed_sqr ;
}
2012-12-11 04:11:08 +01:00
}
2013-02-20 14:56:47 +01:00
}
next_entry_speed_sqr = curr_block - > entry_speed_sqr ;
current_block_idx = prev_block_index ( current_block_idx ) ;
curr_block = & block_buffer [ current_block_idx ] ;
}
// loop forward, adjust exit speed to not exceed max accelleration
block_t * next_block ;
uint8_t next_block_idx ;
float max_exit_speed_sqr ;
while ( current_block_idx ! = block_buffer_head ) {
next_block_idx = next_block_index ( current_block_idx ) ;
next_block = & block_buffer [ next_block_idx ] ;
2012-12-08 23:00:58 +01:00
2012-12-11 02:50:18 +01:00
// If the current block is an acceleration block, but it is not long enough to complete the
2012-12-12 01:42:29 +01:00
// full speed change within the block, we need to adjust the exit speed accordingly. Entry
2012-12-08 23:00:58 +01:00
// speeds have already been reset, maximized, and reverse planned by reverse planner.
2013-02-20 14:56:47 +01:00
if ( curr_block - > entry_speed_sqr < next_block - > entry_speed_sqr ) {
2012-12-14 16:27:02 +01:00
// Compute block exit speed based on the current block speed and distance
// Computes: v_exit^2 = v_entry^2 + 2*acceleration*distance
2013-02-20 14:56:47 +01:00
max_exit_speed_sqr = curr_block - > entry_speed_sqr + 2 * curr_block - > acceleration * curr_block - > millimeters ;
2012-12-14 16:27:02 +01:00
2013-02-20 14:56:47 +01:00
} else {
max_exit_speed_sqr = SOME_LARGE_VALUE ;
}
// adjust max_exit_speed_sqr in case this is a deceleration block or max accel cannot be reached
if ( max_exit_speed_sqr > next_block - > entry_speed_sqr ) {
max_exit_speed_sqr = next_block - > entry_speed_sqr ;
} else {
// this block has reached max acceleration, it is optimal
planned_block_tail = next_block_idx ;
2012-12-14 16:27:02 +01:00
}
2012-12-11 03:17:22 +01:00
2013-02-20 14:56:47 +01:00
if ( calculate_trapezoid_for_block ( curr_block , current_block_idx , curr_block - > entry_speed_sqr , max_exit_speed_sqr ) ) {
next_block - > entry_speed_sqr = max_exit_speed_sqr ;
plan_unchanged = 0 ;
} else if ( ! plan_unchanged ) { // we started to modify the plan an then got overtaken by the stepper executing the plan: this is bad
return ( 0 ) ;
2012-12-11 03:17:22 +01:00
}
2012-12-12 01:42:29 +01:00
2013-02-20 14:56:47 +01:00
// Check if the next block entry speed is at max_entry_speed. If so, move the planned pointer, since
// this entry speed cannot be improved anymore and all prior blocks have been completed and optimally planned.
if ( next_block - > entry_speed_sqr > = next_block - > max_entry_speed_sqr ) {
planned_block_tail = next_block_idx ;
}
current_block_idx = next_block_idx ;
curr_block = next_block ;
}
2011-01-15 00:27:08 +01:00
}
2012-12-12 01:42:29 +01:00
2013-02-20 14:56:47 +01:00
if ( ! calculate_trapezoid_for_block ( curr_block , current_block_idx , curr_block - > entry_speed_sqr , MINIMUM_PLANNER_SPEED * MINIMUM_PLANNER_SPEED ) ) {
// this can only happen to the first block in the queue? so we dont need to clear or stop anything
return ( 0 ) ;
} else
return ( 1 ) ;
2011-01-15 00:27:08 +01:00
}
2013-01-06 20:04:02 +01:00
void plan_init ( )
2011-12-09 02:47:48 +01:00
{
2013-02-20 14:56:47 +01:00
block_buffer_tail = block_buffer_head = planned_block_tail ;
2011-12-09 02:47:48 +01:00
next_buffer_head = next_block_index ( block_buffer_head ) ;
2012-12-20 01:30:09 +01:00
// block_buffer_planned = block_buffer_head;
2013-01-06 20:04:02 +01:00
memset ( & pl , 0 , sizeof ( pl ) ) ; // Clear planner struct
2011-12-09 02:47:48 +01:00
}
2012-01-29 04:41:08 +01:00
inline void plan_discard_current_block ( )
2011-12-09 02:47:48 +01:00
{
2011-02-06 23:52:12 +01:00
if ( block_buffer_head ! = block_buffer_tail ) {
2011-09-03 23:31:48 +02:00
block_buffer_tail = next_block_index ( block_buffer_tail ) ;
2011-02-06 23:52:12 +01:00
}
}
2012-01-29 04:41:08 +01:00
inline block_t * plan_get_current_block ( )
2011-12-09 02:47:48 +01:00
{
2011-02-06 23:52:12 +01:00
if ( block_buffer_head = = block_buffer_tail ) { return ( NULL ) ; }
return ( & block_buffer [ block_buffer_tail ] ) ;
}
2011-12-09 02:47:48 +01:00
// Returns the availability status of the block ring buffer. True, if full.
uint8_t plan_check_full_buffer ( )
{
2012-12-17 00:23:24 +01:00
if ( block_buffer_tail = = next_buffer_head ) {
// TODO: Move this back into motion control. Shouldn't be here, but it's efficient.
if ( sys . auto_start ) { st_cycle_start ( ) ; } // Auto-cycle start when buffer is full.
return ( true ) ;
}
2011-12-09 02:47:48 +01:00
return ( false ) ;
}
2012-11-20 01:39:40 +01:00
// Block until all buffered steps are executed or in a cycle state. Works with feed hold
// during a synchronize call, if it should happen. Also, waits for clean cycle end.
2011-12-09 02:47:48 +01:00
void plan_synchronize ( )
{
2012-11-20 01:39:40 +01:00
while ( plan_get_current_block ( ) | | sys . state = = STATE_CYCLE ) {
2011-12-09 02:47:48 +01:00
protocol_execute_runtime ( ) ; // Check and execute run-time commands
2012-01-06 18:10:41 +01:00
if ( sys . abort ) { return ; } // Check for system abort
2011-12-09 02:47:48 +01:00
}
}
2011-09-03 23:31:48 +02:00
2011-07-09 22:35:25 +02:00
// Add a new linear movement to the buffer. x, y and z is the signed, absolute target position in
2011-12-09 02:47:48 +01:00
// millimeters. Feed rate specifies the speed of the motion. If feed rate is inverted, the feed
2011-07-09 22:35:25 +02:00
// rate is taken to mean "frequency" and would complete the operation in 1/feed_rate minutes.
2012-02-11 19:59:35 +01:00
// All position data passed to the planner must be in terms of machine position to keep the planner
// independent of any coordinate system changes and offsets, which are handled by the g-code parser.
2011-12-09 02:47:48 +01:00
// NOTE: Assumes buffer is available. Buffer checks are handled at a higher level by motion_control.
2012-12-17 00:23:24 +01:00
// Also the feed rate input value is used in three ways: as a normal feed rate if invert_feed_rate
// is false, as inverse time if invert_feed_rate is true, or as seek/rapids rate if the feed_rate
// value is negative (and invert_feed_rate always false).
2012-10-08 23:57:58 +02:00
void plan_buffer_line ( float x , float y , float z , float feed_rate , uint8_t invert_feed_rate )
2011-12-09 02:47:48 +01:00
{
// Prepare to set up new block
block_t * block = & block_buffer [ block_buffer_head ] ;
2011-02-06 23:23:34 +01:00
// Calculate target position in absolute steps
2013-01-09 23:22:45 +01:00
int32_t target [ N_AXIS ] ;
2011-02-06 23:27:04 +01: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 13:06:18 +01:00
target [ Z_AXIS ] = lround ( z * settings . steps_per_mm [ Z_AXIS ] ) ;
2011-09-07 03:39:14 +02:00
2011-01-14 16:56:44 +01:00
// Number of steps for each axis
2012-01-10 16:34:48 +01:00
block - > steps_x = labs ( target [ X_AXIS ] - pl . position [ X_AXIS ] ) ;
block - > steps_y = labs ( target [ Y_AXIS ] - pl . position [ Y_AXIS ] ) ;
block - > steps_z = labs ( target [ Z_AXIS ] - pl . position [ Z_AXIS ] ) ;
2011-01-14 16:56:44 +01:00
block - > step_event_count = max ( block - > steps_x , max ( block - > steps_y , block - > steps_z ) ) ;
2011-09-03 23:31:48 +02:00
2011-01-14 16:56:44 +01:00
// Bail if this is a zero-length block
if ( block - > step_event_count = = 0 ) { return ; } ;
2011-02-06 23:23:34 +01:00
2011-09-07 03:39:14 +02:00
// Compute path vector in terms of absolute step target and current positions
2013-01-09 23:22:45 +01:00
float delta_mm [ N_AXIS ] ;
2013-02-20 14:56:47 +01:00
delta_mm [ X_AXIS ] = x - pl . last_x ; // what difference would it make to use block->steps_x/settings.steps_per_mm[X_AXIS]; instead?
2012-12-17 00:23:24 +01:00
delta_mm [ Y_AXIS ] = y - pl . last_y ;
delta_mm [ Z_AXIS ] = z - pl . last_z ;
2012-01-16 02:25:12 +01:00
block - > millimeters = sqrt ( delta_mm [ X_AXIS ] * delta_mm [ X_AXIS ] + delta_mm [ Y_AXIS ] * delta_mm [ Y_AXIS ] +
delta_mm [ Z_AXIS ] * delta_mm [ Z_AXIS ] ) ;
2012-12-11 02:50:18 +01:00
2012-12-17 00:23:24 +01:00
// Adjust feed_rate value to mm/min depending on type of rate input (normal, inverse time, or rapids)
// TODO: Need to distinguish a rapids vs feed move for overrides. Some flag of some sort.
if ( feed_rate < 0 ) { feed_rate = SOME_LARGE_VALUE ; } // Scaled down to absolute max/rapids rate later
else if ( invert_feed_rate ) { feed_rate = block - > millimeters / feed_rate ; }
2012-12-11 02:50:18 +01:00
2012-12-17 00:23:24 +01:00
// Calculate the unit vector of the line move and the block maximum feed rate and acceleration limited
// by the maximum possible values. Block rapids rates are computed or feed rates are scaled down so
// they don't exceed the maximum axes velocities. The block acceleration is maximized based on direction
// and axes properties as well.
2012-12-14 16:27:02 +01:00
// NOTE: This calculation assumes all axes are orthogonal (Cartesian) and works with ABC-axes,
// if they are also orthogonal/independent. Operates on the absolute value of the unit vector.
2012-12-17 00:23:24 +01:00
uint8_t i ;
float unit_vec [ N_AXIS ] , inverse_unit_vec_value ;
float inverse_millimeters = 1.0 / block - > millimeters ; // Inverse millimeters to remove multiple float divides
2012-12-21 16:51:36 +01:00
block - > acceleration = SOME_LARGE_VALUE ; // Scaled down to maximum acceleration in loop
2012-12-17 00:23:24 +01:00
for ( i = 0 ; i < N_AXIS ; i + + ) {
if ( delta_mm [ i ] = = 0 ) {
unit_vec [ i ] = 0 ; // Store zero value. And avoid divide by zero.
} else {
2012-12-21 16:51:36 +01:00
// Compute unit vector and its absolute inverse value
2012-12-17 00:23:24 +01:00
unit_vec [ i ] = delta_mm [ i ] * inverse_millimeters ;
inverse_unit_vec_value = abs ( 1.0 / unit_vec [ i ] ) ;
// Check and limit feed rate against max axis velocities and scale accelerations to maximums
feed_rate = min ( feed_rate , settings . max_velocity [ i ] * inverse_unit_vec_value ) ;
block - > acceleration = min ( block - > acceleration , settings . acceleration [ i ] * inverse_unit_vec_value ) ;
}
2012-12-11 02:50:18 +01:00
}
2012-12-17 00:23:24 +01:00
// Compute nominal speed and rates
2012-12-12 01:42:29 +01:00
block - > nominal_speed_sqr = feed_rate * feed_rate ; // (mm/min)^2. Always > 0
block - > nominal_rate = ceil ( feed_rate * ( RANADE_MULTIPLIER / ( 60.0 * ISR_TICKS_PER_SECOND ) ) ) ; // (mult*mm/isr_tic)
2012-12-17 00:23:24 +01:00
2012-12-12 01:42:29 +01:00
// Compute the acceleration and distance traveled per step event for the stepper algorithm.
2013-02-20 14:56:47 +01:00
// TODO: obsolete?
2012-12-14 16:27:02 +01:00
block - > rate_delta = ceil ( block - > acceleration *
2012-12-17 00:23:24 +01:00
( ( RANADE_MULTIPLIER / ( 60.0 * 60.0 ) ) / ( ISR_TICKS_PER_SECOND * ACCELERATION_TICKS_PER_SECOND ) ) ) ; // (mult*mm/isr_tic/accel_tic)
2012-12-08 23:00:58 +01:00
block - > d_next = ceil ( ( block - > millimeters * RANADE_MULTIPLIER ) / block - > step_event_count ) ; // (mult*mm/step)
2012-12-17 00:23:24 +01:00
// Compute direction bits. Bit enabled always means direction is negative.
block - > direction_bits = 0 ;
2013-02-20 14:56:47 +01:00
if ( unit_vec [ X_AXIS ] < 0 ) { block - > direction_bits | = ( 1 < < X_DIRECTION_BIT ) ; } // maybe more efficient to be calculated together with block->steps_x
2012-12-17 00:23:24 +01:00
if ( unit_vec [ Y_AXIS ] < 0 ) { block - > direction_bits | = ( 1 < < Y_DIRECTION_BIT ) ; }
if ( unit_vec [ Z_AXIS ] < 0 ) { block - > direction_bits | = ( 1 < < Z_DIRECTION_BIT ) ; }
2012-12-14 16:27:02 +01:00
2011-12-09 02:47:48 +01:00
// Compute maximum allowable entry speed at junction by centripetal acceleration approximation.
// Let a circle be tangent to both previous and current path line segments, where the junction
// deviation is defined as the distance from the junction to the closest edge of the circle,
// colinear with the circle center. The circular segment joining the two paths represents the
// path of centripetal acceleration. Solve for max velocity based on max acceleration about the
// radius of the circle, defined indirectly by junction deviation. This may be also viewed as
// path width or max_jerk in the previous grbl version. This approach does not actually deviate
// from path, but used as a robust way to compute cornering speeds, as it takes into account the
// nonlinearities of both the junction angle and junction velocity.
2012-12-12 01:42:29 +01:00
// NOTE: If the junction deviation value is finite, Grbl executes the motions in an exact path
// mode (G61). If the junction deviation value is zero, Grbl will execute the motion in an exact
// stop mode (G61.1) manner. In the future, if continuous mode (G64) is desired, the math here
// is exactly the same. Instead of motioning all the way to junction point, the machine will
// just follow the arc circle defined here. The Arduino doesn't have the CPU cycles to perform
// a continuous mode path, but ARM-based microcontrollers most certainly do.
2011-12-09 02:47:48 +01:00
2012-12-14 16:27:02 +01:00
block - > max_entry_speed_sqr = MINIMUM_PLANNER_SPEED * MINIMUM_PLANNER_SPEED ;
2013-02-20 14:56:47 +01:00
// Skip first block or when previous_nominal_speed is used as a flag for homing and offset cycles.
2012-12-12 01:42:29 +01:00
if ( ( block_buffer_head ! = block_buffer_tail ) & & ( pl . previous_nominal_speed_sqr > 0.0 ) ) {
2011-12-09 02:47:48 +01:00
// Compute cosine of angle between previous and current path. (prev_unit_vec is negative)
// NOTE: Max junction velocity is computed without sin() or acos() by trig half angle identity.
2012-10-08 23:57:58 +02:00
float cos_theta = - pl . previous_unit_vec [ X_AXIS ] * unit_vec [ X_AXIS ]
2012-12-08 23:00:58 +01:00
- pl . previous_unit_vec [ Y_AXIS ] * unit_vec [ Y_AXIS ]
- pl . previous_unit_vec [ Z_AXIS ] * unit_vec [ Z_AXIS ] ;
2011-12-09 02:47:48 +01:00
// Skip and use default max junction speed for 0 degree acute junction.
if ( cos_theta < 0.95 ) {
2012-12-17 00:23:24 +01:00
block - > max_entry_speed_sqr = min ( block - > nominal_speed_sqr , pl . previous_nominal_speed_sqr ) ;
2011-12-09 02:47:48 +01:00
// Skip and avoid divide by zero for straight junctions at 180 degrees. Limit to min() of nominal speeds.
if ( cos_theta > - 0.95 ) {
// Compute maximum junction velocity based on maximum acceleration and junction deviation
2012-10-08 23:57:58 +02:00
float sin_theta_d2 = sqrt ( 0.5 * ( 1.0 - cos_theta ) ) ; // Trig half angle identity. Always positive.
2012-12-17 00:23:24 +01:00
block - > max_entry_speed_sqr = min ( block - > max_entry_speed_sqr ,
block - > acceleration * settings . junction_deviation * sin_theta_d2 / ( 1.0 - sin_theta_d2 ) ) ;
2011-09-03 23:31:48 +02:00
}
}
2012-12-14 16:27:02 +01:00
}
2013-02-20 14:56:47 +01:00
// Initialize block entry speed
block - > entry_speed_sqr = MINIMUM_PLANNER_SPEED * MINIMUM_PLANNER_SPEED ;
2012-12-14 16:27:02 +01:00
// Set new block to be recalculated for conversion to stepper data.
2013-02-20 14:56:47 +01:00
block - > recalculate_flag = true ; // TODO: obsolete?
2011-12-09 02:47:48 +01:00
2012-12-12 01:42:29 +01:00
// Update previous path unit_vector and nominal speed (squared)
2012-01-10 16:34:48 +01:00
memcpy ( pl . previous_unit_vec , unit_vec , sizeof ( unit_vec ) ) ; // pl.previous_unit_vec[] = unit_vec[]
2012-12-12 01:42:29 +01:00
pl . previous_nominal_speed_sqr = block - > nominal_speed_sqr ;
2012-12-17 00:23:24 +01:00
// Update planner position
memcpy ( pl . position , target , sizeof ( target ) ) ; // pl.position[] = target[]
pl . last_x = x ;
pl . last_y = y ;
pl . last_z = z ;
2013-02-20 14:56:47 +01:00
if ( ! planner_recalculate ( ) ) {
// TODO: make alarm informative
if ( sys . state ! = STATE_ALARM ) {
if ( bit_isfalse ( sys . execute , EXEC_ALARM ) ) {
mc_reset ( ) ; // Initiate system kill.
sys . execute | = EXEC_CRIT_EVENT ; // Indicate hard limit critical event
}
}
}
2011-12-09 02:47:48 +01:00
// Update buffer head and next buffer head indices
2013-02-20 14:56:47 +01:00
// Mind that updating block_buffer_head after the planner changes the planner logic a bit
2011-12-09 02:47:48 +01:00
block_buffer_head = next_buffer_head ;
next_buffer_head = next_block_index ( block_buffer_head ) ;
2011-01-14 16:56:44 +01:00
}
2011-02-20 00:29:56 +01:00
2012-12-21 16:51:36 +01:00
// Reset the planner position vectors. Called by the system abort/initialization routine.
2012-01-29 04:41:08 +01:00
void plan_set_current_position ( int32_t x , int32_t y , int32_t z )
{
pl . position [ X_AXIS ] = x ;
pl . position [ Y_AXIS ] = y ;
pl . position [ Z_AXIS ] = z ;
2012-12-17 00:23:24 +01:00
pl . last_x = x / settings . steps_per_mm [ X_AXIS ] ;
pl . last_y = y / settings . steps_per_mm [ Y_AXIS ] ;
pl . last_z = z / settings . steps_per_mm [ Z_AXIS ] ;
2012-01-29 04:41:08 +01:00
}
2011-12-09 02:47:48 +01:00
// Re-initialize buffer plan with a partially completed block, assumed to exist at the buffer tail.
// Called after a steppers have come to a complete stop for a feed hold and the cycle is stopped.
void plan_cycle_reinitialize ( int32_t step_events_remaining )
{
block_t * block = & block_buffer [ block_buffer_tail ] ; // Point to partially completed block
// Only remaining millimeters and step_event_count need to be updated for planner recalculate.
// Other variables (step_x, step_y, step_z, rate_delta, etc.) all need to remain the same to
// ensure the original planned motion is resumed exactly.
block - > millimeters = ( block - > millimeters * step_events_remaining ) / block - > step_event_count ;
block - > step_event_count = step_events_remaining ;
// Re-plan from a complete stop. Reset planner entry speeds and flags.
2012-12-12 01:42:29 +01:00
block - > entry_speed_sqr = 0.0 ;
block - > max_entry_speed_sqr = 0.0 ;
2011-12-09 02:47:48 +01:00
block - > recalculate_flag = true ;
planner_recalculate ( ) ;
}