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 54KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495
  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 = 0.0,
  99. Planner::inverse_z_fade_height = 0.0;
  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]) {
  391. disable_e0();
  392. disable_e1();
  393. disable_e2();
  394. disable_e3();
  395. }
  396. #endif
  397. #if FAN_COUNT > 0
  398. #if defined(FAN_MIN_PWM)
  399. #define CALC_FAN_SPEED(f) (tail_fan_speed[f] ? ( FAN_MIN_PWM + (tail_fan_speed[f] * (255 - FAN_MIN_PWM)) / 255 ) : 0)
  400. #else
  401. #define CALC_FAN_SPEED(f) tail_fan_speed[f]
  402. #endif
  403. #ifdef FAN_KICKSTART_TIME
  404. static millis_t fan_kick_end[FAN_COUNT] = { 0 };
  405. #define KICKSTART_FAN(f) \
  406. if (tail_fan_speed[f]) { \
  407. millis_t ms = millis(); \
  408. if (fan_kick_end[f] == 0) { \
  409. fan_kick_end[f] = ms + FAN_KICKSTART_TIME; \
  410. tail_fan_speed[f] = 255; \
  411. } else { \
  412. if (PENDING(ms, fan_kick_end[f])) { \
  413. tail_fan_speed[f] = 255; \
  414. } \
  415. } \
  416. } else { \
  417. fan_kick_end[f] = 0; \
  418. }
  419. #if HAS_FAN0
  420. KICKSTART_FAN(0);
  421. #endif
  422. #if HAS_FAN1
  423. KICKSTART_FAN(1);
  424. #endif
  425. #if HAS_FAN2
  426. KICKSTART_FAN(2);
  427. #endif
  428. #endif //FAN_KICKSTART_TIME
  429. #if ENABLED(FAN_SOFT_PWM)
  430. #if HAS_FAN0
  431. thermalManager.fanSpeedSoftPwm[0] = CALC_FAN_SPEED(0);
  432. #endif
  433. #if HAS_FAN1
  434. thermalManager.fanSpeedSoftPwm[1] = CALC_FAN_SPEED(1);
  435. #endif
  436. #if HAS_FAN2
  437. thermalManager.fanSpeedSoftPwm[2] = CALC_FAN_SPEED(2);
  438. #endif
  439. #else
  440. #if HAS_FAN0
  441. analogWrite(FAN_PIN, CALC_FAN_SPEED(0));
  442. #endif
  443. #if HAS_FAN1
  444. analogWrite(FAN1_PIN, CALC_FAN_SPEED(1));
  445. #endif
  446. #if HAS_FAN2
  447. analogWrite(FAN2_PIN, CALC_FAN_SPEED(2));
  448. #endif
  449. #endif
  450. #endif // FAN_COUNT > 0
  451. #if ENABLED(AUTOTEMP)
  452. getHighESpeed();
  453. #endif
  454. #if ENABLED(BARICUDA)
  455. #if HAS_HEATER_1
  456. analogWrite(HEATER_1_PIN, tail_valve_pressure);
  457. #endif
  458. #if HAS_HEATER_2
  459. analogWrite(HEATER_2_PIN, tail_e_to_p_pressure);
  460. #endif
  461. #endif
  462. }
  463. #if PLANNER_LEVELING
  464. /**
  465. * lx, ly, lz - logical (cartesian, not delta) positions in mm
  466. */
  467. void Planner::apply_leveling(float &lx, float &ly, float &lz) {
  468. #if HAS_ABL
  469. if (!abl_enabled) return;
  470. #endif
  471. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  472. static float z_fade_factor = 1.0, last_raw_lz = -999.0;
  473. if (z_fade_height) {
  474. const float raw_lz = RAW_Z_POSITION(lz);
  475. if (raw_lz >= z_fade_height) return;
  476. if (last_raw_lz != raw_lz) {
  477. last_raw_lz = raw_lz;
  478. z_fade_factor = 1.0 - raw_lz * inverse_z_fade_height;
  479. }
  480. }
  481. else
  482. z_fade_factor = 1.0;
  483. #endif
  484. #if ENABLED(MESH_BED_LEVELING)
  485. if (mbl.active())
  486. lz += mbl.get_z(RAW_X_POSITION(lx), RAW_Y_POSITION(ly)
  487. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  488. , z_fade_factor
  489. #endif
  490. );
  491. #elif ABL_PLANAR
  492. float dx = RAW_X_POSITION(lx) - (X_TILT_FULCRUM),
  493. dy = RAW_Y_POSITION(ly) - (Y_TILT_FULCRUM),
  494. dz = RAW_Z_POSITION(lz);
  495. apply_rotation_xyz(bed_level_matrix, dx, dy, dz);
  496. lx = LOGICAL_X_POSITION(dx + X_TILT_FULCRUM);
  497. ly = LOGICAL_Y_POSITION(dy + Y_TILT_FULCRUM);
  498. lz = LOGICAL_Z_POSITION(dz);
  499. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  500. float tmp[XYZ] = { lx, ly, 0 };
  501. lz += bilinear_z_offset(tmp)
  502. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  503. * z_fade_factor
  504. #endif
  505. ;
  506. #endif
  507. }
  508. void Planner::unapply_leveling(float logical[XYZ]) {
  509. #if HAS_ABL
  510. if (!abl_enabled) return;
  511. #endif
  512. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  513. if (z_fade_height && RAW_Z_POSITION(logical[Z_AXIS]) >= z_fade_height) return;
  514. #endif
  515. #if ENABLED(MESH_BED_LEVELING)
  516. if (mbl.active()) {
  517. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  518. const float c = mbl.get_z(RAW_X_POSITION(logical[X_AXIS]), RAW_Y_POSITION(logical[Y_AXIS]), 1.0);
  519. logical[Z_AXIS] = (z_fade_height * (RAW_Z_POSITION(logical[Z_AXIS]) - c)) / (z_fade_height - c);
  520. #else
  521. logical[Z_AXIS] -= mbl.get_z(RAW_X_POSITION(logical[X_AXIS]), RAW_Y_POSITION(logical[Y_AXIS]));
  522. #endif
  523. }
  524. #elif ABL_PLANAR
  525. matrix_3x3 inverse = matrix_3x3::transpose(bed_level_matrix);
  526. float dx = RAW_X_POSITION(logical[X_AXIS]) - (X_TILT_FULCRUM),
  527. dy = RAW_Y_POSITION(logical[Y_AXIS]) - (Y_TILT_FULCRUM),
  528. dz = RAW_Z_POSITION(logical[Z_AXIS]);
  529. apply_rotation_xyz(inverse, dx, dy, dz);
  530. logical[X_AXIS] = LOGICAL_X_POSITION(dx + X_TILT_FULCRUM);
  531. logical[Y_AXIS] = LOGICAL_Y_POSITION(dy + Y_TILT_FULCRUM);
  532. logical[Z_AXIS] = LOGICAL_Z_POSITION(dz);
  533. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  534. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  535. const float c = bilinear_z_offset(logical);
  536. logical[Z_AXIS] = (z_fade_height * (RAW_Z_POSITION(logical[Z_AXIS]) - c)) / (z_fade_height - c);
  537. #else
  538. logical[Z_AXIS] -= bilinear_z_offset(logical);
  539. #endif
  540. #endif
  541. }
  542. #endif // PLANNER_LEVELING
  543. /**
  544. * Planner::_buffer_line
  545. *
  546. * Add a new linear movement to the buffer.
  547. *
  548. * Leveling and kinematics should be applied ahead of calling this.
  549. *
  550. * a,b,c,e - target positions in mm or degrees
  551. * fr_mm_s - (target) speed of the move
  552. * extruder - target extruder
  553. */
  554. void Planner::_buffer_line(const float &a, const float &b, const float &c, const float &e, float fr_mm_s, const uint8_t extruder) {
  555. // The target position of the tool in absolute steps
  556. // Calculate target position in absolute steps
  557. //this should be done after the wait, because otherwise a M92 code within the gcode disrupts this calculation somehow
  558. const long target[XYZE] = {
  559. lround(a * axis_steps_per_mm[X_AXIS]),
  560. lround(b * axis_steps_per_mm[Y_AXIS]),
  561. lround(c * axis_steps_per_mm[Z_AXIS]),
  562. lround(e * axis_steps_per_mm[E_AXIS_N])
  563. };
  564. // When changing extruders recalculate steps corresponding to the E position
  565. #if ENABLED(DISTINCT_E_FACTORS)
  566. if (last_extruder != extruder && axis_steps_per_mm[E_AXIS_N] != axis_steps_per_mm[E_AXIS + last_extruder]) {
  567. position[E_AXIS] = lround(position[E_AXIS] * axis_steps_per_mm[E_AXIS_N] * steps_to_mm[E_AXIS + last_extruder]);
  568. last_extruder = extruder;
  569. }
  570. #endif
  571. #if ENABLED(LIN_ADVANCE)
  572. const float mm_D_float = sqrt(sq(a - position_float[X_AXIS]) + sq(b - position_float[Y_AXIS]));
  573. #endif
  574. const long da = target[X_AXIS] - position[X_AXIS],
  575. db = target[Y_AXIS] - position[Y_AXIS],
  576. dc = target[Z_AXIS] - position[Z_AXIS];
  577. /*
  578. SERIAL_ECHOPAIR(" Planner FR:", fr_mm_s);
  579. SERIAL_CHAR(' ');
  580. #if IS_KINEMATIC
  581. SERIAL_ECHOPAIR("A:", a);
  582. SERIAL_ECHOPAIR(" (", da);
  583. SERIAL_ECHOPAIR(") B:", b);
  584. #else
  585. SERIAL_ECHOPAIR("X:", a);
  586. SERIAL_ECHOPAIR(" (", da);
  587. SERIAL_ECHOPAIR(") Y:", b);
  588. #endif
  589. SERIAL_ECHOPAIR(" (", db);
  590. #if ENABLED(DELTA)
  591. SERIAL_ECHOPAIR(") C:", c);
  592. #else
  593. SERIAL_ECHOPAIR(") Z:", c);
  594. #endif
  595. SERIAL_ECHOPAIR(" (", dc);
  596. SERIAL_CHAR(')');
  597. SERIAL_EOL;
  598. //*/
  599. // DRYRUN ignores all temperature constraints and assures that the extruder is instantly satisfied
  600. if (DEBUGGING(DRYRUN)) {
  601. position[E_AXIS] = target[E_AXIS];
  602. #if ENABLED(LIN_ADVANCE)
  603. position_float[E_AXIS] = e;
  604. #endif
  605. }
  606. long de = target[E_AXIS] - position[E_AXIS];
  607. #if ENABLED(LIN_ADVANCE)
  608. float de_float = e - position_float[E_AXIS];
  609. #endif
  610. #if ENABLED(PREVENT_COLD_EXTRUSION)
  611. if (de) {
  612. if (thermalManager.tooColdToExtrude(extruder)) {
  613. position[E_AXIS] = target[E_AXIS]; // Behave as if the move really took place, but ignore E part
  614. de = 0; // no difference
  615. #if ENABLED(LIN_ADVANCE)
  616. position_float[E_AXIS] = e;
  617. de_float = 0;
  618. #endif
  619. SERIAL_ECHO_START;
  620. SERIAL_ECHOLNPGM(MSG_ERR_COLD_EXTRUDE_STOP);
  621. }
  622. #if ENABLED(PREVENT_LENGTHY_EXTRUDE)
  623. 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
  624. position[E_AXIS] = target[E_AXIS]; // Behave as if the move really took place, but ignore E part
  625. de = 0; // no difference
  626. #if ENABLED(LIN_ADVANCE)
  627. position_float[E_AXIS] = e;
  628. de_float = 0;
  629. #endif
  630. SERIAL_ECHO_START;
  631. SERIAL_ECHOLNPGM(MSG_ERR_LONG_EXTRUDE_STOP);
  632. }
  633. #endif
  634. }
  635. #endif
  636. // Compute direction bit-mask for this block
  637. uint8_t dm = 0;
  638. #if CORE_IS_XY
  639. if (da < 0) SBI(dm, X_HEAD); // Save the real Extruder (head) direction in X Axis
  640. if (db < 0) SBI(dm, Y_HEAD); // ...and Y
  641. if (dc < 0) SBI(dm, Z_AXIS);
  642. if (da + db < 0) SBI(dm, A_AXIS); // Motor A direction
  643. if (CORESIGN(da - db) < 0) SBI(dm, B_AXIS); // Motor B direction
  644. #elif CORE_IS_XZ
  645. if (da < 0) SBI(dm, X_HEAD); // Save the real Extruder (head) direction in X Axis
  646. if (db < 0) SBI(dm, Y_AXIS);
  647. if (dc < 0) SBI(dm, Z_HEAD); // ...and Z
  648. if (da + dc < 0) SBI(dm, A_AXIS); // Motor A direction
  649. if (CORESIGN(da - dc) < 0) SBI(dm, C_AXIS); // Motor C direction
  650. #elif CORE_IS_YZ
  651. if (da < 0) SBI(dm, X_AXIS);
  652. if (db < 0) SBI(dm, Y_HEAD); // Save the real Extruder (head) direction in Y Axis
  653. if (dc < 0) SBI(dm, Z_HEAD); // ...and Z
  654. if (db + dc < 0) SBI(dm, B_AXIS); // Motor B direction
  655. if (CORESIGN(db - dc) < 0) SBI(dm, C_AXIS); // Motor C direction
  656. #else
  657. if (da < 0) SBI(dm, X_AXIS);
  658. if (db < 0) SBI(dm, Y_AXIS);
  659. if (dc < 0) SBI(dm, Z_AXIS);
  660. #endif
  661. if (de < 0) SBI(dm, E_AXIS);
  662. const float esteps_float = de * volumetric_multiplier[extruder] * flow_percentage[extruder] * 0.01;
  663. const int32_t esteps = abs(esteps_float) + 0.5;
  664. // Calculate the buffer head after we push this byte
  665. const uint8_t next_buffer_head = next_block_index(block_buffer_head);
  666. // If the buffer is full: good! That means we are well ahead of the robot.
  667. // Rest here until there is room in the buffer.
  668. while (block_buffer_tail == next_buffer_head) idle();
  669. // Prepare to set up new block
  670. block_t* block = &block_buffer[block_buffer_head];
  671. // Clear all flags, including the "busy" bit
  672. block->flag = 0;
  673. // Set direction bits
  674. block->direction_bits = dm;
  675. // Number of steps for each axis
  676. // See http://www.corexy.com/theory.html
  677. #if CORE_IS_XY
  678. block->steps[A_AXIS] = labs(da + db);
  679. block->steps[B_AXIS] = labs(da - db);
  680. block->steps[Z_AXIS] = labs(dc);
  681. #elif CORE_IS_XZ
  682. block->steps[A_AXIS] = labs(da + dc);
  683. block->steps[Y_AXIS] = labs(db);
  684. block->steps[C_AXIS] = labs(da - dc);
  685. #elif CORE_IS_YZ
  686. block->steps[X_AXIS] = labs(da);
  687. block->steps[B_AXIS] = labs(db + dc);
  688. block->steps[C_AXIS] = labs(db - dc);
  689. #else
  690. // default non-h-bot planning
  691. block->steps[X_AXIS] = labs(da);
  692. block->steps[Y_AXIS] = labs(db);
  693. block->steps[Z_AXIS] = labs(dc);
  694. #endif
  695. block->steps[E_AXIS] = esteps;
  696. block->step_event_count = MAX4(block->steps[X_AXIS], block->steps[Y_AXIS], block->steps[Z_AXIS], esteps);
  697. // Bail if this is a zero-length block
  698. if (block->step_event_count < MIN_STEPS_PER_SEGMENT) return;
  699. // For a mixing extruder, get a magnified step_event_count for each
  700. #if ENABLED(MIXING_EXTRUDER)
  701. for (uint8_t i = 0; i < MIXING_STEPPERS; i++)
  702. block->mix_event_count[i] = mixing_factor[i] * block->step_event_count;
  703. #endif
  704. #if FAN_COUNT > 0
  705. for (uint8_t i = 0; i < FAN_COUNT; i++) block->fan_speed[i] = fanSpeeds[i];
  706. #endif
  707. #if ENABLED(BARICUDA)
  708. block->valve_pressure = baricuda_valve_pressure;
  709. block->e_to_p_pressure = baricuda_e_to_p_pressure;
  710. #endif
  711. block->active_extruder = extruder;
  712. //enable active axes
  713. #if CORE_IS_XY
  714. if (block->steps[A_AXIS] || block->steps[B_AXIS]) {
  715. enable_x();
  716. enable_y();
  717. }
  718. #if DISABLED(Z_LATE_ENABLE)
  719. if (block->steps[Z_AXIS]) enable_z();
  720. #endif
  721. #elif CORE_IS_XZ
  722. if (block->steps[A_AXIS] || block->steps[C_AXIS]) {
  723. enable_x();
  724. enable_z();
  725. }
  726. if (block->steps[Y_AXIS]) enable_y();
  727. #elif CORE_IS_YZ
  728. if (block->steps[B_AXIS] || block->steps[C_AXIS]) {
  729. enable_y();
  730. enable_z();
  731. }
  732. if (block->steps[X_AXIS]) enable_x();
  733. #else
  734. if (block->steps[X_AXIS]) enable_x();
  735. if (block->steps[Y_AXIS]) enable_y();
  736. #if DISABLED(Z_LATE_ENABLE)
  737. if (block->steps[Z_AXIS]) enable_z();
  738. #endif
  739. #endif
  740. // Enable extruder(s)
  741. if (esteps) {
  742. #if ENABLED(DISABLE_INACTIVE_EXTRUDER) // Enable only the selected extruder
  743. for (uint8_t i = 0; i < EXTRUDERS; i++)
  744. if (g_uc_extruder_last_move[i] > 0) g_uc_extruder_last_move[i]--;
  745. switch(extruder) {
  746. case 0:
  747. enable_e0();
  748. #if ENABLED(DUAL_X_CARRIAGE)
  749. if (extruder_duplication_enabled) {
  750. enable_e1();
  751. g_uc_extruder_last_move[1] = (BLOCK_BUFFER_SIZE) * 2;
  752. }
  753. #endif
  754. g_uc_extruder_last_move[0] = (BLOCK_BUFFER_SIZE) * 2;
  755. #if EXTRUDERS > 1
  756. if (g_uc_extruder_last_move[1] == 0) disable_e1();
  757. #if EXTRUDERS > 2
  758. if (g_uc_extruder_last_move[2] == 0) disable_e2();
  759. #if EXTRUDERS > 3
  760. if (g_uc_extruder_last_move[3] == 0) disable_e3();
  761. #endif
  762. #endif
  763. #endif
  764. break;
  765. #if EXTRUDERS > 1
  766. case 1:
  767. enable_e1();
  768. g_uc_extruder_last_move[1] = (BLOCK_BUFFER_SIZE) * 2;
  769. if (g_uc_extruder_last_move[0] == 0) disable_e0();
  770. #if EXTRUDERS > 2
  771. if (g_uc_extruder_last_move[2] == 0) disable_e2();
  772. #if EXTRUDERS > 3
  773. if (g_uc_extruder_last_move[3] == 0) disable_e3();
  774. #endif
  775. #endif
  776. break;
  777. #if EXTRUDERS > 2
  778. case 2:
  779. enable_e2();
  780. g_uc_extruder_last_move[2] = (BLOCK_BUFFER_SIZE) * 2;
  781. if (g_uc_extruder_last_move[0] == 0) disable_e0();
  782. if (g_uc_extruder_last_move[1] == 0) disable_e1();
  783. #if EXTRUDERS > 3
  784. if (g_uc_extruder_last_move[3] == 0) disable_e3();
  785. #endif
  786. break;
  787. #if EXTRUDERS > 3
  788. case 3:
  789. enable_e3();
  790. g_uc_extruder_last_move[3] = (BLOCK_BUFFER_SIZE) * 2;
  791. if (g_uc_extruder_last_move[0] == 0) disable_e0();
  792. if (g_uc_extruder_last_move[1] == 0) disable_e1();
  793. if (g_uc_extruder_last_move[2] == 0) disable_e2();
  794. break;
  795. #endif // EXTRUDERS > 3
  796. #endif // EXTRUDERS > 2
  797. #endif // EXTRUDERS > 1
  798. }
  799. #else
  800. enable_e0();
  801. enable_e1();
  802. enable_e2();
  803. enable_e3();
  804. #endif
  805. }
  806. if (esteps)
  807. NOLESS(fr_mm_s, min_feedrate_mm_s);
  808. else
  809. NOLESS(fr_mm_s, min_travel_feedrate_mm_s);
  810. /**
  811. * This part of the code calculates the total length of the movement.
  812. * For cartesian bots, the X_AXIS is the real X movement and same for Y_AXIS.
  813. * But for corexy bots, that is not true. The "X_AXIS" and "Y_AXIS" motors (that should be named to A_AXIS
  814. * and B_AXIS) cannot be used for X and Y length, because A=X+Y and B=X-Y.
  815. * So we need to create other 2 "AXIS", named X_HEAD and Y_HEAD, meaning the real displacement of the Head.
  816. * Having the real displacement of the head, we can calculate the total movement length and apply the desired speed.
  817. */
  818. #if IS_CORE
  819. float delta_mm[7];
  820. #if CORE_IS_XY
  821. delta_mm[X_HEAD] = da * steps_to_mm[A_AXIS];
  822. delta_mm[Y_HEAD] = db * steps_to_mm[B_AXIS];
  823. delta_mm[Z_AXIS] = dc * steps_to_mm[Z_AXIS];
  824. delta_mm[A_AXIS] = (da + db) * steps_to_mm[A_AXIS];
  825. delta_mm[B_AXIS] = CORESIGN(da - db) * steps_to_mm[B_AXIS];
  826. #elif CORE_IS_XZ
  827. delta_mm[X_HEAD] = da * steps_to_mm[A_AXIS];
  828. delta_mm[Y_AXIS] = db * steps_to_mm[Y_AXIS];
  829. delta_mm[Z_HEAD] = dc * steps_to_mm[C_AXIS];
  830. delta_mm[A_AXIS] = (da + dc) * steps_to_mm[A_AXIS];
  831. delta_mm[C_AXIS] = CORESIGN(da - dc) * steps_to_mm[C_AXIS];
  832. #elif CORE_IS_YZ
  833. delta_mm[X_AXIS] = da * steps_to_mm[X_AXIS];
  834. delta_mm[Y_HEAD] = db * steps_to_mm[B_AXIS];
  835. delta_mm[Z_HEAD] = dc * steps_to_mm[C_AXIS];
  836. delta_mm[B_AXIS] = (db + dc) * steps_to_mm[B_AXIS];
  837. delta_mm[C_AXIS] = CORESIGN(db - dc) * steps_to_mm[C_AXIS];
  838. #endif
  839. #else
  840. float delta_mm[4];
  841. delta_mm[X_AXIS] = da * steps_to_mm[X_AXIS];
  842. delta_mm[Y_AXIS] = db * steps_to_mm[Y_AXIS];
  843. delta_mm[Z_AXIS] = dc * steps_to_mm[Z_AXIS];
  844. #endif
  845. delta_mm[E_AXIS] = esteps_float * steps_to_mm[E_AXIS_N];
  846. 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) {
  847. block->millimeters = fabs(delta_mm[E_AXIS]);
  848. }
  849. else {
  850. block->millimeters = sqrt(
  851. #if CORE_IS_XY
  852. sq(delta_mm[X_HEAD]) + sq(delta_mm[Y_HEAD]) + sq(delta_mm[Z_AXIS])
  853. #elif CORE_IS_XZ
  854. sq(delta_mm[X_HEAD]) + sq(delta_mm[Y_AXIS]) + sq(delta_mm[Z_HEAD])
  855. #elif CORE_IS_YZ
  856. sq(delta_mm[X_AXIS]) + sq(delta_mm[Y_HEAD]) + sq(delta_mm[Z_HEAD])
  857. #else
  858. sq(delta_mm[X_AXIS]) + sq(delta_mm[Y_AXIS]) + sq(delta_mm[Z_AXIS])
  859. #endif
  860. );
  861. }
  862. float inverse_millimeters = 1.0 / block->millimeters; // Inverse millimeters to remove multiple divides
  863. // Calculate moves/second for this move. No divide by zero due to previous checks.
  864. float inverse_mm_s = fr_mm_s * inverse_millimeters;
  865. const uint8_t moves_queued = movesplanned();
  866. // Slow down when the buffer starts to empty, rather than wait at the corner for a buffer refill
  867. #if ENABLED(SLOWDOWN) || ENABLED(ULTRA_LCD) || defined(XY_FREQUENCY_LIMIT)
  868. unsigned long segment_time = lround(1000000.0 / inverse_mm_s);
  869. #endif
  870. #if ENABLED(SLOWDOWN)
  871. // Segment time im micro seconds
  872. if (moves_queued > 1 && moves_queued < (BLOCK_BUFFER_SIZE) / 2) {
  873. if (segment_time < min_segment_time) {
  874. // buffer is draining, add extra time. The amount of time added increases if the buffer is still emptied more.
  875. inverse_mm_s = 1000000.0 / (segment_time + lround(2 * (min_segment_time - segment_time) / moves_queued));
  876. #if defined(XY_FREQUENCY_LIMIT) || ENABLED(ULTRA_LCD)
  877. segment_time = lround(1000000.0 / inverse_mm_s);
  878. #endif
  879. }
  880. }
  881. #endif
  882. #if ENABLED(ULTRA_LCD)
  883. CRITICAL_SECTION_START
  884. block_buffer_runtime_us += segment_time;
  885. CRITICAL_SECTION_END
  886. #endif
  887. block->nominal_speed = block->millimeters * inverse_mm_s; // (mm/sec) Always > 0
  888. block->nominal_rate = ceil(block->step_event_count * inverse_mm_s); // (step/sec) Always > 0
  889. #if ENABLED(FILAMENT_WIDTH_SENSOR)
  890. static float filwidth_e_count = 0, filwidth_delay_dist = 0;
  891. //FMM update ring buffer used for delay with filament measurements
  892. if (extruder == FILAMENT_SENSOR_EXTRUDER_NUM && filwidth_delay_index[1] >= 0) { //only for extruder with filament sensor and if ring buffer is initialized
  893. const int MMD_CM = MAX_MEASUREMENT_DELAY + 1, MMD_MM = MMD_CM * 10;
  894. // increment counters with next move in e axis
  895. filwidth_e_count += delta_mm[E_AXIS];
  896. filwidth_delay_dist += delta_mm[E_AXIS];
  897. // Only get new measurements on forward E movement
  898. if (filwidth_e_count > 0.0001) {
  899. // Loop the delay distance counter (modulus by the mm length)
  900. while (filwidth_delay_dist >= MMD_MM) filwidth_delay_dist -= MMD_MM;
  901. // Convert into an index into the measurement array
  902. filwidth_delay_index[0] = (int)(filwidth_delay_dist * 0.1 + 0.0001);
  903. // If the index has changed (must have gone forward)...
  904. if (filwidth_delay_index[0] != filwidth_delay_index[1]) {
  905. filwidth_e_count = 0; // Reset the E movement counter
  906. const int8_t meas_sample = thermalManager.widthFil_to_size_ratio() - 100; // Subtract 100 to reduce magnitude - to store in a signed char
  907. do {
  908. filwidth_delay_index[1] = (filwidth_delay_index[1] + 1) % MMD_CM; // The next unused slot
  909. measurement_delay[filwidth_delay_index[1]] = meas_sample; // Store the measurement
  910. } while (filwidth_delay_index[0] != filwidth_delay_index[1]); // More slots to fill?
  911. }
  912. }
  913. }
  914. #endif
  915. // Calculate and limit speed in mm/sec for each axis
  916. float current_speed[NUM_AXIS], speed_factor = 1.0; // factor <1 decreases speed
  917. LOOP_XYZE(i) {
  918. const float cs = fabs(current_speed[i] = delta_mm[i] * inverse_mm_s);
  919. #if ENABLED(DISTINCT_E_FACTORS)
  920. if (i == E_AXIS) i += extruder;
  921. #endif
  922. if (cs > max_feedrate_mm_s[i]) NOMORE(speed_factor, max_feedrate_mm_s[i] / cs);
  923. }
  924. // Max segment time in µs.
  925. #ifdef XY_FREQUENCY_LIMIT
  926. // Check and limit the xy direction change frequency
  927. const unsigned char direction_change = block->direction_bits ^ old_direction_bits;
  928. old_direction_bits = block->direction_bits;
  929. segment_time = lround((float)segment_time / speed_factor);
  930. long xs0 = axis_segment_time[X_AXIS][0],
  931. xs1 = axis_segment_time[X_AXIS][1],
  932. xs2 = axis_segment_time[X_AXIS][2],
  933. ys0 = axis_segment_time[Y_AXIS][0],
  934. ys1 = axis_segment_time[Y_AXIS][1],
  935. ys2 = axis_segment_time[Y_AXIS][2];
  936. if (TEST(direction_change, X_AXIS)) {
  937. xs2 = axis_segment_time[X_AXIS][2] = xs1;
  938. xs1 = axis_segment_time[X_AXIS][1] = xs0;
  939. xs0 = 0;
  940. }
  941. xs0 = axis_segment_time[X_AXIS][0] = xs0 + segment_time;
  942. if (TEST(direction_change, Y_AXIS)) {
  943. ys2 = axis_segment_time[Y_AXIS][2] = axis_segment_time[Y_AXIS][1];
  944. ys1 = axis_segment_time[Y_AXIS][1] = axis_segment_time[Y_AXIS][0];
  945. ys0 = 0;
  946. }
  947. ys0 = axis_segment_time[Y_AXIS][0] = ys0 + segment_time;
  948. const long max_x_segment_time = MAX3(xs0, xs1, xs2),
  949. max_y_segment_time = MAX3(ys0, ys1, ys2),
  950. min_xy_segment_time = min(max_x_segment_time, max_y_segment_time);
  951. if (min_xy_segment_time < MAX_FREQ_TIME) {
  952. const float low_sf = speed_factor * min_xy_segment_time / (MAX_FREQ_TIME);
  953. NOMORE(speed_factor, low_sf);
  954. }
  955. #endif // XY_FREQUENCY_LIMIT
  956. // Correct the speed
  957. if (speed_factor < 1.0) {
  958. LOOP_XYZE(i) current_speed[i] *= speed_factor;
  959. block->nominal_speed *= speed_factor;
  960. block->nominal_rate *= speed_factor;
  961. }
  962. // Compute and limit the acceleration rate for the trapezoid generator.
  963. const float steps_per_mm = block->step_event_count * inverse_millimeters;
  964. uint32_t accel;
  965. if (!block->steps[X_AXIS] && !block->steps[Y_AXIS] && !block->steps[Z_AXIS]) {
  966. // convert to: acceleration steps/sec^2
  967. accel = ceil(retract_acceleration * steps_per_mm);
  968. }
  969. else {
  970. #define LIMIT_ACCEL_LONG(AXIS,INDX) do{ \
  971. if (block->steps[AXIS] && max_acceleration_steps_per_s2[AXIS+INDX] < accel) { \
  972. const uint32_t comp = max_acceleration_steps_per_s2[AXIS+INDX] * block->step_event_count; \
  973. if (accel * block->steps[AXIS] > comp) accel = comp / block->steps[AXIS]; \
  974. } \
  975. }while(0)
  976. #define LIMIT_ACCEL_FLOAT(AXIS,INDX) do{ \
  977. if (block->steps[AXIS] && max_acceleration_steps_per_s2[AXIS+INDX] < accel) { \
  978. const float comp = (float)max_acceleration_steps_per_s2[AXIS+INDX] * (float)block->step_event_count; \
  979. if ((float)accel * (float)block->steps[AXIS] > comp) accel = comp / (float)block->steps[AXIS]; \
  980. } \
  981. }while(0)
  982. // Start with print or travel acceleration
  983. accel = ceil((esteps ? acceleration : travel_acceleration) * steps_per_mm);
  984. #if ENABLED(DISTINCT_E_FACTORS)
  985. #define ACCEL_IDX extruder
  986. #else
  987. #define ACCEL_IDX 0
  988. #endif
  989. // Limit acceleration per axis
  990. if (block->step_event_count <= cutoff_long) {
  991. LIMIT_ACCEL_LONG(X_AXIS,0);
  992. LIMIT_ACCEL_LONG(Y_AXIS,0);
  993. LIMIT_ACCEL_LONG(Z_AXIS,0);
  994. LIMIT_ACCEL_LONG(E_AXIS,ACCEL_IDX);
  995. }
  996. else {
  997. LIMIT_ACCEL_FLOAT(X_AXIS,0);
  998. LIMIT_ACCEL_FLOAT(Y_AXIS,0);
  999. LIMIT_ACCEL_FLOAT(Z_AXIS,0);
  1000. LIMIT_ACCEL_FLOAT(E_AXIS,ACCEL_IDX);
  1001. }
  1002. }
  1003. block->acceleration_steps_per_s2 = accel;
  1004. block->acceleration = accel / steps_per_mm;
  1005. block->acceleration_rate = (long)(accel * 16777216.0 / ((F_CPU) * 0.125)); // * 8.388608
  1006. // Initial limit on the segment entry velocity
  1007. float vmax_junction;
  1008. #if 0 // Use old jerk for now
  1009. float junction_deviation = 0.1;
  1010. // Compute path unit vector
  1011. double unit_vec[XYZ] = {
  1012. delta_mm[X_AXIS] * inverse_millimeters,
  1013. delta_mm[Y_AXIS] * inverse_millimeters,
  1014. delta_mm[Z_AXIS] * inverse_millimeters
  1015. };
  1016. /*
  1017. Compute maximum allowable entry speed at junction by centripetal acceleration approximation.
  1018. Let a circle be tangent to both previous and current path line segments, where the junction
  1019. deviation is defined as the distance from the junction to the closest edge of the circle,
  1020. collinear with the circle center.
  1021. The circular segment joining the two paths represents the path of centripetal acceleration.
  1022. Solve for max velocity based on max acceleration about the radius of the circle, defined
  1023. indirectly by junction deviation.
  1024. This may be also viewed as path width or max_jerk in the previous grbl version. This approach
  1025. does not actually deviate from path, but used as a robust way to compute cornering speeds, as
  1026. it takes into account the nonlinearities of both the junction angle and junction velocity.
  1027. */
  1028. vmax_junction = MINIMUM_PLANNER_SPEED; // Set default max junction speed
  1029. // Skip first block or when previous_nominal_speed is used as a flag for homing and offset cycles.
  1030. if (block_buffer_head != block_buffer_tail && previous_nominal_speed > 0.0) {
  1031. // Compute cosine of angle between previous and current path. (prev_unit_vec is negative)
  1032. // NOTE: Max junction velocity is computed without sin() or acos() by trig half angle identity.
  1033. float cos_theta = - previous_unit_vec[X_AXIS] * unit_vec[X_AXIS]
  1034. - previous_unit_vec[Y_AXIS] * unit_vec[Y_AXIS]
  1035. - previous_unit_vec[Z_AXIS] * unit_vec[Z_AXIS] ;
  1036. // Skip and use default max junction speed for 0 degree acute junction.
  1037. if (cos_theta < 0.95) {
  1038. vmax_junction = min(previous_nominal_speed, block->nominal_speed);
  1039. // Skip and avoid divide by zero for straight junctions at 180 degrees. Limit to min() of nominal speeds.
  1040. if (cos_theta > -0.95) {
  1041. // Compute maximum junction velocity based on maximum acceleration and junction deviation
  1042. float sin_theta_d2 = sqrt(0.5 * (1.0 - cos_theta)); // Trig half angle identity. Always positive.
  1043. NOMORE(vmax_junction, sqrt(block->acceleration * junction_deviation * sin_theta_d2 / (1.0 - sin_theta_d2)));
  1044. }
  1045. }
  1046. }
  1047. #endif
  1048. /**
  1049. * Adapted from Prusa MKS firmware
  1050. *
  1051. * Start with a safe speed (from which the machine may halt to stop immediately).
  1052. */
  1053. // Exit speed limited by a jerk to full halt of a previous last segment
  1054. static float previous_safe_speed;
  1055. float safe_speed = block->nominal_speed;
  1056. uint8_t limited = 0;
  1057. LOOP_XYZE(i) {
  1058. const float jerk = fabs(current_speed[i]), maxj = max_jerk[i];
  1059. if (jerk > maxj) {
  1060. if (limited) {
  1061. const float mjerk = maxj * block->nominal_speed;
  1062. if (jerk * safe_speed > mjerk) safe_speed = mjerk / jerk;
  1063. }
  1064. else {
  1065. ++limited;
  1066. safe_speed = maxj;
  1067. }
  1068. }
  1069. }
  1070. if (moves_queued > 1 && previous_nominal_speed > 0.0001) {
  1071. // Estimate a maximum velocity allowed at a joint of two successive segments.
  1072. // If this maximum velocity allowed is lower than the minimum of the entry / exit safe velocities,
  1073. // then the machine is not coasting anymore and the safe entry / exit velocities shall be used.
  1074. // The junction velocity will be shared between successive segments. Limit the junction velocity to their minimum.
  1075. bool prev_speed_larger = previous_nominal_speed > block->nominal_speed;
  1076. float smaller_speed_factor = prev_speed_larger ? (block->nominal_speed / previous_nominal_speed) : (previous_nominal_speed / block->nominal_speed);
  1077. // Pick the smaller of the nominal speeds. Higher speed shall not be achieved at the junction during coasting.
  1078. vmax_junction = prev_speed_larger ? block->nominal_speed : previous_nominal_speed;
  1079. // Factor to multiply the previous / current nominal velocities to get componentwise limited velocities.
  1080. float v_factor = 1.f;
  1081. limited = 0;
  1082. // Now limit the jerk in all axes.
  1083. LOOP_XYZE(axis) {
  1084. // Limit an axis. We have to differentiate: coasting, reversal of an axis, full stop.
  1085. float v_exit = previous_speed[axis], v_entry = current_speed[axis];
  1086. if (prev_speed_larger) v_exit *= smaller_speed_factor;
  1087. if (limited) {
  1088. v_exit *= v_factor;
  1089. v_entry *= v_factor;
  1090. }
  1091. // Calculate jerk depending on whether the axis is coasting in the same direction or reversing.
  1092. const float jerk = (v_exit > v_entry)
  1093. ? // coasting axis reversal
  1094. ( (v_entry > 0.f || v_exit < 0.f) ? (v_exit - v_entry) : max(v_exit, -v_entry) )
  1095. : // v_exit <= v_entry coasting axis reversal
  1096. ( (v_entry < 0.f || v_exit > 0.f) ? (v_entry - v_exit) : max(-v_exit, v_entry) );
  1097. if (jerk > max_jerk[axis]) {
  1098. v_factor *= max_jerk[axis] / jerk;
  1099. ++limited;
  1100. }
  1101. }
  1102. if (limited) vmax_junction *= v_factor;
  1103. // Now the transition velocity is known, which maximizes the shared exit / entry velocity while
  1104. // respecting the jerk factors, it may be possible, that applying separate safe exit / entry velocities will achieve faster prints.
  1105. const float vmax_junction_threshold = vmax_junction * 0.99f;
  1106. if (previous_safe_speed > vmax_junction_threshold && safe_speed > vmax_junction_threshold) {
  1107. // Not coasting. The machine will stop and start the movements anyway,
  1108. // better to start the segment from start.
  1109. SBI(block->flag, BLOCK_BIT_START_FROM_FULL_HALT);
  1110. vmax_junction = safe_speed;
  1111. }
  1112. }
  1113. else {
  1114. SBI(block->flag, BLOCK_BIT_START_FROM_FULL_HALT);
  1115. vmax_junction = safe_speed;
  1116. }
  1117. // Max entry speed of this block equals the max exit speed of the previous block.
  1118. block->max_entry_speed = vmax_junction;
  1119. // Initialize block entry speed. Compute based on deceleration to user-defined MINIMUM_PLANNER_SPEED.
  1120. const float v_allowable = max_allowable_speed(-block->acceleration, MINIMUM_PLANNER_SPEED, block->millimeters);
  1121. block->entry_speed = min(vmax_junction, v_allowable);
  1122. // Initialize planner efficiency flags
  1123. // Set flag if block will always reach maximum junction speed regardless of entry/exit speeds.
  1124. // If a block can de/ac-celerate from nominal speed to zero within the length of the block, then
  1125. // the current block and next block junction speeds are guaranteed to always be at their maximum
  1126. // junction speeds in deceleration and acceleration, respectively. This is due to how the current
  1127. // block nominal speed limits both the current and next maximum junction speeds. Hence, in both
  1128. // the reverse and forward planners, the corresponding block junction speed will always be at the
  1129. // the maximum junction speed and may always be ignored for any speed reduction checks.
  1130. block->flag |= BLOCK_FLAG_RECALCULATE | (block->nominal_speed <= v_allowable ? BLOCK_FLAG_NOMINAL_LENGTH : 0);
  1131. // Update previous path unit_vector and nominal speed
  1132. COPY(previous_speed, current_speed);
  1133. previous_nominal_speed = block->nominal_speed;
  1134. previous_safe_speed = safe_speed;
  1135. #if ENABLED(LIN_ADVANCE)
  1136. //
  1137. // Use LIN_ADVANCE for blocks if all these are true:
  1138. //
  1139. // esteps : We have E steps todo (a printing move)
  1140. //
  1141. // block->steps[X_AXIS] || block->steps[Y_AXIS] : We have a movement in XY direction (i.e., not retract / prime).
  1142. //
  1143. // extruder_advance_k : There is an advance factor set.
  1144. //
  1145. // block->steps[E_AXIS] != block->step_event_count : A problem occurs if the move before a retract is too small.
  1146. // In that case, the retract and move will be executed together.
  1147. // This leads to too many advance steps due to a huge e_acceleration.
  1148. // The math is good, but we must avoid retract moves with advance!
  1149. // de_float > 0.0 : Extruder is running forward (e.g., for "Wipe while retracting" (Slic3r) or "Combing" (Cura) moves)
  1150. //
  1151. block->use_advance_lead = esteps
  1152. && (block->steps[X_AXIS] || block->steps[Y_AXIS])
  1153. && extruder_advance_k
  1154. && (uint32_t)esteps != block->step_event_count
  1155. && de_float > 0.0;
  1156. if (block->use_advance_lead)
  1157. block->abs_adv_steps_multiplier8 = lround(
  1158. extruder_advance_k
  1159. * (UNEAR_ZERO(advance_ed_ratio) ? de_float / mm_D_float : advance_ed_ratio) // Use the fixed ratio, if set
  1160. * (block->nominal_speed / (float)block->nominal_rate)
  1161. * axis_steps_per_mm[E_AXIS_N] * 256.0
  1162. );
  1163. #elif ENABLED(ADVANCE)
  1164. // Calculate advance rate
  1165. if (esteps && (block->steps[X_AXIS] || block->steps[Y_AXIS] || block->steps[Z_AXIS])) {
  1166. const long acc_dist = estimate_acceleration_distance(0, block->nominal_rate, block->acceleration_steps_per_s2);
  1167. const float advance = ((STEPS_PER_CUBIC_MM_E) * (EXTRUDER_ADVANCE_K)) * HYPOT(current_speed[E_AXIS], EXTRUSION_AREA) * 256;
  1168. block->advance = advance;
  1169. block->advance_rate = acc_dist ? advance / (float)acc_dist : 0;
  1170. }
  1171. else
  1172. block->advance_rate = block->advance = 0;
  1173. /**
  1174. SERIAL_ECHO_START;
  1175. SERIAL_ECHOPGM("advance :");
  1176. SERIAL_ECHO(block->advance/256.0);
  1177. SERIAL_ECHOPGM("advance rate :");
  1178. SERIAL_ECHOLN(block->advance_rate/256.0);
  1179. */
  1180. #endif // ADVANCE or LIN_ADVANCE
  1181. calculate_trapezoid_for_block(block, block->entry_speed / block->nominal_speed, safe_speed / block->nominal_speed);
  1182. // Move buffer head
  1183. block_buffer_head = next_buffer_head;
  1184. // Update the position (only when a move was queued)
  1185. COPY(position, target);
  1186. #if ENABLED(LIN_ADVANCE)
  1187. position_float[X_AXIS] = a;
  1188. position_float[Y_AXIS] = b;
  1189. position_float[Z_AXIS] = c;
  1190. position_float[E_AXIS] = e;
  1191. #endif
  1192. recalculate();
  1193. stepper.wake_up();
  1194. } // buffer_line()
  1195. /**
  1196. * Directly set the planner XYZ position (and stepper positions)
  1197. * converting mm (or angles for SCARA) into steps.
  1198. *
  1199. * On CORE machines stepper ABC will be translated from the given XYZ.
  1200. */
  1201. void Planner::_set_position_mm(const float &a, const float &b, const float &c, const float &e) {
  1202. #if ENABLED(DISTINCT_E_FACTORS)
  1203. #define _EINDEX (E_AXIS + active_extruder)
  1204. last_extruder = active_extruder;
  1205. #else
  1206. #define _EINDEX E_AXIS
  1207. #endif
  1208. long na = position[X_AXIS] = lround(a * axis_steps_per_mm[X_AXIS]),
  1209. nb = position[Y_AXIS] = lround(b * axis_steps_per_mm[Y_AXIS]),
  1210. nc = position[Z_AXIS] = lround(c * axis_steps_per_mm[Z_AXIS]),
  1211. ne = position[E_AXIS] = lround(e * axis_steps_per_mm[_EINDEX]);
  1212. #if ENABLED(LIN_ADVANCE)
  1213. position_float[X_AXIS] = a;
  1214. position_float[Y_AXIS] = b;
  1215. position_float[Z_AXIS] = c;
  1216. position_float[E_AXIS] = e;
  1217. #endif
  1218. stepper.set_position(na, nb, nc, ne);
  1219. previous_nominal_speed = 0.0; // Resets planner junction speeds. Assumes start from rest.
  1220. ZERO(previous_speed);
  1221. }
  1222. void Planner::set_position_mm_kinematic(const float position[NUM_AXIS]) {
  1223. #if PLANNER_LEVELING
  1224. float lpos[XYZ] = { position[X_AXIS], position[Y_AXIS], position[Z_AXIS] };
  1225. apply_leveling(lpos);
  1226. #else
  1227. const float * const lpos = position;
  1228. #endif
  1229. #if IS_KINEMATIC
  1230. inverse_kinematics(lpos);
  1231. _set_position_mm(delta[A_AXIS], delta[B_AXIS], delta[C_AXIS], position[E_AXIS]);
  1232. #else
  1233. _set_position_mm(lpos[X_AXIS], lpos[Y_AXIS], lpos[Z_AXIS], position[E_AXIS]);
  1234. #endif
  1235. }
  1236. /**
  1237. * Sync from the stepper positions. (e.g., after an interrupted move)
  1238. */
  1239. void Planner::sync_from_steppers() {
  1240. LOOP_XYZE(i) {
  1241. position[i] = stepper.position((AxisEnum)i);
  1242. #if ENABLED(LIN_ADVANCE)
  1243. position_float[i] = position[i] * steps_to_mm[i
  1244. #if ENABLED(DISTINCT_E_FACTORS)
  1245. + (i == E_AXIS ? active_extruder : 0)
  1246. #endif
  1247. ];
  1248. #endif
  1249. }
  1250. }
  1251. /**
  1252. * Setters for planner position (also setting stepper position).
  1253. */
  1254. void Planner::set_position_mm(const AxisEnum axis, const float& v) {
  1255. #if ENABLED(DISTINCT_E_FACTORS)
  1256. const uint8_t axis_index = axis + (axis == E_AXIS ? active_extruder : 0);
  1257. last_extruder = active_extruder;
  1258. #else
  1259. const uint8_t axis_index = axis;
  1260. #endif
  1261. position[axis] = lround(v * axis_steps_per_mm[axis_index]);
  1262. #if ENABLED(LIN_ADVANCE)
  1263. position_float[axis] = v;
  1264. #endif
  1265. stepper.set_position(axis, v);
  1266. previous_speed[axis] = 0.0;
  1267. }
  1268. // Recalculate the steps/s^2 acceleration rates, based on the mm/s^2
  1269. void Planner::reset_acceleration_rates() {
  1270. #if ENABLED(DISTINCT_E_FACTORS)
  1271. #define HIGHEST_CONDITION (i < E_AXIS || i == E_AXIS + active_extruder)
  1272. #else
  1273. #define HIGHEST_CONDITION true
  1274. #endif
  1275. uint32_t highest_rate = 1;
  1276. LOOP_XYZE_N(i) {
  1277. max_acceleration_steps_per_s2[i] = max_acceleration_mm_per_s2[i] * axis_steps_per_mm[i];
  1278. if (HIGHEST_CONDITION) NOLESS(highest_rate, max_acceleration_steps_per_s2[i]);
  1279. }
  1280. cutoff_long = 4294967295UL / highest_rate;
  1281. }
  1282. // Recalculate position, steps_to_mm if axis_steps_per_mm changes!
  1283. void Planner::refresh_positioning() {
  1284. LOOP_XYZE_N(i) steps_to_mm[i] = 1.0 / axis_steps_per_mm[i];
  1285. set_position_mm_kinematic(current_position);
  1286. reset_acceleration_rates();
  1287. }
  1288. #if ENABLED(AUTOTEMP)
  1289. void Planner::autotemp_M104_M109() {
  1290. autotemp_enabled = code_seen('F');
  1291. if (autotemp_enabled) autotemp_factor = code_value_temp_diff();
  1292. if (code_seen('S')) autotemp_min = code_value_temp_abs();
  1293. if (code_seen('B')) autotemp_max = code_value_temp_abs();
  1294. }
  1295. #endif