1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138 |
- #include "Marlin.h"
- #include "planner.h"
- #include "stepper.h"
- #include "temperature.h"
- #include "ultralcd.h"
- #include "language.h"
- #ifdef MESH_BED_LEVELING
- #include "mesh_bed_leveling.h"
- #include "mesh_bed_calibration.h"
- #endif
- unsigned long minsegmenttime;
- float max_feedrate[NUM_AXIS];
- float axis_steps_per_unit[NUM_AXIS];
- unsigned long max_acceleration_units_per_sq_second[NUM_AXIS];
- float minimumfeedrate;
- float acceleration;
- float retract_acceleration;
- float max_xy_jerk;
- float max_z_jerk;
- float max_e_jerk;
- float mintravelfeedrate;
- unsigned long axis_steps_per_sqr_second[NUM_AXIS];
- #ifdef ENABLE_AUTO_BED_LEVELING
- matrix_3x3 plan_bed_level_matrix = {
- 1.0, 0.0, 0.0,
- 0.0, 1.0, 0.0,
- 0.0, 0.0, 1.0,
- };
- #endif
- long position[NUM_AXIS];
- static float previous_speed[NUM_AXIS];
- static float previous_nominal_speed;
- #ifdef AUTOTEMP
- float autotemp_max=250;
- float autotemp_min=210;
- float autotemp_factor=0.1;
- bool autotemp_enabled=false;
- #endif
- unsigned char g_uc_extruder_last_move[3] = {0,0,0};
- block_t block_buffer[BLOCK_BUFFER_SIZE];
- volatile unsigned char block_buffer_head;
- volatile unsigned char block_buffer_tail;
- #ifdef PREVENT_DANGEROUS_EXTRUDE
- float extrude_min_temp=EXTRUDE_MINTEMP;
- #endif
- #ifdef FILAMENT_SENSOR
- static char meas_sample;
- #endif
- static inline int8_t next_block_index(int8_t block_index) {
- if (++ block_index == BLOCK_BUFFER_SIZE)
- block_index = 0;
- return block_index;
- }
- static inline int8_t prev_block_index(int8_t block_index) {
- if (block_index == 0)
- block_index = BLOCK_BUFFER_SIZE;
- -- block_index;
- return block_index;
- }
- FORCE_INLINE float estimate_acceleration_distance(float initial_rate, float target_rate, float acceleration)
- {
- if (acceleration!=0) {
- return((target_rate*target_rate-initial_rate*initial_rate)/
- (2.0*acceleration));
- }
- else {
- return 0.0;
- }
- }
- FORCE_INLINE float intersection_distance(float initial_rate, float final_rate, float acceleration, float distance)
- {
- if (acceleration!=0) {
- return((2.0*acceleration*distance-initial_rate*initial_rate+final_rate*final_rate)/
- (4.0*acceleration) );
- }
- else {
- return 0.0;
- }
- }
- void calculate_trapezoid_for_block(block_t *block, float entry_factor, float exit_factor) {
- unsigned long initial_rate = ceil(block->nominal_rate*entry_factor);
- unsigned long final_rate = ceil(block->nominal_rate*exit_factor);
-
- if(initial_rate <120) {
- initial_rate=120;
- }
- if(final_rate < 120) {
- final_rate=120;
- }
- long acceleration = block->acceleration_st;
- int32_t accelerate_steps =
- ceil(estimate_acceleration_distance(initial_rate, block->nominal_rate, acceleration));
- int32_t decelerate_steps =
- floor(estimate_acceleration_distance(block->nominal_rate, final_rate, -acceleration));
-
- int32_t plateau_steps = block->step_event_count-accelerate_steps-decelerate_steps;
-
-
-
- if (plateau_steps < 0) {
- accelerate_steps = ceil(intersection_distance(initial_rate, final_rate, acceleration, block->step_event_count));
- accelerate_steps = max(accelerate_steps,0);
- accelerate_steps = min((uint32_t)accelerate_steps,block->step_event_count);
- plateau_steps = 0;
- }
- #ifdef ADVANCE
- volatile long initial_advance = block->advance*entry_factor*entry_factor;
- volatile long final_advance = block->advance*exit_factor*exit_factor;
- #endif
-
-
- CRITICAL_SECTION_START;
- if (! block->busy) {
- block->accelerate_until = accelerate_steps;
- block->decelerate_after = accelerate_steps+plateau_steps;
- block->initial_rate = initial_rate;
- block->final_rate = final_rate;
- #ifdef ADVANCE
- block->initial_advance = initial_advance;
- block->final_advance = final_advance;
- #endif
- }
- CRITICAL_SECTION_END;
- }
- FORCE_INLINE float max_allowable_entry_speed(float decceleration, float target_velocity, float distance)
- {
-
- return sqrt(target_velocity*target_velocity-2*decceleration*distance);
- }
- void planner_recalculate(const float &safe_final_speed)
- {
-
-
-
- unsigned char tail = block_buffer_tail;
- uint8_t block_index;
- block_t *prev, *current, *next;
-
- unsigned char n_blocks = (block_buffer_head + BLOCK_BUFFER_SIZE - tail) & (BLOCK_BUFFER_SIZE - 1);
- if (n_blocks >= 3) {
-
- block_index = prev_block_index(block_buffer_head);
- next = block_buffer + block_index;
- current = block_buffer + (block_index = prev_block_index(block_index));
-
-
-
-
- while (block_index != tail) {
- if (current->flag & BLOCK_FLAG_START_FROM_FULL_HALT) {
-
-
-
- tail = block_index;
-
- n_blocks = (block_buffer_head + BLOCK_BUFFER_SIZE - tail) & (BLOCK_BUFFER_SIZE - 1);
- SERIAL_ECHOLNPGM("BLOCK_FLAG_START_FROM_FULL_HALT");
- break;
- }
-
-
-
- if (current->entry_speed != current->max_entry_speed) {
-
-
-
-
-
- current->entry_speed = ((current->flag & BLOCK_FLAG_NOMINAL_LENGTH) || current->max_entry_speed <= next->entry_speed) ?
- current->max_entry_speed :
- min(current->max_entry_speed, max_allowable_entry_speed(-current->acceleration,next->entry_speed,current->millimeters));
- current->flag |= BLOCK_FLAG_RECALCULATE;
- }
- next = current;
- current = block_buffer + (block_index = prev_block_index(block_index));
- }
- }
-
- if (n_blocks >= 2) {
-
- block_index = tail;
- prev = block_buffer + block_index;
- current = block_buffer + (block_index = next_block_index(block_index));
- do {
-
-
-
-
- if (! (prev->flag & BLOCK_FLAG_NOMINAL_LENGTH) && prev->entry_speed < current->entry_speed) {
- float entry_speed = min(current->entry_speed, max_allowable_entry_speed(-prev->acceleration,prev->entry_speed,prev->millimeters));
-
- if (current->entry_speed != entry_speed) {
- current->entry_speed = entry_speed;
- current->flag |= BLOCK_FLAG_RECALCULATE;
- }
- }
-
- if ((prev->flag | current->flag) & BLOCK_FLAG_RECALCULATE) {
-
- calculate_trapezoid_for_block(prev, prev->entry_speed/prev->nominal_speed, current->entry_speed/prev->nominal_speed);
-
- prev->flag &= ~BLOCK_FLAG_RECALCULATE;
- }
- prev = current;
- current = block_buffer + (block_index = next_block_index(block_index));
- } while (block_index != block_buffer_head);
- }
-
- current = block_buffer + prev_block_index(block_buffer_head);
- calculate_trapezoid_for_block(current, current->entry_speed/current->nominal_speed, safe_final_speed/current->nominal_speed);
- current->flag &= ~BLOCK_FLAG_RECALCULATE;
- }
- void plan_init() {
- block_buffer_head = 0;
- block_buffer_tail = 0;
- memset(position, 0, sizeof(position));
- previous_speed[0] = 0.0;
- previous_speed[1] = 0.0;
- previous_speed[2] = 0.0;
- previous_speed[3] = 0.0;
- previous_nominal_speed = 0.0;
- }
- #ifdef AUTOTEMP
- void getHighESpeed()
- {
- static float oldt=0;
- if(!autotemp_enabled){
- return;
- }
- if(degTargetHotend0()+2<autotemp_min) {
- return;
- }
- float high=0.0;
- uint8_t block_index = block_buffer_tail;
- while(block_index != block_buffer_head) {
- if((block_buffer[block_index].steps_x != 0) ||
- (block_buffer[block_index].steps_y != 0) ||
- (block_buffer[block_index].steps_z != 0)) {
- float se=(float(block_buffer[block_index].steps_e)/float(block_buffer[block_index].step_event_count))*block_buffer[block_index].nominal_speed;
-
- if(se>high)
- {
- high=se;
- }
- }
- block_index = (block_index+1) & (BLOCK_BUFFER_SIZE - 1);
- }
- float g=autotemp_min+high*autotemp_factor;
- float t=g;
- if(t<autotemp_min)
- t=autotemp_min;
- if(t>autotemp_max)
- t=autotemp_max;
- if(oldt>t)
- {
- t=AUTOTEMP_OLDWEIGHT*oldt+(1-AUTOTEMP_OLDWEIGHT)*t;
- }
- oldt=t;
- setTargetHotend0(t);
- }
- #endif
- void check_axes_activity()
- {
- unsigned char x_active = 0;
- unsigned char y_active = 0;
- unsigned char z_active = 0;
- unsigned char e_active = 0;
- unsigned char tail_fan_speed = fanSpeed;
- block_t *block;
- if(block_buffer_tail != block_buffer_head)
- {
- uint8_t block_index = block_buffer_tail;
- tail_fan_speed = block_buffer[block_index].fan_speed;
- while(block_index != block_buffer_head)
- {
- block = &block_buffer[block_index];
- if(block->steps_x != 0) x_active++;
- if(block->steps_y != 0) y_active++;
- if(block->steps_z != 0) z_active++;
- if(block->steps_e != 0) e_active++;
- block_index = (block_index+1) & (BLOCK_BUFFER_SIZE - 1);
- }
- }
- if((DISABLE_X) && (x_active == 0)) disable_x();
- if((DISABLE_Y) && (y_active == 0)) disable_y();
- if((DISABLE_Z) && (z_active == 0)) disable_z();
- if((DISABLE_E) && (e_active == 0))
- {
- disable_e0();
- disable_e1();
- disable_e2();
- }
- #if defined(FAN_PIN) && FAN_PIN > -1
- #ifdef FAN_KICKSTART_TIME
- static unsigned long fan_kick_end;
- if (tail_fan_speed) {
- if (fan_kick_end == 0) {
-
- fan_kick_end = millis() + FAN_KICKSTART_TIME;
- tail_fan_speed = 255;
- } else if (fan_kick_end > millis())
-
- tail_fan_speed = 255;
- } else {
- fan_kick_end = 0;
- }
- #endif
- #ifdef FAN_SOFT_PWM
- fanSpeedSoftPwm = tail_fan_speed;
- #else
- analogWrite(FAN_PIN,tail_fan_speed);
- #endif
- #endif
- #ifdef AUTOTEMP
- getHighESpeed();
- #endif
- }
- float junction_deviation = 0.1;
- void plan_buffer_line(float x, float y, float z, const float &e, float feed_rate, const uint8_t &extruder)
- {
-
- int next_buffer_head = next_block_index(block_buffer_head);
-
-
- while(block_buffer_tail == next_buffer_head)
- {
- manage_heater();
-
- manage_inactivity(false);
- lcd_update();
- }
- #ifdef ENABLE_AUTO_BED_LEVELING
- apply_rotation_xyz(plan_bed_level_matrix, x, y, z);
- #endif
-
- {
- #if 0
- SERIAL_ECHOPGM("Planner, current position - servos: ");
- MYSERIAL.print(st_get_position_mm(X_AXIS), 5);
- SERIAL_ECHOPGM(", ");
- MYSERIAL.print(st_get_position_mm(Y_AXIS), 5);
- SERIAL_ECHOPGM(", ");
- MYSERIAL.print(st_get_position_mm(Z_AXIS), 5);
- SERIAL_ECHOLNPGM("");
- SERIAL_ECHOPGM("Planner, target position, initial: ");
- MYSERIAL.print(x, 5);
- SERIAL_ECHOPGM(", ");
- MYSERIAL.print(y, 5);
- SERIAL_ECHOLNPGM("");
- SERIAL_ECHOPGM("Planner, world2machine: ");
- MYSERIAL.print(world2machine_rotation_and_skew[0][0], 5);
- SERIAL_ECHOPGM(", ");
- MYSERIAL.print(world2machine_rotation_and_skew[0][1], 5);
- SERIAL_ECHOPGM(", ");
- MYSERIAL.print(world2machine_rotation_and_skew[1][0], 5);
- SERIAL_ECHOPGM(", ");
- MYSERIAL.print(world2machine_rotation_and_skew[1][1], 5);
- SERIAL_ECHOLNPGM("");
- SERIAL_ECHOPGM("Planner, offset: ");
- MYSERIAL.print(world2machine_shift[0], 5);
- SERIAL_ECHOPGM(", ");
- MYSERIAL.print(world2machine_shift[1], 5);
- SERIAL_ECHOLNPGM("");
- #endif
- world2machine(x, y);
- #if 0
- SERIAL_ECHOPGM("Planner, target position, corrected: ");
- MYSERIAL.print(x, 5);
- SERIAL_ECHOPGM(", ");
- MYSERIAL.print(y, 5);
- SERIAL_ECHOLNPGM("");
- #endif
- }
-
-
-
- long target[4];
- target[X_AXIS] = lround(x*axis_steps_per_unit[X_AXIS]);
- target[Y_AXIS] = lround(y*axis_steps_per_unit[Y_AXIS]);
- #ifdef MESH_BED_LEVELING
- if (mbl.active){
- target[Z_AXIS] = lround((z+mbl.get_z(x, y))*axis_steps_per_unit[Z_AXIS]);
- }else{
- target[Z_AXIS] = lround(z*axis_steps_per_unit[Z_AXIS]);
- }
- #else
- target[Z_AXIS] = lround(z*axis_steps_per_unit[Z_AXIS]);
- #endif
- target[E_AXIS] = lround(e*axis_steps_per_unit[E_AXIS]);
- #ifdef PREVENT_DANGEROUS_EXTRUDE
- if(target[E_AXIS]!=position[E_AXIS])
- {
- if(degHotend(active_extruder)<extrude_min_temp)
- {
- position[E_AXIS]=target[E_AXIS];
- SERIAL_ECHO_START;
- SERIAL_ECHOLNRPGM(MSG_ERR_COLD_EXTRUDE_STOP);
- }
-
- #ifdef PREVENT_LENGTHY_EXTRUDE
- if(labs(target[E_AXIS]-position[E_AXIS])>axis_steps_per_unit[E_AXIS]*EXTRUDE_MAXLENGTH)
- {
- position[E_AXIS]=target[E_AXIS];
- SERIAL_ECHO_START;
- SERIAL_ECHOLNRPGM(MSG_ERR_LONG_EXTRUDE_STOP);
- }
- #endif
- }
- #endif
-
- block_t *block = &block_buffer[block_buffer_head];
-
- block->busy = false;
-
- #ifndef COREXY
- block->steps_x = labs(target[X_AXIS]-position[X_AXIS]);
- block->steps_y = labs(target[Y_AXIS]-position[Y_AXIS]);
- #else
- block->steps_x = labs((target[X_AXIS]-position[X_AXIS]) + (target[Y_AXIS]-position[Y_AXIS]));
- block->steps_y = labs((target[X_AXIS]-position[X_AXIS]) - (target[Y_AXIS]-position[Y_AXIS]));
- #endif
- block->steps_z = labs(target[Z_AXIS]-position[Z_AXIS]);
- block->steps_e = labs(target[E_AXIS]-position[E_AXIS]);
- block->steps_e *= volumetric_multiplier[active_extruder];
- block->steps_e *= extrudemultiply;
- block->steps_e /= 100;
- block->step_event_count = max(block->steps_x, max(block->steps_y, max(block->steps_z, block->steps_e)));
-
- if (block->step_event_count <= dropsegments)
- {
- return;
- }
- block->fan_speed = fanSpeed;
-
- block->direction_bits = 0;
- #ifndef COREXY
- if (target[X_AXIS] < position[X_AXIS])
- {
- block->direction_bits |= (1<<X_AXIS);
- }
- if (target[Y_AXIS] < position[Y_AXIS])
- {
- block->direction_bits |= (1<<Y_AXIS);
- }
- #else
- if ((target[X_AXIS]-position[X_AXIS]) + (target[Y_AXIS]-position[Y_AXIS]) < 0)
- {
- block->direction_bits |= (1<<X_AXIS);
- }
- if ((target[X_AXIS]-position[X_AXIS]) - (target[Y_AXIS]-position[Y_AXIS]) < 0)
- {
- block->direction_bits |= (1<<Y_AXIS);
- }
- #endif
- if (target[Z_AXIS] < position[Z_AXIS])
- {
- block->direction_bits |= (1<<Z_AXIS);
- }
- if (target[E_AXIS] < position[E_AXIS])
- {
- block->direction_bits |= (1<<E_AXIS);
- }
- block->active_extruder = extruder;
-
- #ifdef COREXY
- if((block->steps_x != 0) || (block->steps_y != 0))
- {
- enable_x();
- enable_y();
- }
- #else
- if(block->steps_x != 0) enable_x();
- if(block->steps_y != 0) enable_y();
- #endif
- #ifndef Z_LATE_ENABLE
- if(block->steps_z != 0) enable_z();
- #endif
-
- if(block->steps_e != 0)
- {
- if (DISABLE_INACTIVE_EXTRUDER)
- {
- if(g_uc_extruder_last_move[0] > 0) g_uc_extruder_last_move[0]--;
- if(g_uc_extruder_last_move[1] > 0) g_uc_extruder_last_move[1]--;
- if(g_uc_extruder_last_move[2] > 0) g_uc_extruder_last_move[2]--;
-
- switch(extruder)
- {
- case 0:
- enable_e0();
- g_uc_extruder_last_move[0] = BLOCK_BUFFER_SIZE*2;
-
- if(g_uc_extruder_last_move[1] == 0) disable_e1();
- if(g_uc_extruder_last_move[2] == 0) disable_e2();
- break;
- case 1:
- enable_e1();
- g_uc_extruder_last_move[1] = BLOCK_BUFFER_SIZE*2;
-
- if(g_uc_extruder_last_move[0] == 0) disable_e0();
- if(g_uc_extruder_last_move[2] == 0) disable_e2();
- break;
- case 2:
- enable_e2();
- g_uc_extruder_last_move[2] = BLOCK_BUFFER_SIZE*2;
-
- if(g_uc_extruder_last_move[0] == 0) disable_e0();
- if(g_uc_extruder_last_move[1] == 0) disable_e1();
- break;
- }
- }
- else
- {
- enable_e0();
- enable_e1();
- enable_e2();
- }
- }
- if (block->steps_e == 0)
- {
- if(feed_rate<mintravelfeedrate) feed_rate=mintravelfeedrate;
- }
- else
- {
- if(feed_rate<minimumfeedrate) feed_rate=minimumfeedrate;
- }
-
- #ifndef COREXY
- float delta_mm[4];
- delta_mm[X_AXIS] = (target[X_AXIS]-position[X_AXIS])/axis_steps_per_unit[X_AXIS];
- delta_mm[Y_AXIS] = (target[Y_AXIS]-position[Y_AXIS])/axis_steps_per_unit[Y_AXIS];
- #else
- float delta_mm[6];
- delta_mm[X_HEAD] = (target[X_AXIS]-position[X_AXIS])/axis_steps_per_unit[X_AXIS];
- delta_mm[Y_HEAD] = (target[Y_AXIS]-position[Y_AXIS])/axis_steps_per_unit[Y_AXIS];
- delta_mm[X_AXIS] = ((target[X_AXIS]-position[X_AXIS]) + (target[Y_AXIS]-position[Y_AXIS]))/axis_steps_per_unit[X_AXIS];
- delta_mm[Y_AXIS] = ((target[X_AXIS]-position[X_AXIS]) - (target[Y_AXIS]-position[Y_AXIS]))/axis_steps_per_unit[Y_AXIS];
- #endif
- delta_mm[Z_AXIS] = (target[Z_AXIS]-position[Z_AXIS])/axis_steps_per_unit[Z_AXIS];
- delta_mm[E_AXIS] = ((target[E_AXIS]-position[E_AXIS])/axis_steps_per_unit[E_AXIS])*volumetric_multiplier[active_extruder]*extrudemultiply/100.0;
- if ( block->steps_x <=dropsegments && block->steps_y <=dropsegments && block->steps_z <=dropsegments )
- {
- block->millimeters = fabs(delta_mm[E_AXIS]);
- }
- else
- {
- #ifndef COREXY
- block->millimeters = sqrt(square(delta_mm[X_AXIS]) + square(delta_mm[Y_AXIS]) + square(delta_mm[Z_AXIS]));
- #else
- block->millimeters = sqrt(square(delta_mm[X_HEAD]) + square(delta_mm[Y_HEAD]) + square(delta_mm[Z_AXIS]));
- #endif
- }
- float inverse_millimeters = 1.0/block->millimeters;
-
- float inverse_second = feed_rate * inverse_millimeters;
- int moves_queued = moves_planned();
-
- #ifdef SLOWDOWN
-
-
- if (moves_queued > 1 && moves_queued < (BLOCK_BUFFER_SIZE >> 1)) {
-
- unsigned long segment_time = lround(1000000.0/inverse_second);
- if (segment_time < minsegmenttime)
-
- inverse_second=1000000.0/(segment_time+lround(2*(minsegmenttime-segment_time)/moves_queued));
- }
- #endif
- block->nominal_speed = block->millimeters * inverse_second;
- block->nominal_rate = ceil(block->step_event_count * inverse_second);
- #ifdef FILAMENT_SENSOR
-
-
-
- if((extruder==FILAMENT_SENSOR_EXTRUDER_NUM) && (delay_index2 > -1))
- {
- delay_dist = delay_dist + delta_mm[E_AXIS];
-
- while (delay_dist >= (10*(MAX_MEASUREMENT_DELAY+1)))
- delay_dist = delay_dist - 10*(MAX_MEASUREMENT_DELAY+1);
- while (delay_dist<0)
- delay_dist = delay_dist + 10*(MAX_MEASUREMENT_DELAY+1);
-
- delay_index1=delay_dist/10.0;
-
-
- if(delay_index1<0)
- delay_index1=0;
- else if (delay_index1>MAX_MEASUREMENT_DELAY)
- delay_index1=MAX_MEASUREMENT_DELAY;
-
- if(delay_index1 != delay_index2)
- {
- meas_sample=widthFil_to_size_ratio()-100;
- }
- while( delay_index1 != delay_index2)
- {
- delay_index2 = delay_index2 + 1;
- if(delay_index2>MAX_MEASUREMENT_DELAY)
- delay_index2=delay_index2-(MAX_MEASUREMENT_DELAY+1);
- if(delay_index2<0)
- delay_index2=0;
- else if (delay_index2>MAX_MEASUREMENT_DELAY)
- delay_index2=MAX_MEASUREMENT_DELAY;
-
- measurement_delay[delay_index2]=meas_sample;
- }
-
-
- }
- #endif
-
- float current_speed[4];
- float speed_factor = 1.0;
- for(int i=0; i < 4; i++)
- {
- current_speed[i] = delta_mm[i] * inverse_second;
- if(fabs(current_speed[i]) > max_feedrate[i])
- speed_factor = min(speed_factor, max_feedrate[i] / fabs(current_speed[i]));
- }
-
- if( speed_factor < 1.0)
- {
- for(unsigned char i=0; i < 4; i++)
- {
- current_speed[i] *= speed_factor;
- }
- block->nominal_speed *= speed_factor;
- block->nominal_rate *= speed_factor;
- }
-
- float steps_per_mm = block->step_event_count/block->millimeters;
- if(block->steps_x == 0 && block->steps_y == 0 && block->steps_z == 0)
- {
- block->acceleration_st = ceil(retract_acceleration * steps_per_mm);
- }
- else
- {
- block->acceleration_st = ceil(acceleration * steps_per_mm);
-
-
- if(((float)block->acceleration_st * (float)block->steps_x / (float)block->step_event_count) > axis_steps_per_sqr_second[X_AXIS])
- block->acceleration_st = axis_steps_per_sqr_second[X_AXIS];
- if(((float)block->acceleration_st * (float)block->steps_y / (float)block->step_event_count) > axis_steps_per_sqr_second[Y_AXIS])
- block->acceleration_st = axis_steps_per_sqr_second[Y_AXIS];
- if(((float)block->acceleration_st * (float)block->steps_e / (float)block->step_event_count) > axis_steps_per_sqr_second[E_AXIS])
- block->acceleration_st = axis_steps_per_sqr_second[E_AXIS];
- if(((float)block->acceleration_st * (float)block->steps_z / (float)block->step_event_count ) > axis_steps_per_sqr_second[Z_AXIS])
- block->acceleration_st = axis_steps_per_sqr_second[Z_AXIS];
- }
- block->acceleration = block->acceleration_st / steps_per_mm;
- block->acceleration_rate = (long)((float)block->acceleration_st * (16777216.0 / (F_CPU / 8.0)));
- #if 0
-
- double unit_vec[3];
- unit_vec[X_AXIS] = delta_mm[X_AXIS]*inverse_millimeters;
- unit_vec[Y_AXIS] = delta_mm[Y_AXIS]*inverse_millimeters;
- unit_vec[Z_AXIS] = delta_mm[Z_AXIS]*inverse_millimeters;
-
-
-
-
-
-
-
-
-
- double vmax_junction = MINIMUM_PLANNER_SPEED;
-
- if ((block_buffer_head != block_buffer_tail) && (previous_nominal_speed > 0.0)) {
-
-
- double cos_theta = - previous_unit_vec[X_AXIS] * unit_vec[X_AXIS]
- - previous_unit_vec[Y_AXIS] * unit_vec[Y_AXIS]
- - previous_unit_vec[Z_AXIS] * unit_vec[Z_AXIS] ;
-
- if (cos_theta < 0.95) {
- vmax_junction = min(previous_nominal_speed,block->nominal_speed);
-
- if (cos_theta > -0.95) {
-
- double sin_theta_d2 = sqrt(0.5*(1.0-cos_theta));
- vmax_junction = min(vmax_junction,
- sqrt(block->acceleration * junction_deviation * sin_theta_d2/(1.0-sin_theta_d2)) );
- }
- }
- }
- #endif
-
-
-
-
- float vmax_junction = max_xy_jerk/2.f;
- if(fabs(current_speed[Z_AXIS]) > max_z_jerk/2.f)
- vmax_junction = min(vmax_junction, max_z_jerk/2.f);
- if(fabs(current_speed[E_AXIS]) > max_e_jerk/2.f)
- vmax_junction = min(vmax_junction, max_e_jerk/2.f);
- vmax_junction = min(vmax_junction, block->nominal_speed);
-
- float safe_speed = vmax_junction;
-
-
-
- if (moves_queued > 1 && previous_nominal_speed > 0.0001f) {
- #if 1
- float jerk;
- {
- float dx = current_speed[X_AXIS]-previous_speed[X_AXIS];
- float dy = current_speed[Y_AXIS]-previous_speed[Y_AXIS];
- jerk = sqrt(dx*dx+dy*dy);
- }
- float vmax_junction_factor = 1.0;
-
- vmax_junction = block->nominal_speed;
-
- if (jerk > max_xy_jerk)
- vmax_junction_factor = max_xy_jerk/jerk;
- jerk = fabs(current_speed[Z_AXIS] - previous_speed[Z_AXIS]);
- if (jerk > max_z_jerk)
- vmax_junction_factor = min(vmax_junction_factor, max_z_jerk/jerk);
- jerk = fabs(current_speed[E_AXIS] - previous_speed[E_AXIS]);
- if (jerk > max_e_jerk)
- vmax_junction_factor = min(vmax_junction_factor, max_e_jerk/jerk);
-
- vmax_junction = min(previous_nominal_speed, vmax_junction * vmax_junction_factor);
- #else
-
-
-
-
- bool prev_speed_larger = previous_nominal_speed > block->nominal_speed;
- float smaller_speed_factor = prev_speed_larger ? (block->nominal_speed / previous_nominal_speed) : (previous_nominal_speed / block->nominal_speed);
-
- vmax_junction = prev_speed_larger ? block->nominal_speed : previous_nominal_speed;
-
- float v_factor_exit = prev_speed_larger ? smaller_speed_factor : 1.f;
- float v_factor_entry = prev_speed_larger ? 1.f : smaller_speed_factor;
-
- float jerk;
- {
-
-
-
- float dx = prev_speed_larger ? (current_speed[X_AXIS] - smaller_speed_factor * previous_speed[X_AXIS]) : (smaller_speed_factor * current_speed[X_AXIS] - previous_speed[X_AXIS]);
- float dy = prev_speed_larger ? (current_speed[Y_AXIS] - smaller_speed_factor * previous_speed[Y_AXIS]) : (smaller_speed_factor * current_speed[Y_AXIS] - previous_speed[Y_AXIS]);
- jerk = sqrt(dx*dx+dy*dy);
- }
- if (jerk > max_xy_jerk) {
-
- v_factor_exit = v_factor_entry = max_xy_jerk / jerk;
- if (prev_speed_larger)
- v_factor_exit *= smaller_speed_factor;
- else
- v_factor_entry *= smaller_speed_factor;
- }
-
- float v_exit = previous_speed[Z_AXIS] * v_factor_exit;
- float v_entry = current_speed [Z_AXIS] * v_factor_entry;
- jerk = (v_exit > v_entry) ?
- ((v_entry > 0.f || v_exit < 0.f) ?
-
- (v_exit - v_entry) :
-
- max(v_exit, - v_entry)) :
-
- ((v_entry < 0.f || v_exit > 0.f) ?
-
- (v_entry - v_exit) :
-
- max(- v_exit, v_entry));
- if (jerk > max_z_jerk / 2.f) {
- float c = (max_z_jerk / 2.f) / jerk;
- v_factor_exit *= c;
- v_factor_entry *= c;
- }
-
- v_exit = previous_speed[E_AXIS] * v_factor_exit;
- v_entry = current_speed [E_AXIS] * v_factor_entry;
- jerk = (v_exit > v_entry) ?
- ((v_entry > 0.f || v_exit < 0.f) ?
-
- (v_exit - v_entry) :
-
- max(v_exit, - v_entry)) :
-
- ((v_entry < 0.f || v_exit > 0.f) ?
-
- (v_entry - v_exit) :
-
- max(- v_exit, v_entry));
- if (jerk > max_e_jerk / 2.f) {
- float c = (max_e_jerk / 2.f) / jerk;
- v_factor_exit *= c;
- v_factor_entry *= c;
- }
-
-
-
- #endif
- }
-
- block->max_entry_speed = vmax_junction;
-
- double v_allowable = max_allowable_entry_speed(-block->acceleration,safe_speed,block->millimeters);
- block->entry_speed = min(vmax_junction, v_allowable);
-
-
-
-
-
-
-
-
-
- block->flag = (block->nominal_speed <= v_allowable) ? (BLOCK_FLAG_NOMINAL_LENGTH | BLOCK_FLAG_RECALCULATE) : BLOCK_FLAG_RECALCULATE;
-
- memcpy(previous_speed, current_speed, sizeof(previous_speed));
- previous_nominal_speed = block->nominal_speed;
- #ifdef ADVANCE
-
- if((block->steps_e == 0) || (block->steps_x == 0 && block->steps_y == 0 && block->steps_z == 0)) {
- block->advance_rate = 0;
- block->advance = 0;
- }
- else {
- long acc_dist = estimate_acceleration_distance(0, block->nominal_rate, block->acceleration_st);
- float advance = (STEPS_PER_CUBIC_MM_E * EXTRUDER_ADVANCE_K) *
- (current_speed[E_AXIS] * current_speed[E_AXIS] * EXTRUSION_AREA * EXTRUSION_AREA)*256;
- block->advance = advance;
- if(acc_dist == 0) {
- block->advance_rate = 0;
- }
- else {
- block->advance_rate = advance / (float)acc_dist;
- }
- }
-
- #endif
- calculate_trapezoid_for_block(block, block->entry_speed/block->nominal_speed, safe_speed/block->nominal_speed);
-
- block_buffer_head = next_buffer_head;
-
- memcpy(position, target, sizeof(target));
-
-
-
-
- planner_recalculate(safe_speed);
- st_wake_up();
- }
- #ifdef ENABLE_AUTO_BED_LEVELING
- vector_3 plan_get_position() {
- vector_3 position = vector_3(st_get_position_mm(X_AXIS), st_get_position_mm(Y_AXIS), st_get_position_mm(Z_AXIS));
-
-
- matrix_3x3 inverse = matrix_3x3::transpose(plan_bed_level_matrix);
-
- position.apply_rotation(inverse);
-
- return position;
- }
- #endif
- void plan_set_position(float x, float y, float z, const float &e)
- {
- #ifdef ENABLE_AUTO_BED_LEVELING
- apply_rotation_xyz(plan_bed_level_matrix, x, y, z);
- #endif
-
- {
- float tmpx = x;
- float tmpy = y;
- x = world2machine_rotation_and_skew[0][0] * tmpx + world2machine_rotation_and_skew[0][1] * tmpy + world2machine_shift[0];
- y = world2machine_rotation_and_skew[1][0] * tmpx + world2machine_rotation_and_skew[1][1] * tmpy + world2machine_shift[1];
- }
- position[X_AXIS] = lround(x*axis_steps_per_unit[X_AXIS]);
- position[Y_AXIS] = lround(y*axis_steps_per_unit[Y_AXIS]);
- #ifdef MESH_BED_LEVELING
- if (mbl.active){
- position[Z_AXIS] = lround((z+mbl.get_z(x, y))*axis_steps_per_unit[Z_AXIS]);
- }else{
- position[Z_AXIS] = lround(z*axis_steps_per_unit[Z_AXIS]);
- }
- #else
- position[Z_AXIS] = lround(z*axis_steps_per_unit[Z_AXIS]);
- #endif
- position[E_AXIS] = lround(e*axis_steps_per_unit[E_AXIS]);
- st_set_position(position[X_AXIS], position[Y_AXIS], position[Z_AXIS], position[E_AXIS]);
- previous_nominal_speed = 0.0;
- previous_speed[0] = 0.0;
- previous_speed[1] = 0.0;
- previous_speed[2] = 0.0;
- previous_speed[3] = 0.0;
- }
- void plan_set_z_position(const float &z)
- {
- position[Z_AXIS] = lround(z*axis_steps_per_unit[Z_AXIS]);
- st_set_position(position[X_AXIS], position[Y_AXIS], position[Z_AXIS], position[E_AXIS]);
- }
- void plan_set_e_position(const float &e)
- {
- position[E_AXIS] = lround(e*axis_steps_per_unit[E_AXIS]);
- st_set_e_position(position[E_AXIS]);
- }
- #ifdef PREVENT_DANGEROUS_EXTRUDE
- void set_extrude_min_temp(float temp)
- {
- extrude_min_temp=temp;
- }
- #endif
- void reset_acceleration_rates()
- {
- for(int8_t i=0; i < NUM_AXIS; i++)
- {
- axis_steps_per_sqr_second[i] = max_acceleration_units_per_sq_second[i] * axis_steps_per_unit[i];
- }
- }
|