2016-03-25 06:19:46 +00:00
/**
2016-03-24 18:01:20 +00:00
* Marlin 3 D 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
/**
2016-05-04 00:00:28 +00:00
* planner . h
*
* Buffer movement commands and manage the acceleration profile plan
*
* Derived from Grbl
* Copyright ( c ) 2009 - 2011 Simen Svale Skogsrud
*/
2011-11-15 21:50:43 +00:00
2015-03-21 03:42:49 +00:00
# ifndef PLANNER_H
# define PLANNER_H
2011-12-22 11:38:50 +00:00
2017-09-06 11:28:32 +00:00
# include "../Marlin.h"
2011-11-15 21:50:43 +00:00
2017-09-08 20:35:25 +00:00
# include "motion.h"
# if ENABLED(DELTA)
# include "delta.h"
# endif
2016-09-26 04:17:39 +00:00
# if HAS_ABL
2017-09-06 11:28:32 +00:00
# include "../libs/vector_3.h"
2016-04-28 01:06:32 +00:00
# endif
2016-10-30 21:05:14 +00:00
enum BlockFlagBit {
// Recalculate trapezoids on entry junction. For optimization.
BLOCK_BIT_RECALCULATE ,
// Nominal speed always reached.
// i.e., The segment is long enough, so the nominal speed is reachable if accelerating
// from a safe speed (in consideration of jerking from zero speed).
BLOCK_BIT_NOMINAL_LENGTH ,
// Start from a halt at the start of this block, respecting the maximum allowed jerk.
BLOCK_BIT_START_FROM_FULL_HALT ,
2016-10-11 04:17:49 +00:00
2016-10-30 21:05:14 +00:00
// The block is busy
2017-12-08 05:03:36 +00:00
BLOCK_BIT_BUSY ,
// The block is segment 2+ of a longer move
BLOCK_BIT_CONTINUED
2016-10-30 21:05:14 +00:00
} ;
2016-10-11 04:17:49 +00:00
2016-10-30 21:05:14 +00:00
enum BlockFlag {
BLOCK_FLAG_RECALCULATE = _BV ( BLOCK_BIT_RECALCULATE ) ,
BLOCK_FLAG_NOMINAL_LENGTH = _BV ( BLOCK_BIT_NOMINAL_LENGTH ) ,
BLOCK_FLAG_START_FROM_FULL_HALT = _BV ( BLOCK_BIT_START_FROM_FULL_HALT ) ,
2017-12-08 05:03:36 +00:00
BLOCK_FLAG_BUSY = _BV ( BLOCK_BIT_BUSY ) ,
BLOCK_FLAG_CONTINUED = _BV ( BLOCK_BIT_CONTINUED )
2016-10-11 04:17:49 +00:00
} ;
2016-04-28 01:06:32 +00:00
/**
* struct block_t
*
* A single entry in the planner buffer .
* Tracks linear movement over multiple axes .
*
* The " nominal " values are as - specified by gcode , and
* may never actually be reached due to acceleration limits .
*/
2011-11-15 21:50:43 +00:00
typedef struct {
2016-04-28 01:06:32 +00:00
2016-10-30 21:08:46 +00:00
uint8_t flag ; // Block flags (See BlockFlag enum above)
2016-04-28 01:06:32 +00:00
unsigned char active_extruder ; // The extruder to move (if E move)
2016-10-30 21:08:46 +00:00
// Fields used by the Bresenham algorithm for tracing the line
int32_t steps [ NUM_AXIS ] ; // Step count along each axis
uint32_t step_event_count ; // The number of step events required to complete this block
2016-04-28 01:06:32 +00:00
2016-06-28 22:06:56 +00:00
# if ENABLED(MIXING_EXTRUDER)
2016-10-30 21:08:46 +00:00
uint32_t mix_event_count [ MIXING_STEPPERS ] ; // Scaled step_event_count for the mixing steppers
2016-06-28 22:06:56 +00:00
# endif
2016-10-30 21:08:46 +00:00
int32_t accelerate_until , // The index of the step event on which to stop acceleration
decelerate_after , // The index of the step event on which to start decelerating
acceleration_rate ; // The acceleration rate used for acceleration calculation
2016-04-28 01:06:32 +00:00
2016-10-30 21:08:46 +00:00
uint8_t direction_bits ; // The direction bit set for this block (refers to *_DIRECTION_BIT in config.h)
2016-04-28 01:06:32 +00:00
2016-05-04 19:10:42 +00:00
// Advance extrusion
# if ENABLED(LIN_ADVANCE)
bool use_advance_lead ;
2016-10-31 15:17:30 +00:00
uint32_t abs_adv_steps_multiplier8 ; // Factorised by 2^8 to avoid float
2011-11-15 21:50:43 +00:00
# endif
// Fields used by the motion planner to manage acceleration
2016-10-30 21:08:46 +00:00
float nominal_speed , // The nominal speed for this block in mm/sec
entry_speed , // Entry speed at previous-current junction in mm/sec
max_entry_speed , // Maximum allowable junction entry speed in mm/sec
millimeters , // The total travel of this block in mm
acceleration ; // acceleration mm/sec^2
2011-11-15 21:50:43 +00:00
// Settings for the trapezoid generator
2016-10-30 21:08:46 +00:00
uint32_t nominal_rate , // The nominal step rate for this block in step_events/sec
initial_rate , // The jerk-adjusted step rate at start of block
final_rate , // The minimal rate at exit
acceleration_steps_per_s2 ; // acceleration steps/sec^2
2016-03-06 02:27:45 +00:00
# if FAN_COUNT > 0
2016-11-13 12:23:52 +00:00
uint16_t fan_speed [ FAN_COUNT ] ;
2016-03-06 02:27:45 +00:00
# endif
2015-07-31 05:30:29 +00:00
# if ENABLED(BARICUDA)
2017-07-18 03:01:20 +00:00
uint8_t valve_pressure , e_to_p_pressure ;
2013-06-06 22:49:25 +00:00
# endif
2016-12-15 15:21:32 +00:00
2017-10-29 23:21:15 +00:00
uint32_t segment_time_us ;
2016-03-06 02:27:45 +00:00
2011-11-15 21:50:43 +00:00
} block_t ;
2015-03-21 03:42:49 +00:00
# define BLOCK_MOD(n) ((n)&(BLOCK_BUFFER_SIZE-1))
2013-09-29 16:20:06 +00:00
2016-04-28 01:06:32 +00:00
class Planner {
public :
2013-09-29 16:20:06 +00:00
2016-04-28 01:06:32 +00:00
/**
2017-12-09 03:38:45 +00:00
* The move buffer , calculated in stepper steps
*
* block_buffer is a ring buffer . . .
*
* head , tail : indexes for write , read
* head = = tail : the buffer is empty
* head ! = tail : blocks are in the buffer
* head = = ( tail - 1 ) % size : the buffer is full
*
2017-12-09 13:41:19 +00:00
* Writer of head is Planner : : buffer_segment ( ) .
2017-12-09 03:38:45 +00:00
* Reader of tail is Stepper : : isr ( ) . Always consider tail busy / read - only
2016-04-28 01:06:32 +00:00
*/
2016-05-26 18:22:51 +00:00
static block_t block_buffer [ BLOCK_BUFFER_SIZE ] ;
2017-12-09 03:38:45 +00:00
static volatile uint8_t block_buffer_head , // Index of the next block to be pushed
block_buffer_tail ; // Index of the busy block, if any
2016-05-26 18:22:51 +00:00
2016-12-04 04:02:27 +00:00
# if ENABLED(DISTINCT_E_FACTORS)
2017-12-09 03:38:45 +00:00
static uint8_t last_extruder ; // Respond to extruder change
2016-12-04 04:02:27 +00:00
# endif
2017-12-09 03:38:45 +00:00
static int16_t flow_percentage [ EXTRUDERS ] ; // Extrusion factor for each extruder
2017-09-09 04:50:46 +00:00
2017-12-20 01:44:11 +00:00
static float e_factor [ EXTRUDERS ] ; // The flow percentage and volumetric multiplier combine to scale E movement
# if DISABLED(NO_VOLUMETRICS)
static float filament_size [ EXTRUDERS ] , // diameter of filament (in millimeters), typically around 1.75 or 2.85, 0 disables the volumetric calculations for the extruder
volumetric_area_nominal , // Nominal cross-sectional area
volumetric_multiplier [ EXTRUDERS ] ; // Reciprocal of cross-sectional area of filament (in mm^2). Pre-calculated to reduce computation in the planner
// May be auto-adjusted by a filament width sensor
# endif
2017-09-18 10:51:45 +00:00
2017-12-09 03:38:45 +00:00
static float max_feedrate_mm_s [ XYZE_N ] , // Max speeds in mm per second
2016-12-04 04:02:27 +00:00
axis_steps_per_mm [ XYZE_N ] ,
steps_to_mm [ XYZE_N ] ;
2016-12-16 04:04:18 +00:00
static uint32_t max_acceleration_steps_per_s2 [ XYZE_N ] ,
2017-10-29 23:21:15 +00:00
max_acceleration_mm_per_s2 [ XYZE_N ] ; // Use M201 to override
2016-05-26 18:22:51 +00:00
2017-10-29 23:21:15 +00:00
static uint32_t min_segment_time_us ; // Use 'M205 B<µs>' to override
2016-12-04 04:03:46 +00:00
static float min_feedrate_mm_s ,
acceleration , // Normal acceleration mm/s^2 DEFAULT ACCELERATION for all printing moves. M204 SXXXX
retract_acceleration , // Retract acceleration mm/s^2 filament pull-back and push-forward while standing still in the other axes M204 TXXXX
travel_acceleration , // Travel acceleration mm/s^2 DEFAULT ACCELERATION for all NON printing moves. M204 MXXXX
max_jerk [ XYZE ] , // The largest speed change requiring no acceleration
min_travel_feedrate_mm_s ;
2016-04-28 01:06:32 +00:00
2017-10-13 22:21:25 +00:00
# if HAS_LEVELING
2017-11-30 21:55:08 +00:00
static bool leveling_active ; // Flag that bed leveling is enabled
2017-05-21 00:23:39 +00:00
# if ABL_PLANAR
static matrix_3x3 bed_level_matrix ; // Transform to compensate for bed level
# endif
2017-10-13 22:21:25 +00:00
# if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
static float z_fade_height , inverse_z_fade_height ;
# endif
2017-12-06 00:41:56 +00:00
# else
static constexpr bool leveling_active = false ;
2016-11-26 05:32:47 +00:00
# endif
2017-04-22 03:30:36 +00:00
# if ENABLED(LIN_ADVANCE)
static float extruder_advance_k , advance_ed_ratio ;
# endif
2017-12-01 22:42:23 +00:00
# if ENABLED(SKEW_CORRECTION)
# if ENABLED(SKEW_CORRECTION_GCODE)
static float xy_skew_factor ;
# else
static constexpr float xy_skew_factor = XY_SKEW_FACTOR ;
# endif
# if ENABLED(SKEW_CORRECTION_FOR_Z)
# if ENABLED(SKEW_CORRECTION_GCODE)
static float xz_skew_factor , yz_skew_factor ;
# else
static constexpr float xz_skew_factor = XZ_SKEW_FACTOR , yz_skew_factor = YZ_SKEW_FACTOR ;
# endif
# else
static constexpr float xz_skew_factor = 0 , yz_skew_factor = 0 ;
# endif
# endif
2016-04-28 01:06:32 +00:00
private :
2013-09-29 16:20:06 +00:00
2016-04-28 01:06:32 +00:00
/**
* The current position of the tool in absolute steps
2016-07-24 02:36:26 +00:00
* Recalculated if any axis_steps_per_mm are changed by gcode
2016-04-28 01:06:32 +00:00
*/
2017-11-30 22:38:35 +00:00
static int32_t position [ NUM_AXIS ] ;
2015-03-29 03:33:21 +00:00
2016-04-28 01:06:32 +00:00
/**
* Speed of previous path line segment
*/
2016-05-26 18:22:51 +00:00
static float previous_speed [ NUM_AXIS ] ;
2016-04-28 01:06:32 +00:00
/**
* Nominal speed of previous path line segment
*/
2016-05-26 18:22:51 +00:00
static float previous_nominal_speed ;
2016-12-15 15:21:32 +00:00
2016-11-26 05:32:47 +00:00
/**
* Limit where 64 bit math is necessary for acceleration calculation
*/
static uint32_t cutoff_long ;
2016-04-28 01:06:32 +00:00
2017-10-13 16:07:09 +00:00
# if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
2017-11-03 04:59:42 +00:00
static float last_fade_z ;
2017-10-13 16:07:09 +00:00
# endif
2016-04-28 01:06:32 +00:00
# if ENABLED(DISABLE_INACTIVE_EXTRUDER)
/**
* Counters to manage disabling inactive extruders
*/
2016-05-26 18:22:51 +00:00
static uint8_t g_uc_extruder_last_move [ EXTRUDERS ] ;
2016-04-28 01:06:32 +00:00
# endif // DISABLE_INACTIVE_EXTRUDER
# ifdef XY_FREQUENCY_LIMIT
// Used for the frequency limit
2017-10-29 23:21:15 +00:00
# define MAX_FREQ_TIME_US (uint32_t)(1000000.0 / XY_FREQUENCY_LIMIT)
2016-04-28 01:06:32 +00:00
// Old direction bits. Used for speed calculations
2016-05-26 18:22:51 +00:00
static unsigned char old_direction_bits ;
2016-04-28 01:06:32 +00:00
// Segment times (in µs). Used for speed calculations
2017-11-30 22:38:35 +00:00
static uint32_t axis_segment_time_us [ 2 ] [ 3 ] ;
2016-10-31 15:17:30 +00:00
# endif
2016-04-28 01:06:32 +00:00
2016-12-12 13:35:02 +00:00
# if ENABLED(ULTRA_LCD)
2016-12-09 13:10:55 +00:00
volatile static uint32_t block_buffer_runtime_us ; //Theoretical block buffer runtime in µs
2016-11-21 16:49:16 +00:00
# endif
2016-04-28 01:06:32 +00:00
public :
2016-05-26 18:22:51 +00:00
/**
* Instance Methods
*/
2016-04-28 01:06:32 +00:00
Planner ( ) ;
void init ( ) ;
2016-05-26 18:22:51 +00:00
/**
* Static ( class ) Methods
*/
static void reset_acceleration_rates ( ) ;
2016-07-24 02:36:26 +00:00
static void refresh_positioning ( ) ;
2016-04-28 01:06:32 +00:00
2017-11-10 08:26:49 +00:00
FORCE_INLINE static void refresh_e_factor ( const uint8_t e ) {
2017-12-20 01:44:11 +00:00
e_factor [ e ] = ( flow_percentage [ e ] * 0.01
# if DISABLED(NO_VOLUMETRICS)
* volumetric_multiplier [ e ]
# endif
) ;
2017-11-10 08:26:49 +00:00
}
2016-04-28 01:06:32 +00:00
// Manage fans, paste pressure, etc.
2016-05-26 18:22:51 +00:00
static void check_axes_activity ( ) ;
2015-03-29 03:33:21 +00:00
/**
2016-04-28 01:06:32 +00:00
* Number of moves currently in the planner
2015-03-29 03:33:21 +00:00
*/
2017-12-09 03:38:45 +00:00
FORCE_INLINE static uint8_t movesplanned ( ) { return BLOCK_MOD ( block_buffer_head - block_buffer_tail + BLOCK_BUFFER_SIZE ) ; }
2016-04-28 01:06:32 +00:00
2017-12-09 03:38:45 +00:00
FORCE_INLINE static bool is_full ( ) { return block_buffer_tail = = next_block_index ( block_buffer_head ) ; }
2016-04-04 01:06:17 +00:00
2017-09-18 10:51:45 +00:00
// Update multipliers based on new diameter measurements
static void calculate_volumetric_multipliers ( ) ;
2017-12-13 08:32:34 +00:00
# if ENABLED(FILAMENT_WIDTH_SENSOR)
void calculate_volumetric_for_width_sensor ( const int8_t encoded_ratio ) ;
# endif
2017-12-20 01:44:11 +00:00
# if DISABLED(NO_VOLUMETRICS)
FORCE_INLINE static void set_filament_size ( const uint8_t e , const float & v ) {
filament_size [ e ] = v ;
// make sure all extruders have some sane value for the filament size
for ( uint8_t i = 0 ; i < COUNT ( filament_size ) ; i + + )
if ( ! filament_size [ i ] ) filament_size [ i ] = DEFAULT_NOMINAL_FILAMENT_DIA ;
}
# endif
2017-09-18 10:51:45 +00:00
2017-10-13 15:39:11 +00:00
# if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
/**
* Get the Z leveling fade factor based on the given Z height ,
* re - calculating only when needed .
*
* Returns 1.0 if planner . z_fade_height is 0.0 .
* Returns 0.0 if Z is past the specified ' Fade Height ' .
*/
2017-11-03 04:59:42 +00:00
inline static float fade_scaling_factor_for_z ( const float & rz ) {
2017-10-13 16:07:09 +00:00
static float z_fade_factor = 1.0 ;
2017-10-13 15:39:11 +00:00
if ( z_fade_height ) {
2017-11-03 04:59:42 +00:00
if ( rz > = z_fade_height ) return 0.0 ;
if ( last_fade_z ! = rz ) {
last_fade_z = rz ;
z_fade_factor = 1.0 - rz * inverse_z_fade_height ;
2017-10-13 15:39:11 +00:00
}
return z_fade_factor ;
}
return 1.0 ;
}
2017-11-03 04:59:42 +00:00
FORCE_INLINE static void force_fade_recalc ( ) { last_fade_z = - 999.999 ; }
2017-10-13 16:07:09 +00:00
2017-10-13 22:21:25 +00:00
FORCE_INLINE static void set_z_fade_height ( const float & zfh ) {
z_fade_height = zfh > 0 ? zfh : 0 ;
inverse_z_fade_height = RECIPROCAL ( z_fade_height ) ;
force_fade_recalc ( ) ;
}
2017-11-03 04:59:42 +00:00
FORCE_INLINE static bool leveling_active_at_z ( const float & rz ) {
return ! z_fade_height | | rz < z_fade_height ;
2017-10-13 22:21:25 +00:00
}
2017-10-13 15:39:11 +00:00
# else
2017-11-03 04:59:42 +00:00
FORCE_INLINE static float fade_scaling_factor_for_z ( const float & rz ) {
UNUSED ( rz ) ;
2017-10-13 15:39:11 +00:00
return 1.0 ;
}
2017-11-03 04:59:42 +00:00
FORCE_INLINE static bool leveling_active_at_z ( const float & rz ) { UNUSED ( rz ) ; return true ; }
2017-10-13 22:21:25 +00:00
2017-10-13 15:39:11 +00:00
# endif
2017-12-09 13:50:55 +00:00
# if ENABLED(SKEW_CORRECTION)
FORCE_INLINE static void skew ( float & cx , float & cy , const float & cz ) {
if ( WITHIN ( cx , X_MIN_POS + 1 , X_MAX_POS ) & & WITHIN ( cy , Y_MIN_POS + 1 , Y_MAX_POS ) ) {
2017-12-13 23:46:48 +00:00
const float sx = cx - cy * xy_skew_factor - cz * ( xz_skew_factor - ( xy_skew_factor * yz_skew_factor ) ) ,
sy = cy - cz * yz_skew_factor ;
2017-12-09 13:50:55 +00:00
if ( WITHIN ( sx , X_MIN_POS , X_MAX_POS ) & & WITHIN ( sy , Y_MIN_POS , Y_MAX_POS ) ) {
cx = sx ; cy = sy ;
}
}
}
FORCE_INLINE static void unskew ( float & cx , float & cy , const float & cz ) {
if ( WITHIN ( cx , X_MIN_POS , X_MAX_POS ) & & WITHIN ( cy , Y_MIN_POS , Y_MAX_POS ) ) {
2017-12-15 20:24:20 +00:00
const float sx = cx + cy * xy_skew_factor + cz * xz_skew_factor ,
2017-12-09 13:50:55 +00:00
sy = cy + cz * yz_skew_factor ;
if ( WITHIN ( sx , X_MIN_POS , X_MAX_POS ) & & WITHIN ( sy , Y_MIN_POS , Y_MAX_POS ) ) {
cx = sx ; cy = sy ;
}
}
}
# endif // SKEW_CORRECTION
2017-05-01 21:13:09 +00:00
# if PLANNER_LEVELING
2016-10-07 18:27:00 +00:00
2017-11-03 04:59:42 +00:00
# define ARG_X float rx
# define ARG_Y float ry
# define ARG_Z float rz
2016-04-28 01:06:32 +00:00
/**
2016-09-12 02:40:44 +00:00
* Apply leveling to transform a cartesian position
* as it will be given to the planner and steppers .
2016-04-28 01:06:32 +00:00
*/
2017-11-03 04:59:42 +00:00
static void apply_leveling ( float & rx , float & ry , float & rz ) ;
2017-12-09 08:10:54 +00:00
static void apply_leveling ( float ( & raw ) [ XYZ ] ) { apply_leveling ( raw [ X_AXIS ] , raw [ Y_AXIS ] , raw [ Z_AXIS ] ) ; }
2017-11-03 04:59:42 +00:00
static void unapply_leveling ( float raw [ XYZ ] ) ;
2016-04-28 01:06:32 +00:00
2016-10-07 18:27:00 +00:00
# else
2017-11-03 04:59:42 +00:00
# define ARG_X const float &rx
# define ARG_Y const float &ry
# define ARG_Z const float &rz
2016-10-07 18:27:00 +00:00
2016-09-12 02:40:44 +00:00
# endif
2016-12-15 15:21:32 +00:00
2017-11-30 22:40:42 +00:00
/**
* Planner : : _buffer_steps
*
* Add a new linear movement to the buffer ( in terms of steps ) .
*
* target - target position in steps units
* fr_mm_s - ( target ) speed of the move
* extruder - target extruder
*/
static void _buffer_steps ( const int32_t ( & target ) [ XYZE ] , float fr_mm_s , const uint8_t extruder ) ;
2016-09-12 02:40:44 +00:00
/**
2017-12-09 13:41:19 +00:00
* Planner : : buffer_segment
2016-10-06 08:56:05 +00:00
*
2017-11-30 21:55:08 +00:00
* Add a new linear movement to the buffer in axis units .
2016-10-09 18:25:25 +00:00
*
2017-11-30 21:55:08 +00:00
* Leveling and kinematics should be applied ahead of calling this .
2016-10-06 08:56:05 +00:00
*
2017-11-30 21:55:08 +00:00
* a , b , c , e - target positions in mm and / or degrees
* fr_mm_s - ( target ) speed of the move
2016-10-06 08:56:05 +00:00
* extruder - target extruder
*/
2017-12-09 13:41:19 +00:00
static void buffer_segment ( const float & a , const float & b , const float & c , const float & e , const float & fr_mm_s , const uint8_t extruder ) ;
2016-10-06 08:56:05 +00:00
2016-10-09 18:25:25 +00:00
static void _set_position_mm ( const float & a , const float & b , const float & c , const float & e ) ;
2016-10-06 08:56:05 +00:00
/**
* Add a new linear movement to the buffer .
* The target is NOT translated to delta / scara
2016-09-12 02:40:44 +00:00
*
2016-10-09 18:25:25 +00:00
* Leveling will be applied to input on cartesians .
* Kinematic machines should call buffer_line_kinematic ( for leveled moves ) .
* ( Cartesians may also call buffer_line_kinematic . )
*
2017-11-03 04:59:42 +00:00
* rx , ry , rz , e - target position in mm or degrees
2016-10-09 18:25:25 +00:00
* fr_mm_s - ( target ) speed of the move ( mm / s )
* extruder - target extruder
2016-09-12 02:40:44 +00:00
*/
2017-12-08 06:37:09 +00:00
FORCE_INLINE static void buffer_line ( ARG_X , ARG_Y , ARG_Z , const float & e , const float & fr_mm_s , const uint8_t extruder ) {
2017-05-01 21:13:09 +00:00
# if PLANNER_LEVELING && IS_CARTESIAN
2017-11-03 04:59:42 +00:00
apply_leveling ( rx , ry , rz ) ;
2016-10-06 08:56:05 +00:00
# endif
2017-12-09 13:41:19 +00:00
buffer_segment ( rx , ry , rz , e , fr_mm_s , extruder ) ;
2016-10-06 08:56:05 +00:00
}
/**
* Add a new linear movement to the buffer .
* The target is cartesian , it ' s translated to delta / scara if
* needed .
*
2017-11-16 22:54:03 +00:00
* cart - x , y , z , e CARTESIAN target in mm
2016-10-06 08:56:05 +00:00
* fr_mm_s - ( target ) speed of the move ( mm / s )
* extruder - target extruder
*/
2017-12-09 08:10:54 +00:00
FORCE_INLINE static void buffer_line_kinematic ( const float ( & cart ) [ XYZE ] , const float & fr_mm_s , const uint8_t extruder ) {
2017-05-01 21:13:09 +00:00
# if PLANNER_LEVELING
2017-11-09 04:13:33 +00:00
float raw [ XYZ ] = { cart [ X_AXIS ] , cart [ Y_AXIS ] , cart [ Z_AXIS ] } ;
apply_leveling ( raw ) ;
2016-10-06 08:56:05 +00:00
# else
2017-12-09 08:10:54 +00:00
const float ( & raw ) [ XYZE ] = cart ;
2016-10-06 08:56:05 +00:00
# endif
# if IS_KINEMATIC
2017-11-09 04:13:33 +00:00
inverse_kinematics ( raw ) ;
2017-12-09 13:41:19 +00:00
buffer_segment ( delta [ A_AXIS ] , delta [ B_AXIS ] , delta [ C_AXIS ] , cart [ E_AXIS ] , fr_mm_s , extruder ) ;
2016-10-06 08:56:05 +00:00
# else
2017-12-09 13:41:19 +00:00
buffer_segment ( raw [ X_AXIS ] , raw [ Y_AXIS ] , raw [ Z_AXIS ] , cart [ E_AXIS ] , fr_mm_s , extruder ) ;
2016-10-06 08:56:05 +00:00
# endif
}
2016-04-28 01:06:32 +00:00
2016-09-12 02:40:44 +00:00
/**
* Set the planner . position and individual stepper positions .
* Used by G92 , G28 , G29 , and other procedures .
*
* Multiplies by axis_steps_per_mm [ ] and does necessary conversion
* for COREXY / COREXZ / COREYZ to set the corresponding stepper positions .
*
* Clears previous speed values .
*/
2017-12-08 06:37:09 +00:00
FORCE_INLINE static void set_position_mm ( ARG_X , ARG_Y , ARG_Z , const float & e ) {
2017-05-01 21:13:09 +00:00
# if PLANNER_LEVELING && IS_CARTESIAN
2017-11-03 04:59:42 +00:00
apply_leveling ( rx , ry , rz ) ;
2016-10-06 08:56:05 +00:00
# endif
2017-11-03 04:59:42 +00:00
_set_position_mm ( rx , ry , rz , e ) ;
2016-10-06 08:56:05 +00:00
}
2017-12-09 08:10:54 +00:00
static void set_position_mm_kinematic ( const float ( & cart ) [ XYZE ] ) ;
2016-10-27 10:53:24 +00:00
static void set_position_mm ( const AxisEnum axis , const float & v ) ;
2017-12-08 06:37:09 +00:00
FORCE_INLINE static void set_z_position_mm ( const float & z ) { set_position_mm ( Z_AXIS , z ) ; }
FORCE_INLINE static void set_e_position_mm ( const float & e ) { set_position_mm ( AxisEnum ( E_AXIS ) , e ) ; }
2016-04-28 01:06:32 +00:00
2016-09-21 22:31:32 +00:00
/**
* Sync from the stepper positions . ( e . g . , after an interrupted move )
*/
static void sync_from_steppers ( ) ;
2016-04-28 01:06:32 +00:00
/**
* Does the buffer have any blocks queued ?
*/
2016-05-31 00:18:28 +00:00
static bool blocks_queued ( ) { return ( block_buffer_head ! = block_buffer_tail ) ; }
2016-04-28 01:06:32 +00:00
/**
2017-12-08 05:03:36 +00:00
* " Discard " the block and " release " the memory .
2016-04-28 01:06:32 +00:00
* Called when the current block is no longer needed .
*/
2017-12-08 05:03:36 +00:00
FORCE_INLINE static void discard_current_block ( ) {
2016-04-28 01:06:32 +00:00
if ( blocks_queued ( ) )
block_buffer_tail = BLOCK_MOD ( block_buffer_tail + 1 ) ;
}
2017-12-08 05:03:36 +00:00
/**
* " Discard " the next block if it ' s continued .
* Called after an interrupted move to throw away the rest of the move .
*/
FORCE_INLINE static bool discard_continued_block ( ) {
const bool discard = blocks_queued ( ) & & TEST ( block_buffer [ block_buffer_tail ] . flag , BLOCK_BIT_CONTINUED ) ;
if ( discard ) discard_current_block ( ) ;
return discard ;
}
2016-04-28 01:06:32 +00:00
/**
* The current block . NULL if the buffer is empty .
* This also marks the block as busy .
2017-12-03 02:17:51 +00:00
* WARNING : Called from Stepper ISR context !
2016-04-28 01:06:32 +00:00
*/
2016-05-31 00:18:28 +00:00
static block_t * get_current_block ( ) {
2016-04-28 01:06:32 +00:00
if ( blocks_queued ( ) ) {
2017-12-08 05:03:36 +00:00
block_t * const block = & block_buffer [ block_buffer_tail ] ;
2016-12-12 13:35:02 +00:00
# if ENABLED(ULTRA_LCD)
2017-11-30 21:55:08 +00:00
block_buffer_runtime_us - = block - > segment_time_us ; // We can't be sure how long an active block will take, so don't count it.
2016-11-21 16:49:16 +00:00
# endif
2016-10-30 21:05:14 +00:00
SBI ( block - > flag , BLOCK_BIT_BUSY ) ;
2016-04-28 01:06:32 +00:00
return block ;
}
2016-12-09 13:10:55 +00:00
else {
2016-12-12 13:35:02 +00:00
# if ENABLED(ULTRA_LCD)
2016-12-09 13:10:55 +00:00
clear_block_buffer_runtime ( ) ; // paranoia. Buffer is empty now - so reset accumulated time to zero.
# endif
2016-04-28 01:06:32 +00:00
return NULL ;
2016-12-09 13:10:55 +00:00
}
2016-04-28 01:06:32 +00:00
}
2016-12-12 13:35:02 +00:00
# if ENABLED(ULTRA_LCD)
2016-12-15 11:50:22 +00:00
static uint16_t block_buffer_runtime ( ) {
2016-12-09 13:10:55 +00:00
CRITICAL_SECTION_START
2016-12-12 13:35:02 +00:00
millis_t bbru = block_buffer_runtime_us ;
2016-12-09 13:10:55 +00:00
CRITICAL_SECTION_END
2016-12-15 11:50:22 +00:00
// To translate µs to ms a division by 1000 would be required.
// We introduce 2.4% error here by dividing by 1024.
// Doesn't matter because block_buffer_runtime_us is already too small an estimation.
bbru > > = 10 ;
// limit to about a minute.
2017-04-22 02:42:27 +00:00
NOMORE ( bbru , 0xFFFFul ) ;
2016-12-12 13:35:02 +00:00
return bbru ;
2016-11-11 17:15:39 +00:00
}
2016-12-12 13:35:02 +00:00
2016-11-21 16:49:16 +00:00
static void clear_block_buffer_runtime ( ) {
2016-12-09 13:10:55 +00:00
CRITICAL_SECTION_START
block_buffer_runtime_us = 0 ;
CRITICAL_SECTION_END
2016-11-21 16:49:16 +00:00
}
2016-12-12 13:35:02 +00:00
2016-11-11 17:15:39 +00:00
# endif
2016-05-04 00:00:28 +00:00
# if ENABLED(AUTOTEMP)
2016-11-12 00:11:04 +00:00
static float autotemp_min , autotemp_max , autotemp_factor ;
2016-05-26 18:22:51 +00:00
static bool autotemp_enabled ;
static void getHighESpeed ( ) ;
2016-11-14 10:29:45 +00:00
static void autotemp_M104_M109 ( ) ;
2016-05-04 00:00:28 +00:00
# endif
private :
2016-04-28 01:06:32 +00:00
/**
* Get the index of the next / previous block in the ring buffer
*/
2017-12-09 03:38:45 +00:00
static constexpr int8_t next_block_index ( const int8_t block_index ) { return BLOCK_MOD ( block_index + 1 ) ; }
static constexpr int8_t prev_block_index ( const int8_t block_index ) { return BLOCK_MOD ( block_index - 1 ) ; }
2016-04-28 01:06:32 +00:00
/**
* Calculate the distance ( not time ) it takes to accelerate
* from initial_rate to target_rate using the given acceleration :
*/
2016-10-27 10:53:24 +00:00
static float estimate_acceleration_distance ( const float & initial_rate , const float & target_rate , const float & accel ) {
2016-06-07 22:38:45 +00:00
if ( accel = = 0 ) return 0 ; // accel was 0, set acceleration distance to 0
2016-07-16 01:50:25 +00:00
return ( sq ( target_rate ) - sq ( initial_rate ) ) / ( accel * 2 ) ;
2016-04-28 01:06:32 +00:00
}
/**
2017-12-03 02:17:51 +00:00
* Return the point at which you must start braking ( at the rate of - ' accel ' ) if
2016-04-28 01:06:32 +00:00
* you start at ' initial_rate ' , accelerate ( until reaching the point ) , and want to end at
* ' final_rate ' after traveling ' distance ' .
*
* This is used to compute the intersection point between acceleration and deceleration
* in cases where the " trapezoid " has no plateau ( i . e . , never reaches maximum speed )
*/
2016-10-27 10:53:24 +00:00
static float intersection_distance ( const float & initial_rate , const float & final_rate , const float & accel , const float & distance ) {
2016-06-07 22:38:45 +00:00
if ( accel = = 0 ) return 0 ; // accel was 0, set intersection distance to 0
2016-07-16 01:50:25 +00:00
return ( accel * 2 * distance - sq ( initial_rate ) + sq ( final_rate ) ) / ( accel * 4 ) ;
2016-04-28 01:06:32 +00:00
}
/**
* Calculate the maximum allowable speed at this point , in order
* to reach ' target_velocity ' using ' acceleration ' within a given
* ' distance ' .
*/
2016-10-27 10:53:24 +00:00
static float max_allowable_speed ( const float & accel , const float & target_velocity , const float & distance ) {
2017-06-20 03:39:23 +00:00
return SQRT ( sq ( target_velocity ) - 2 * accel * distance ) ;
2016-04-28 01:06:32 +00:00
}
2016-10-11 04:17:49 +00:00
static void calculate_trapezoid_for_block ( block_t * const block , const float & entry_factor , const float & exit_factor ) ;
2016-04-28 01:06:32 +00:00
2017-12-09 03:38:45 +00:00
static void reverse_pass_kernel ( block_t * const current , const block_t * const next ) ;
static void forward_pass_kernel ( const block_t * const previous , block_t * const current ) ;
2016-04-28 01:06:32 +00:00
2016-05-26 18:22:51 +00:00
static void reverse_pass ( ) ;
static void forward_pass ( ) ;
2016-04-28 01:06:32 +00:00
2016-05-26 18:22:51 +00:00
static void recalculate_trapezoids ( ) ;
2016-04-28 01:06:32 +00:00
2016-05-26 18:22:51 +00:00
static void recalculate ( ) ;
2011-11-19 14:37:10 +00:00
2016-04-28 01:06:32 +00:00
} ;
2015-03-21 03:42:49 +00:00
2017-05-01 20:17:40 +00:00
# define PLANNER_XY_FEEDRATE() (min(planner.max_feedrate_mm_s[X_AXIS], planner.max_feedrate_mm_s[Y_AXIS]))
2016-10-10 20:34:35 +00:00
extern Planner planner ;
2015-04-09 08:40:48 +00:00
# endif // PLANNER_H