2011-11-15 21:50:43 +00:00
|
|
|
/*
|
|
|
|
planner.h - buffers movement commands and manages the acceleration profile plan
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// This module is to be considered a sub-module of stepper.c. Please don't include
|
|
|
|
// this file from any other module.
|
|
|
|
|
2015-03-21 03:42:49 +00:00
|
|
|
#ifndef PLANNER_H
|
|
|
|
#define PLANNER_H
|
2011-12-22 11:38:50 +00:00
|
|
|
|
2011-11-27 15:04:58 +00:00
|
|
|
#include "Marlin.h"
|
2011-11-15 21:50:43 +00:00
|
|
|
|
|
|
|
// This struct is used when buffering the setup for each linear movement "nominal" values are as specified in
|
|
|
|
// the source g-code and may never actually be reached if acceleration management is active.
|
|
|
|
typedef struct {
|
|
|
|
// Fields used by the bresenham algorithm for tracing the line
|
2015-03-21 03:42:49 +00:00
|
|
|
long steps[NUM_AXIS]; // Step count along each axis
|
2011-11-19 20:32:47 +00:00
|
|
|
unsigned long step_event_count; // The number of step events required to complete this block
|
2011-11-15 21:50:43 +00:00
|
|
|
long accelerate_until; // The index of the step event on which to stop acceleration
|
|
|
|
long decelerate_after; // The index of the step event on which to start decelerating
|
|
|
|
long acceleration_rate; // The acceleration rate used for acceleration calculation
|
|
|
|
unsigned char direction_bits; // The direction bit set for this block (refers to *_DIRECTION_BIT in config.h)
|
2011-12-02 16:45:05 +00:00
|
|
|
unsigned char active_extruder; // Selects the active extruder
|
2011-11-15 21:50:43 +00:00
|
|
|
#ifdef ADVANCE
|
2011-12-02 16:45:05 +00:00
|
|
|
long advance_rate;
|
|
|
|
volatile long initial_advance;
|
|
|
|
volatile long final_advance;
|
|
|
|
float advance;
|
2011-11-15 21:50:43 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// Fields used by the motion planner to manage acceleration
|
2015-03-21 03:42:49 +00:00
|
|
|
// float speed_x, speed_y, speed_z, speed_e; // Nominal mm/sec for each axis
|
2012-05-09 05:05:13 +00:00
|
|
|
float nominal_speed; // The nominal speed for this block in mm/sec
|
|
|
|
float entry_speed; // Entry speed at previous-current junction in mm/sec
|
|
|
|
float max_entry_speed; // Maximum allowable junction entry speed in mm/sec
|
2011-11-15 21:50:43 +00:00
|
|
|
float millimeters; // The total travel of this block in mm
|
|
|
|
float acceleration; // acceleration mm/sec^2
|
|
|
|
unsigned char recalculate_flag; // Planner flag to recalculate trapezoids on entry junction
|
|
|
|
unsigned char nominal_length_flag; // Planner flag for nominal speed always reached
|
|
|
|
|
|
|
|
// Settings for the trapezoid generator
|
|
|
|
unsigned long nominal_rate; // The nominal step rate for this block in step_events/sec
|
|
|
|
unsigned long initial_rate; // The jerk-adjusted step rate at start of block
|
|
|
|
unsigned long final_rate; // The minimal rate at exit
|
|
|
|
unsigned long acceleration_st; // acceleration steps/sec^2
|
2012-03-04 12:05:26 +00:00
|
|
|
unsigned long fan_speed;
|
2013-06-06 22:49:25 +00:00
|
|
|
#ifdef BARICUDA
|
2015-03-21 03:42:49 +00:00
|
|
|
unsigned long valve_pressure;
|
|
|
|
unsigned long e_to_p_pressure;
|
2013-06-06 22:49:25 +00:00
|
|
|
#endif
|
2011-11-15 21:50:43 +00:00
|
|
|
volatile char busy;
|
|
|
|
} 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
|
|
|
|
2011-11-15 21:50:43 +00:00
|
|
|
// Initialize the motion plan subsystem
|
|
|
|
void plan_init();
|
|
|
|
|
2015-03-21 03:42:49 +00:00
|
|
|
void check_axes_activity();
|
2013-09-29 16:20:06 +00:00
|
|
|
|
2015-03-21 03:42:49 +00:00
|
|
|
// Get the number of buffered moves
|
|
|
|
extern volatile unsigned char block_buffer_head;
|
|
|
|
extern volatile unsigned char block_buffer_tail;
|
|
|
|
FORCE_INLINE uint8_t movesplanned() { return BLOCK_MOD(block_buffer_head - block_buffer_tail + BLOCK_BUFFER_SIZE); }
|
2013-09-29 16:20:06 +00:00
|
|
|
|
2015-03-15 09:43:26 +00:00
|
|
|
#if defined(ENABLE_AUTO_BED_LEVELING) || defined(MESH_BED_LEVELING)
|
2015-03-29 03:33:21 +00:00
|
|
|
|
2015-03-21 23:12:57 +00:00
|
|
|
#if defined(ENABLE_AUTO_BED_LEVELING)
|
|
|
|
#include "vector_3.h"
|
2015-03-29 03:33:21 +00:00
|
|
|
|
|
|
|
// Transform required to compensate for bed level
|
2015-03-21 23:12:57 +00:00
|
|
|
extern matrix_3x3 plan_bed_level_matrix;
|
2015-03-29 03:33:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the position applying the bed level matrix
|
|
|
|
*/
|
2015-03-21 23:12:57 +00:00
|
|
|
vector_3 plan_get_position();
|
|
|
|
#endif // ENABLE_AUTO_BED_LEVELING
|
2015-03-29 03:33:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a new linear movement to the buffer. x, y, z are the signed, absolute target position in
|
|
|
|
* millimeters. Feed rate specifies the (target) speed of the motion.
|
|
|
|
*/
|
2015-03-21 03:42:49 +00:00
|
|
|
void plan_buffer_line(float x, float y, float z, const float &e, float feed_rate, const uint8_t &extruder);
|
2015-03-29 03:33:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the planner positions. Used for G92 instructions.
|
|
|
|
* Multiplies by axis_steps_per_unit[] to set stepper positions.
|
|
|
|
* Clears previous speed values.
|
|
|
|
*/
|
2015-03-21 03:42:49 +00:00
|
|
|
void plan_set_position(float x, float y, float z, const float &e);
|
2015-03-29 03:33:21 +00:00
|
|
|
|
2013-09-29 16:20:06 +00:00
|
|
|
#else
|
2015-03-29 03:33:21 +00:00
|
|
|
|
2015-03-21 03:42:49 +00:00
|
|
|
void plan_buffer_line(const float &x, const float &y, const float &z, const float &e, float feed_rate, const uint8_t &extruder);
|
|
|
|
void plan_set_position(const float &x, const float &y, const float &z, const float &e);
|
2015-03-29 03:33:21 +00:00
|
|
|
|
2015-03-15 09:43:26 +00:00
|
|
|
#endif // ENABLE_AUTO_BED_LEVELING || MESH_BED_LEVELING
|
2013-09-29 16:20:06 +00:00
|
|
|
|
2011-11-25 12:43:06 +00:00
|
|
|
void plan_set_e_position(const float &e);
|
2011-11-15 21:50:43 +00:00
|
|
|
|
2015-04-27 01:44:01 +00:00
|
|
|
//===========================================================================
|
|
|
|
//============================= public variables ============================
|
|
|
|
//===========================================================================
|
|
|
|
|
2015-04-13 01:07:08 +00:00
|
|
|
extern millis_t minsegmenttime;
|
2015-04-27 01:44:01 +00:00
|
|
|
extern float max_feedrate[NUM_AXIS]; // Max speeds in mm per minute
|
2014-12-18 16:13:08 +00:00
|
|
|
extern float axis_steps_per_unit[NUM_AXIS];
|
|
|
|
extern unsigned long max_acceleration_units_per_sq_second[NUM_AXIS]; // Use M201 to override by software
|
2011-11-15 21:50:43 +00:00
|
|
|
extern float minimumfeedrate;
|
2015-04-27 01:44:01 +00:00
|
|
|
extern float acceleration; // Normal acceleration mm/s^2 DEFAULT ACCELERATION for all printing moves. M204 SXXXX
|
|
|
|
extern float retract_acceleration; // Retract acceleration mm/s^2 filament pull-back and push-forward while standing still in the other axes M204 TXXXX
|
|
|
|
extern float travel_acceleration; // Travel acceleration mm/s^2 DEFAULT ACCELERATION for all NON printing moves. M204 MXXXX
|
|
|
|
extern float max_xy_jerk; // The largest speed change requiring no acceleration
|
2011-11-15 21:50:43 +00:00
|
|
|
extern float max_z_jerk;
|
2012-03-04 15:34:58 +00:00
|
|
|
extern float max_e_jerk;
|
2011-11-15 21:50:43 +00:00
|
|
|
extern float mintravelfeedrate;
|
|
|
|
extern unsigned long axis_steps_per_sqr_second[NUM_AXIS];
|
2011-11-19 14:37:10 +00:00
|
|
|
|
2011-11-15 21:50:43 +00:00
|
|
|
#ifdef AUTOTEMP
|
2015-03-21 03:42:49 +00:00
|
|
|
extern bool autotemp_enabled;
|
|
|
|
extern float autotemp_max;
|
|
|
|
extern float autotemp_min;
|
|
|
|
extern float autotemp_factor;
|
2011-11-15 21:50:43 +00:00
|
|
|
#endif
|
2011-11-19 14:37:10 +00:00
|
|
|
|
2015-03-21 03:42:49 +00:00
|
|
|
extern block_t block_buffer[BLOCK_BUFFER_SIZE]; // A ring buffer for motion instructions
|
2011-11-27 13:57:12 +00:00
|
|
|
extern volatile unsigned char block_buffer_head; // Index of the next block to be pushed
|
|
|
|
extern volatile unsigned char block_buffer_tail;
|
2015-03-21 03:42:49 +00:00
|
|
|
|
|
|
|
// Returns true if the buffer has a queued block, false otherwise
|
|
|
|
FORCE_INLINE bool blocks_queued() { return (block_buffer_head != block_buffer_tail); }
|
|
|
|
|
|
|
|
// Called when the current block is no longer needed. Discards
|
|
|
|
// the block and makes the memory available for new blocks.
|
|
|
|
FORCE_INLINE void plan_discard_current_block() {
|
|
|
|
if (blocks_queued())
|
|
|
|
block_buffer_tail = BLOCK_MOD(block_buffer_tail + 1);
|
2011-11-27 13:57:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Gets the current block. Returns NULL if buffer empty
|
2015-03-21 03:42:49 +00:00
|
|
|
FORCE_INLINE block_t *plan_get_current_block() {
|
|
|
|
if (blocks_queued()) {
|
|
|
|
block_t *block = &block_buffer[block_buffer_tail];
|
|
|
|
block->busy = true;
|
|
|
|
return block;
|
2011-11-27 13:57:12 +00:00
|
|
|
}
|
2015-03-21 03:42:49 +00:00
|
|
|
else
|
|
|
|
return NULL;
|
2011-11-27 13:57:12 +00:00
|
|
|
}
|
2011-12-09 11:32:31 +00:00
|
|
|
|
Allow Edit menu to call fn after edit; Fix PID Ki and Kd display in menus; Actually use changed PID and Max Accel values
Add new 'callback' edit-menu types that call a function after the edit is done. Use this to display and edit Ki and Kd correctly (removing the scaling first and reapplying it after). Also use it to reset maximum stepwise acceleration rates, after updating mm/s^2 rates via menus. (Previously, changes did nothing to affect planner unless saved back to EEPROM, and the machine reset).
Add calls to updatePID() so that PID loop uses updated values whether set by gcode (it already did this), or by restoring defaults, or loading from EEPROM (it didn't do those last two). Similarly, update the maximum step/s^2 accel rates when the mm/s^2 values are changed - whether by menu edits, restore defaults, or EEPROM read.
Refactor the acceleration rate update logic, and the PID scaling logic, into new functions that can be called from wherever, including the callbacks.
Add menu items to allow the z jerk and e jerk to be viewed/edited in the Control->Motion menu, as per xy jerk.
Conflicts:
Marlin/language.h
2013-03-19 14:05:11 +00:00
|
|
|
void reset_acceleration_rates();
|
2015-03-21 03:42:49 +00:00
|
|
|
|
2015-04-09 08:40:48 +00:00
|
|
|
#endif // PLANNER_H
|