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

planner.cpp 55KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. /**
  23. * planner.cpp
  24. *
  25. * Buffer movement commands and manage the acceleration profile plan
  26. *
  27. * Derived from Grbl
  28. * Copyright (c) 2009-2011 Simen Svale Skogsrud
  29. *
  30. * The ring buffer implementation gleaned from the wiring_serial library by David A. Mellis.
  31. *
  32. *
  33. * Reasoning behind the mathematics in this module (in the key of 'Mathematica'):
  34. *
  35. * s == speed, a == acceleration, t == time, d == distance
  36. *
  37. * Basic definitions:
  38. * Speed[s_, a_, t_] := s + (a*t)
  39. * Travel[s_, a_, t_] := Integrate[Speed[s, a, t], t]
  40. *
  41. * Distance to reach a specific speed with a constant acceleration:
  42. * Solve[{Speed[s, a, t] == m, Travel[s, a, t] == d}, d, t]
  43. * d -> (m^2 - s^2)/(2 a) --> estimate_acceleration_distance()
  44. *
  45. * Speed after a given distance of travel with constant acceleration:
  46. * Solve[{Speed[s, a, t] == m, Travel[s, a, t] == d}, m, t]
  47. * m -> Sqrt[2 a d + s^2]
  48. *
  49. * DestinationSpeed[s_, a_, d_] := Sqrt[2 a d + s^2]
  50. *
  51. * When to start braking (di) to reach a specified destination speed (s2) after accelerating
  52. * from initial speed s1 without ever stopping at a plateau:
  53. * Solve[{DestinationSpeed[s1, a, di] == DestinationSpeed[s2, a, d - di]}, di]
  54. * di -> (2 a d - s1^2 + s2^2)/(4 a) --> intersection_distance()
  55. *
  56. * IntersectionDistance[s1_, s2_, a_, d_] := (2 a d - s1^2 + s2^2)/(4 a)
  57. *
  58. */
  59. #include "planner.h"
  60. #include "stepper.h"
  61. #include "temperature.h"
  62. #include "ultralcd.h"
  63. #include "language.h"
  64. #include "Marlin.h"
  65. #if ENABLED(MESH_BED_LEVELING)
  66. #include "mesh_bed_leveling.h"
  67. #endif
  68. Planner planner;
  69. // public:
  70. /**
  71. * A ring buffer of moves described in steps
  72. */
  73. block_t Planner::block_buffer[BLOCK_BUFFER_SIZE];
  74. volatile uint8_t Planner::block_buffer_head = 0, // Index of the next block to be pushed
  75. Planner::block_buffer_tail = 0;
  76. float Planner::max_feedrate_mm_s[XYZE_N], // Max speeds in mm per second
  77. Planner::axis_steps_per_mm[XYZE_N],
  78. Planner::steps_to_mm[XYZE_N];
  79. #if ENABLED(DISTINCT_E_FACTORS)
  80. uint8_t Planner::last_extruder = 0; // Respond to extruder change
  81. #endif
  82. uint32_t Planner::max_acceleration_steps_per_s2[XYZE_N],
  83. Planner::max_acceleration_mm_per_s2[XYZE_N]; // Use M201 to override by software
  84. millis_t Planner::min_segment_time;
  85. float Planner::min_feedrate_mm_s,
  86. Planner::acceleration, // Normal acceleration mm/s^2 DEFAULT ACCELERATION for all printing moves. M204 SXXXX
  87. Planner::retract_acceleration, // Retract acceleration mm/s^2 filament pull-back and push-forward while standing still in the other axes M204 TXXXX
  88. Planner::travel_acceleration, // Travel acceleration mm/s^2 DEFAULT ACCELERATION for all NON printing moves. M204 MXXXX
  89. Planner::max_jerk[XYZE], // The largest speed change requiring no acceleration
  90. Planner::min_travel_feedrate_mm_s;
  91. #if HAS_ABL
  92. bool Planner::abl_enabled = false; // Flag that auto bed leveling is enabled
  93. #endif
  94. #if ABL_PLANAR
  95. matrix_3x3 Planner::bed_level_matrix; // Transform to compensate for bed level
  96. #endif
  97. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  98. float Planner::z_fade_height,
  99. Planner::inverse_z_fade_height;
  100. #endif
  101. #if ENABLED(AUTOTEMP)
  102. float Planner::autotemp_max = 250,
  103. Planner::autotemp_min = 210,
  104. Planner::autotemp_factor = 0.1;
  105. bool Planner::autotemp_enabled = false;
  106. #endif
  107. // private:
  108. long Planner::position[NUM_AXIS] = { 0 };
  109. uint32_t Planner::cutoff_long;
  110. float Planner::previous_speed[NUM_AXIS],
  111. Planner::previous_nominal_speed;
  112. #if ENABLED(DISABLE_INACTIVE_EXTRUDER)
  113. uint8_t Planner::g_uc_extruder_last_move[EXTRUDERS] = { 0 };
  114. #endif // DISABLE_INACTIVE_EXTRUDER
  115. #ifdef XY_FREQUENCY_LIMIT
  116. // Old direction bits. Used for speed calculations
  117. unsigned char Planner::old_direction_bits = 0;
  118. // Segment times (in µs). Used for speed calculations
  119. long Planner::axis_segment_time[2][3] = { {MAX_FREQ_TIME + 1, 0, 0}, {MAX_FREQ_TIME + 1, 0, 0} };
  120. #endif
  121. #if ENABLED(LIN_ADVANCE)
  122. float Planner::extruder_advance_k = LIN_ADVANCE_K,
  123. Planner::advance_ed_ratio = LIN_ADVANCE_E_D_RATIO,
  124. Planner::position_float[NUM_AXIS] = { 0 };
  125. #endif
  126. #if ENABLED(ULTRA_LCD)
  127. volatile uint32_t Planner::block_buffer_runtime_us = 0;
  128. #endif
  129. /**
  130. * Class and Instance Methods
  131. */
  132. Planner::Planner() { init(); }
  133. void Planner::init() {
  134. block_buffer_head = block_buffer_tail = 0;
  135. ZERO(position);
  136. #if ENABLED(LIN_ADVANCE)
  137. ZERO(position_float);
  138. #endif
  139. ZERO(previous_speed);
  140. previous_nominal_speed = 0.0;
  141. #if ABL_PLANAR
  142. bed_level_matrix.set_to_identity();
  143. #endif
  144. }
  145. #define MINIMAL_STEP_RATE 120
  146. /**
  147. * Calculate trapezoid parameters, multiplying the entry- and exit-speeds
  148. * by the provided factors.
  149. */
  150. void Planner::calculate_trapezoid_for_block(block_t* const block, const float &entry_factor, const float &exit_factor) {
  151. uint32_t initial_rate = ceil(block->nominal_rate * entry_factor),
  152. final_rate = ceil(block->nominal_rate * exit_factor); // (steps per second)
  153. // Limit minimal step rate (Otherwise the timer will overflow.)
  154. NOLESS(initial_rate, MINIMAL_STEP_RATE);
  155. NOLESS(final_rate, MINIMAL_STEP_RATE);
  156. int32_t accel = block->acceleration_steps_per_s2,
  157. accelerate_steps = ceil(estimate_acceleration_distance(initial_rate, block->nominal_rate, accel)),
  158. decelerate_steps = floor(estimate_acceleration_distance(block->nominal_rate, final_rate, -accel)),
  159. plateau_steps = block->step_event_count - accelerate_steps - decelerate_steps;
  160. // Is the Plateau of Nominal Rate smaller than nothing? That means no cruising, and we will
  161. // have to use intersection_distance() to calculate when to abort accel and start braking
  162. // in order to reach the final_rate exactly at the end of this block.
  163. if (plateau_steps < 0) {
  164. accelerate_steps = ceil(intersection_distance(initial_rate, final_rate, accel, block->step_event_count));
  165. NOLESS(accelerate_steps, 0); // Check limits due to numerical round-off
  166. 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)
  167. plateau_steps = 0;
  168. }
  169. // block->accelerate_until = accelerate_steps;
  170. // block->decelerate_after = accelerate_steps+plateau_steps;
  171. CRITICAL_SECTION_START; // Fill variables used by the stepper in a critical section
  172. if (!TEST(block->flag, BLOCK_BIT_BUSY)) { // Don't update variables if block is busy.
  173. block->accelerate_until = accelerate_steps;
  174. block->decelerate_after = accelerate_steps + plateau_steps;
  175. block->initial_rate = initial_rate;
  176. block->final_rate = final_rate;
  177. #if ENABLED(ADVANCE)
  178. block->initial_advance = block->advance * sq(entry_factor);
  179. block->final_advance = block->advance * sq(exit_factor);
  180. #endif
  181. }
  182. CRITICAL_SECTION_END;
  183. }
  184. // "Junction jerk" in this context is the immediate change in speed at the junction of two blocks.
  185. // This method will calculate the junction jerk as the euclidean distance between the nominal
  186. // velocities of the respective blocks.
  187. //inline float junction_jerk(block_t *before, block_t *after) {
  188. // return sqrt(
  189. // pow((before->speed_x-after->speed_x), 2)+pow((before->speed_y-after->speed_y), 2));
  190. //}
  191. // The kernel called by recalculate() when scanning the plan from last to first entry.
  192. void Planner::reverse_pass_kernel(block_t* const current, const block_t *next) {
  193. if (!current || !next) return;
  194. // If entry speed is already at the maximum entry speed, no need to recheck. Block is cruising.
  195. // If not, block in state of acceleration or deceleration. Reset entry speed to maximum and
  196. // check for maximum allowable speed reductions to ensure maximum possible planned speed.
  197. float max_entry_speed = current->max_entry_speed;
  198. if (current->entry_speed != max_entry_speed) {
  199. // If nominal length true, max junction speed is guaranteed to be reached. Only compute
  200. // for max allowable speed if block is decelerating and nominal length is false.
  201. current->entry_speed = (TEST(current->flag, BLOCK_BIT_NOMINAL_LENGTH) || max_entry_speed <= next->entry_speed)
  202. ? max_entry_speed
  203. : min(max_entry_speed, max_allowable_speed(-current->acceleration, next->entry_speed, current->millimeters));
  204. SBI(current->flag, BLOCK_BIT_RECALCULATE);
  205. }
  206. }
  207. /**
  208. * recalculate() needs to go over the current plan twice.
  209. * Once in reverse and once forward. This implements the reverse pass.
  210. */
  211. void Planner::reverse_pass() {
  212. if (movesplanned() > 3) {
  213. block_t* block[3] = { NULL, NULL, NULL };
  214. // Make a local copy of block_buffer_tail, because the interrupt can alter it
  215. // Is a critical section REALLY needed for a single byte change?
  216. //CRITICAL_SECTION_START;
  217. uint8_t tail = block_buffer_tail;
  218. //CRITICAL_SECTION_END
  219. uint8_t b = BLOCK_MOD(block_buffer_head - 3);
  220. while (b != tail) {
  221. if (block[0] && TEST(block[0]->flag, BLOCK_BIT_START_FROM_FULL_HALT)) break;
  222. b = prev_block_index(b);
  223. block[2] = block[1];
  224. block[1] = block[0];
  225. block[0] = &block_buffer[b];
  226. reverse_pass_kernel(block[1], block[2]);
  227. }
  228. }
  229. }
  230. // The kernel called by recalculate() when scanning the plan from first to last entry.
  231. void Planner::forward_pass_kernel(const block_t* previous, block_t* const current) {
  232. if (!previous) return;
  233. // If the previous block is an acceleration block, but it is not long enough to complete the
  234. // full speed change within the block, we need to adjust the entry speed accordingly. Entry
  235. // speeds have already been reset, maximized, and reverse planned by reverse planner.
  236. // If nominal length is true, max junction speed is guaranteed to be reached. No need to recheck.
  237. if (!TEST(previous->flag, BLOCK_BIT_NOMINAL_LENGTH)) {
  238. if (previous->entry_speed < current->entry_speed) {
  239. float entry_speed = min(current->entry_speed,
  240. max_allowable_speed(-previous->acceleration, previous->entry_speed, previous->millimeters));
  241. // Check for junction speed change
  242. if (current->entry_speed != entry_speed) {
  243. current->entry_speed = entry_speed;
  244. SBI(current->flag, BLOCK_BIT_RECALCULATE);
  245. }
  246. }
  247. }
  248. }
  249. /**
  250. * recalculate() needs to go over the current plan twice.
  251. * Once in reverse and once forward. This implements the forward pass.
  252. */
  253. void Planner::forward_pass() {
  254. block_t* block[3] = { NULL, NULL, NULL };
  255. for (uint8_t b = block_buffer_tail; b != block_buffer_head; b = next_block_index(b)) {
  256. block[0] = block[1];
  257. block[1] = block[2];
  258. block[2] = &block_buffer[b];
  259. forward_pass_kernel(block[0], block[1]);
  260. }
  261. forward_pass_kernel(block[1], block[2]);
  262. }
  263. /**
  264. * Recalculate the trapezoid speed profiles for all blocks in the plan
  265. * according to the entry_factor for each junction. Must be called by
  266. * recalculate() after updating the blocks.
  267. */
  268. void Planner::recalculate_trapezoids() {
  269. int8_t block_index = block_buffer_tail;
  270. block_t *current, *next = NULL;
  271. while (block_index != block_buffer_head) {
  272. current = next;
  273. next = &block_buffer[block_index];
  274. if (current) {
  275. // Recalculate if current block entry or exit junction speed has changed.
  276. if (TEST(current->flag, BLOCK_BIT_RECALCULATE) || TEST(next->flag, BLOCK_BIT_RECALCULATE)) {
  277. // NOTE: Entry and exit factors always > 0 by all previous logic operations.
  278. float nom = current->nominal_speed;
  279. calculate_trapezoid_for_block(current, current->entry_speed / nom, next->entry_speed / nom);
  280. CBI(current->flag, BLOCK_BIT_RECALCULATE); // Reset current only to ensure next trapezoid is computed
  281. }
  282. }
  283. block_index = next_block_index(block_index);
  284. }
  285. // Last/newest block in buffer. Exit speed is set with MINIMUM_PLANNER_SPEED. Always recalculated.
  286. if (next) {
  287. float nom = next->nominal_speed;
  288. calculate_trapezoid_for_block(next, next->entry_speed / nom, (MINIMUM_PLANNER_SPEED) / nom);
  289. CBI(next->flag, BLOCK_BIT_RECALCULATE);
  290. }
  291. }
  292. /*
  293. * Recalculate the motion plan according to the following algorithm:
  294. *
  295. * 1. Go over every block in reverse order...
  296. *
  297. * Calculate a junction speed reduction (block_t.entry_factor) so:
  298. *
  299. * a. The junction jerk is within the set limit, and
  300. *
  301. * b. No speed reduction within one block requires faster
  302. * deceleration than the one, true constant acceleration.
  303. *
  304. * 2. Go over every block in chronological order...
  305. *
  306. * Dial down junction speed reduction values if:
  307. * a. The speed increase within one block would require faster
  308. * acceleration than the one, true constant acceleration.
  309. *
  310. * After that, all blocks will have an entry_factor allowing all speed changes to
  311. * be performed using only the one, true constant acceleration, and where no junction
  312. * jerk is jerkier than the set limit, Jerky. Finally it will:
  313. *
  314. * 3. Recalculate "trapezoids" for all blocks.
  315. */
  316. void Planner::recalculate() {
  317. reverse_pass();
  318. forward_pass();
  319. recalculate_trapezoids();
  320. }
  321. #if ENABLED(AUTOTEMP)
  322. void Planner::getHighESpeed() {
  323. static float oldt = 0;
  324. if (!autotemp_enabled) return;
  325. if (thermalManager.degTargetHotend(0) + 2 < autotemp_min) return; // probably temperature set to zero.
  326. float high = 0.0;
  327. for (uint8_t b = block_buffer_tail; b != block_buffer_head; b = next_block_index(b)) {
  328. block_t* block = &block_buffer[b];
  329. if (block->steps[X_AXIS] || block->steps[Y_AXIS] || block->steps[Z_AXIS]) {
  330. float se = (float)block->steps[E_AXIS] / block->step_event_count * block->nominal_speed; // mm/sec;
  331. NOLESS(high, se);
  332. }
  333. }
  334. float t = autotemp_min + high * autotemp_factor;
  335. t = constrain(t, autotemp_min, autotemp_max);
  336. if (oldt > t) {
  337. t *= (1 - (AUTOTEMP_OLDWEIGHT));
  338. t += (AUTOTEMP_OLDWEIGHT) * oldt;
  339. }
  340. oldt = t;
  341. thermalManager.setTargetHotend(t, 0);
  342. }
  343. #endif //AUTOTEMP
  344. /**
  345. * Maintain fans, paste extruder pressure,
  346. */
  347. void Planner::check_axes_activity() {
  348. unsigned char axis_active[NUM_AXIS] = { 0 },
  349. tail_fan_speed[FAN_COUNT];
  350. #if FAN_COUNT > 0
  351. for (uint8_t i = 0; i < FAN_COUNT; i++) tail_fan_speed[i] = fanSpeeds[i];
  352. #endif
  353. #if ENABLED(BARICUDA)
  354. #if HAS_HEATER_1
  355. unsigned char tail_valve_pressure = baricuda_valve_pressure;
  356. #endif
  357. #if HAS_HEATER_2
  358. unsigned char tail_e_to_p_pressure = baricuda_e_to_p_pressure;
  359. #endif
  360. #endif
  361. if (blocks_queued()) {
  362. #if FAN_COUNT > 0
  363. for (uint8_t i = 0; i < FAN_COUNT; i++) tail_fan_speed[i] = block_buffer[block_buffer_tail].fan_speed[i];
  364. #endif
  365. block_t* block;
  366. #if ENABLED(BARICUDA)
  367. block = &block_buffer[block_buffer_tail];
  368. #if HAS_HEATER_1
  369. tail_valve_pressure = block->valve_pressure;
  370. #endif
  371. #if HAS_HEATER_2
  372. tail_e_to_p_pressure = block->e_to_p_pressure;
  373. #endif
  374. #endif
  375. for (uint8_t b = block_buffer_tail; b != block_buffer_head; b = next_block_index(b)) {
  376. block = &block_buffer[b];
  377. LOOP_XYZE(i) if (block->steps[i]) axis_active[i]++;
  378. }
  379. }
  380. #if ENABLED(DISABLE_X)
  381. if (!axis_active[X_AXIS]) disable_X();
  382. #endif
  383. #if ENABLED(DISABLE_Y)
  384. if (!axis_active[Y_AXIS]) disable_Y();
  385. #endif
  386. #if ENABLED(DISABLE_Z)
  387. if (!axis_active[Z_AXIS]) disable_Z();
  388. #endif
  389. #if ENABLED(DISABLE_E)
  390. if (!axis_active[E_AXIS]) disable_e_steppers();
  391. #endif
  392. #if FAN_COUNT > 0
  393. #ifdef FAN_MIN_PWM
  394. #define CALC_FAN_SPEED(f) (tail_fan_speed[f] ? ( FAN_MIN_PWM + (tail_fan_speed[f] * (255 - FAN_MIN_PWM)) / 255 ) : 0)
  395. #else
  396. #define CALC_FAN_SPEED(f) tail_fan_speed[f]
  397. #endif
  398. #ifdef FAN_KICKSTART_TIME
  399. static millis_t fan_kick_end[FAN_COUNT] = { 0 };
  400. #define KICKSTART_FAN(f) \
  401. if (tail_fan_speed[f]) { \
  402. millis_t ms = millis(); \
  403. if (fan_kick_end[f] == 0) { \
  404. fan_kick_end[f] = ms + FAN_KICKSTART_TIME; \
  405. tail_fan_speed[f] = 255; \
  406. } else { \
  407. if (PENDING(ms, fan_kick_end[f])) { \
  408. tail_fan_speed[f] = 255; \
  409. } \
  410. } \
  411. } else { \
  412. fan_kick_end[f] = 0; \
  413. }
  414. #if HAS_FAN0
  415. KICKSTART_FAN(0);
  416. #endif
  417. #if HAS_FAN1
  418. KICKSTART_FAN(1);
  419. #endif
  420. #if HAS_FAN2
  421. KICKSTART_FAN(2);
  422. #endif
  423. #endif //FAN_KICKSTART_TIME
  424. #if ENABLED(FAN_SOFT_PWM)
  425. #if HAS_FAN0
  426. thermalManager.fanSpeedSoftPwm[0] = CALC_FAN_SPEED(0);
  427. #endif
  428. #if HAS_FAN1
  429. thermalManager.fanSpeedSoftPwm[1] = CALC_FAN_SPEED(1);
  430. #endif
  431. #if HAS_FAN2
  432. thermalManager.fanSpeedSoftPwm[2] = CALC_FAN_SPEED(2);
  433. #endif
  434. #else
  435. #if HAS_FAN0
  436. analogWrite(FAN_PIN, CALC_FAN_SPEED(0));
  437. #endif
  438. #if HAS_FAN1
  439. analogWrite(FAN1_PIN, CALC_FAN_SPEED(1));
  440. #endif
  441. #if HAS_FAN2
  442. analogWrite(FAN2_PIN, CALC_FAN_SPEED(2));
  443. #endif
  444. #endif
  445. #endif // FAN_COUNT > 0
  446. #if ENABLED(AUTOTEMP)
  447. getHighESpeed();
  448. #endif
  449. #if ENABLED(BARICUDA)
  450. #if HAS_HEATER_1
  451. analogWrite(HEATER_1_PIN, tail_valve_pressure);
  452. #endif
  453. #if HAS_HEATER_2
  454. analogWrite(HEATER_2_PIN, tail_e_to_p_pressure);
  455. #endif
  456. #endif
  457. }
  458. #if PLANNER_LEVELING && DISABLED(AUTO_BED_LEVELING_UBL)
  459. /**
  460. * lx, ly, lz - logical (cartesian, not delta) positions in mm
  461. */
  462. void Planner::apply_leveling(float &lx, float &ly, float &lz) {
  463. #if HAS_ABL
  464. if (!abl_enabled) return;
  465. #endif
  466. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  467. static float z_fade_factor = 1.0, last_raw_lz = -999.0;
  468. if (z_fade_height) {
  469. const float raw_lz = RAW_Z_POSITION(lz);
  470. if (raw_lz >= z_fade_height) return;
  471. if (last_raw_lz != raw_lz) {
  472. last_raw_lz = raw_lz;
  473. z_fade_factor = 1.0 - raw_lz * inverse_z_fade_height;
  474. }
  475. }
  476. else
  477. z_fade_factor = 1.0;
  478. #endif
  479. #if ENABLED(MESH_BED_LEVELING)
  480. if (mbl.active())
  481. lz += mbl.get_z(RAW_X_POSITION(lx), RAW_Y_POSITION(ly)
  482. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  483. , z_fade_factor
  484. #endif
  485. );
  486. #elif ABL_PLANAR
  487. float dx = RAW_X_POSITION(lx) - (X_TILT_FULCRUM),
  488. dy = RAW_Y_POSITION(ly) - (Y_TILT_FULCRUM),
  489. dz = RAW_Z_POSITION(lz);
  490. apply_rotation_xyz(bed_level_matrix, dx, dy, dz);
  491. lx = LOGICAL_X_POSITION(dx + X_TILT_FULCRUM);
  492. ly = LOGICAL_Y_POSITION(dy + Y_TILT_FULCRUM);
  493. lz = LOGICAL_Z_POSITION(dz);
  494. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  495. float tmp[XYZ] = { lx, ly, 0 };
  496. lz += bilinear_z_offset(tmp)
  497. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  498. * z_fade_factor
  499. #endif
  500. ;
  501. #endif
  502. }
  503. void Planner::unapply_leveling(float logical[XYZ]) {
  504. #if HAS_ABL
  505. if (!abl_enabled) return;
  506. #endif
  507. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  508. if (z_fade_height && RAW_Z_POSITION(logical[Z_AXIS]) >= z_fade_height) return;
  509. #endif
  510. #if ENABLED(MESH_BED_LEVELING)
  511. if (mbl.active()) {
  512. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  513. const float c = mbl.get_z(RAW_X_POSITION(logical[X_AXIS]), RAW_Y_POSITION(logical[Y_AXIS]), 1.0);
  514. logical[Z_AXIS] = (z_fade_height * (RAW_Z_POSITION(logical[Z_AXIS]) - c)) / (z_fade_height - c);
  515. #else
  516. logical[Z_AXIS] -= mbl.get_z(RAW_X_POSITION(logical[X_AXIS]), RAW_Y_POSITION(logical[Y_AXIS]));
  517. #endif
  518. }
  519. #elif ABL_PLANAR
  520. matrix_3x3 inverse = matrix_3x3::transpose(bed_level_matrix);
  521. float dx = RAW_X_POSITION(logical[X_AXIS]) - (X_TILT_FULCRUM),
  522. dy = RAW_Y_POSITION(logical[Y_AXIS]) - (Y_TILT_FULCRUM),
  523. dz = RAW_Z_POSITION(logical[Z_AXIS]);
  524. apply_rotation_xyz(inverse, dx, dy, dz);
  525. logical[X_AXIS] = LOGICAL_X_POSITION(dx + X_TILT_FULCRUM);
  526. logical[Y_AXIS] = LOGICAL_Y_POSITION(dy + Y_TILT_FULCRUM);
  527. logical[Z_AXIS] = LOGICAL_Z_POSITION(dz);
  528. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  529. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  530. const float c = bilinear_z_offset(logical);
  531. logical[Z_AXIS] = (z_fade_height * (RAW_Z_POSITION(logical[Z_AXIS]) - c)) / (z_fade_height - c);
  532. #else
  533. logical[Z_AXIS] -= bilinear_z_offset(logical);
  534. #endif
  535. #endif
  536. }
  537. #endif // PLANNER_LEVELING && !AUTO_BED_LEVELING_UBL
  538. /**
  539. * Planner::_buffer_line
  540. *
  541. * Add a new linear movement to the buffer.
  542. *
  543. * Leveling and kinematics should be applied ahead of calling this.
  544. *
  545. * a,b,c,e - target positions in mm or degrees
  546. * fr_mm_s - (target) speed of the move
  547. * extruder - target extruder
  548. */
  549. void Planner::_buffer_line(const float &a, const float &b, const float &c, const float &e, float fr_mm_s, const uint8_t extruder) {
  550. // The target position of the tool in absolute steps
  551. // Calculate target position in absolute steps
  552. //this should be done after the wait, because otherwise a M92 code within the gcode disrupts this calculation somehow
  553. const long target[XYZE] = {
  554. lround(a * axis_steps_per_mm[X_AXIS]),
  555. lround(b * axis_steps_per_mm[Y_AXIS]),
  556. lround(c * axis_steps_per_mm[Z_AXIS]),
  557. lround(e * axis_steps_per_mm[E_AXIS_N])
  558. };
  559. // When changing extruders recalculate steps corresponding to the E position
  560. #if ENABLED(DISTINCT_E_FACTORS)
  561. if (last_extruder != extruder && axis_steps_per_mm[E_AXIS_N] != axis_steps_per_mm[E_AXIS + last_extruder]) {
  562. position[E_AXIS] = lround(position[E_AXIS] * axis_steps_per_mm[E_AXIS_N] * steps_to_mm[E_AXIS + last_extruder]);
  563. last_extruder = extruder;
  564. }
  565. #endif
  566. #if ENABLED(LIN_ADVANCE)
  567. const float mm_D_float = sqrt(sq(a - position_float[X_AXIS]) + sq(b - position_float[Y_AXIS]));
  568. #endif
  569. const long da = target[X_AXIS] - position[X_AXIS],
  570. db = target[Y_AXIS] - position[Y_AXIS],
  571. dc = target[Z_AXIS] - position[Z_AXIS];
  572. /*
  573. SERIAL_ECHOPAIR(" Planner FR:", fr_mm_s);
  574. SERIAL_CHAR(' ');
  575. #if IS_KINEMATIC
  576. SERIAL_ECHOPAIR("A:", a);
  577. SERIAL_ECHOPAIR(" (", da);
  578. SERIAL_ECHOPAIR(") B:", b);
  579. #else
  580. SERIAL_ECHOPAIR("X:", a);
  581. SERIAL_ECHOPAIR(" (", da);
  582. SERIAL_ECHOPAIR(") Y:", b);
  583. #endif
  584. SERIAL_ECHOPAIR(" (", db);
  585. #if ENABLED(DELTA)
  586. SERIAL_ECHOPAIR(") C:", c);
  587. #else
  588. SERIAL_ECHOPAIR(") Z:", c);
  589. #endif
  590. SERIAL_ECHOPAIR(" (", dc);
  591. SERIAL_CHAR(')');
  592. SERIAL_EOL;
  593. //*/
  594. // DRYRUN ignores all temperature constraints and assures that the extruder is instantly satisfied
  595. if (DEBUGGING(DRYRUN)) {
  596. position[E_AXIS] = target[E_AXIS];
  597. #if ENABLED(LIN_ADVANCE)
  598. position_float[E_AXIS] = e;
  599. #endif
  600. }
  601. long de = target[E_AXIS] - position[E_AXIS];
  602. #if ENABLED(LIN_ADVANCE)
  603. float de_float = e - position_float[E_AXIS];
  604. #endif
  605. #if ENABLED(PREVENT_COLD_EXTRUSION)
  606. if (de) {
  607. if (thermalManager.tooColdToExtrude(extruder)) {
  608. position[E_AXIS] = target[E_AXIS]; // Behave as if the move really took place, but ignore E part
  609. de = 0; // no difference
  610. #if ENABLED(LIN_ADVANCE)
  611. position_float[E_AXIS] = e;
  612. de_float = 0;
  613. #endif
  614. SERIAL_ECHO_START;
  615. SERIAL_ECHOLNPGM(MSG_ERR_COLD_EXTRUDE_STOP);
  616. }
  617. #if ENABLED(PREVENT_LENGTHY_EXTRUDE)
  618. if (labs(de) > (int32_t)axis_steps_per_mm[E_AXIS_N] * (EXTRUDE_MAXLENGTH)) { // It's not important to get max. extrusion length in a precision < 1mm, so save some cycles and cast to int
  619. position[E_AXIS] = target[E_AXIS]; // Behave as if the move really took place, but ignore E part
  620. de = 0; // no difference
  621. #if ENABLED(LIN_ADVANCE)
  622. position_float[E_AXIS] = e;
  623. de_float = 0;
  624. #endif
  625. SERIAL_ECHO_START;
  626. SERIAL_ECHOLNPGM(MSG_ERR_LONG_EXTRUDE_STOP);
  627. }
  628. #endif
  629. }
  630. #endif
  631. // Compute direction bit-mask for this block
  632. uint8_t dm = 0;
  633. #if CORE_IS_XY
  634. if (da < 0) SBI(dm, X_HEAD); // Save the real Extruder (head) direction in X Axis
  635. if (db < 0) SBI(dm, Y_HEAD); // ...and Y
  636. if (dc < 0) SBI(dm, Z_AXIS);
  637. if (da + db < 0) SBI(dm, A_AXIS); // Motor A direction
  638. if (CORESIGN(da - db) < 0) SBI(dm, B_AXIS); // Motor B direction
  639. #elif CORE_IS_XZ
  640. if (da < 0) SBI(dm, X_HEAD); // Save the real Extruder (head) direction in X Axis
  641. if (db < 0) SBI(dm, Y_AXIS);
  642. if (dc < 0) SBI(dm, Z_HEAD); // ...and Z
  643. if (da + dc < 0) SBI(dm, A_AXIS); // Motor A direction
  644. if (CORESIGN(da - dc) < 0) SBI(dm, C_AXIS); // Motor C direction
  645. #elif CORE_IS_YZ
  646. if (da < 0) SBI(dm, X_AXIS);
  647. if (db < 0) SBI(dm, Y_HEAD); // Save the real Extruder (head) direction in Y Axis
  648. if (dc < 0) SBI(dm, Z_HEAD); // ...and Z
  649. if (db + dc < 0) SBI(dm, B_AXIS); // Motor B direction
  650. if (CORESIGN(db - dc) < 0) SBI(dm, C_AXIS); // Motor C direction
  651. #else
  652. if (da < 0) SBI(dm, X_AXIS);
  653. if (db < 0) SBI(dm, Y_AXIS);
  654. if (dc < 0) SBI(dm, Z_AXIS);
  655. #endif
  656. if (de < 0) SBI(dm, E_AXIS);
  657. const float esteps_float = de * volumetric_multiplier[extruder] * flow_percentage[extruder] * 0.01;
  658. const int32_t esteps = abs(esteps_float) + 0.5;
  659. // Calculate the buffer head after we push this byte
  660. const uint8_t next_buffer_head = next_block_index(block_buffer_head);
  661. // If the buffer is full: good! That means we are well ahead of the robot.
  662. // Rest here until there is room in the buffer.
  663. while (block_buffer_tail == next_buffer_head) idle();
  664. // Prepare to set up new block
  665. block_t* block = &block_buffer[block_buffer_head];
  666. // Clear all flags, including the "busy" bit
  667. block->flag = 0;
  668. // Set direction bits
  669. block->direction_bits = dm;
  670. // Number of steps for each axis
  671. // See http://www.corexy.com/theory.html
  672. #if CORE_IS_XY
  673. block->steps[A_AXIS] = labs(da + db);
  674. block->steps[B_AXIS] = labs(da - db);
  675. block->steps[Z_AXIS] = labs(dc);
  676. #elif CORE_IS_XZ
  677. block->steps[A_AXIS] = labs(da + dc);
  678. block->steps[Y_AXIS] = labs(db);
  679. block->steps[C_AXIS] = labs(da - dc);
  680. #elif CORE_IS_YZ
  681. block->steps[X_AXIS] = labs(da);
  682. block->steps[B_AXIS] = labs(db + dc);
  683. block->steps[C_AXIS] = labs(db - dc);
  684. #else
  685. // default non-h-bot planning
  686. block->steps[X_AXIS] = labs(da);
  687. block->steps[Y_AXIS] = labs(db);
  688. block->steps[Z_AXIS] = labs(dc);
  689. #endif
  690. block->steps[E_AXIS] = esteps;
  691. block->step_event_count = MAX4(block->steps[X_AXIS], block->steps[Y_AXIS], block->steps[Z_AXIS], esteps);
  692. // Bail if this is a zero-length block
  693. if (block->step_event_count < MIN_STEPS_PER_SEGMENT) return;
  694. // For a mixing extruder, get a magnified step_event_count for each
  695. #if ENABLED(MIXING_EXTRUDER)
  696. for (uint8_t i = 0; i < MIXING_STEPPERS; i++)
  697. block->mix_event_count[i] = mixing_factor[i] * block->step_event_count;
  698. #endif
  699. #if FAN_COUNT > 0
  700. for (uint8_t i = 0; i < FAN_COUNT; i++) block->fan_speed[i] = fanSpeeds[i];
  701. #endif
  702. #if ENABLED(BARICUDA)
  703. block->valve_pressure = baricuda_valve_pressure;
  704. block->e_to_p_pressure = baricuda_e_to_p_pressure;
  705. #endif
  706. block->active_extruder = extruder;
  707. //enable active axes
  708. #if CORE_IS_XY
  709. if (block->steps[A_AXIS] || block->steps[B_AXIS]) {
  710. enable_X();
  711. enable_Y();
  712. }
  713. #if DISABLED(Z_LATE_ENABLE)
  714. if (block->steps[Z_AXIS]) enable_Z();
  715. #endif
  716. #elif CORE_IS_XZ
  717. if (block->steps[A_AXIS] || block->steps[C_AXIS]) {
  718. enable_X();
  719. enable_Z();
  720. }
  721. if (block->steps[Y_AXIS]) enable_Y();
  722. #elif CORE_IS_YZ
  723. if (block->steps[B_AXIS] || block->steps[C_AXIS]) {
  724. enable_Y();
  725. enable_Z();
  726. }
  727. if (block->steps[X_AXIS]) enable_X();
  728. #else
  729. if (block->steps[X_AXIS]) enable_X();
  730. if (block->steps[Y_AXIS]) enable_Y();
  731. #if DISABLED(Z_LATE_ENABLE)
  732. if (block->steps[Z_AXIS]) enable_Z();
  733. #endif
  734. #endif
  735. // Enable extruder(s)
  736. if (esteps) {
  737. #if ENABLED(DISABLE_INACTIVE_EXTRUDER) // Enable only the selected extruder
  738. for (uint8_t i = 0; i < EXTRUDERS; i++)
  739. if (g_uc_extruder_last_move[i] > 0) g_uc_extruder_last_move[i]--;
  740. switch(extruder) {
  741. case 0:
  742. enable_E0();
  743. #if ENABLED(DUAL_X_CARRIAGE)
  744. if (extruder_duplication_enabled) {
  745. enable_E1();
  746. g_uc_extruder_last_move[1] = (BLOCK_BUFFER_SIZE) * 2;
  747. }
  748. #endif
  749. g_uc_extruder_last_move[0] = (BLOCK_BUFFER_SIZE) * 2;
  750. #if EXTRUDERS > 1
  751. if (g_uc_extruder_last_move[1] == 0) disable_E1();
  752. #if EXTRUDERS > 2
  753. if (g_uc_extruder_last_move[2] == 0) disable_E2();
  754. #if EXTRUDERS > 3
  755. if (g_uc_extruder_last_move[3] == 0) disable_E3();
  756. #if EXTRUDERS > 4
  757. if (g_uc_extruder_last_move[4] == 0) disable_E4();
  758. #endif // EXTRUDERS > 4
  759. #endif // EXTRUDERS > 3
  760. #endif // EXTRUDERS > 2
  761. #endif // EXTRUDERS > 1
  762. break;
  763. #if EXTRUDERS > 1
  764. case 1:
  765. enable_E1();
  766. g_uc_extruder_last_move[1] = (BLOCK_BUFFER_SIZE) * 2;
  767. if (g_uc_extruder_last_move[0] == 0) disable_E0();
  768. #if EXTRUDERS > 2
  769. if (g_uc_extruder_last_move[2] == 0) disable_E2();
  770. #if EXTRUDERS > 3
  771. if (g_uc_extruder_last_move[3] == 0) disable_E3();
  772. #if EXTRUDERS > 4
  773. if (g_uc_extruder_last_move[4] == 0) disable_E4();
  774. #endif // EXTRUDERS > 4
  775. #endif // EXTRUDERS > 3
  776. #endif // EXTRUDERS > 2
  777. break;
  778. #if EXTRUDERS > 2
  779. case 2:
  780. enable_E2();
  781. g_uc_extruder_last_move[2] = (BLOCK_BUFFER_SIZE) * 2;
  782. if (g_uc_extruder_last_move[0] == 0) disable_E0();
  783. if (g_uc_extruder_last_move[1] == 0) disable_E1();
  784. #if EXTRUDERS > 3
  785. if (g_uc_extruder_last_move[3] == 0) disable_E3();
  786. #if EXTRUDERS > 4
  787. if (g_uc_extruder_last_move[4] == 0) disable_E4();
  788. #endif
  789. #endif
  790. break;
  791. #if EXTRUDERS > 3
  792. case 3:
  793. enable_E3();
  794. g_uc_extruder_last_move[3] = (BLOCK_BUFFER_SIZE) * 2;
  795. if (g_uc_extruder_last_move[0] == 0) disable_E0();
  796. if (g_uc_extruder_last_move[1] == 0) disable_E1();
  797. if (g_uc_extruder_last_move[2] == 0) disable_E2();
  798. #if EXTRUDERS > 4
  799. if (g_uc_extruder_last_move[4] == 0) disable_E4();
  800. #endif
  801. break;
  802. #if EXTRUDERS > 4
  803. case 4:
  804. enable_E4();
  805. g_uc_extruder_last_move[4] = (BLOCK_BUFFER_SIZE) * 2;
  806. if (g_uc_extruder_last_move[0] == 0) disable_E0();
  807. if (g_uc_extruder_last_move[1] == 0) disable_E1();
  808. if (g_uc_extruder_last_move[2] == 0) disable_E2();
  809. if (g_uc_extruder_last_move[3] == 0) disable_E3();
  810. break;
  811. #endif // EXTRUDERS > 4
  812. #endif // EXTRUDERS > 3
  813. #endif // EXTRUDERS > 2
  814. #endif // EXTRUDERS > 1
  815. }
  816. #else
  817. enable_E0();
  818. enable_E1();
  819. enable_E2();
  820. enable_E3();
  821. enable_E4();
  822. #endif
  823. }
  824. if (esteps)
  825. NOLESS(fr_mm_s, min_feedrate_mm_s);
  826. else
  827. NOLESS(fr_mm_s, min_travel_feedrate_mm_s);
  828. /**
  829. * This part of the code calculates the total length of the movement.
  830. * For cartesian bots, the X_AXIS is the real X movement and same for Y_AXIS.
  831. * But for corexy bots, that is not true. The "X_AXIS" and "Y_AXIS" motors (that should be named to A_AXIS
  832. * and B_AXIS) cannot be used for X and Y length, because A=X+Y and B=X-Y.
  833. * So we need to create other 2 "AXIS", named X_HEAD and Y_HEAD, meaning the real displacement of the Head.
  834. * Having the real displacement of the head, we can calculate the total movement length and apply the desired speed.
  835. */
  836. #if IS_CORE
  837. float delta_mm[Z_HEAD + 1];
  838. #if CORE_IS_XY
  839. delta_mm[X_HEAD] = da * steps_to_mm[A_AXIS];
  840. delta_mm[Y_HEAD] = db * steps_to_mm[B_AXIS];
  841. delta_mm[Z_AXIS] = dc * steps_to_mm[Z_AXIS];
  842. delta_mm[A_AXIS] = (da + db) * steps_to_mm[A_AXIS];
  843. delta_mm[B_AXIS] = CORESIGN(da - db) * steps_to_mm[B_AXIS];
  844. #elif CORE_IS_XZ
  845. delta_mm[X_HEAD] = da * steps_to_mm[A_AXIS];
  846. delta_mm[Y_AXIS] = db * steps_to_mm[Y_AXIS];
  847. delta_mm[Z_HEAD] = dc * steps_to_mm[C_AXIS];
  848. delta_mm[A_AXIS] = (da + dc) * steps_to_mm[A_AXIS];
  849. delta_mm[C_AXIS] = CORESIGN(da - dc) * steps_to_mm[C_AXIS];
  850. #elif CORE_IS_YZ
  851. delta_mm[X_AXIS] = da * steps_to_mm[X_AXIS];
  852. delta_mm[Y_HEAD] = db * steps_to_mm[B_AXIS];
  853. delta_mm[Z_HEAD] = dc * steps_to_mm[C_AXIS];
  854. delta_mm[B_AXIS] = (db + dc) * steps_to_mm[B_AXIS];
  855. delta_mm[C_AXIS] = CORESIGN(db - dc) * steps_to_mm[C_AXIS];
  856. #endif
  857. #else
  858. float delta_mm[XYZE];
  859. delta_mm[X_AXIS] = da * steps_to_mm[X_AXIS];
  860. delta_mm[Y_AXIS] = db * steps_to_mm[Y_AXIS];
  861. delta_mm[Z_AXIS] = dc * steps_to_mm[Z_AXIS];
  862. #endif
  863. delta_mm[E_AXIS] = esteps_float * steps_to_mm[E_AXIS_N];
  864. if (block->steps[X_AXIS] < MIN_STEPS_PER_SEGMENT && block->steps[Y_AXIS] < MIN_STEPS_PER_SEGMENT && block->steps[Z_AXIS] < MIN_STEPS_PER_SEGMENT) {
  865. block->millimeters = fabs(delta_mm[E_AXIS]);
  866. }
  867. else {
  868. block->millimeters = sqrt(
  869. #if CORE_IS_XY
  870. sq(delta_mm[X_HEAD]) + sq(delta_mm[Y_HEAD]) + sq(delta_mm[Z_AXIS])
  871. #elif CORE_IS_XZ
  872. sq(delta_mm[X_HEAD]) + sq(delta_mm[Y_AXIS]) + sq(delta_mm[Z_HEAD])
  873. #elif CORE_IS_YZ
  874. sq(delta_mm[X_AXIS]) + sq(delta_mm[Y_HEAD]) + sq(delta_mm[Z_HEAD])
  875. #else
  876. sq(delta_mm[X_AXIS]) + sq(delta_mm[Y_AXIS]) + sq(delta_mm[Z_AXIS])
  877. #endif
  878. );
  879. }
  880. float inverse_millimeters = 1.0 / block->millimeters; // Inverse millimeters to remove multiple divides
  881. // Calculate moves/second for this move. No divide by zero due to previous checks.
  882. float inverse_mm_s = fr_mm_s * inverse_millimeters;
  883. const uint8_t moves_queued = movesplanned();
  884. // Slow down when the buffer starts to empty, rather than wait at the corner for a buffer refill
  885. #if ENABLED(SLOWDOWN) || ENABLED(ULTRA_LCD) || defined(XY_FREQUENCY_LIMIT)
  886. // Segment time im micro seconds
  887. unsigned long segment_time = lround(1000000.0 / inverse_mm_s);
  888. #endif
  889. #if ENABLED(SLOWDOWN)
  890. if (WITHIN(moves_queued, 2, (BLOCK_BUFFER_SIZE) / 2 - 1)) {
  891. if (segment_time < min_segment_time) {
  892. // buffer is draining, add extra time. The amount of time added increases if the buffer is still emptied more.
  893. inverse_mm_s = 1000000.0 / (segment_time + lround(2 * (min_segment_time - segment_time) / moves_queued));
  894. #if defined(XY_FREQUENCY_LIMIT) || ENABLED(ULTRA_LCD)
  895. segment_time = lround(1000000.0 / inverse_mm_s);
  896. #endif
  897. }
  898. }
  899. #endif
  900. #if ENABLED(ULTRA_LCD)
  901. CRITICAL_SECTION_START
  902. block_buffer_runtime_us += segment_time;
  903. CRITICAL_SECTION_END
  904. #endif
  905. block->nominal_speed = block->millimeters * inverse_mm_s; // (mm/sec) Always > 0
  906. block->nominal_rate = ceil(block->step_event_count * inverse_mm_s); // (step/sec) Always > 0
  907. #if ENABLED(FILAMENT_WIDTH_SENSOR)
  908. static float filwidth_e_count = 0, filwidth_delay_dist = 0;
  909. //FMM update ring buffer used for delay with filament measurements
  910. if (extruder == FILAMENT_SENSOR_EXTRUDER_NUM && filwidth_delay_index[1] >= 0) { //only for extruder with filament sensor and if ring buffer is initialized
  911. const int MMD_CM = MAX_MEASUREMENT_DELAY + 1, MMD_MM = MMD_CM * 10;
  912. // increment counters with next move in e axis
  913. filwidth_e_count += delta_mm[E_AXIS];
  914. filwidth_delay_dist += delta_mm[E_AXIS];
  915. // Only get new measurements on forward E movement
  916. if (filwidth_e_count > 0.0001) {
  917. // Loop the delay distance counter (modulus by the mm length)
  918. while (filwidth_delay_dist >= MMD_MM) filwidth_delay_dist -= MMD_MM;
  919. // Convert into an index into the measurement array
  920. filwidth_delay_index[0] = (int)(filwidth_delay_dist * 0.1 + 0.0001);
  921. // If the index has changed (must have gone forward)...
  922. if (filwidth_delay_index[0] != filwidth_delay_index[1]) {
  923. filwidth_e_count = 0; // Reset the E movement counter
  924. const int8_t meas_sample = thermalManager.widthFil_to_size_ratio() - 100; // Subtract 100 to reduce magnitude - to store in a signed char
  925. do {
  926. filwidth_delay_index[1] = (filwidth_delay_index[1] + 1) % MMD_CM; // The next unused slot
  927. measurement_delay[filwidth_delay_index[1]] = meas_sample; // Store the measurement
  928. } while (filwidth_delay_index[0] != filwidth_delay_index[1]); // More slots to fill?
  929. }
  930. }
  931. }
  932. #endif
  933. // Calculate and limit speed in mm/sec for each axis
  934. float current_speed[NUM_AXIS], speed_factor = 1.0; // factor <1 decreases speed
  935. LOOP_XYZE(i) {
  936. const float cs = fabs(current_speed[i] = delta_mm[i] * inverse_mm_s);
  937. #if ENABLED(DISTINCT_E_FACTORS)
  938. if (i == E_AXIS) i += extruder;
  939. #endif
  940. if (cs > max_feedrate_mm_s[i]) NOMORE(speed_factor, max_feedrate_mm_s[i] / cs);
  941. }
  942. // Max segment time in µs.
  943. #ifdef XY_FREQUENCY_LIMIT
  944. // Check and limit the xy direction change frequency
  945. const unsigned char direction_change = block->direction_bits ^ old_direction_bits;
  946. old_direction_bits = block->direction_bits;
  947. segment_time = lround((float)segment_time / speed_factor);
  948. long xs0 = axis_segment_time[X_AXIS][0],
  949. xs1 = axis_segment_time[X_AXIS][1],
  950. xs2 = axis_segment_time[X_AXIS][2],
  951. ys0 = axis_segment_time[Y_AXIS][0],
  952. ys1 = axis_segment_time[Y_AXIS][1],
  953. ys2 = axis_segment_time[Y_AXIS][2];
  954. if (TEST(direction_change, X_AXIS)) {
  955. xs2 = axis_segment_time[X_AXIS][2] = xs1;
  956. xs1 = axis_segment_time[X_AXIS][1] = xs0;
  957. xs0 = 0;
  958. }
  959. xs0 = axis_segment_time[X_AXIS][0] = xs0 + segment_time;
  960. if (TEST(direction_change, Y_AXIS)) {
  961. ys2 = axis_segment_time[Y_AXIS][2] = axis_segment_time[Y_AXIS][1];
  962. ys1 = axis_segment_time[Y_AXIS][1] = axis_segment_time[Y_AXIS][0];
  963. ys0 = 0;
  964. }
  965. ys0 = axis_segment_time[Y_AXIS][0] = ys0 + segment_time;
  966. const long max_x_segment_time = MAX3(xs0, xs1, xs2),
  967. max_y_segment_time = MAX3(ys0, ys1, ys2),
  968. min_xy_segment_time = min(max_x_segment_time, max_y_segment_time);
  969. if (min_xy_segment_time < MAX_FREQ_TIME) {
  970. const float low_sf = speed_factor * min_xy_segment_time / (MAX_FREQ_TIME);
  971. NOMORE(speed_factor, low_sf);
  972. }
  973. #endif // XY_FREQUENCY_LIMIT
  974. // Correct the speed
  975. if (speed_factor < 1.0) {
  976. LOOP_XYZE(i) current_speed[i] *= speed_factor;
  977. block->nominal_speed *= speed_factor;
  978. block->nominal_rate *= speed_factor;
  979. }
  980. // Compute and limit the acceleration rate for the trapezoid generator.
  981. const float steps_per_mm = block->step_event_count * inverse_millimeters;
  982. uint32_t accel;
  983. if (!block->steps[X_AXIS] && !block->steps[Y_AXIS] && !block->steps[Z_AXIS]) {
  984. // convert to: acceleration steps/sec^2
  985. accel = ceil(retract_acceleration * steps_per_mm);
  986. }
  987. else {
  988. #define LIMIT_ACCEL_LONG(AXIS,INDX) do{ \
  989. if (block->steps[AXIS] && max_acceleration_steps_per_s2[AXIS+INDX] < accel) { \
  990. const uint32_t comp = max_acceleration_steps_per_s2[AXIS+INDX] * block->step_event_count; \
  991. if (accel * block->steps[AXIS] > comp) accel = comp / block->steps[AXIS]; \
  992. } \
  993. }while(0)
  994. #define LIMIT_ACCEL_FLOAT(AXIS,INDX) do{ \
  995. if (block->steps[AXIS] && max_acceleration_steps_per_s2[AXIS+INDX] < accel) { \
  996. const float comp = (float)max_acceleration_steps_per_s2[AXIS+INDX] * (float)block->step_event_count; \
  997. if ((float)accel * (float)block->steps[AXIS] > comp) accel = comp / (float)block->steps[AXIS]; \
  998. } \
  999. }while(0)
  1000. // Start with print or travel acceleration
  1001. accel = ceil((esteps ? acceleration : travel_acceleration) * steps_per_mm);
  1002. #if ENABLED(DISTINCT_E_FACTORS)
  1003. #define ACCEL_IDX extruder
  1004. #else
  1005. #define ACCEL_IDX 0
  1006. #endif
  1007. // Limit acceleration per axis
  1008. if (block->step_event_count <= cutoff_long) {
  1009. LIMIT_ACCEL_LONG(X_AXIS, 0);
  1010. LIMIT_ACCEL_LONG(Y_AXIS, 0);
  1011. LIMIT_ACCEL_LONG(Z_AXIS, 0);
  1012. LIMIT_ACCEL_LONG(E_AXIS, ACCEL_IDX);
  1013. }
  1014. else {
  1015. LIMIT_ACCEL_FLOAT(X_AXIS, 0);
  1016. LIMIT_ACCEL_FLOAT(Y_AXIS, 0);
  1017. LIMIT_ACCEL_FLOAT(Z_AXIS, 0);
  1018. LIMIT_ACCEL_FLOAT(E_AXIS, ACCEL_IDX);
  1019. }
  1020. }
  1021. block->acceleration_steps_per_s2 = accel;
  1022. block->acceleration = accel / steps_per_mm;
  1023. block->acceleration_rate = (long)(accel * 16777216.0 / ((F_CPU) * 0.125)); // * 8.388608
  1024. // Initial limit on the segment entry velocity
  1025. float vmax_junction;
  1026. #if 0 // Use old jerk for now
  1027. float junction_deviation = 0.1;
  1028. // Compute path unit vector
  1029. double unit_vec[XYZ] = {
  1030. delta_mm[X_AXIS] * inverse_millimeters,
  1031. delta_mm[Y_AXIS] * inverse_millimeters,
  1032. delta_mm[Z_AXIS] * inverse_millimeters
  1033. };
  1034. /*
  1035. Compute maximum allowable entry speed at junction by centripetal acceleration approximation.
  1036. Let a circle be tangent to both previous and current path line segments, where the junction
  1037. deviation is defined as the distance from the junction to the closest edge of the circle,
  1038. collinear with the circle center.
  1039. The circular segment joining the two paths represents the path of centripetal acceleration.
  1040. Solve for max velocity based on max acceleration about the radius of the circle, defined
  1041. indirectly by junction deviation.
  1042. This may be also viewed as path width or max_jerk in the previous grbl version. This approach
  1043. does not actually deviate from path, but used as a robust way to compute cornering speeds, as
  1044. it takes into account the nonlinearities of both the junction angle and junction velocity.
  1045. */
  1046. vmax_junction = MINIMUM_PLANNER_SPEED; // Set default max junction speed
  1047. // Skip first block or when previous_nominal_speed is used as a flag for homing and offset cycles.
  1048. if (block_buffer_head != block_buffer_tail && previous_nominal_speed > 0.0) {
  1049. // Compute cosine of angle between previous and current path. (prev_unit_vec is negative)
  1050. // NOTE: Max junction velocity is computed without sin() or acos() by trig half angle identity.
  1051. float cos_theta = - previous_unit_vec[X_AXIS] * unit_vec[X_AXIS]
  1052. - previous_unit_vec[Y_AXIS] * unit_vec[Y_AXIS]
  1053. - previous_unit_vec[Z_AXIS] * unit_vec[Z_AXIS] ;
  1054. // Skip and use default max junction speed for 0 degree acute junction.
  1055. if (cos_theta < 0.95) {
  1056. vmax_junction = min(previous_nominal_speed, block->nominal_speed);
  1057. // Skip and avoid divide by zero for straight junctions at 180 degrees. Limit to min() of nominal speeds.
  1058. if (cos_theta > -0.95) {
  1059. // Compute maximum junction velocity based on maximum acceleration and junction deviation
  1060. float sin_theta_d2 = sqrt(0.5 * (1.0 - cos_theta)); // Trig half angle identity. Always positive.
  1061. NOMORE(vmax_junction, sqrt(block->acceleration * junction_deviation * sin_theta_d2 / (1.0 - sin_theta_d2)));
  1062. }
  1063. }
  1064. }
  1065. #endif
  1066. /**
  1067. * Adapted from Prusa MKS firmware
  1068. *
  1069. * Start with a safe speed (from which the machine may halt to stop immediately).
  1070. */
  1071. // Exit speed limited by a jerk to full halt of a previous last segment
  1072. static float previous_safe_speed;
  1073. float safe_speed = block->nominal_speed;
  1074. uint8_t limited = 0;
  1075. LOOP_XYZE(i) {
  1076. const float jerk = fabs(current_speed[i]), maxj = max_jerk[i];
  1077. if (jerk > maxj) {
  1078. if (limited) {
  1079. const float mjerk = maxj * block->nominal_speed;
  1080. if (jerk * safe_speed > mjerk) safe_speed = mjerk / jerk;
  1081. }
  1082. else {
  1083. ++limited;
  1084. safe_speed = maxj;
  1085. }
  1086. }
  1087. }
  1088. if (moves_queued > 1 && previous_nominal_speed > 0.0001) {
  1089. // Estimate a maximum velocity allowed at a joint of two successive segments.
  1090. // If this maximum velocity allowed is lower than the minimum of the entry / exit safe velocities,
  1091. // then the machine is not coasting anymore and the safe entry / exit velocities shall be used.
  1092. // The junction velocity will be shared between successive segments. Limit the junction velocity to their minimum.
  1093. bool prev_speed_larger = previous_nominal_speed > block->nominal_speed;
  1094. float smaller_speed_factor = prev_speed_larger ? (block->nominal_speed / previous_nominal_speed) : (previous_nominal_speed / block->nominal_speed);
  1095. // Pick the smaller of the nominal speeds. Higher speed shall not be achieved at the junction during coasting.
  1096. vmax_junction = prev_speed_larger ? block->nominal_speed : previous_nominal_speed;
  1097. // Factor to multiply the previous / current nominal velocities to get componentwise limited velocities.
  1098. float v_factor = 1.f;
  1099. limited = 0;
  1100. // Now limit the jerk in all axes.
  1101. LOOP_XYZE(axis) {
  1102. // Limit an axis. We have to differentiate: coasting, reversal of an axis, full stop.
  1103. float v_exit = previous_speed[axis], v_entry = current_speed[axis];
  1104. if (prev_speed_larger) v_exit *= smaller_speed_factor;
  1105. if (limited) {
  1106. v_exit *= v_factor;
  1107. v_entry *= v_factor;
  1108. }
  1109. // Calculate jerk depending on whether the axis is coasting in the same direction or reversing.
  1110. const float jerk = (v_exit > v_entry)
  1111. ? // coasting axis reversal
  1112. ( (v_entry > 0.f || v_exit < 0.f) ? (v_exit - v_entry) : max(v_exit, -v_entry) )
  1113. : // v_exit <= v_entry coasting axis reversal
  1114. ( (v_entry < 0.f || v_exit > 0.f) ? (v_entry - v_exit) : max(-v_exit, v_entry) );
  1115. if (jerk > max_jerk[axis]) {
  1116. v_factor *= max_jerk[axis] / jerk;
  1117. ++limited;
  1118. }
  1119. }
  1120. if (limited) vmax_junction *= v_factor;
  1121. // Now the transition velocity is known, which maximizes the shared exit / entry velocity while
  1122. // respecting the jerk factors, it may be possible, that applying separate safe exit / entry velocities will achieve faster prints.
  1123. const float vmax_junction_threshold = vmax_junction * 0.99f;
  1124. if (previous_safe_speed > vmax_junction_threshold && safe_speed > vmax_junction_threshold) {
  1125. // Not coasting. The machine will stop and start the movements anyway,
  1126. // better to start the segment from start.
  1127. SBI(block->flag, BLOCK_BIT_START_FROM_FULL_HALT);
  1128. vmax_junction = safe_speed;
  1129. }
  1130. }
  1131. else {
  1132. SBI(block->flag, BLOCK_BIT_START_FROM_FULL_HALT);
  1133. vmax_junction = safe_speed;
  1134. }
  1135. // Max entry speed of this block equals the max exit speed of the previous block.
  1136. block->max_entry_speed = vmax_junction;
  1137. // Initialize block entry speed. Compute based on deceleration to user-defined MINIMUM_PLANNER_SPEED.
  1138. const float v_allowable = max_allowable_speed(-block->acceleration, MINIMUM_PLANNER_SPEED, block->millimeters);
  1139. block->entry_speed = min(vmax_junction, v_allowable);
  1140. // Initialize planner efficiency flags
  1141. // Set flag if block will always reach maximum junction speed regardless of entry/exit speeds.
  1142. // If a block can de/ac-celerate from nominal speed to zero within the length of the block, then
  1143. // the current block and next block junction speeds are guaranteed to always be at their maximum
  1144. // junction speeds in deceleration and acceleration, respectively. This is due to how the current
  1145. // block nominal speed limits both the current and next maximum junction speeds. Hence, in both
  1146. // the reverse and forward planners, the corresponding block junction speed will always be at the
  1147. // the maximum junction speed and may always be ignored for any speed reduction checks.
  1148. block->flag |= BLOCK_FLAG_RECALCULATE | (block->nominal_speed <= v_allowable ? BLOCK_FLAG_NOMINAL_LENGTH : 0);
  1149. // Update previous path unit_vector and nominal speed
  1150. COPY(previous_speed, current_speed);
  1151. previous_nominal_speed = block->nominal_speed;
  1152. previous_safe_speed = safe_speed;
  1153. #if ENABLED(LIN_ADVANCE)
  1154. //
  1155. // Use LIN_ADVANCE for blocks if all these are true:
  1156. //
  1157. // esteps : We have E steps todo (a printing move)
  1158. //
  1159. // block->steps[X_AXIS] || block->steps[Y_AXIS] : We have a movement in XY direction (i.e., not retract / prime).
  1160. //
  1161. // extruder_advance_k : There is an advance factor set.
  1162. //
  1163. // block->steps[E_AXIS] != block->step_event_count : A problem occurs if the move before a retract is too small.
  1164. // In that case, the retract and move will be executed together.
  1165. // This leads to too many advance steps due to a huge e_acceleration.
  1166. // The math is good, but we must avoid retract moves with advance!
  1167. // de_float > 0.0 : Extruder is running forward (e.g., for "Wipe while retracting" (Slic3r) or "Combing" (Cura) moves)
  1168. //
  1169. block->use_advance_lead = esteps
  1170. && (block->steps[X_AXIS] || block->steps[Y_AXIS])
  1171. && extruder_advance_k
  1172. && (uint32_t)esteps != block->step_event_count
  1173. && de_float > 0.0;
  1174. if (block->use_advance_lead)
  1175. block->abs_adv_steps_multiplier8 = lround(
  1176. extruder_advance_k
  1177. * (UNEAR_ZERO(advance_ed_ratio) ? de_float / mm_D_float : advance_ed_ratio) // Use the fixed ratio, if set
  1178. * (block->nominal_speed / (float)block->nominal_rate)
  1179. * axis_steps_per_mm[E_AXIS_N] * 256.0
  1180. );
  1181. #elif ENABLED(ADVANCE)
  1182. // Calculate advance rate
  1183. if (esteps && (block->steps[X_AXIS] || block->steps[Y_AXIS] || block->steps[Z_AXIS])) {
  1184. const long acc_dist = estimate_acceleration_distance(0, block->nominal_rate, block->acceleration_steps_per_s2);
  1185. const float advance = ((STEPS_PER_CUBIC_MM_E) * (EXTRUDER_ADVANCE_K)) * HYPOT(current_speed[E_AXIS], EXTRUSION_AREA) * 256;
  1186. block->advance = advance;
  1187. block->advance_rate = acc_dist ? advance / (float)acc_dist : 0;
  1188. }
  1189. else
  1190. block->advance_rate = block->advance = 0;
  1191. /**
  1192. SERIAL_ECHO_START;
  1193. SERIAL_ECHOPGM("advance :");
  1194. SERIAL_ECHO(block->advance/256.0);
  1195. SERIAL_ECHOPGM("advance rate :");
  1196. SERIAL_ECHOLN(block->advance_rate/256.0);
  1197. */
  1198. #endif // ADVANCE or LIN_ADVANCE
  1199. calculate_trapezoid_for_block(block, block->entry_speed / block->nominal_speed, safe_speed / block->nominal_speed);
  1200. // Move buffer head
  1201. block_buffer_head = next_buffer_head;
  1202. // Update the position (only when a move was queued)
  1203. COPY(position, target);
  1204. #if ENABLED(LIN_ADVANCE)
  1205. position_float[X_AXIS] = a;
  1206. position_float[Y_AXIS] = b;
  1207. position_float[Z_AXIS] = c;
  1208. position_float[E_AXIS] = e;
  1209. #endif
  1210. recalculate();
  1211. stepper.wake_up();
  1212. } // buffer_line()
  1213. /**
  1214. * Directly set the planner XYZ position (and stepper positions)
  1215. * converting mm (or angles for SCARA) into steps.
  1216. *
  1217. * On CORE machines stepper ABC will be translated from the given XYZ.
  1218. */
  1219. void Planner::_set_position_mm(const float &a, const float &b, const float &c, const float &e) {
  1220. #if ENABLED(DISTINCT_E_FACTORS)
  1221. #define _EINDEX (E_AXIS + active_extruder)
  1222. last_extruder = active_extruder;
  1223. #else
  1224. #define _EINDEX E_AXIS
  1225. #endif
  1226. long na = position[X_AXIS] = lround(a * axis_steps_per_mm[X_AXIS]),
  1227. nb = position[Y_AXIS] = lround(b * axis_steps_per_mm[Y_AXIS]),
  1228. nc = position[Z_AXIS] = lround(c * axis_steps_per_mm[Z_AXIS]),
  1229. ne = position[E_AXIS] = lround(e * axis_steps_per_mm[_EINDEX]);
  1230. #if ENABLED(LIN_ADVANCE)
  1231. position_float[X_AXIS] = a;
  1232. position_float[Y_AXIS] = b;
  1233. position_float[Z_AXIS] = c;
  1234. position_float[E_AXIS] = e;
  1235. #endif
  1236. stepper.set_position(na, nb, nc, ne);
  1237. previous_nominal_speed = 0.0; // Resets planner junction speeds. Assumes start from rest.
  1238. ZERO(previous_speed);
  1239. }
  1240. void Planner::set_position_mm_kinematic(const float position[NUM_AXIS]) {
  1241. #if PLANNER_LEVELING && DISABLED(AUTO_BED_LEVELING_UBL)
  1242. float lpos[XYZ] = { position[X_AXIS], position[Y_AXIS], position[Z_AXIS] };
  1243. apply_leveling(lpos);
  1244. #else
  1245. const float * const lpos = position;
  1246. #endif
  1247. #if IS_KINEMATIC
  1248. inverse_kinematics(lpos);
  1249. _set_position_mm(delta[A_AXIS], delta[B_AXIS], delta[C_AXIS], position[E_AXIS]);
  1250. #else
  1251. _set_position_mm(lpos[X_AXIS], lpos[Y_AXIS], lpos[Z_AXIS], position[E_AXIS]);
  1252. #endif
  1253. }
  1254. /**
  1255. * Sync from the stepper positions. (e.g., after an interrupted move)
  1256. */
  1257. void Planner::sync_from_steppers() {
  1258. LOOP_XYZE(i) {
  1259. position[i] = stepper.position((AxisEnum)i);
  1260. #if ENABLED(LIN_ADVANCE)
  1261. position_float[i] = position[i] * steps_to_mm[i
  1262. #if ENABLED(DISTINCT_E_FACTORS)
  1263. + (i == E_AXIS ? active_extruder : 0)
  1264. #endif
  1265. ];
  1266. #endif
  1267. }
  1268. }
  1269. /**
  1270. * Setters for planner position (also setting stepper position).
  1271. */
  1272. void Planner::set_position_mm(const AxisEnum axis, const float& v) {
  1273. #if ENABLED(DISTINCT_E_FACTORS)
  1274. const uint8_t axis_index = axis + (axis == E_AXIS ? active_extruder : 0);
  1275. last_extruder = active_extruder;
  1276. #else
  1277. const uint8_t axis_index = axis;
  1278. #endif
  1279. position[axis] = lround(v * axis_steps_per_mm[axis_index]);
  1280. #if ENABLED(LIN_ADVANCE)
  1281. position_float[axis] = v;
  1282. #endif
  1283. stepper.set_position(axis, v);
  1284. previous_speed[axis] = 0.0;
  1285. }
  1286. // Recalculate the steps/s^2 acceleration rates, based on the mm/s^2
  1287. void Planner::reset_acceleration_rates() {
  1288. #if ENABLED(DISTINCT_E_FACTORS)
  1289. #define HIGHEST_CONDITION (i < E_AXIS || i == E_AXIS + active_extruder)
  1290. #else
  1291. #define HIGHEST_CONDITION true
  1292. #endif
  1293. uint32_t highest_rate = 1;
  1294. LOOP_XYZE_N(i) {
  1295. max_acceleration_steps_per_s2[i] = max_acceleration_mm_per_s2[i] * axis_steps_per_mm[i];
  1296. if (HIGHEST_CONDITION) NOLESS(highest_rate, max_acceleration_steps_per_s2[i]);
  1297. }
  1298. cutoff_long = 4294967295UL / highest_rate;
  1299. }
  1300. // Recalculate position, steps_to_mm if axis_steps_per_mm changes!
  1301. void Planner::refresh_positioning() {
  1302. LOOP_XYZE_N(i) steps_to_mm[i] = 1.0 / axis_steps_per_mm[i];
  1303. set_position_mm_kinematic(current_position);
  1304. reset_acceleration_rates();
  1305. }
  1306. #if ENABLED(AUTOTEMP)
  1307. void Planner::autotemp_M104_M109() {
  1308. autotemp_enabled = code_seen('F');
  1309. if (autotemp_enabled) autotemp_factor = code_value_temp_diff();
  1310. if (code_seen('S')) autotemp_min = code_value_temp_abs();
  1311. if (code_seen('B')) autotemp_max = code_value_temp_abs();
  1312. }
  1313. #endif