My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

planner.h 20KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. /**
  23. * planner.h
  24. *
  25. * Buffer movement commands and manage the acceleration profile plan
  26. *
  27. * Derived from Grbl
  28. * Copyright (c) 2009-2011 Simen Svale Skogsrud
  29. */
  30. #ifndef PLANNER_H
  31. #define PLANNER_H
  32. #include "types.h"
  33. #include "enum.h"
  34. #include "Marlin.h"
  35. #if HAS_ABL
  36. #include "vector_3.h"
  37. #endif
  38. enum BlockFlagBit {
  39. // Recalculate trapezoids on entry junction. For optimization.
  40. BLOCK_BIT_RECALCULATE,
  41. // Nominal speed always reached.
  42. // i.e., The segment is long enough, so the nominal speed is reachable if accelerating
  43. // from a safe speed (in consideration of jerking from zero speed).
  44. BLOCK_BIT_NOMINAL_LENGTH,
  45. // Start from a halt at the start of this block, respecting the maximum allowed jerk.
  46. BLOCK_BIT_START_FROM_FULL_HALT,
  47. // The block is busy
  48. BLOCK_BIT_BUSY
  49. };
  50. enum BlockFlag {
  51. BLOCK_FLAG_RECALCULATE = _BV(BLOCK_BIT_RECALCULATE),
  52. BLOCK_FLAG_NOMINAL_LENGTH = _BV(BLOCK_BIT_NOMINAL_LENGTH),
  53. BLOCK_FLAG_START_FROM_FULL_HALT = _BV(BLOCK_BIT_START_FROM_FULL_HALT),
  54. BLOCK_FLAG_BUSY = _BV(BLOCK_BIT_BUSY)
  55. };
  56. /**
  57. * struct block_t
  58. *
  59. * A single entry in the planner buffer.
  60. * Tracks linear movement over multiple axes.
  61. *
  62. * The "nominal" values are as-specified by gcode, and
  63. * may never actually be reached due to acceleration limits.
  64. */
  65. typedef struct {
  66. uint8_t flag; // Block flags (See BlockFlag enum above)
  67. unsigned char active_extruder; // The extruder to move (if E move)
  68. // Fields used by the Bresenham algorithm for tracing the line
  69. int32_t steps[NUM_AXIS]; // Step count along each axis
  70. uint32_t step_event_count; // The number of step events required to complete this block
  71. #if ENABLED(MIXING_EXTRUDER)
  72. uint32_t mix_event_count[MIXING_STEPPERS]; // Scaled step_event_count for the mixing steppers
  73. #endif
  74. int32_t accelerate_until, // The index of the step event on which to stop acceleration
  75. decelerate_after, // The index of the step event on which to start decelerating
  76. acceleration_rate; // The acceleration rate used for acceleration calculation
  77. uint8_t direction_bits; // The direction bit set for this block (refers to *_DIRECTION_BIT in config.h)
  78. // Advance extrusion
  79. #if ENABLED(LIN_ADVANCE)
  80. bool use_advance_lead;
  81. uint32_t abs_adv_steps_multiplier8; // Factorised by 2^8 to avoid float
  82. #endif
  83. // Fields used by the motion planner to manage acceleration
  84. float nominal_speed, // The nominal speed for this block in mm/sec
  85. entry_speed, // Entry speed at previous-current junction in mm/sec
  86. max_entry_speed, // Maximum allowable junction entry speed in mm/sec
  87. millimeters, // The total travel of this block in mm
  88. acceleration; // acceleration mm/sec^2
  89. // Settings for the trapezoid generator
  90. uint32_t nominal_rate, // The nominal step rate for this block in step_events/sec
  91. initial_rate, // The jerk-adjusted step rate at start of block
  92. final_rate, // The minimal rate at exit
  93. acceleration_steps_per_s2; // acceleration steps/sec^2
  94. #if FAN_COUNT > 0
  95. uint16_t fan_speed[FAN_COUNT];
  96. #endif
  97. #if ENABLED(BARICUDA)
  98. uint8_t valve_pressure, e_to_p_pressure;
  99. #endif
  100. uint32_t segment_time_us;
  101. } block_t;
  102. #define BLOCK_MOD(n) ((n)&(BLOCK_BUFFER_SIZE-1))
  103. class Planner {
  104. public:
  105. /**
  106. * A ring buffer of moves described in steps
  107. */
  108. static block_t block_buffer[BLOCK_BUFFER_SIZE];
  109. static volatile uint8_t block_buffer_head, // Index of the next block to be pushed
  110. block_buffer_tail;
  111. #if ENABLED(DISTINCT_E_FACTORS)
  112. static uint8_t last_extruder; // Respond to extruder change
  113. #endif
  114. static int16_t flow_percentage[EXTRUDERS]; // Extrusion factor for each extruder
  115. static float e_factor[EXTRUDERS], // The flow percentage and volumetric multiplier combine to scale E movement
  116. filament_size[EXTRUDERS], // diameter of filament (in millimeters), typically around 1.75 or 2.85, 0 disables the volumetric calculations for the extruder
  117. volumetric_area_nominal, // Nominal cross-sectional area
  118. volumetric_multiplier[EXTRUDERS]; // Reciprocal of cross-sectional area of filament (in mm^2). Pre-calculated to reduce computation in the planner
  119. // May be auto-adjusted by a filament width sensor
  120. static float max_feedrate_mm_s[XYZE_N], // Max speeds in mm per second
  121. axis_steps_per_mm[XYZE_N],
  122. steps_to_mm[XYZE_N];
  123. static uint32_t max_acceleration_steps_per_s2[XYZE_N],
  124. max_acceleration_mm_per_s2[XYZE_N]; // Use M201 to override
  125. static uint32_t min_segment_time_us; // Use 'M205 B<µs>' to override
  126. static float min_feedrate_mm_s,
  127. acceleration, // Normal acceleration mm/s^2 DEFAULT ACCELERATION for all printing moves. M204 SXXXX
  128. retract_acceleration, // Retract acceleration mm/s^2 filament pull-back and push-forward while standing still in the other axes M204 TXXXX
  129. travel_acceleration, // Travel acceleration mm/s^2 DEFAULT ACCELERATION for all NON printing moves. M204 MXXXX
  130. max_jerk[XYZE], // The largest speed change requiring no acceleration
  131. min_travel_feedrate_mm_s;
  132. static bool split_first_move;
  133. #if HAS_LEVELING
  134. static bool leveling_active; // Flag that bed leveling is enabled
  135. #if ABL_PLANAR
  136. static matrix_3x3 bed_level_matrix; // Transform to compensate for bed level
  137. #endif
  138. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  139. static float z_fade_height, inverse_z_fade_height;
  140. #endif
  141. #else
  142. static constexpr bool leveling_active = false;
  143. #endif
  144. #if ENABLED(LIN_ADVANCE)
  145. static float extruder_advance_k, advance_ed_ratio;
  146. #endif
  147. #if ENABLED(SKEW_CORRECTION)
  148. #if ENABLED(SKEW_CORRECTION_GCODE)
  149. static float xy_skew_factor;
  150. #else
  151. static constexpr float xy_skew_factor = XY_SKEW_FACTOR;
  152. #endif
  153. #if ENABLED(SKEW_CORRECTION_FOR_Z)
  154. #if ENABLED(SKEW_CORRECTION_GCODE)
  155. static float xz_skew_factor, yz_skew_factor;
  156. #else
  157. static constexpr float xz_skew_factor = XZ_SKEW_FACTOR, yz_skew_factor = YZ_SKEW_FACTOR;
  158. #endif
  159. #else
  160. static constexpr float xz_skew_factor = 0, yz_skew_factor = 0;
  161. #endif
  162. #endif
  163. private:
  164. /**
  165. * The current position of the tool in absolute steps
  166. * Recalculated if any axis_steps_per_mm are changed by gcode
  167. */
  168. static int32_t position[NUM_AXIS];
  169. /**
  170. * Speed of previous path line segment
  171. */
  172. static float previous_speed[NUM_AXIS];
  173. /**
  174. * Nominal speed of previous path line segment
  175. */
  176. static float previous_nominal_speed;
  177. /**
  178. * Limit where 64bit math is necessary for acceleration calculation
  179. */
  180. static uint32_t cutoff_long;
  181. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  182. static float last_fade_z;
  183. #endif
  184. #if ENABLED(DISABLE_INACTIVE_EXTRUDER)
  185. /**
  186. * Counters to manage disabling inactive extruders
  187. */
  188. static uint8_t g_uc_extruder_last_move[EXTRUDERS];
  189. #endif // DISABLE_INACTIVE_EXTRUDER
  190. #ifdef XY_FREQUENCY_LIMIT
  191. // Used for the frequency limit
  192. #define MAX_FREQ_TIME_US (uint32_t)(1000000.0 / XY_FREQUENCY_LIMIT)
  193. // Old direction bits. Used for speed calculations
  194. static unsigned char old_direction_bits;
  195. // Segment times (in µs). Used for speed calculations
  196. static uint32_t axis_segment_time_us[2][3];
  197. #endif
  198. #if ENABLED(ULTRA_LCD)
  199. volatile static uint32_t block_buffer_runtime_us; //Theoretical block buffer runtime in µs
  200. #endif
  201. public:
  202. /**
  203. * Instance Methods
  204. */
  205. Planner();
  206. void init();
  207. /**
  208. * Static (class) Methods
  209. */
  210. static void reset_acceleration_rates();
  211. static void refresh_positioning();
  212. FORCE_INLINE static void refresh_e_factor(const uint8_t e) {
  213. e_factor[e] = volumetric_multiplier[e] * flow_percentage[e] * 0.01;
  214. }
  215. // Manage fans, paste pressure, etc.
  216. static void check_axes_activity();
  217. /**
  218. * Number of moves currently in the planner
  219. */
  220. static uint8_t movesplanned() { return BLOCK_MOD(block_buffer_head - block_buffer_tail + BLOCK_BUFFER_SIZE); }
  221. static bool is_full() { return (block_buffer_tail == BLOCK_MOD(block_buffer_head + 1)); }
  222. // Update multipliers based on new diameter measurements
  223. static void calculate_volumetric_multipliers();
  224. FORCE_INLINE static void set_filament_size(const uint8_t e, const float &v) {
  225. filament_size[e] = v;
  226. // make sure all extruders have some sane value for the filament size
  227. for (uint8_t i = 0; i < COUNT(filament_size); i++)
  228. if (!filament_size[i]) filament_size[i] = DEFAULT_NOMINAL_FILAMENT_DIA;
  229. }
  230. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  231. /**
  232. * Get the Z leveling fade factor based on the given Z height,
  233. * re-calculating only when needed.
  234. *
  235. * Returns 1.0 if planner.z_fade_height is 0.0.
  236. * Returns 0.0 if Z is past the specified 'Fade Height'.
  237. */
  238. inline static float fade_scaling_factor_for_z(const float &rz) {
  239. static float z_fade_factor = 1.0;
  240. if (z_fade_height) {
  241. if (rz >= z_fade_height) return 0.0;
  242. if (last_fade_z != rz) {
  243. last_fade_z = rz;
  244. z_fade_factor = 1.0 - rz * inverse_z_fade_height;
  245. }
  246. return z_fade_factor;
  247. }
  248. return 1.0;
  249. }
  250. FORCE_INLINE static void force_fade_recalc() { last_fade_z = -999.999; }
  251. FORCE_INLINE static void set_z_fade_height(const float &zfh) {
  252. z_fade_height = zfh > 0 ? zfh : 0;
  253. inverse_z_fade_height = RECIPROCAL(z_fade_height);
  254. force_fade_recalc();
  255. }
  256. FORCE_INLINE static bool leveling_active_at_z(const float &rz) {
  257. return !z_fade_height || rz < z_fade_height;
  258. }
  259. #else
  260. FORCE_INLINE static float fade_scaling_factor_for_z(const float &rz) {
  261. UNUSED(rz);
  262. return 1.0;
  263. }
  264. FORCE_INLINE static bool leveling_active_at_z(const float &rz) { UNUSED(rz); return true; }
  265. #endif
  266. #if PLANNER_LEVELING
  267. #define ARG_X float rx
  268. #define ARG_Y float ry
  269. #define ARG_Z float rz
  270. /**
  271. * Apply leveling to transform a cartesian position
  272. * as it will be given to the planner and steppers.
  273. */
  274. static void apply_leveling(float &rx, float &ry, float &rz);
  275. static void apply_leveling(float raw[XYZ]) { apply_leveling(raw[X_AXIS], raw[Y_AXIS], raw[Z_AXIS]); }
  276. static void unapply_leveling(float raw[XYZ]);
  277. #else
  278. #define ARG_X const float &rx
  279. #define ARG_Y const float &ry
  280. #define ARG_Z const float &rz
  281. #endif
  282. /**
  283. * Planner::_buffer_steps
  284. *
  285. * Add a new linear movement to the buffer (in terms of steps).
  286. *
  287. * target - target position in steps units
  288. * fr_mm_s - (target) speed of the move
  289. * extruder - target extruder
  290. */
  291. static void _buffer_steps(const int32_t (&target)[XYZE], float fr_mm_s, const uint8_t extruder);
  292. /**
  293. * Planner::_buffer_line
  294. *
  295. * Add a new linear movement to the buffer in axis units.
  296. *
  297. * Leveling and kinematics should be applied ahead of calling this.
  298. *
  299. * a,b,c,e - target positions in mm and/or degrees
  300. * fr_mm_s - (target) speed of the move
  301. * extruder - target extruder
  302. */
  303. static void _buffer_line(const float &a, const float &b, const float &c, const float &e, const float &fr_mm_s, const uint8_t extruder);
  304. static void _set_position_mm(const float &a, const float &b, const float &c, const float &e);
  305. /**
  306. * Add a new linear movement to the buffer.
  307. * The target is NOT translated to delta/scara
  308. *
  309. * Leveling will be applied to input on cartesians.
  310. * Kinematic machines should call buffer_line_kinematic (for leveled moves).
  311. * (Cartesians may also call buffer_line_kinematic.)
  312. *
  313. * rx,ry,rz,e - target position in mm or degrees
  314. * fr_mm_s - (target) speed of the move (mm/s)
  315. * extruder - target extruder
  316. */
  317. static FORCE_INLINE void buffer_line(ARG_X, ARG_Y, ARG_Z, const float &e, const float &fr_mm_s, const uint8_t extruder) {
  318. #if PLANNER_LEVELING && IS_CARTESIAN
  319. apply_leveling(rx, ry, rz);
  320. #endif
  321. _buffer_line(rx, ry, rz, e, fr_mm_s, extruder);
  322. }
  323. /**
  324. * Add a new linear movement to the buffer.
  325. * The target is cartesian, it's translated to delta/scara if
  326. * needed.
  327. *
  328. * cart - x,y,z,e CARTESIAN target in mm
  329. * fr_mm_s - (target) speed of the move (mm/s)
  330. * extruder - target extruder
  331. */
  332. static FORCE_INLINE void buffer_line_kinematic(const float cart[XYZE], const float &fr_mm_s, const uint8_t extruder) {
  333. #if PLANNER_LEVELING
  334. float raw[XYZ] = { cart[X_AXIS], cart[Y_AXIS], cart[Z_AXIS] };
  335. apply_leveling(raw);
  336. #else
  337. const float * const raw = cart;
  338. #endif
  339. #if IS_KINEMATIC
  340. inverse_kinematics(raw);
  341. _buffer_line(delta[A_AXIS], delta[B_AXIS], delta[C_AXIS], cart[E_AXIS], fr_mm_s, extruder);
  342. #else
  343. _buffer_line(raw[X_AXIS], raw[Y_AXIS], raw[Z_AXIS], cart[E_AXIS], fr_mm_s, extruder);
  344. #endif
  345. }
  346. /**
  347. * Set the planner.position and individual stepper positions.
  348. * Used by G92, G28, G29, and other procedures.
  349. *
  350. * Multiplies by axis_steps_per_mm[] and does necessary conversion
  351. * for COREXY / COREXZ / COREYZ to set the corresponding stepper positions.
  352. *
  353. * Clears previous speed values.
  354. */
  355. static FORCE_INLINE void set_position_mm(ARG_X, ARG_Y, ARG_Z, const float &e) {
  356. #if PLANNER_LEVELING && IS_CARTESIAN
  357. apply_leveling(rx, ry, rz);
  358. #endif
  359. _set_position_mm(rx, ry, rz, e);
  360. }
  361. static void set_position_mm_kinematic(const float position[NUM_AXIS]);
  362. static void set_position_mm(const AxisEnum axis, const float &v);
  363. static FORCE_INLINE void set_z_position_mm(const float &z) { set_position_mm(Z_AXIS, z); }
  364. static FORCE_INLINE void set_e_position_mm(const float &e) { set_position_mm(AxisEnum(E_AXIS), e); }
  365. /**
  366. * Sync from the stepper positions. (e.g., after an interrupted move)
  367. */
  368. static void sync_from_steppers();
  369. /**
  370. * Does the buffer have any blocks queued?
  371. */
  372. static bool blocks_queued() { return (block_buffer_head != block_buffer_tail); }
  373. /**
  374. * "Discards" the block and "releases" the memory.
  375. * Called when the current block is no longer needed.
  376. */
  377. static void discard_current_block() {
  378. if (blocks_queued())
  379. block_buffer_tail = BLOCK_MOD(block_buffer_tail + 1);
  380. }
  381. /**
  382. * The current block. NULL if the buffer is empty.
  383. * This also marks the block as busy.
  384. * WARNING: Called from Stepper ISR context!
  385. */
  386. static block_t* get_current_block() {
  387. if (blocks_queued()) {
  388. block_t* block = &block_buffer[block_buffer_tail];
  389. #if ENABLED(ULTRA_LCD)
  390. 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.
  391. #endif
  392. SBI(block->flag, BLOCK_BIT_BUSY);
  393. return block;
  394. }
  395. else {
  396. #if ENABLED(ULTRA_LCD)
  397. clear_block_buffer_runtime(); // paranoia. Buffer is empty now - so reset accumulated time to zero.
  398. #endif
  399. return NULL;
  400. }
  401. }
  402. #if ENABLED(ULTRA_LCD)
  403. static uint16_t block_buffer_runtime() {
  404. CRITICAL_SECTION_START
  405. millis_t bbru = block_buffer_runtime_us;
  406. CRITICAL_SECTION_END
  407. // To translate µs to ms a division by 1000 would be required.
  408. // We introduce 2.4% error here by dividing by 1024.
  409. // Doesn't matter because block_buffer_runtime_us is already too small an estimation.
  410. bbru >>= 10;
  411. // limit to about a minute.
  412. NOMORE(bbru, 0xFFFFul);
  413. return bbru;
  414. }
  415. static void clear_block_buffer_runtime(){
  416. CRITICAL_SECTION_START
  417. block_buffer_runtime_us = 0;
  418. CRITICAL_SECTION_END
  419. }
  420. #endif
  421. #if ENABLED(AUTOTEMP)
  422. static float autotemp_min, autotemp_max, autotemp_factor;
  423. static bool autotemp_enabled;
  424. static void getHighESpeed();
  425. static void autotemp_M104_M109();
  426. #endif
  427. private:
  428. /**
  429. * Get the index of the next / previous block in the ring buffer
  430. */
  431. static int8_t next_block_index(const int8_t block_index) { return BLOCK_MOD(block_index + 1); }
  432. static int8_t prev_block_index(const int8_t block_index) { return BLOCK_MOD(block_index - 1); }
  433. /**
  434. * Calculate the distance (not time) it takes to accelerate
  435. * from initial_rate to target_rate using the given acceleration:
  436. */
  437. static float estimate_acceleration_distance(const float &initial_rate, const float &target_rate, const float &accel) {
  438. if (accel == 0) return 0; // accel was 0, set acceleration distance to 0
  439. return (sq(target_rate) - sq(initial_rate)) / (accel * 2);
  440. }
  441. /**
  442. * Return the point at which you must start braking (at the rate of -'accel') if
  443. * you start at 'initial_rate', accelerate (until reaching the point), and want to end at
  444. * 'final_rate' after traveling 'distance'.
  445. *
  446. * This is used to compute the intersection point between acceleration and deceleration
  447. * in cases where the "trapezoid" has no plateau (i.e., never reaches maximum speed)
  448. */
  449. static float intersection_distance(const float &initial_rate, const float &final_rate, const float &accel, const float &distance) {
  450. if (accel == 0) return 0; // accel was 0, set intersection distance to 0
  451. return (accel * 2 * distance - sq(initial_rate) + sq(final_rate)) / (accel * 4);
  452. }
  453. /**
  454. * Calculate the maximum allowable speed at this point, in order
  455. * to reach 'target_velocity' using 'acceleration' within a given
  456. * 'distance'.
  457. */
  458. static float max_allowable_speed(const float &accel, const float &target_velocity, const float &distance) {
  459. return SQRT(sq(target_velocity) - 2 * accel * distance);
  460. }
  461. static void calculate_trapezoid_for_block(block_t* const block, const float &entry_factor, const float &exit_factor);
  462. static void reverse_pass_kernel(block_t* const current, const block_t *next);
  463. static void forward_pass_kernel(const block_t *previous, block_t* const current);
  464. static void reverse_pass();
  465. static void forward_pass();
  466. static void recalculate_trapezoids();
  467. static void recalculate();
  468. };
  469. #define PLANNER_XY_FEEDRATE() (min(planner.max_feedrate_mm_s[X_AXIS], planner.max_feedrate_mm_s[Y_AXIS]))
  470. extern Planner planner;
  471. #endif // PLANNER_H