My Marlin configs for Fabrikator Mini and CTC i3 Pro B
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

planner.cpp 34KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819
  1. /*
  2. planner.c - 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. /* The ring buffer implementation gleaned from the wiring_serial library by David A. Mellis. */
  17. /*
  18. Reasoning behind the mathematics in this module (in the key of 'Mathematica'):
  19. s == speed, a == acceleration, t == time, d == distance
  20. Basic definitions:
  21. Speed[s_, a_, t_] := s + (a*t)
  22. Travel[s_, a_, t_] := Integrate[Speed[s, a, t], t]
  23. Distance to reach a specific speed with a constant acceleration:
  24. Solve[{Speed[s, a, t] == m, Travel[s, a, t] == d}, d, t]
  25. d -> (m^2 - s^2)/(2 a) --> estimate_acceleration_distance()
  26. Speed after a given distance of travel with constant acceleration:
  27. Solve[{Speed[s, a, t] == m, Travel[s, a, t] == d}, m, t]
  28. m -> Sqrt[2 a d + s^2]
  29. DestinationSpeed[s_, a_, d_] := Sqrt[2 a d + s^2]
  30. When to start braking (di) to reach a specified destionation speed (s2) after accelerating
  31. from initial speed s1 without ever stopping at a plateau:
  32. Solve[{DestinationSpeed[s1, a, di] == DestinationSpeed[s2, a, d - di]}, di]
  33. di -> (2 a d - s1^2 + s2^2)/(4 a) --> intersection_distance()
  34. IntersectionDistance[s1_, s2_, a_, d_] := (2 a d - s1^2 + s2^2)/(4 a)
  35. */
  36. #include "Marlin.h"
  37. #include "planner.h"
  38. #include "stepper.h"
  39. #include "temperature.h"
  40. #include "ultralcd.h"
  41. #include "language.h"
  42. //===========================================================================
  43. //=============================public variables ============================
  44. //===========================================================================
  45. unsigned long minsegmenttime;
  46. float max_feedrate[4]; // set the max speeds
  47. float axis_steps_per_unit[4];
  48. unsigned long max_acceleration_units_per_sq_second[4]; // Use M201 to override by software
  49. float minimumfeedrate;
  50. float acceleration; // Normal acceleration mm/s^2 THIS IS THE DEFAULT ACCELERATION for all moves. M204 SXXXX
  51. float retract_acceleration; // mm/s^2 filament pull-pack and push-forward while standing still in the other axis M204 TXXXX
  52. float max_xy_jerk; //speed than can be stopped at once, if i understand correctly.
  53. float max_z_jerk;
  54. float mintravelfeedrate;
  55. unsigned long axis_steps_per_sqr_second[NUM_AXIS];
  56. // The current position of the tool in absolute steps
  57. long position[4]; //rescaled from extern when axis_steps_per_unit are changed by gcode
  58. static float previous_speed[4]; // Speed of previous path line segment
  59. static float previous_nominal_speed; // Nominal speed of previous path line segment
  60. extern volatile int extrudemultiply; // Sets extrude multiply factor (in percent)
  61. #ifdef AUTOTEMP
  62. float autotemp_max=250;
  63. float autotemp_min=210;
  64. float autotemp_factor=0.1;
  65. bool autotemp_enabled=false;
  66. #endif
  67. //===========================================================================
  68. //=================semi-private variables, used in inline functions =====
  69. //===========================================================================
  70. block_t block_buffer[BLOCK_BUFFER_SIZE]; // A ring buffer for motion instfructions
  71. volatile unsigned char block_buffer_head; // Index of the next block to be pushed
  72. volatile unsigned char block_buffer_tail; // Index of the block to process now
  73. //===========================================================================
  74. //=============================private variables ============================
  75. //===========================================================================
  76. #ifdef PREVENT_DANGEROUS_EXTRUDE
  77. bool allow_cold_extrude=false;
  78. #endif
  79. #ifdef XY_FREQUENCY_LIMIT
  80. // Used for the frequency limit
  81. static unsigned char old_direction_bits = 0; // Old direction bits. Used for speed calculations
  82. static long x_segment_time[3]={0,0,0}; // Segment times (in us). Used for speed calculations
  83. static long y_segment_time[3]={0,0,0};
  84. #endif
  85. // Returns the index of the next block in the ring buffer
  86. // NOTE: Removed modulo (%) operator, which uses an expensive divide and multiplication.
  87. static int8_t next_block_index(int8_t block_index) {
  88. block_index++;
  89. if (block_index == BLOCK_BUFFER_SIZE) { block_index = 0; }
  90. return(block_index);
  91. }
  92. // Returns the index of the previous block in the ring buffer
  93. static int8_t prev_block_index(int8_t block_index) {
  94. if (block_index == 0) { block_index = BLOCK_BUFFER_SIZE; }
  95. block_index--;
  96. return(block_index);
  97. }
  98. //===========================================================================
  99. //=============================functions ============================
  100. //===========================================================================
  101. // Calculates the distance (not time) it takes to accelerate from initial_rate to target_rate using the
  102. // given acceleration:
  103. FORCE_INLINE float estimate_acceleration_distance(float initial_rate, float target_rate, float acceleration)
  104. {
  105. if (acceleration!=0) {
  106. return((target_rate*target_rate-initial_rate*initial_rate)/
  107. (2.0*acceleration));
  108. }
  109. else {
  110. return 0.0; // acceleration was 0, set acceleration distance to 0
  111. }
  112. }
  113. // This function gives you the point at which you must start braking (at the rate of -acceleration) if
  114. // you started at speed initial_rate and accelerated until this point and want to end at the final_rate after
  115. // a total travel of distance. This can be used to compute the intersection point between acceleration and
  116. // deceleration in the cases where the trapezoid has no plateau (i.e. never reaches maximum speed)
  117. FORCE_INLINE float intersection_distance(float initial_rate, float final_rate, float acceleration, float distance)
  118. {
  119. if (acceleration!=0) {
  120. return((2.0*acceleration*distance-initial_rate*initial_rate+final_rate*final_rate)/
  121. (4.0*acceleration) );
  122. }
  123. else {
  124. return 0.0; // acceleration was 0, set intersection distance to 0
  125. }
  126. }
  127. // Calculates trapezoid parameters so that the entry- and exit-speed is compensated by the provided factors.
  128. void calculate_trapezoid_for_block(block_t *block, float entry_factor, float exit_factor) {
  129. unsigned long initial_rate = ceil(block->nominal_rate*entry_factor); // (step/min)
  130. unsigned long final_rate = ceil(block->nominal_rate*exit_factor); // (step/min)
  131. // Limit minimal step rate (Otherwise the timer will overflow.)
  132. if(initial_rate <120) {initial_rate=120; }
  133. if(final_rate < 120) {final_rate=120; }
  134. long acceleration = block->acceleration_st;
  135. int32_t accelerate_steps =
  136. ceil(estimate_acceleration_distance(block->initial_rate, block->nominal_rate, acceleration));
  137. int32_t decelerate_steps =
  138. floor(estimate_acceleration_distance(block->nominal_rate, block->final_rate, -acceleration));
  139. // Calculate the size of Plateau of Nominal Rate.
  140. int32_t plateau_steps = block->step_event_count-accelerate_steps-decelerate_steps;
  141. // Is the Plateau of Nominal Rate smaller than nothing? That means no cruising, and we will
  142. // have to use intersection_distance() to calculate when to abort acceleration and start braking
  143. // in order to reach the final_rate exactly at the end of this block.
  144. if (plateau_steps < 0) {
  145. accelerate_steps = ceil(
  146. intersection_distance(block->initial_rate, block->final_rate, acceleration, block->step_event_count));
  147. accelerate_steps = max(accelerate_steps,0); // Check limits due to numerical round-off
  148. accelerate_steps = min(accelerate_steps,block->step_event_count);
  149. plateau_steps = 0;
  150. }
  151. #ifdef ADVANCE
  152. volatile long initial_advance = block->advance*entry_factor*entry_factor;
  153. volatile long final_advance = block->advance*exit_factor*exit_factor;
  154. #endif // ADVANCE
  155. // block->accelerate_until = accelerate_steps;
  156. // block->decelerate_after = accelerate_steps+plateau_steps;
  157. CRITICAL_SECTION_START; // Fill variables used by the stepper in a critical section
  158. if(block->busy == false) { // Don't update variables if block is busy.
  159. block->accelerate_until = accelerate_steps;
  160. block->decelerate_after = accelerate_steps+plateau_steps;
  161. block->initial_rate = initial_rate;
  162. block->final_rate = final_rate;
  163. #ifdef ADVANCE
  164. block->initial_advance = initial_advance;
  165. block->final_advance = final_advance;
  166. #endif //ADVANCE
  167. }
  168. CRITICAL_SECTION_END;
  169. }
  170. // Calculates the maximum allowable speed at this point when you must be able to reach target_velocity using the
  171. // acceleration within the allotted distance.
  172. FORCE_INLINE float max_allowable_speed(float acceleration, float target_velocity, float distance) {
  173. return sqrt(target_velocity*target_velocity-2*acceleration*distance);
  174. }
  175. // "Junction jerk" in this context is the immediate change in speed at the junction of two blocks.
  176. // This method will calculate the junction jerk as the euclidean distance between the nominal
  177. // velocities of the respective blocks.
  178. //inline float junction_jerk(block_t *before, block_t *after) {
  179. // return sqrt(
  180. // pow((before->speed_x-after->speed_x), 2)+pow((before->speed_y-after->speed_y), 2));
  181. //}
  182. // The kernel called by planner_recalculate() when scanning the plan from last to first entry.
  183. void planner_reverse_pass_kernel(block_t *previous, block_t *current, block_t *next) {
  184. if(!current) { return; }
  185. if (next) {
  186. // If entry speed is already at the maximum entry speed, no need to recheck. Block is cruising.
  187. // If not, block in state of acceleration or deceleration. Reset entry speed to maximum and
  188. // check for maximum allowable speed reductions to ensure maximum possible planned speed.
  189. if (current->entry_speed != current->max_entry_speed) {
  190. // If nominal length true, max junction speed is guaranteed to be reached. Only compute
  191. // for max allowable speed if block is decelerating and nominal length is false.
  192. if ((!current->nominal_length_flag) && (current->max_entry_speed > next->entry_speed)) {
  193. current->entry_speed = min( current->max_entry_speed,
  194. max_allowable_speed(-current->acceleration,next->entry_speed,current->millimeters));
  195. } else {
  196. current->entry_speed = current->max_entry_speed;
  197. }
  198. current->recalculate_flag = true;
  199. }
  200. } // Skip last block. Already initialized and set for recalculation.
  201. }
  202. // planner_recalculate() needs to go over the current plan twice. Once in reverse and once forward. This
  203. // implements the reverse pass.
  204. void planner_reverse_pass() {
  205. uint8_t block_index = block_buffer_head;
  206. if(((block_buffer_head-block_buffer_tail + BLOCK_BUFFER_SIZE) & (BLOCK_BUFFER_SIZE - 1)) > 3) {
  207. block_index = (block_buffer_head - 3) & (BLOCK_BUFFER_SIZE - 1);
  208. block_t *block[3] = { NULL, NULL, NULL };
  209. while(block_index != block_buffer_tail) {
  210. block_index = prev_block_index(block_index);
  211. block[2]= block[1];
  212. block[1]= block[0];
  213. block[0] = &block_buffer[block_index];
  214. planner_reverse_pass_kernel(block[0], block[1], block[2]);
  215. }
  216. }
  217. }
  218. // The kernel called by planner_recalculate() when scanning the plan from first to last entry.
  219. void planner_forward_pass_kernel(block_t *previous, block_t *current, block_t *next) {
  220. if(!previous) { return; }
  221. // If the previous block is an acceleration block, but it is not long enough to complete the
  222. // full speed change within the block, we need to adjust the entry speed accordingly. Entry
  223. // speeds have already been reset, maximized, and reverse planned by reverse planner.
  224. // If nominal length is true, max junction speed is guaranteed to be reached. No need to recheck.
  225. if (!previous->nominal_length_flag) {
  226. if (previous->entry_speed < current->entry_speed) {
  227. double entry_speed = min( current->entry_speed,
  228. max_allowable_speed(-previous->acceleration,previous->entry_speed,previous->millimeters) );
  229. // Check for junction speed change
  230. if (current->entry_speed != entry_speed) {
  231. current->entry_speed = entry_speed;
  232. current->recalculate_flag = true;
  233. }
  234. }
  235. }
  236. }
  237. // planner_recalculate() needs to go over the current plan twice. Once in reverse and once forward. This
  238. // implements the forward pass.
  239. void planner_forward_pass() {
  240. uint8_t block_index = block_buffer_tail;
  241. block_t *block[3] = { NULL, NULL, NULL };
  242. while(block_index != block_buffer_head) {
  243. block[0] = block[1];
  244. block[1] = block[2];
  245. block[2] = &block_buffer[block_index];
  246. planner_forward_pass_kernel(block[0],block[1],block[2]);
  247. block_index = next_block_index(block_index);
  248. }
  249. planner_forward_pass_kernel(block[1], block[2], NULL);
  250. }
  251. // Recalculates the trapezoid speed profiles for all blocks in the plan according to the
  252. // entry_factor for each junction. Must be called by planner_recalculate() after
  253. // updating the blocks.
  254. void planner_recalculate_trapezoids() {
  255. int8_t block_index = block_buffer_tail;
  256. block_t *current;
  257. block_t *next = NULL;
  258. while(block_index != block_buffer_head) {
  259. current = next;
  260. next = &block_buffer[block_index];
  261. if (current) {
  262. // Recalculate if current block entry or exit junction speed has changed.
  263. if (current->recalculate_flag || next->recalculate_flag) {
  264. // NOTE: Entry and exit factors always > 0 by all previous logic operations.
  265. calculate_trapezoid_for_block(current, current->entry_speed/current->nominal_speed,
  266. next->entry_speed/current->nominal_speed);
  267. current->recalculate_flag = false; // Reset current only to ensure next trapezoid is computed
  268. }
  269. }
  270. block_index = next_block_index( block_index );
  271. }
  272. // Last/newest block in buffer. Exit speed is set with MINIMUM_PLANNER_SPEED. Always recalculated.
  273. if(next != NULL) {
  274. calculate_trapezoid_for_block(next, next->entry_speed/next->nominal_speed,
  275. MINIMUM_PLANNER_SPEED/next->nominal_speed);
  276. next->recalculate_flag = false;
  277. }
  278. }
  279. // Recalculates the motion plan according to the following algorithm:
  280. //
  281. // 1. Go over every block in reverse order and calculate a junction speed reduction (i.e. block_t.entry_factor)
  282. // so that:
  283. // a. The junction jerk is within the set limit
  284. // b. No speed reduction within one block requires faster deceleration than the one, true constant
  285. // acceleration.
  286. // 2. Go over every block in chronological order and dial down junction speed reduction values if
  287. // a. The speed increase within one block would require faster accelleration than the one, true
  288. // constant acceleration.
  289. //
  290. // When these stages are complete all blocks have an entry_factor that will allow all speed changes to
  291. // be performed using only the one, true constant acceleration, and where no junction jerk is jerkier than
  292. // the set limit. Finally it will:
  293. //
  294. // 3. Recalculate trapezoids for all blocks.
  295. void planner_recalculate() {
  296. planner_reverse_pass();
  297. planner_forward_pass();
  298. planner_recalculate_trapezoids();
  299. }
  300. void plan_init() {
  301. block_buffer_head = 0;
  302. block_buffer_tail = 0;
  303. memset(position, 0, sizeof(position)); // clear position
  304. previous_speed[0] = 0.0;
  305. previous_speed[1] = 0.0;
  306. previous_speed[2] = 0.0;
  307. previous_speed[3] = 0.0;
  308. previous_nominal_speed = 0.0;
  309. }
  310. #ifdef AUTOTEMP
  311. void getHighESpeed()
  312. {
  313. static float oldt=0;
  314. if(!autotemp_enabled)
  315. return;
  316. if(degTargetHotend0()+2<autotemp_min) //probably temperature set to zero.
  317. return; //do nothing
  318. float high=0;
  319. uint8_t block_index = block_buffer_tail;
  320. while(block_index != block_buffer_head) {
  321. float se=block_buffer[block_index].steps_e/float(block_buffer[block_index].step_event_count)*block_buffer[block_index].nominal_rate;
  322. //se; units steps/sec;
  323. if(se>high)
  324. {
  325. high=se;
  326. }
  327. block_index = (block_index+1) & (BLOCK_BUFFER_SIZE - 1);
  328. }
  329. float g=autotemp_min+high*autotemp_factor;
  330. float t=g;
  331. if(t<autotemp_min)
  332. t=autotemp_min;
  333. if(t>autotemp_max)
  334. t=autotemp_max;
  335. if(oldt>t)
  336. {
  337. t=AUTOTEMP_OLDWEIGHT*oldt+(1-AUTOTEMP_OLDWEIGHT)*t;
  338. }
  339. oldt=t;
  340. setTargetHotend0(t);
  341. // SERIAL_ECHO_START;
  342. // SERIAL_ECHOPAIR("highe",high);
  343. // SERIAL_ECHOPAIR(" t",t);
  344. // SERIAL_ECHOLN("");
  345. }
  346. #endif
  347. void check_axes_activity() {
  348. unsigned char x_active = 0;
  349. unsigned char y_active = 0;
  350. unsigned char z_active = 0;
  351. unsigned char e_active = 0;
  352. unsigned char fan_speed = 0;
  353. unsigned char tail_fan_speed = 0;
  354. block_t *block;
  355. if(block_buffer_tail != block_buffer_head) {
  356. uint8_t block_index = block_buffer_tail;
  357. tail_fan_speed = block_buffer[block_index].fan_speed;
  358. while(block_index != block_buffer_head) {
  359. block = &block_buffer[block_index];
  360. if(block->steps_x != 0) x_active++;
  361. if(block->steps_y != 0) y_active++;
  362. if(block->steps_z != 0) z_active++;
  363. if(block->steps_e != 0) e_active++;
  364. if(block->fan_speed != 0) fan_speed++;
  365. block_index = (block_index+1) & (BLOCK_BUFFER_SIZE - 1);
  366. }
  367. }
  368. else {
  369. if (FanSpeed != 0) analogWrite(FAN_PIN,FanSpeed); // If buffer is empty use current fan speed
  370. }
  371. if((DISABLE_X) && (x_active == 0)) disable_x();
  372. if((DISABLE_Y) && (y_active == 0)) disable_y();
  373. if((DISABLE_Z) && (z_active == 0)) disable_z();
  374. if((DISABLE_E) && (e_active == 0)) { disable_e0();disable_e1();disable_e2(); }
  375. if((FanSpeed == 0) && (fan_speed ==0)) analogWrite(FAN_PIN, 0);
  376. if (FanSpeed != 0 && tail_fan_speed !=0) {
  377. analogWrite(FAN_PIN,tail_fan_speed);
  378. }
  379. }
  380. float junction_deviation = 0.1;
  381. // Add a new linear movement to the buffer. steps_x, _y and _z is the absolute position in
  382. // mm. Microseconds specify how many microseconds the move should take to perform. To aid acceleration
  383. // calculation the caller must also provide the physical length of the line in millimeters.
  384. void plan_buffer_line(const float &x, const float &y, const float &z, const float &e, float feed_rate, const uint8_t &extruder)
  385. {
  386. // Calculate the buffer head after we push this byte
  387. int next_buffer_head = next_block_index(block_buffer_head);
  388. // If the buffer is full: good! That means we are well ahead of the robot.
  389. // Rest here until there is room in the buffer.
  390. while(block_buffer_tail == next_buffer_head) {
  391. manage_heater();
  392. manage_inactivity(1);
  393. LCD_STATUS;
  394. }
  395. // The target position of the tool in absolute steps
  396. // Calculate target position in absolute steps
  397. //this should be done after the wait, because otherwise a M92 code within the gcode disrupts this calculation somehow
  398. long target[4];
  399. target[X_AXIS] = lround(x*axis_steps_per_unit[X_AXIS]);
  400. target[Y_AXIS] = lround(y*axis_steps_per_unit[Y_AXIS]);
  401. target[Z_AXIS] = lround(z*axis_steps_per_unit[Z_AXIS]);
  402. target[E_AXIS] = lround(e*axis_steps_per_unit[E_AXIS]);
  403. #ifdef PREVENT_DANGEROUS_EXTRUDE
  404. if(target[E_AXIS]!=position[E_AXIS])
  405. if(degHotend(active_extruder)<EXTRUDE_MINTEMP && !allow_cold_extrude)
  406. {
  407. position[E_AXIS]=target[E_AXIS]; //behave as if the move really took place, but ignore E part
  408. SERIAL_ECHO_START;
  409. SERIAL_ECHOLNPGM(MSG_ERR_COLD_EXTRUDE_STOP);
  410. }
  411. if(labs(target[E_AXIS]-position[E_AXIS])>axis_steps_per_unit[E_AXIS]*EXTRUDE_MAXLENGTH)
  412. {
  413. position[E_AXIS]=target[E_AXIS]; //behave as if the move really took place, but ignore E part
  414. SERIAL_ECHO_START;
  415. SERIAL_ECHOLNPGM(MSG_ERR_LONG_EXTRUDE_STOP);
  416. }
  417. #endif
  418. // Prepare to set up new block
  419. block_t *block = &block_buffer[block_buffer_head];
  420. // Mark block as not busy (Not executed by the stepper interrupt)
  421. block->busy = false;
  422. // Number of steps for each axis
  423. block->steps_x = labs(target[X_AXIS]-position[X_AXIS]);
  424. block->steps_y = labs(target[Y_AXIS]-position[Y_AXIS]);
  425. block->steps_z = labs(target[Z_AXIS]-position[Z_AXIS]);
  426. block->steps_e = labs(target[E_AXIS]-position[E_AXIS]);
  427. block->steps_e *= extrudemultiply;
  428. block->steps_e /= 100;
  429. block->step_event_count = max(block->steps_x, max(block->steps_y, max(block->steps_z, block->steps_e)));
  430. // Bail if this is a zero-length block
  431. if (block->step_event_count <=dropsegments) { return; };
  432. block->fan_speed = FanSpeed;
  433. // Compute direction bits for this block
  434. block->direction_bits = 0;
  435. if (target[X_AXIS] < position[X_AXIS]) { block->direction_bits |= (1<<X_AXIS); }
  436. if (target[Y_AXIS] < position[Y_AXIS]) { block->direction_bits |= (1<<Y_AXIS); }
  437. if (target[Z_AXIS] < position[Z_AXIS]) { block->direction_bits |= (1<<Z_AXIS); }
  438. if (target[E_AXIS] < position[E_AXIS]) { block->direction_bits |= (1<<E_AXIS); }
  439. block->active_extruder = extruder;
  440. //enable active axes
  441. if(block->steps_x != 0) enable_x();
  442. if(block->steps_y != 0) enable_y();
  443. #ifndef Z_LATE_ENABLE
  444. if(block->steps_z != 0) enable_z();
  445. #endif
  446. // Enable all
  447. if(block->steps_e != 0) { enable_e0();enable_e1();enable_e2(); }
  448. // slow down when de buffer starts to empty, rather than wait at the corner for a buffer refill
  449. int moves_queued=(block_buffer_head-block_buffer_tail + BLOCK_BUFFER_SIZE) & (BLOCK_BUFFER_SIZE - 1);
  450. #ifdef SLOWDOWN
  451. if(moves_queued < (BLOCK_BUFFER_SIZE * 0.5) && moves_queued > 1) feed_rate = feed_rate*moves_queued / (BLOCK_BUFFER_SIZE * 0.5);
  452. #endif
  453. float delta_mm[4];
  454. delta_mm[X_AXIS] = (target[X_AXIS]-position[X_AXIS])/axis_steps_per_unit[X_AXIS];
  455. delta_mm[Y_AXIS] = (target[Y_AXIS]-position[Y_AXIS])/axis_steps_per_unit[Y_AXIS];
  456. delta_mm[Z_AXIS] = (target[Z_AXIS]-position[Z_AXIS])/axis_steps_per_unit[Z_AXIS];
  457. delta_mm[E_AXIS] = ((target[E_AXIS]-position[E_AXIS])/axis_steps_per_unit[E_AXIS])*extrudemultiply/100.0;
  458. if ( block->steps_x == 0 && block->steps_y == 0 && block->steps_z == 0 ) {
  459. block->millimeters = abs(delta_mm[E_AXIS]);
  460. } else {
  461. block->millimeters = sqrt(square(delta_mm[X_AXIS]) + square(delta_mm[Y_AXIS]) + square(delta_mm[Z_AXIS]));
  462. }
  463. float inverse_millimeters = 1.0/block->millimeters; // Inverse millimeters to remove multiple divides
  464. // Calculate speed in mm/second for each axis. No divide by zero due to previous checks.
  465. float inverse_second = feed_rate * inverse_millimeters;
  466. block->nominal_speed = block->millimeters * inverse_second; // (mm/sec) Always > 0
  467. block->nominal_rate = ceil(block->step_event_count * inverse_second); // (step/sec) Always > 0
  468. if (block->steps_e == 0) {
  469. if(feed_rate<mintravelfeedrate) feed_rate=mintravelfeedrate;
  470. }
  471. else {
  472. if(feed_rate<minimumfeedrate) feed_rate=minimumfeedrate;
  473. }
  474. /*
  475. // segment time im micro seconds
  476. long segment_time = lround(1000000.0/inverse_second);
  477. if ((blockcount>0) && (blockcount < (BLOCK_BUFFER_SIZE - 4))) {
  478. if (segment_time<minsegmenttime) { // buffer is draining, add extra time. The amount of time added increases if the buffer is still emptied more.
  479. segment_time=segment_time+lround(2*(minsegmenttime-segment_time)/blockcount);
  480. }
  481. }
  482. else {
  483. if (segment_time<minsegmenttime) segment_time=minsegmenttime;
  484. }
  485. // END OF SLOW DOWN SECTION
  486. */
  487. // Calculate speed in mm/sec for each axis
  488. float current_speed[4];
  489. for(int i=0; i < 4; i++) {
  490. current_speed[i] = delta_mm[i] * inverse_second;
  491. }
  492. // Limit speed per axis
  493. float speed_factor = 1.0; //factor <=1 do decrease speed
  494. for(int i=0; i < 4; i++) {
  495. if(abs(current_speed[i]) > max_feedrate[i])
  496. speed_factor = min(speed_factor, max_feedrate[i] / abs(current_speed[i]));
  497. }
  498. // Max segement time in us.
  499. #ifdef XY_FREQUENCY_LIMIT
  500. #define MAX_FREQ_TIME (1000000.0/XY_FREQUENCY_LIMIT)
  501. // Check and limit the xy direction change frequency
  502. unsigned char direction_change = block->direction_bits ^ old_direction_bits;
  503. old_direction_bits = block->direction_bits;
  504. if((direction_change & (1<<X_AXIS)) == 0) {
  505. x_segment_time[0] += segment_time;
  506. }
  507. else {
  508. x_segment_time[2] = x_segment_time[1];
  509. x_segment_time[1] = x_segment_time[0];
  510. x_segment_time[0] = segment_time;
  511. }
  512. if((direction_change & (1<<Y_AXIS)) == 0) {
  513. y_segment_time[0] += segment_time;
  514. }
  515. else {
  516. y_segment_time[2] = y_segment_time[1];
  517. y_segment_time[1] = y_segment_time[0];
  518. y_segment_time[0] = segment_time;
  519. }
  520. long max_x_segment_time = max(x_segment_time[0], max(x_segment_time[1], x_segment_time[2]));
  521. long max_y_segment_time = max(y_segment_time[0], max(y_segment_time[1], y_segment_time[2]));
  522. long min_xy_segment_time =min(max_x_segment_time, max_y_segment_time);
  523. if(min_xy_segment_time < MAX_FREQ_TIME) speed_factor = min(speed_factor, speed_factor * (float)min_xy_segment_time / (float)MAX_FREQ_TIME);
  524. #endif
  525. // Correct the speed
  526. if( speed_factor < 1.0) {
  527. // Serial.print("speed factor : "); Serial.println(speed_factor);
  528. for(int i=0; i < 4; i++) {
  529. if(abs(current_speed[i]) > max_feedrate[i])
  530. speed_factor = min(speed_factor, max_feedrate[i] / abs(current_speed[i]));
  531. /*
  532. if(speed_factor < 0.1) {
  533. Serial.print("speed factor : "); Serial.println(speed_factor);
  534. Serial.print("current_speed"); Serial.print(i); Serial.print(" : "); Serial.println(current_speed[i]);
  535. }
  536. */
  537. }
  538. for(unsigned char i=0; i < 4; i++) {
  539. current_speed[i] *= speed_factor;
  540. }
  541. block->nominal_speed *= speed_factor;
  542. block->nominal_rate *= speed_factor;
  543. }
  544. // Compute and limit the acceleration rate for the trapezoid generator.
  545. float steps_per_mm = block->step_event_count/block->millimeters;
  546. if(block->steps_x == 0 && block->steps_y == 0 && block->steps_z == 0) {
  547. block->acceleration_st = ceil(retract_acceleration * steps_per_mm); // convert to: acceleration steps/sec^2
  548. }
  549. else {
  550. block->acceleration_st = ceil(acceleration * steps_per_mm); // convert to: acceleration steps/sec^2
  551. // Limit acceleration per axis
  552. if(((float)block->acceleration_st * (float)block->steps_x / (float)block->step_event_count) > axis_steps_per_sqr_second[X_AXIS])
  553. block->acceleration_st = axis_steps_per_sqr_second[X_AXIS];
  554. if(((float)block->acceleration_st * (float)block->steps_y / (float)block->step_event_count) > axis_steps_per_sqr_second[Y_AXIS])
  555. block->acceleration_st = axis_steps_per_sqr_second[Y_AXIS];
  556. if(((float)block->acceleration_st * (float)block->steps_e / (float)block->step_event_count) > axis_steps_per_sqr_second[E_AXIS])
  557. block->acceleration_st = axis_steps_per_sqr_second[E_AXIS];
  558. if(((float)block->acceleration_st * (float)block->steps_z / (float)block->step_event_count ) > axis_steps_per_sqr_second[Z_AXIS])
  559. block->acceleration_st = axis_steps_per_sqr_second[Z_AXIS];
  560. }
  561. block->acceleration = block->acceleration_st / steps_per_mm;
  562. block->acceleration_rate = (long)((float)block->acceleration_st * 8.388608);
  563. #if 0 // Use old jerk for now
  564. // Compute path unit vector
  565. double unit_vec[3];
  566. unit_vec[X_AXIS] = delta_mm[X_AXIS]*inverse_millimeters;
  567. unit_vec[Y_AXIS] = delta_mm[Y_AXIS]*inverse_millimeters;
  568. unit_vec[Z_AXIS] = delta_mm[Z_AXIS]*inverse_millimeters;
  569. // Compute maximum allowable entry speed at junction by centripetal acceleration approximation.
  570. // Let a circle be tangent to both previous and current path line segments, where the junction
  571. // deviation is defined as the distance from the junction to the closest edge of the circle,
  572. // colinear with the circle center. The circular segment joining the two paths represents the
  573. // path of centripetal acceleration. Solve for max velocity based on max acceleration about the
  574. // radius of the circle, defined indirectly by junction deviation. This may be also viewed as
  575. // path width or max_jerk in the previous grbl version. This approach does not actually deviate
  576. // from path, but used as a robust way to compute cornering speeds, as it takes into account the
  577. // nonlinearities of both the junction angle and junction velocity.
  578. double vmax_junction = MINIMUM_PLANNER_SPEED; // Set default max junction speed
  579. // Skip first block or when previous_nominal_speed is used as a flag for homing and offset cycles.
  580. if ((block_buffer_head != block_buffer_tail) && (previous_nominal_speed > 0.0)) {
  581. // Compute cosine of angle between previous and current path. (prev_unit_vec is negative)
  582. // NOTE: Max junction velocity is computed without sin() or acos() by trig half angle identity.
  583. double cos_theta = - previous_unit_vec[X_AXIS] * unit_vec[X_AXIS]
  584. - previous_unit_vec[Y_AXIS] * unit_vec[Y_AXIS]
  585. - previous_unit_vec[Z_AXIS] * unit_vec[Z_AXIS] ;
  586. // Skip and use default max junction speed for 0 degree acute junction.
  587. if (cos_theta < 0.95) {
  588. vmax_junction = min(previous_nominal_speed,block->nominal_speed);
  589. // Skip and avoid divide by zero for straight junctions at 180 degrees. Limit to min() of nominal speeds.
  590. if (cos_theta > -0.95) {
  591. // Compute maximum junction velocity based on maximum acceleration and junction deviation
  592. double sin_theta_d2 = sqrt(0.5*(1.0-cos_theta)); // Trig half angle identity. Always positive.
  593. vmax_junction = min(vmax_junction,
  594. sqrt(block->acceleration * junction_deviation * sin_theta_d2/(1.0-sin_theta_d2)) );
  595. }
  596. }
  597. }
  598. #endif
  599. // Start with a safe speed
  600. float vmax_junction = max_xy_jerk/2;
  601. if(abs(current_speed[Z_AXIS]) > max_z_jerk/2)
  602. vmax_junction = max_z_jerk/2;
  603. vmax_junction = min(vmax_junction, block->nominal_speed);
  604. if ((moves_queued > 1) && (previous_nominal_speed > 0.0)) {
  605. float jerk = sqrt(pow((current_speed[X_AXIS]-previous_speed[X_AXIS]), 2)+pow((current_speed[Y_AXIS]-previous_speed[Y_AXIS]), 2));
  606. if((previous_speed[X_AXIS] != 0.0) || (previous_speed[Y_AXIS] != 0.0)) {
  607. vmax_junction = block->nominal_speed;
  608. }
  609. if (jerk > max_xy_jerk) {
  610. vmax_junction *= (max_xy_jerk/jerk);
  611. }
  612. if(abs(current_speed[Z_AXIS] - previous_speed[Z_AXIS]) > max_z_jerk) {
  613. vmax_junction *= (max_z_jerk/abs(current_speed[Z_AXIS] - previous_speed[Z_AXIS]));
  614. }
  615. }
  616. block->max_entry_speed = vmax_junction;
  617. // Initialize block entry speed. Compute based on deceleration to user-defined MINIMUM_PLANNER_SPEED.
  618. double v_allowable = max_allowable_speed(-block->acceleration,MINIMUM_PLANNER_SPEED,block->millimeters);
  619. block->entry_speed = min(vmax_junction, v_allowable);
  620. // Initialize planner efficiency flags
  621. // Set flag if block will always reach maximum junction speed regardless of entry/exit speeds.
  622. // If a block can de/ac-celerate from nominal speed to zero within the length of the block, then
  623. // the current block and next block junction speeds are guaranteed to always be at their maximum
  624. // junction speeds in deceleration and acceleration, respectively. This is due to how the current
  625. // block nominal speed limits both the current and next maximum junction speeds. Hence, in both
  626. // the reverse and forward planners, the corresponding block junction speed will always be at the
  627. // the maximum junction speed and may always be ignored for any speed reduction checks.
  628. if (block->nominal_speed <= v_allowable) { block->nominal_length_flag = true; }
  629. else { block->nominal_length_flag = false; }
  630. block->recalculate_flag = true; // Always calculate trapezoid for new block
  631. // Update previous path unit_vector and nominal speed
  632. memcpy(previous_speed, current_speed, sizeof(previous_speed)); // previous_speed[] = current_speed[]
  633. previous_nominal_speed = block->nominal_speed;
  634. #ifdef ADVANCE
  635. // Calculate advance rate
  636. if((block->steps_e == 0) || (block->steps_x == 0 && block->steps_y == 0 && block->steps_z == 0)) {
  637. block->advance_rate = 0;
  638. block->advance = 0;
  639. }
  640. else {
  641. long acc_dist = estimate_acceleration_distance(0, block->nominal_rate, block->acceleration_st);
  642. float advance = (STEPS_PER_CUBIC_MM_E * EXTRUDER_ADVANCE_K) *
  643. (current_speed[E_AXIS] * current_speed[E_AXIS] * EXTRUTION_AREA * EXTRUTION_AREA)*256;
  644. block->advance = advance;
  645. if(acc_dist == 0) {
  646. block->advance_rate = 0;
  647. }
  648. else {
  649. block->advance_rate = advance / (float)acc_dist;
  650. }
  651. }
  652. /*
  653. SERIAL_ECHO_START;
  654. SERIAL_ECHOPGM("advance :");
  655. SERIAL_ECHO(block->advance/256.0);
  656. SERIAL_ECHOPGM("advance rate :");
  657. SERIAL_ECHOLN(block->advance_rate/256.0);
  658. */
  659. #endif // ADVANCE
  660. calculate_trapezoid_for_block(block, block->entry_speed/block->nominal_speed,
  661. MINIMUM_PLANNER_SPEED/block->nominal_speed);
  662. // Move buffer head
  663. block_buffer_head = next_buffer_head;
  664. // Update position
  665. memcpy(position, target, sizeof(target)); // position[] = target[]
  666. planner_recalculate();
  667. #ifdef AUTOTEMP
  668. getHighESpeed();
  669. #endif
  670. st_wake_up();
  671. }
  672. void plan_set_position(const float &x, const float &y, const float &z, const float &e)
  673. {
  674. position[X_AXIS] = lround(x*axis_steps_per_unit[X_AXIS]);
  675. position[Y_AXIS] = lround(y*axis_steps_per_unit[Y_AXIS]);
  676. position[Z_AXIS] = lround(z*axis_steps_per_unit[Z_AXIS]);
  677. position[E_AXIS] = lround(e*axis_steps_per_unit[E_AXIS]);
  678. st_set_position(position[X_AXIS], position[Y_AXIS], position[Z_AXIS], position[E_AXIS]);
  679. previous_nominal_speed = 0.0; // Resets planner junction speeds. Assumes start from rest.
  680. previous_speed[0] = 0.0;
  681. previous_speed[1] = 0.0;
  682. previous_speed[2] = 0.0;
  683. previous_speed[3] = 0.0;
  684. }
  685. void plan_set_e_position(const float &e)
  686. {
  687. position[E_AXIS] = lround(e*axis_steps_per_unit[E_AXIS]);
  688. st_set_e_position(position[E_AXIS]);
  689. }
  690. uint8_t movesplanned()
  691. {
  692. return (block_buffer_head-block_buffer_tail + BLOCK_BUFFER_SIZE) & (BLOCK_BUFFER_SIZE - 1);
  693. }
  694. void allow_cold_extrudes(bool allow)
  695. {
  696. #ifdef PREVENT_DANGEROUS_EXTRUDE
  697. allow_cold_extrude=allow;
  698. #endif
  699. }