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

planner.cpp 41KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000
  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[NUM_AXIS]; // set the max speeds
  47. float axis_steps_per_unit[NUM_AXIS];
  48. unsigned long max_acceleration_units_per_sq_second[NUM_AXIS]; // Use M201 to override by software
  49. float minimumfeedrate;
  50. float acceleration; // Normal acceleration mm/s^2 THIS IS THE DEFAULT ACCELERATION for all printing 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 travel_acceleration; // Travel acceleration mm/s^2 THIS IS THE DEFAULT ACCELERATION for all NON printing moves. M204 MXXXX
  53. float max_xy_jerk; //speed than can be stopped at once, if i understand correctly.
  54. float max_z_jerk;
  55. float max_e_jerk;
  56. float mintravelfeedrate;
  57. unsigned long axis_steps_per_sqr_second[NUM_AXIS];
  58. #ifdef ENABLE_AUTO_BED_LEVELING
  59. // this holds the required transform to compensate for bed level
  60. matrix_3x3 plan_bed_level_matrix = {
  61. 1.0, 0.0, 0.0,
  62. 0.0, 1.0, 0.0,
  63. 0.0, 0.0, 1.0
  64. };
  65. #endif // #ifdef ENABLE_AUTO_BED_LEVELING
  66. // The current position of the tool in absolute steps
  67. long position[NUM_AXIS]; //rescaled from extern when axis_steps_per_unit are changed by gcode
  68. static float previous_speed[NUM_AXIS]; // Speed of previous path line segment
  69. static float previous_nominal_speed; // Nominal speed of previous path line segment
  70. #ifdef AUTOTEMP
  71. float autotemp_max = 250;
  72. float autotemp_min = 210;
  73. float autotemp_factor = 0.1;
  74. bool autotemp_enabled = false;
  75. #endif
  76. unsigned char g_uc_extruder_last_move[4] = {0,0,0,0};
  77. //===========================================================================
  78. //=================semi-private variables, used in inline functions =====
  79. //===========================================================================
  80. block_t block_buffer[BLOCK_BUFFER_SIZE]; // A ring buffer for motion instfructions
  81. volatile unsigned char block_buffer_head; // Index of the next block to be pushed
  82. volatile unsigned char block_buffer_tail; // Index of the block to process now
  83. //===========================================================================
  84. //=============================private variables ============================
  85. //===========================================================================
  86. #ifdef PREVENT_DANGEROUS_EXTRUDE
  87. float extrude_min_temp = EXTRUDE_MINTEMP;
  88. #endif
  89. #ifdef XY_FREQUENCY_LIMIT
  90. // Used for the frequency limit
  91. #define MAX_FREQ_TIME (1000000.0/XY_FREQUENCY_LIMIT)
  92. // Old direction bits. Used for speed calculations
  93. static unsigned char old_direction_bits = 0;
  94. // Segment times (in µs). Used for speed calculations
  95. static long axis_segment_time[2][3] = { {MAX_FREQ_TIME+1,0,0}, {MAX_FREQ_TIME+1,0,0} };
  96. #endif
  97. #ifdef FILAMENT_SENSOR
  98. static char meas_sample; //temporary variable to hold filament measurement sample
  99. #endif
  100. // Get the next / previous index of the next block in the ring buffer
  101. // NOTE: Using & here (not %) because BLOCK_BUFFER_SIZE is always a power of 2
  102. FORCE_INLINE int8_t next_block_index(int8_t block_index) { return BLOCK_MOD(block_index + 1); }
  103. FORCE_INLINE int8_t prev_block_index(int8_t block_index) { return BLOCK_MOD(block_index - 1); }
  104. //===========================================================================
  105. //================================ Functions ================================
  106. //===========================================================================
  107. // Calculates the distance (not time) it takes to accelerate from initial_rate to target_rate using the
  108. // given acceleration:
  109. FORCE_INLINE float estimate_acceleration_distance(float initial_rate, float target_rate, float acceleration) {
  110. if (acceleration == 0) return 0; // acceleration was 0, set acceleration distance to 0
  111. return (target_rate * target_rate - initial_rate * initial_rate) / (acceleration * 2);
  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. if (acceleration == 0) return 0; // acceleration was 0, set intersection distance to 0
  119. return (acceleration * 2 * distance - initial_rate * initial_rate + final_rate * final_rate) / (acceleration * 4);
  120. }
  121. // Calculates trapezoid parameters so that the entry- and exit-speed is compensated by the provided factors.
  122. void calculate_trapezoid_for_block(block_t *block, float entry_factor, float exit_factor) {
  123. unsigned long initial_rate = ceil(block->nominal_rate * entry_factor); // (step/min)
  124. unsigned long final_rate = ceil(block->nominal_rate * exit_factor); // (step/min)
  125. // Limit minimal step rate (Otherwise the timer will overflow.)
  126. if (initial_rate < 120) initial_rate = 120;
  127. if (final_rate < 120) final_rate = 120;
  128. long acceleration = block->acceleration_st;
  129. int32_t accelerate_steps = ceil(estimate_acceleration_distance(initial_rate, block->nominal_rate, acceleration));
  130. int32_t decelerate_steps = floor(estimate_acceleration_distance(block->nominal_rate, final_rate, -acceleration));
  131. // Calculate the size of Plateau of Nominal Rate.
  132. int32_t plateau_steps = block->step_event_count - accelerate_steps - decelerate_steps;
  133. // Is the Plateau of Nominal Rate smaller than nothing? That means no cruising, and we will
  134. // have to use intersection_distance() to calculate when to abort acceleration and start braking
  135. // in order to reach the final_rate exactly at the end of this block.
  136. if (plateau_steps < 0) {
  137. accelerate_steps = ceil(intersection_distance(initial_rate, final_rate, acceleration, block->step_event_count));
  138. accelerate_steps = max(accelerate_steps, 0); // Check limits due to numerical round-off
  139. accelerate_steps = min((uint32_t)accelerate_steps, block->step_event_count);//(We can cast here to unsigned, because the above line ensures that we are above zero)
  140. plateau_steps = 0;
  141. }
  142. #ifdef ADVANCE
  143. volatile long initial_advance = block->advance * entry_factor * entry_factor;
  144. volatile long final_advance = block->advance * exit_factor * exit_factor;
  145. #endif // ADVANCE
  146. // block->accelerate_until = accelerate_steps;
  147. // block->decelerate_after = accelerate_steps+plateau_steps;
  148. CRITICAL_SECTION_START; // Fill variables used by the stepper in a critical section
  149. if (!block->busy) { // Don't update variables if block is busy.
  150. block->accelerate_until = accelerate_steps;
  151. block->decelerate_after = accelerate_steps+plateau_steps;
  152. block->initial_rate = initial_rate;
  153. block->final_rate = final_rate;
  154. #ifdef ADVANCE
  155. block->initial_advance = initial_advance;
  156. block->final_advance = final_advance;
  157. #endif
  158. }
  159. CRITICAL_SECTION_END;
  160. }
  161. // Calculates the maximum allowable speed at this point when you must be able to reach target_velocity using the
  162. // acceleration within the allotted distance.
  163. FORCE_INLINE float max_allowable_speed(float acceleration, float target_velocity, float distance) {
  164. return sqrt(target_velocity * target_velocity - 2 * acceleration * distance);
  165. }
  166. // "Junction jerk" in this context is the immediate change in speed at the junction of two blocks.
  167. // This method will calculate the junction jerk as the euclidean distance between the nominal
  168. // velocities of the respective blocks.
  169. //inline float junction_jerk(block_t *before, block_t *after) {
  170. // return sqrt(
  171. // pow((before->speed_x-after->speed_x), 2)+pow((before->speed_y-after->speed_y), 2));
  172. //}
  173. // The kernel called by planner_recalculate() when scanning the plan from last to first entry.
  174. void planner_reverse_pass_kernel(block_t *previous, block_t *current, block_t *next) {
  175. if (!current) return;
  176. if (next) {
  177. // If entry speed is already at the maximum entry speed, no need to recheck. Block is cruising.
  178. // If not, block in state of acceleration or deceleration. Reset entry speed to maximum and
  179. // check for maximum allowable speed reductions to ensure maximum possible planned speed.
  180. if (current->entry_speed != current->max_entry_speed) {
  181. // If nominal length true, max junction speed is guaranteed to be reached. Only compute
  182. // for max allowable speed if block is decelerating and nominal length is false.
  183. if (!current->nominal_length_flag && current->max_entry_speed > next->entry_speed) {
  184. current->entry_speed = min(current->max_entry_speed,
  185. max_allowable_speed(-current->acceleration, next->entry_speed, current->millimeters));
  186. }
  187. else {
  188. current->entry_speed = current->max_entry_speed;
  189. }
  190. current->recalculate_flag = true;
  191. }
  192. } // Skip last block. Already initialized and set for recalculation.
  193. }
  194. // planner_recalculate() needs to go over the current plan twice. Once in reverse and once forward. This
  195. // implements the reverse pass.
  196. void planner_reverse_pass() {
  197. uint8_t block_index = block_buffer_head;
  198. //Make a local copy of block_buffer_tail, because the interrupt can alter it
  199. CRITICAL_SECTION_START;
  200. unsigned char tail = block_buffer_tail;
  201. CRITICAL_SECTION_END
  202. if (BLOCK_MOD(block_buffer_head - tail + BLOCK_BUFFER_SIZE) > 3) { // moves queued
  203. block_index = BLOCK_MOD(block_buffer_head - 3);
  204. block_t *block[3] = { NULL, NULL, NULL };
  205. while (block_index != tail) {
  206. block_index = prev_block_index(block_index);
  207. block[2]= block[1];
  208. block[1]= block[0];
  209. block[0] = &block_buffer[block_index];
  210. planner_reverse_pass_kernel(block[0], block[1], block[2]);
  211. }
  212. }
  213. }
  214. // The kernel called by planner_recalculate() when scanning the plan from first to last entry.
  215. void planner_forward_pass_kernel(block_t *previous, block_t *current, block_t *next) {
  216. if (!previous) return;
  217. // If the previous block is an acceleration block, but it is not long enough to complete the
  218. // full speed change within the block, we need to adjust the entry speed accordingly. Entry
  219. // speeds have already been reset, maximized, and reverse planned by reverse planner.
  220. // If nominal length is true, max junction speed is guaranteed to be reached. No need to recheck.
  221. if (!previous->nominal_length_flag) {
  222. if (previous->entry_speed < current->entry_speed) {
  223. double entry_speed = min(current->entry_speed,
  224. max_allowable_speed(-previous->acceleration, previous->entry_speed, previous->millimeters));
  225. // Check for junction speed change
  226. if (current->entry_speed != entry_speed) {
  227. current->entry_speed = entry_speed;
  228. current->recalculate_flag = true;
  229. }
  230. }
  231. }
  232. }
  233. // planner_recalculate() needs to go over the current plan twice. Once in reverse and once forward. This
  234. // implements the forward pass.
  235. void planner_forward_pass() {
  236. uint8_t block_index = block_buffer_tail;
  237. block_t *block[3] = { NULL, NULL, NULL };
  238. while (block_index != block_buffer_head) {
  239. block[0] = block[1];
  240. block[1] = block[2];
  241. block[2] = &block_buffer[block_index];
  242. planner_forward_pass_kernel(block[0], block[1], block[2]);
  243. block_index = next_block_index(block_index);
  244. }
  245. planner_forward_pass_kernel(block[1], block[2], NULL);
  246. }
  247. // Recalculates the trapezoid speed profiles for all blocks in the plan according to the
  248. // entry_factor for each junction. Must be called by planner_recalculate() after
  249. // updating the blocks.
  250. void planner_recalculate_trapezoids() {
  251. int8_t block_index = block_buffer_tail;
  252. block_t *current;
  253. block_t *next = NULL;
  254. while (block_index != block_buffer_head) {
  255. current = next;
  256. next = &block_buffer[block_index];
  257. if (current) {
  258. // Recalculate if current block entry or exit junction speed has changed.
  259. if (current->recalculate_flag || next->recalculate_flag) {
  260. // NOTE: Entry and exit factors always > 0 by all previous logic operations.
  261. float nom = current->nominal_speed;
  262. calculate_trapezoid_for_block(current, current->entry_speed / nom, next->entry_speed / nom);
  263. current->recalculate_flag = false; // Reset current only to ensure next trapezoid is computed
  264. }
  265. }
  266. block_index = next_block_index( block_index );
  267. }
  268. // Last/newest block in buffer. Exit speed is set with MINIMUM_PLANNER_SPEED. Always recalculated.
  269. if (next) {
  270. float nom = next->nominal_speed;
  271. calculate_trapezoid_for_block(next, next->entry_speed / nom, MINIMUM_PLANNER_SPEED / nom);
  272. next->recalculate_flag = false;
  273. }
  274. }
  275. // Recalculates the motion plan according to the following algorithm:
  276. //
  277. // 1. Go over every block in reverse order and calculate a junction speed reduction (i.e. block_t.entry_factor)
  278. // so that:
  279. // a. The junction jerk is within the set limit
  280. // b. No speed reduction within one block requires faster deceleration than the one, true constant
  281. // acceleration.
  282. // 2. Go over every block in chronological order and dial down junction speed reduction values if
  283. // a. The speed increase within one block would require faster accelleration than the one, true
  284. // constant acceleration.
  285. //
  286. // When these stages are complete all blocks have an entry_factor that will allow all speed changes to
  287. // be performed using only the one, true constant acceleration, and where no junction jerk is jerkier than
  288. // the set limit. Finally it will:
  289. //
  290. // 3. Recalculate trapezoids for all blocks.
  291. void planner_recalculate() {
  292. planner_reverse_pass();
  293. planner_forward_pass();
  294. planner_recalculate_trapezoids();
  295. }
  296. void plan_init() {
  297. block_buffer_head = block_buffer_tail = 0;
  298. memset(position, 0, sizeof(position)); // clear position
  299. for (int i=0; i<NUM_AXIS; i++) previous_speed[i] = 0.0;
  300. previous_nominal_speed = 0.0;
  301. }
  302. #ifdef AUTOTEMP
  303. void getHighESpeed() {
  304. static float oldt = 0;
  305. if (!autotemp_enabled) return;
  306. if (degTargetHotend0() + 2 < autotemp_min) return; // probably temperature set to zero.
  307. float high = 0.0;
  308. uint8_t block_index = block_buffer_tail;
  309. while (block_index != block_buffer_head) {
  310. block_t *block = &block_buffer[block_index];
  311. if (block->steps[X_AXIS] || block->steps[Y_AXIS] || block->steps[Z_AXIS]) {
  312. float se = (float)block->steps[E_AXIS] / block->step_event_count * block->nominal_speed; // mm/sec;
  313. if (se > high) high = se;
  314. }
  315. block_index = next_block_index(block_index);
  316. }
  317. float t = autotemp_min + high * autotemp_factor;
  318. if (t < autotemp_min) t = autotemp_min;
  319. if (t > autotemp_max) t = autotemp_max;
  320. if (oldt > t) t = AUTOTEMP_OLDWEIGHT * oldt + (1 - AUTOTEMP_OLDWEIGHT) * t;
  321. oldt = t;
  322. setTargetHotend0(t);
  323. }
  324. #endif
  325. void check_axes_activity() {
  326. unsigned char axis_active[NUM_AXIS],
  327. tail_fan_speed = fanSpeed;
  328. #ifdef BARICUDA
  329. unsigned char tail_valve_pressure = ValvePressure,
  330. tail_e_to_p_pressure = EtoPPressure;
  331. #endif
  332. block_t *block;
  333. if (blocks_queued()) {
  334. uint8_t block_index = block_buffer_tail;
  335. tail_fan_speed = block_buffer[block_index].fan_speed;
  336. #ifdef BARICUDA
  337. block = &block_buffer[block_index];
  338. tail_valve_pressure = block->valve_pressure;
  339. tail_e_to_p_pressure = block->e_to_p_pressure;
  340. #endif
  341. while (block_index != block_buffer_head) {
  342. block = &block_buffer[block_index];
  343. for (int i=0; i<NUM_AXIS; i++) if (block->steps[i]) axis_active[i]++;
  344. block_index = next_block_index(block_index);
  345. }
  346. }
  347. if (DISABLE_X && !axis_active[X_AXIS]) disable_x();
  348. if (DISABLE_Y && !axis_active[Y_AXIS]) disable_y();
  349. if (DISABLE_Z && !axis_active[Z_AXIS]) disable_z();
  350. if (DISABLE_E && !axis_active[E_AXIS]) {
  351. disable_e0();
  352. disable_e1();
  353. disable_e2();
  354. disable_e3();
  355. }
  356. #if defined(FAN_PIN) && FAN_PIN > -1 // HAS_FAN
  357. #ifdef FAN_KICKSTART_TIME
  358. static unsigned long fan_kick_end;
  359. if (tail_fan_speed) {
  360. if (fan_kick_end == 0) {
  361. // Just starting up fan - run at full power.
  362. fan_kick_end = millis() + FAN_KICKSTART_TIME;
  363. tail_fan_speed = 255;
  364. } else if (fan_kick_end > millis())
  365. // Fan still spinning up.
  366. tail_fan_speed = 255;
  367. } else {
  368. fan_kick_end = 0;
  369. }
  370. #endif//FAN_KICKSTART_TIME
  371. #ifdef FAN_SOFT_PWM
  372. fanSpeedSoftPwm = tail_fan_speed;
  373. #else
  374. analogWrite(FAN_PIN, tail_fan_speed);
  375. #endif //!FAN_SOFT_PWM
  376. #endif //FAN_PIN > -1
  377. #ifdef AUTOTEMP
  378. getHighESpeed();
  379. #endif
  380. #ifdef BARICUDA
  381. #if defined(HEATER_1_PIN) && HEATER_1_PIN > -1 // HAS_HEATER_1
  382. analogWrite(HEATER_1_PIN,tail_valve_pressure);
  383. #endif
  384. #if defined(HEATER_2_PIN) && HEATER_2_PIN > -1 // HAS_HEATER_2
  385. analogWrite(HEATER_2_PIN,tail_e_to_p_pressure);
  386. #endif
  387. #endif
  388. }
  389. float junction_deviation = 0.1;
  390. // Add a new linear movement to the buffer. steps[X_AXIS], _y and _z is the absolute position in
  391. // mm. Microseconds specify how many microseconds the move should take to perform. To aid acceleration
  392. // calculation the caller must also provide the physical length of the line in millimeters.
  393. #ifdef ENABLE_AUTO_BED_LEVELING
  394. void plan_buffer_line(float x, float y, float z, const float &e, float feed_rate, const uint8_t &extruder)
  395. #else
  396. void plan_buffer_line(const float &x, const float &y, const float &z, const float &e, float feed_rate, const uint8_t &extruder)
  397. #endif //ENABLE_AUTO_BED_LEVELING
  398. {
  399. // Calculate the buffer head after we push this byte
  400. int next_buffer_head = next_block_index(block_buffer_head);
  401. // If the buffer is full: good! That means we are well ahead of the robot.
  402. // Rest here until there is room in the buffer.
  403. while(block_buffer_tail == next_buffer_head) {
  404. manage_heater();
  405. manage_inactivity();
  406. lcd_update();
  407. }
  408. #ifdef ENABLE_AUTO_BED_LEVELING
  409. apply_rotation_xyz(plan_bed_level_matrix, x, y, z);
  410. #endif
  411. // The target position of the tool in absolute steps
  412. // Calculate target position in absolute steps
  413. //this should be done after the wait, because otherwise a M92 code within the gcode disrupts this calculation somehow
  414. long target[NUM_AXIS];
  415. target[X_AXIS] = lround(x * axis_steps_per_unit[X_AXIS]);
  416. target[Y_AXIS] = lround(y * axis_steps_per_unit[Y_AXIS]);
  417. target[Z_AXIS] = lround(z * axis_steps_per_unit[Z_AXIS]);
  418. target[E_AXIS] = lround(e * axis_steps_per_unit[E_AXIS]);
  419. float dx = target[X_AXIS] - position[X_AXIS],
  420. dy = target[Y_AXIS] - position[Y_AXIS],
  421. dz = target[Z_AXIS] - position[Z_AXIS],
  422. de = target[E_AXIS] - position[E_AXIS];
  423. #ifdef PREVENT_DANGEROUS_EXTRUDE
  424. if (de) {
  425. if (degHotend(active_extruder) < extrude_min_temp) {
  426. position[E_AXIS] = target[E_AXIS]; //behave as if the move really took place, but ignore E part
  427. SERIAL_ECHO_START;
  428. SERIAL_ECHOLNPGM(MSG_ERR_COLD_EXTRUDE_STOP);
  429. }
  430. #ifdef PREVENT_LENGTHY_EXTRUDE
  431. if (labs(de) > axis_steps_per_unit[E_AXIS] * EXTRUDE_MAXLENGTH) {
  432. position[E_AXIS] = target[E_AXIS]; // Behave as if the move really took place, but ignore E part
  433. SERIAL_ECHO_START;
  434. SERIAL_ECHOLNPGM(MSG_ERR_LONG_EXTRUDE_STOP);
  435. }
  436. #endif
  437. }
  438. #endif
  439. // Prepare to set up new block
  440. block_t *block = &block_buffer[block_buffer_head];
  441. // Mark block as not busy (Not executed by the stepper interrupt)
  442. block->busy = false;
  443. // Number of steps for each axis
  444. #ifdef COREXY
  445. // corexy planning
  446. // these equations follow the form of the dA and dB equations on http://www.corexy.com/theory.html
  447. block->steps[A_AXIS] = labs(dx + dy);
  448. block->steps[B_AXIS] = labs(dx - dy);
  449. #else
  450. // default non-h-bot planning
  451. block->steps[X_AXIS] = labs(dx);
  452. block->steps[Y_AXIS] = labs(dy);
  453. #endif
  454. block->steps[Z_AXIS] = labs(dz);
  455. block->steps[E_AXIS] = labs(de);
  456. block->steps[E_AXIS] *= volumetric_multiplier[active_extruder];
  457. block->steps[E_AXIS] *= extrudemultiply;
  458. block->steps[E_AXIS] /= 100;
  459. block->step_event_count = max(block->steps[X_AXIS], max(block->steps[Y_AXIS], max(block->steps[Z_AXIS], block->steps[E_AXIS])));
  460. // Bail if this is a zero-length block
  461. if (block->step_event_count <= dropsegments) return;
  462. block->fan_speed = fanSpeed;
  463. #ifdef BARICUDA
  464. block->valve_pressure = ValvePressure;
  465. block->e_to_p_pressure = EtoPPressure;
  466. #endif
  467. // Compute direction bits for this block
  468. uint8_t db = 0;
  469. #ifdef COREXY
  470. if (dx < 0) db |= BIT(X_HEAD); // Save the real Extruder (head) direction in X Axis
  471. if (dy < 0) db |= BIT(Y_HEAD); // ...and Y
  472. if (dx + dy < 0) db |= BIT(A_AXIS); // Motor A direction
  473. if (dx - dy < 0) db |= BIT(B_AXIS); // Motor B direction
  474. #else
  475. if (dx < 0) db |= BIT(X_AXIS);
  476. if (dy < 0) db |= BIT(Y_AXIS);
  477. #endif
  478. if (dz < 0) db |= BIT(Z_AXIS);
  479. if (de < 0) db |= BIT(E_AXIS);
  480. block->direction_bits = db;
  481. block->active_extruder = extruder;
  482. //enable active axes
  483. #ifdef COREXY
  484. if (block->steps[A_AXIS] || block->steps[B_AXIS]) {
  485. enable_x();
  486. enable_y();
  487. }
  488. #else
  489. if (block->steps[X_AXIS]) enable_x();
  490. if (block->steps[Y_AXIS]) enable_y();
  491. #endif
  492. #ifndef Z_LATE_ENABLE
  493. if (block->steps[Z_AXIS]) enable_z();
  494. #endif
  495. // Enable extruder(s)
  496. if (block->steps[E_AXIS]) {
  497. if (DISABLE_INACTIVE_EXTRUDER) { //enable only selected extruder
  498. for (int i=0; i<EXTRUDERS; i++)
  499. if (g_uc_extruder_last_move[i] > 0) g_uc_extruder_last_move[i]--;
  500. switch(extruder) {
  501. case 0:
  502. enable_e0();
  503. g_uc_extruder_last_move[0] = BLOCK_BUFFER_SIZE * 2;
  504. #if EXTRUDERS > 1
  505. if (g_uc_extruder_last_move[1] == 0) disable_e1();
  506. #if EXTRUDERS > 2
  507. if (g_uc_extruder_last_move[2] == 0) disable_e2();
  508. #if EXTRUDERS > 3
  509. if (g_uc_extruder_last_move[3] == 0) disable_e3();
  510. #endif
  511. #endif
  512. #endif
  513. break;
  514. #if EXTRUDERS > 1
  515. case 1:
  516. enable_e1();
  517. g_uc_extruder_last_move[1] = BLOCK_BUFFER_SIZE*2;
  518. if (g_uc_extruder_last_move[0] == 0) disable_e0();
  519. #if EXTRUDERS > 2
  520. if (g_uc_extruder_last_move[2] == 0) disable_e2();
  521. #if EXTRUDERS > 3
  522. if (g_uc_extruder_last_move[3] == 0) disable_e3();
  523. #endif
  524. #endif
  525. break;
  526. #if EXTRUDERS > 2
  527. case 2:
  528. enable_e2();
  529. g_uc_extruder_last_move[2] = BLOCK_BUFFER_SIZE*2;
  530. if (g_uc_extruder_last_move[0] == 0) disable_e0();
  531. if (g_uc_extruder_last_move[1] == 0) disable_e1();
  532. #if EXTRUDERS > 3
  533. if (g_uc_extruder_last_move[3] == 0) disable_e3();
  534. #endif
  535. break;
  536. #if EXTRUDERS > 3
  537. case 3:
  538. enable_e3();
  539. g_uc_extruder_last_move[3] = BLOCK_BUFFER_SIZE*2;
  540. if (g_uc_extruder_last_move[0] == 0) disable_e0();
  541. if (g_uc_extruder_last_move[1] == 0) disable_e1();
  542. if (g_uc_extruder_last_move[2] == 0) disable_e2();
  543. break;
  544. #endif // EXTRUDERS > 3
  545. #endif // EXTRUDERS > 2
  546. #endif // EXTRUDERS > 1
  547. }
  548. }
  549. else { // enable all
  550. enable_e0();
  551. enable_e1();
  552. enable_e2();
  553. enable_e3();
  554. }
  555. }
  556. if (block->steps[E_AXIS]) {
  557. if (feed_rate < minimumfeedrate) feed_rate = minimumfeedrate;
  558. }
  559. else if (feed_rate < mintravelfeedrate) feed_rate = mintravelfeedrate;
  560. /**
  561. * This part of the code calculates the total length of the movement.
  562. * For cartesian bots, the X_AXIS is the real X movement and same for Y_AXIS.
  563. * But for corexy bots, that is not true. The "X_AXIS" and "Y_AXIS" motors (that should be named to A_AXIS
  564. * and B_AXIS) cannot be used for X and Y length, because A=X+Y and B=X-Y.
  565. * So we need to create other 2 "AXIS", named X_HEAD and Y_HEAD, meaning the real displacement of the Head.
  566. * Having the real displacement of the head, we can calculate the total movement length and apply the desired speed.
  567. */
  568. #ifdef COREXY
  569. float delta_mm[6];
  570. delta_mm[X_HEAD] = dx / axis_steps_per_unit[A_AXIS];
  571. delta_mm[Y_HEAD] = dy / axis_steps_per_unit[B_AXIS];
  572. delta_mm[A_AXIS] = (dx + dy) / axis_steps_per_unit[A_AXIS];
  573. delta_mm[B_AXIS] = (dx - dy) / axis_steps_per_unit[B_AXIS];
  574. #else
  575. float delta_mm[4];
  576. delta_mm[X_AXIS] = dx / axis_steps_per_unit[X_AXIS];
  577. delta_mm[Y_AXIS] = dy / axis_steps_per_unit[Y_AXIS];
  578. #endif
  579. delta_mm[Z_AXIS] = dz / axis_steps_per_unit[Z_AXIS];
  580. delta_mm[E_AXIS] = (de / axis_steps_per_unit[E_AXIS]) * volumetric_multiplier[active_extruder] * extrudemultiply / 100.0;
  581. if (block->steps[X_AXIS] <= dropsegments && block->steps[Y_AXIS] <= dropsegments && block->steps[Z_AXIS] <= dropsegments) {
  582. block->millimeters = fabs(delta_mm[E_AXIS]);
  583. }
  584. else {
  585. block->millimeters = sqrt(
  586. #ifdef COREXY
  587. square(delta_mm[X_HEAD]) + square(delta_mm[Y_HEAD])
  588. #else
  589. square(delta_mm[X_AXIS]) + square(delta_mm[Y_AXIS])
  590. #endif
  591. + square(delta_mm[Z_AXIS])
  592. );
  593. }
  594. float inverse_millimeters = 1.0 / block->millimeters; // Inverse millimeters to remove multiple divides
  595. // Calculate speed in mm/second for each axis. No divide by zero due to previous checks.
  596. float inverse_second = feed_rate * inverse_millimeters;
  597. int moves_queued = movesplanned();
  598. // slow down when de buffer starts to empty, rather than wait at the corner for a buffer refill
  599. bool mq = moves_queued > 1 && moves_queued < BLOCK_BUFFER_SIZE / 2;
  600. #ifdef OLD_SLOWDOWN
  601. if (mq) feed_rate *= 2.0 * moves_queued / BLOCK_BUFFER_SIZE;
  602. #endif
  603. #ifdef SLOWDOWN
  604. // segment time im micro seconds
  605. unsigned long segment_time = lround(1000000.0/inverse_second);
  606. if (mq) {
  607. if (segment_time < minsegmenttime) {
  608. // buffer is draining, add extra time. The amount of time added increases if the buffer is still emptied more.
  609. inverse_second = 1000000.0 / (segment_time + lround(2 * (minsegmenttime - segment_time) / moves_queued));
  610. #ifdef XY_FREQUENCY_LIMIT
  611. segment_time = lround(1000000.0 / inverse_second);
  612. #endif
  613. }
  614. }
  615. #endif
  616. // END OF SLOW DOWN SECTION
  617. block->nominal_speed = block->millimeters * inverse_second; // (mm/sec) Always > 0
  618. block->nominal_rate = ceil(block->step_event_count * inverse_second); // (step/sec) Always > 0
  619. #ifdef FILAMENT_SENSOR
  620. //FMM update ring buffer used for delay with filament measurements
  621. if (extruder == FILAMENT_SENSOR_EXTRUDER_NUM && delay_index2 > -1) { //only for extruder with filament sensor and if ring buffer is initialized
  622. const int MMD = MAX_MEASUREMENT_DELAY + 1, MMD10 = MMD * 10;
  623. delay_dist += delta_mm[E_AXIS]; // increment counter with next move in e axis
  624. while (delay_dist >= MMD10) delay_dist -= MMD10; // loop around the buffer
  625. while (delay_dist < 0) delay_dist += MMD10;
  626. delay_index1 = delay_dist / 10.0; // calculate index
  627. delay_index1 = constrain(delay_index1, 0, MAX_MEASUREMENT_DELAY); // (already constrained above)
  628. if (delay_index1 != delay_index2) { // moved index
  629. meas_sample = widthFil_to_size_ratio() - 100; // Subtract 100 to reduce magnitude - to store in a signed char
  630. while (delay_index1 != delay_index2) {
  631. // Increment and loop around buffer
  632. if (++delay_index2 >= MMD) delay_index2 -= MMD;
  633. delay_index2 = constrain(delay_index2, 0, MAX_MEASUREMENT_DELAY);
  634. measurement_delay[delay_index2] = meas_sample;
  635. }
  636. }
  637. }
  638. #endif
  639. // Calculate and limit speed in mm/sec for each axis
  640. float current_speed[NUM_AXIS];
  641. float speed_factor = 1.0; //factor <=1 do decrease speed
  642. for (int i = 0; i < NUM_AXIS; i++) {
  643. current_speed[i] = delta_mm[i] * inverse_second;
  644. float cs = fabs(current_speed[i]), mf = max_feedrate[i];
  645. if (cs > mf) speed_factor = min(speed_factor, mf / cs);
  646. }
  647. // Max segement time in us.
  648. #ifdef XY_FREQUENCY_LIMIT
  649. #define MAX_FREQ_TIME (1000000.0 / XY_FREQUENCY_LIMIT)
  650. // Check and limit the xy direction change frequency
  651. unsigned char direction_change = block->direction_bits ^ old_direction_bits;
  652. old_direction_bits = block->direction_bits;
  653. segment_time = lround((float)segment_time / speed_factor);
  654. long xs0 = axis_segment_time[X_AXIS][0],
  655. xs1 = axis_segment_time[X_AXIS][1],
  656. xs2 = axis_segment_time[X_AXIS][2],
  657. ys0 = axis_segment_time[Y_AXIS][0],
  658. ys1 = axis_segment_time[Y_AXIS][1],
  659. ys2 = axis_segment_time[Y_AXIS][2];
  660. if ((direction_change & BIT(X_AXIS)) != 0) {
  661. xs2 = axis_segment_time[X_AXIS][2] = xs1;
  662. xs1 = axis_segment_time[X_AXIS][1] = xs0;
  663. xs0 = 0;
  664. }
  665. xs0 = axis_segment_time[X_AXIS][0] = xs0 + segment_time;
  666. if ((direction_change & BIT(Y_AXIS)) != 0) {
  667. ys2 = axis_segment_time[Y_AXIS][2] = axis_segment_time[Y_AXIS][1];
  668. ys1 = axis_segment_time[Y_AXIS][1] = axis_segment_time[Y_AXIS][0];
  669. ys0 = 0;
  670. }
  671. ys0 = axis_segment_time[Y_AXIS][0] = ys0 + segment_time;
  672. long max_x_segment_time = max(xs0, max(xs1, xs2)),
  673. max_y_segment_time = max(ys0, max(ys1, ys2)),
  674. min_xy_segment_time = min(max_x_segment_time, max_y_segment_time);
  675. if (min_xy_segment_time < MAX_FREQ_TIME) {
  676. float low_sf = speed_factor * min_xy_segment_time / MAX_FREQ_TIME;
  677. speed_factor = min(speed_factor, low_sf);
  678. }
  679. #endif // XY_FREQUENCY_LIMIT
  680. // Correct the speed
  681. if (speed_factor < 1.0) {
  682. for (unsigned char i = 0; i < NUM_AXIS; i++) current_speed[i] *= speed_factor;
  683. block->nominal_speed *= speed_factor;
  684. block->nominal_rate *= speed_factor;
  685. }
  686. // Compute and limit the acceleration rate for the trapezoid generator.
  687. float steps_per_mm = block->step_event_count / block->millimeters;
  688. long bsx = block->steps[X_AXIS], bsy = block->steps[Y_AXIS], bsz = block->steps[Z_AXIS], bse = block->steps[E_AXIS];
  689. if (bsx == 0 && bsy == 0 && bsz == 0) {
  690. block->acceleration_st = ceil(retract_acceleration * steps_per_mm); // convert to: acceleration steps/sec^2
  691. }
  692. else if (bse == 0) {
  693. block->acceleration_st = ceil(travel_acceleration * steps_per_mm); // convert to: acceleration steps/sec^2
  694. }
  695. else {
  696. block->acceleration_st = ceil(acceleration * steps_per_mm); // convert to: acceleration steps/sec^2
  697. }
  698. // Limit acceleration per axis
  699. unsigned long acc_st = block->acceleration_st,
  700. xsteps = axis_steps_per_sqr_second[X_AXIS],
  701. ysteps = axis_steps_per_sqr_second[Y_AXIS],
  702. zsteps = axis_steps_per_sqr_second[Z_AXIS],
  703. esteps = axis_steps_per_sqr_second[E_AXIS];
  704. if ((float)acc_st * bsx / block->step_event_count > xsteps) acc_st = xsteps;
  705. if ((float)acc_st * bsy / block->step_event_count > ysteps) acc_st = ysteps;
  706. if ((float)acc_st * bsz / block->step_event_count > zsteps) acc_st = zsteps;
  707. if ((float)acc_st * bse / block->step_event_count > esteps) acc_st = esteps;
  708. block->acceleration_st = acc_st;
  709. block->acceleration = acc_st / steps_per_mm;
  710. block->acceleration_rate = (long)(acc_st * 16777216.0 / (F_CPU / 8.0));
  711. #if 0 // Use old jerk for now
  712. // Compute path unit vector
  713. double unit_vec[3];
  714. unit_vec[X_AXIS] = delta_mm[X_AXIS]*inverse_millimeters;
  715. unit_vec[Y_AXIS] = delta_mm[Y_AXIS]*inverse_millimeters;
  716. unit_vec[Z_AXIS] = delta_mm[Z_AXIS]*inverse_millimeters;
  717. // Compute maximum allowable entry speed at junction by centripetal acceleration approximation.
  718. // Let a circle be tangent to both previous and current path line segments, where the junction
  719. // deviation is defined as the distance from the junction to the closest edge of the circle,
  720. // colinear with the circle center. The circular segment joining the two paths represents the
  721. // path of centripetal acceleration. Solve for max velocity based on max acceleration about the
  722. // radius of the circle, defined indirectly by junction deviation. This may be also viewed as
  723. // path width or max_jerk in the previous grbl version. This approach does not actually deviate
  724. // from path, but used as a robust way to compute cornering speeds, as it takes into account the
  725. // nonlinearities of both the junction angle and junction velocity.
  726. double vmax_junction = MINIMUM_PLANNER_SPEED; // Set default max junction speed
  727. // Skip first block or when previous_nominal_speed is used as a flag for homing and offset cycles.
  728. if ((block_buffer_head != block_buffer_tail) && (previous_nominal_speed > 0.0)) {
  729. // Compute cosine of angle between previous and current path. (prev_unit_vec is negative)
  730. // NOTE: Max junction velocity is computed without sin() or acos() by trig half angle identity.
  731. double cos_theta = - previous_unit_vec[X_AXIS] * unit_vec[X_AXIS]
  732. - previous_unit_vec[Y_AXIS] * unit_vec[Y_AXIS]
  733. - previous_unit_vec[Z_AXIS] * unit_vec[Z_AXIS] ;
  734. // Skip and use default max junction speed for 0 degree acute junction.
  735. if (cos_theta < 0.95) {
  736. vmax_junction = min(previous_nominal_speed,block->nominal_speed);
  737. // Skip and avoid divide by zero for straight junctions at 180 degrees. Limit to min() of nominal speeds.
  738. if (cos_theta > -0.95) {
  739. // Compute maximum junction velocity based on maximum acceleration and junction deviation
  740. double sin_theta_d2 = sqrt(0.5*(1.0-cos_theta)); // Trig half angle identity. Always positive.
  741. vmax_junction = min(vmax_junction,
  742. sqrt(block->acceleration * junction_deviation * sin_theta_d2/(1.0-sin_theta_d2)) );
  743. }
  744. }
  745. }
  746. #endif
  747. // Start with a safe speed
  748. float vmax_junction = max_xy_jerk / 2;
  749. float vmax_junction_factor = 1.0;
  750. float mz2 = max_z_jerk / 2, me2 = max_e_jerk / 2;
  751. float csz = current_speed[Z_AXIS], cse = current_speed[E_AXIS];
  752. if (fabs(csz) > mz2) vmax_junction = min(vmax_junction, mz2);
  753. if (fabs(cse) > me2) vmax_junction = min(vmax_junction, me2);
  754. vmax_junction = min(vmax_junction, block->nominal_speed);
  755. float safe_speed = vmax_junction;
  756. if ((moves_queued > 1) && (previous_nominal_speed > 0.0001)) {
  757. float dx = current_speed[X_AXIS] - previous_speed[X_AXIS],
  758. dy = current_speed[Y_AXIS] - previous_speed[Y_AXIS],
  759. dz = fabs(csz - previous_speed[Z_AXIS]),
  760. de = fabs(cse - previous_speed[E_AXIS]),
  761. jerk = sqrt(dx * dx + dy * dy);
  762. // if ((fabs(previous_speed[X_AXIS]) > 0.0001) || (fabs(previous_speed[Y_AXIS]) > 0.0001)) {
  763. vmax_junction = block->nominal_speed;
  764. // }
  765. if (jerk > max_xy_jerk) vmax_junction_factor = max_xy_jerk / jerk;
  766. if (dz > max_z_jerk) vmax_junction_factor = min(vmax_junction_factor, max_z_jerk / dz);
  767. if (de > max_e_jerk) vmax_junction_factor = min(vmax_junction_factor, max_e_jerk / de);
  768. vmax_junction = min(previous_nominal_speed, vmax_junction * vmax_junction_factor); // Limit speed to max previous speed
  769. }
  770. block->max_entry_speed = vmax_junction;
  771. // Initialize block entry speed. Compute based on deceleration to user-defined MINIMUM_PLANNER_SPEED.
  772. double v_allowable = max_allowable_speed(-block->acceleration, MINIMUM_PLANNER_SPEED, block->millimeters);
  773. block->entry_speed = min(vmax_junction, v_allowable);
  774. // Initialize planner efficiency flags
  775. // Set flag if block will always reach maximum junction speed regardless of entry/exit speeds.
  776. // If a block can de/ac-celerate from nominal speed to zero within the length of the block, then
  777. // the current block and next block junction speeds are guaranteed to always be at their maximum
  778. // junction speeds in deceleration and acceleration, respectively. This is due to how the current
  779. // block nominal speed limits both the current and next maximum junction speeds. Hence, in both
  780. // the reverse and forward planners, the corresponding block junction speed will always be at the
  781. // the maximum junction speed and may always be ignored for any speed reduction checks.
  782. block->nominal_length_flag = (block->nominal_speed <= v_allowable);
  783. block->recalculate_flag = true; // Always calculate trapezoid for new block
  784. // Update previous path unit_vector and nominal speed
  785. for (int i = 0; i < NUM_AXIS; i++) previous_speed[i] = current_speed[i];
  786. previous_nominal_speed = block->nominal_speed;
  787. #ifdef ADVANCE
  788. // Calculate advance rate
  789. if (!bse || (!bsx && !bsy && !bsz)) {
  790. block->advance_rate = 0;
  791. block->advance = 0;
  792. }
  793. else {
  794. long acc_dist = estimate_acceleration_distance(0, block->nominal_rate, block->acceleration_st);
  795. float advance = (STEPS_PER_CUBIC_MM_E * EXTRUDER_ADVANCE_K) * (cse * cse * EXTRUSION_AREA * EXTRUSION_AREA) * 256;
  796. block->advance = advance;
  797. block->advance_rate = acc_dist ? advance / (float)acc_dist : 0;
  798. }
  799. /*
  800. SERIAL_ECHO_START;
  801. SERIAL_ECHOPGM("advance :");
  802. SERIAL_ECHO(block->advance/256.0);
  803. SERIAL_ECHOPGM("advance rate :");
  804. SERIAL_ECHOLN(block->advance_rate/256.0);
  805. */
  806. #endif // ADVANCE
  807. calculate_trapezoid_for_block(block, block->entry_speed / block->nominal_speed, safe_speed / block->nominal_speed);
  808. // Move buffer head
  809. block_buffer_head = next_buffer_head;
  810. // Update position
  811. for (int i = 0; i < NUM_AXIS; i++) position[i] = target[i];
  812. planner_recalculate();
  813. st_wake_up();
  814. } // plan_buffer_line()
  815. #ifdef ENABLE_AUTO_BED_LEVELING
  816. #ifndef DELTA
  817. vector_3 plan_get_position() {
  818. vector_3 position = vector_3(st_get_position_mm(X_AXIS), st_get_position_mm(Y_AXIS), st_get_position_mm(Z_AXIS));
  819. //position.debug("in plan_get position");
  820. //plan_bed_level_matrix.debug("in plan_get bed_level");
  821. matrix_3x3 inverse = matrix_3x3::transpose(plan_bed_level_matrix);
  822. //inverse.debug("in plan_get inverse");
  823. position.apply_rotation(inverse);
  824. //position.debug("after rotation");
  825. return position;
  826. }
  827. #endif //!DELTA
  828. void plan_set_position(float x, float y, float z, const float &e)
  829. #else
  830. void plan_set_position(const float &x, const float &y, const float &z, const float &e)
  831. #endif // ENABLE_AUTO_BED_LEVELING
  832. {
  833. #ifdef ENABLE_AUTO_BED_LEVELING
  834. apply_rotation_xyz(plan_bed_level_matrix, x, y, z);
  835. #endif
  836. float nx = position[X_AXIS] = lround(x * axis_steps_per_unit[X_AXIS]);
  837. float ny = position[Y_AXIS] = lround(y * axis_steps_per_unit[Y_AXIS]);
  838. float nz = position[Z_AXIS] = lround(z * axis_steps_per_unit[Z_AXIS]);
  839. float ne = position[E_AXIS] = lround(e * axis_steps_per_unit[E_AXIS]);
  840. st_set_position(nx, ny, nz, ne);
  841. previous_nominal_speed = 0.0; // Resets planner junction speeds. Assumes start from rest.
  842. for (int i=0; i<NUM_AXIS; i++) previous_speed[i] = 0.0;
  843. }
  844. void plan_set_e_position(const float &e) {
  845. position[E_AXIS] = lround(e * axis_steps_per_unit[E_AXIS]);
  846. st_set_e_position(position[E_AXIS]);
  847. }
  848. #ifdef PREVENT_DANGEROUS_EXTRUDE
  849. void set_extrude_min_temp(float temp) { extrude_min_temp = temp; }
  850. #endif
  851. // Calculate the steps/s^2 acceleration rates, based on the mm/s^s
  852. void reset_acceleration_rates() {
  853. for (int i = 0; i < NUM_AXIS; i++)
  854. axis_steps_per_sqr_second[i] = max_acceleration_units_per_sq_second[i] * axis_steps_per_unit[i];
  855. }