My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  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. // This struct is used when buffering the setup for each linear movement "nominal" values are as specified in
  22. // the source g-code and may never actually be reached if acceleration management is active.
  23. typedef struct {
  24. // Fields used by the bresenham algorithm for tracing the line
  25. long steps[NUM_AXIS]; // Step count along each axis
  26. unsigned long step_event_count; // The number of step events required to complete this block
  27. long accelerate_until; // The index of the step event on which to stop acceleration
  28. long decelerate_after; // The index of the step event on which to start decelerating
  29. long acceleration_rate; // The acceleration rate used for acceleration calculation
  30. unsigned char direction_bits; // The direction bit set for this block (refers to *_DIRECTION_BIT in config.h)
  31. unsigned char active_extruder; // Selects the active extruder
  32. #if ENABLED(ADVANCE)
  33. long advance_rate;
  34. volatile long initial_advance;
  35. volatile long final_advance;
  36. float advance;
  37. #endif
  38. // Fields used by the motion planner to manage acceleration
  39. // float speed_x, speed_y, speed_z, speed_e; // Nominal mm/sec for each axis
  40. float nominal_speed; // The nominal speed for this block in mm/sec
  41. float entry_speed; // Entry speed at previous-current junction in mm/sec
  42. float max_entry_speed; // Maximum allowable junction entry speed in mm/sec
  43. float millimeters; // The total travel of this block in mm
  44. float acceleration; // acceleration mm/sec^2
  45. unsigned char recalculate_flag; // Planner flag to recalculate trapezoids on entry junction
  46. unsigned char nominal_length_flag; // Planner flag for nominal speed always reached
  47. // Settings for the trapezoid generator
  48. unsigned long nominal_rate; // The nominal step rate for this block in step_events/sec
  49. unsigned long initial_rate; // The jerk-adjusted step rate at start of block
  50. unsigned long final_rate; // The minimal rate at exit
  51. unsigned long acceleration_st; // acceleration steps/sec^2
  52. unsigned long fan_speed;
  53. #if ENABLED(BARICUDA)
  54. unsigned long valve_pressure;
  55. unsigned long e_to_p_pressure;
  56. #endif
  57. volatile char busy;
  58. } block_t;
  59. #define BLOCK_MOD(n) ((n)&(BLOCK_BUFFER_SIZE-1))
  60. // Initialize the motion plan subsystem
  61. void plan_init();
  62. void check_axes_activity();
  63. // Get the number of buffered moves
  64. extern volatile unsigned char block_buffer_head;
  65. extern volatile unsigned char block_buffer_tail;
  66. FORCE_INLINE uint8_t movesplanned() { return BLOCK_MOD(block_buffer_head - block_buffer_tail + BLOCK_BUFFER_SIZE); }
  67. #if ENABLED(AUTO_BED_LEVELING_FEATURE) || ENABLED(MESH_BED_LEVELING)
  68. #if ENABLED(AUTO_BED_LEVELING_FEATURE)
  69. #include "vector_3.h"
  70. // Transform required to compensate for bed level
  71. extern matrix_3x3 plan_bed_level_matrix;
  72. /**
  73. * Get the position applying the bed level matrix
  74. */
  75. vector_3 plan_get_position();
  76. #endif // AUTO_BED_LEVELING_FEATURE
  77. /**
  78. * Add a new linear movement to the buffer. x, y, z are the signed, absolute target position in
  79. * millimeters. Feed rate specifies the (target) speed of the motion.
  80. */
  81. void plan_buffer_line(float x, float y, float z, const float& e, float feed_rate, const uint8_t extruder);
  82. /**
  83. * Set the planner positions. Used for G92 instructions.
  84. * Multiplies by axis_steps_per_unit[] to set stepper positions.
  85. * Clears previous speed values.
  86. */
  87. void plan_set_position(float x, float y, float z, const float& e);
  88. #else
  89. void plan_buffer_line(const float& x, const float& y, const float& z, const float& e, float feed_rate, const uint8_t extruder);
  90. void plan_set_position(const float& x, const float& y, const float& z, const float& e);
  91. #endif // AUTO_BED_LEVELING_FEATURE || MESH_BED_LEVELING
  92. void plan_set_e_position(const float& e);
  93. //===========================================================================
  94. //============================= public variables ============================
  95. //===========================================================================
  96. extern millis_t minsegmenttime;
  97. extern float max_feedrate[NUM_AXIS]; // Max speeds in mm per minute
  98. extern float axis_steps_per_unit[NUM_AXIS];
  99. extern unsigned long max_acceleration_units_per_sq_second[NUM_AXIS]; // Use M201 to override by software
  100. extern float minimumfeedrate;
  101. extern float acceleration; // Normal acceleration mm/s^2 DEFAULT ACCELERATION for all printing moves. M204 SXXXX
  102. extern float retract_acceleration; // Retract acceleration mm/s^2 filament pull-back and push-forward while standing still in the other axes M204 TXXXX
  103. extern float travel_acceleration; // Travel acceleration mm/s^2 DEFAULT ACCELERATION for all NON printing moves. M204 MXXXX
  104. extern float max_xy_jerk; // The largest speed change requiring no acceleration
  105. extern float max_z_jerk;
  106. extern float max_e_jerk;
  107. extern float mintravelfeedrate;
  108. extern unsigned long axis_steps_per_sqr_second[NUM_AXIS];
  109. #if ENABLED(AUTOTEMP)
  110. extern bool autotemp_enabled;
  111. extern float autotemp_max;
  112. extern float autotemp_min;
  113. extern float autotemp_factor;
  114. #endif
  115. extern block_t block_buffer[BLOCK_BUFFER_SIZE]; // A ring buffer for motion instructions
  116. extern volatile unsigned char block_buffer_head; // Index of the next block to be pushed
  117. extern volatile unsigned char block_buffer_tail;
  118. // Returns true if the buffer has a queued block, false otherwise
  119. FORCE_INLINE bool blocks_queued() { return (block_buffer_head != block_buffer_tail); }
  120. // Called when the current block is no longer needed. Discards
  121. // the block and makes the memory available for new blocks.
  122. FORCE_INLINE void plan_discard_current_block() {
  123. if (blocks_queued())
  124. block_buffer_tail = BLOCK_MOD(block_buffer_tail + 1);
  125. }
  126. // Gets the current block. Returns NULL if buffer empty
  127. FORCE_INLINE block_t* plan_get_current_block() {
  128. if (blocks_queued()) {
  129. block_t* block = &block_buffer[block_buffer_tail];
  130. block->busy = true;
  131. return block;
  132. }
  133. else
  134. return NULL;
  135. }
  136. void reset_acceleration_rates();
  137. #endif // PLANNER_H