planner.h 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. /*
  2. planner.h - buffers movement commands and manages the acceleration profile plan
  3. Part of Grbl
  4. Copyright (c) 2009-2011 Simen Svale Skogsrud
  5. Grbl is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation, either version 3 of the License, or
  8. (at your option) any later version.
  9. Grbl is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with Grbl. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. // This module is to be considered a sub-module of stepper.c. Please don't include
  17. // this file from any other module.
  18. #ifndef planner_h
  19. #define planner_h
  20. #include "Marlin.h"
  21. #ifdef ENABLE_AUTO_BED_LEVELING
  22. #include "vector_3.h"
  23. #endif // ENABLE_AUTO_BED_LEVELING
  24. enum BlockFlag {
  25. // Planner flag to recalculate trapezoids on entry junction.
  26. // This flag has an optimization purpose only.
  27. BLOCK_FLAG_RECALCULATE = 1,
  28. // Planner flag for nominal speed always reached. That means, the segment is long enough, that the nominal speed
  29. // may be reached if accelerating from a safe speed (in the regard of jerking from zero speed).
  30. BLOCK_FLAG_NOMINAL_LENGTH = 2,
  31. // If set, the machine will stop to a full halt at the end of this block,
  32. // respecting the maximum allowed jerk.
  33. BLOCK_FLAG_FULL_HALT_AT_END = 4,
  34. // If set, the machine will start from a halt at the start of this block,
  35. // respecting the maximum allowed jerk.
  36. BLOCK_FLAG_START_FROM_FULL_HALT = 8,
  37. };
  38. // This struct is used when buffering the setup for each linear movement "nominal" values are as specified in
  39. // the source g-code and may never actually be reached if acceleration management is active.
  40. typedef struct {
  41. // Fields used by the bresenham algorithm for tracing the line
  42. // steps_x.y,z, step_event_count, acceleration_rate, direction_bits and active_extruder are set by plan_buffer_line().
  43. long steps_x, steps_y, steps_z, steps_e; // Step count along each axis
  44. unsigned long step_event_count; // The number of step events required to complete this block
  45. long acceleration_rate; // The acceleration rate used for acceleration calculation
  46. unsigned char direction_bits; // The direction bit set for this block (refers to *_DIRECTION_BIT in config.h)
  47. unsigned char active_extruder; // Selects the active extruder
  48. // accelerate_until and decelerate_after are set by calculate_trapezoid_for_block() and they need to be synchronized with the stepper interrupt controller.
  49. long accelerate_until; // The index of the step event on which to stop acceleration
  50. long decelerate_after; // The index of the step event on which to start decelerating
  51. #ifdef ADVANCE
  52. long advance_rate;
  53. volatile long initial_advance;
  54. volatile long final_advance;
  55. float advance;
  56. #endif
  57. // Fields used by the motion planner to manage acceleration
  58. // float speed_x, speed_y, speed_z, speed_e; // Nominal mm/sec for each axis
  59. // The nominal speed for this block in mm/sec.
  60. // This speed may or may not be reached due to the jerk and acceleration limits.
  61. float nominal_speed;
  62. // Entry speed at previous-current junction in mm/sec, respecting the acceleration and jerk limits.
  63. // The entry speed limit of the current block equals the exit speed of the preceding block.
  64. float entry_speed;
  65. // Maximum allowable junction entry speed in mm/sec. This value is also a maximum exit speed of the previous block.
  66. float max_entry_speed;
  67. // The total travel of this block in mm
  68. float millimeters;
  69. // acceleration mm/sec^2
  70. float acceleration;
  71. // Bit flags defined by the BlockFlag enum.
  72. bool flag;
  73. // Settings for the trapezoid generator (runs inside an interrupt handler).
  74. // Changing the following values in the planner needs to be synchronized with the interrupt handler by disabling the interrupts.
  75. unsigned long nominal_rate; // The nominal step rate for this block in step_events/sec
  76. unsigned long initial_rate; // The jerk-adjusted step rate at start of block
  77. unsigned long final_rate; // The minimal rate at exit
  78. unsigned long acceleration_st; // acceleration steps/sec^2
  79. unsigned long fan_speed;
  80. volatile char busy;
  81. } block_t;
  82. #ifdef ENABLE_AUTO_BED_LEVELING
  83. // this holds the required transform to compensate for bed level
  84. extern matrix_3x3 plan_bed_level_matrix;
  85. #endif // #ifdef ENABLE_AUTO_BED_LEVELING
  86. // Initialize the motion plan subsystem
  87. void plan_init();
  88. // Add a new linear movement to the buffer. x, y and z is the signed, absolute target position in
  89. // millimaters. Feed rate specifies the speed of the motion.
  90. #ifdef ENABLE_AUTO_BED_LEVELING
  91. void plan_buffer_line(float x, float y, float z, const float &e, float feed_rate, const uint8_t &extruder);
  92. // Get the position applying the bed level matrix if enabled
  93. vector_3 plan_get_position();
  94. #else
  95. void plan_buffer_line(float x, float y, float z, const float &e, float feed_rate, const uint8_t &extruder);
  96. //void plan_buffer_line(const float &x, const float &y, const float &z, const float &e, float feed_rate, const uint8_t &extruder);
  97. #endif // ENABLE_AUTO_BED_LEVELING
  98. // Set position. Used for G92 instructions.
  99. //#ifdef ENABLE_AUTO_BED_LEVELING
  100. void plan_set_position(float x, float y, float z, const float &e);
  101. //#else
  102. //void plan_set_position(const float &x, const float &y, const float &z, const float &e);
  103. //#endif // ENABLE_AUTO_BED_LEVELING
  104. void plan_set_z_position(const float &z);
  105. void plan_set_e_position(const float &e);
  106. void check_axes_activity();
  107. extern unsigned long minsegmenttime;
  108. extern float max_feedrate[NUM_AXIS]; // set the max speeds
  109. extern float axis_steps_per_unit[NUM_AXIS];
  110. extern unsigned long max_acceleration_units_per_sq_second[NUM_AXIS]; // Use M201 to override by software
  111. extern float minimumfeedrate;
  112. extern float acceleration; // Normal acceleration mm/s^2 THIS IS THE DEFAULT ACCELERATION for all moves. M204 SXXXX
  113. extern float retract_acceleration; // mm/s^2 filament pull-pack and push-forward while standing still in the other axis M204 TXXXX
  114. extern float max_xy_jerk; //speed than can be stopped at once, if i understand correctly.
  115. extern float max_z_jerk;
  116. extern float max_e_jerk;
  117. extern float mintravelfeedrate;
  118. extern unsigned long axis_steps_per_sqr_second[NUM_AXIS];
  119. #ifdef AUTOTEMP
  120. extern bool autotemp_enabled;
  121. extern float autotemp_max;
  122. extern float autotemp_min;
  123. extern float autotemp_factor;
  124. #endif
  125. extern block_t block_buffer[BLOCK_BUFFER_SIZE]; // A ring buffer for motion instfructions
  126. extern volatile unsigned char block_buffer_head; // Index of the next block to be pushed
  127. extern volatile unsigned char block_buffer_tail;
  128. // Called when the current block is no longer needed. Discards the block and makes the memory
  129. // available for new blocks.
  130. FORCE_INLINE void plan_discard_current_block()
  131. {
  132. if (block_buffer_head != block_buffer_tail) {
  133. block_buffer_tail = (block_buffer_tail + 1) & (BLOCK_BUFFER_SIZE - 1);
  134. }
  135. }
  136. // Gets the current block. Returns NULL if buffer empty
  137. FORCE_INLINE block_t *plan_get_current_block()
  138. {
  139. if (block_buffer_head == block_buffer_tail) {
  140. return(NULL);
  141. }
  142. block_t *block = &block_buffer[block_buffer_tail];
  143. block->busy = true;
  144. return(block);
  145. }
  146. // Returns true if the buffer has a queued block, false otherwise
  147. FORCE_INLINE bool blocks_queued() { return (block_buffer_head != block_buffer_tail); }
  148. //return the nr of buffered moves
  149. FORCE_INLINE uint8_t moves_planned() {
  150. return (block_buffer_head + BLOCK_BUFFER_SIZE - block_buffer_tail) & (BLOCK_BUFFER_SIZE - 1);
  151. }
  152. #ifdef PREVENT_DANGEROUS_EXTRUDE
  153. void set_extrude_min_temp(float temp);
  154. #endif
  155. void reset_acceleration_rates();
  156. #endif