@ -280,7 +280,6 @@ bool Running = true;
uint8_t marlin_debug_flags = DEBUG_NONE ;
uint8_t marlin_debug_flags = DEBUG_NONE ;
static float feedrate = 1500.0 , saved_feedrate ;
float current_position [ NUM_AXIS ] = { 0.0 } ;
float current_position [ NUM_AXIS ] = { 0.0 } ;
static float destination [ NUM_AXIS ] = { 0.0 } ;
static float destination [ NUM_AXIS ] = { 0.0 } ;
bool axis_known_position [ 3 ] = { false } ;
bool axis_known_position [ 3 ] = { false } ;
@ -302,11 +301,15 @@ static uint8_t cmd_queue_index_r = 0,
TempUnit input_temp_units = TEMPUNIT_C ;
TempUnit input_temp_units = TEMPUNIT_C ;
# endif
# endif
const float homing_feedrate [ ] = HOMING_FEEDRATE ;
/**
* Feed rates are often configured with mm / m
* but the planner and stepper like mm / s units .
*/
const float homing_feedrate_mm_m [ ] = HOMING_FEEDRATE ;
static float feedrate_mm_m = 1500.0 , saved_feedrate_mm_m ;
int feedrate_percentage = 100 , saved_feedrate_percentage ;
bool axis_relative_modes [ ] = AXIS_RELATIVE_MODES ;
bool axis_relative_modes [ ] = AXIS_RELATIVE_MODES ;
int feedrate_multiplier = 100 ; //100->1 200->2
int saved_feedrate_multiplier ;
int extruder_multiplier [ EXTRUDERS ] = ARRAY_BY_EXTRUDERS1 ( 100 ) ;
int extruder_multiplier [ EXTRUDERS ] = ARRAY_BY_EXTRUDERS1 ( 100 ) ;
bool volumetric_enabled = false ;
bool volumetric_enabled = false ;
float filament_size [ EXTRUDERS ] = ARRAY_BY_EXTRUDERS1 ( DEFAULT_NOMINAL_FILAMENT_DIA ) ;
float filament_size [ EXTRUDERS ] = ARRAY_BY_EXTRUDERS1 ( DEFAULT_NOMINAL_FILAMENT_DIA ) ;
@ -382,16 +385,16 @@ static uint8_t target_extruder;
float zprobe_zoffset = Z_PROBE_OFFSET_FROM_EXTRUDER ;
float zprobe_zoffset = Z_PROBE_OFFSET_FROM_EXTRUDER ;
# endif
# endif
# define PLANNER_XY_FEEDRATE() (min(planner.max_feedrate [X_AXIS], planner.max_feedrate[Y_AXIS]))
# define PLANNER_XY_FEEDRATE() (min(planner.max_feedrate _mm_s [X_AXIS], planner.max_feedrate_mm_s [Y_AXIS]))
# if ENABLED(AUTO_BED_LEVELING_FEATURE)
# if ENABLED(AUTO_BED_LEVELING_FEATURE)
int xy_probe_ speed = XY_PROBE_SPEED ;
int xy_probe_ feedrate_mm_m = XY_PROBE_SPEED ;
bool bed_leveling_in_progress = false ;
bool bed_leveling_in_progress = false ;
# define XY_PROBE_FEEDRATE xy_probe_speed
# define XY_PROBE_FEEDRATE _MM_M xy_probe_feedrate_mm_m
# elif defined(XY_PROBE_SPEED)
# elif defined(XY_PROBE_SPEED)
# define XY_PROBE_FEEDRATE XY_PROBE_SPEED
# define XY_PROBE_FEEDRATE _MM_M XY_PROBE_SPEED
# else
# else
# define XY_PROBE_FEEDRATE (PLANNER_XY_FEEDRATE() * 60 )
# define XY_PROBE_FEEDRATE _MM_M MMS_TO_MMM (PLANNER_XY_FEEDRATE())
# endif
# endif
# if ENABLED(Z_DUAL_ENDSTOPS) && DISABLED(DELTA)
# if ENABLED(Z_DUAL_ENDSTOPS) && DISABLED(DELTA)
@ -430,7 +433,7 @@ static uint8_t target_extruder;
float retract_zlift = RETRACT_ZLIFT ;
float retract_zlift = RETRACT_ZLIFT ;
float retract_recover_length = RETRACT_RECOVER_LENGTH ;
float retract_recover_length = RETRACT_RECOVER_LENGTH ;
float retract_recover_length_swap = RETRACT_RECOVER_LENGTH_SWAP ;
float retract_recover_length_swap = RETRACT_RECOVER_LENGTH_SWAP ;
float retract_recover_feedrate = RETRACT_RECOVER_FEEDRATE ;
float retract_recover_feedrate _mm_s = RETRACT_RECOVER_FEEDRATE ;
# endif // FWRETRACT
# endif // FWRETRACT
@ -1598,7 +1601,7 @@ inline void set_homing_bump_feedrate(AxisEnum axis) {
SERIAL_ECHO_START ;
SERIAL_ECHO_START ;
SERIAL_ECHOLNPGM ( " Warning: Homing Bump Divisor < 1 " ) ;
SERIAL_ECHOLNPGM ( " Warning: Homing Bump Divisor < 1 " ) ;
}
}
feedrate = homing_feedrate [ axis ] / hbd ;
feedrate _mm_m = homing_feedrate _mm_m [ axis ] / hbd ;
}
}
//
//
// line_to_current_position
// line_to_current_position
@ -1606,19 +1609,19 @@ inline void set_homing_bump_feedrate(AxisEnum axis) {
// (or from wherever it has been told it is located).
// (or from wherever it has been told it is located).
//
//
inline void line_to_current_position ( ) {
inline void line_to_current_position ( ) {
planner . buffer_line ( current_position [ X_AXIS ] , current_position [ Y_AXIS ] , current_position [ Z_AXIS ] , current_position [ E_AXIS ] , feedrate / 60 , active_extruder ) ;
planner . buffer_line ( current_position [ X_AXIS ] , current_position [ Y_AXIS ] , current_position [ Z_AXIS ] , current_position [ E_AXIS ] , MMM_TO_MMS( feedrate_mm_m ) , active_extruder ) ;
}
}
inline void line_to_z ( float zPosition ) {
inline void line_to_z ( float zPosition ) {
planner . buffer_line ( current_position [ X_AXIS ] , current_position [ Y_AXIS ] , zPosition , current_position [ E_AXIS ] , feedrate / 60 , active_extruder ) ;
planner . buffer_line ( current_position [ X_AXIS ] , current_position [ Y_AXIS ] , zPosition , current_position [ E_AXIS ] , MMM_TO_MMS( feedrate_mm_m ) , active_extruder ) ;
}
}
//
//
// line_to_destination
// line_to_destination
// Move the planner, not necessarily synced with current_position
// Move the planner, not necessarily synced with current_position
//
//
inline void line_to_destination ( float mm_m) {
inline void line_to_destination ( float fr_ mm_m) {
planner . buffer_line ( destination [ X_AXIS ] , destination [ Y_AXIS ] , destination [ Z_AXIS ] , destination [ E_AXIS ] , mm_m / 60 , active_extruder ) ;
planner . buffer_line ( destination [ X_AXIS ] , destination [ Y_AXIS ] , destination [ Z_AXIS ] , destination [ E_AXIS ] , MMM_TO_MMS( fr_mm_m ) , active_extruder ) ;
}
}
inline void line_to_destination ( ) { line_to_destination ( feedrate ) ; }
inline void line_to_destination ( ) { line_to_destination ( feedrate _mm_m ) ; }
/**
/**
* sync_plan_position
* sync_plan_position
@ -1646,7 +1649,7 @@ inline void set_destination_to_current() { memcpy(destination, current_position,
# endif
# endif
refresh_cmd_timeout ( ) ;
refresh_cmd_timeout ( ) ;
calculate_delta ( destination ) ;
calculate_delta ( destination ) ;
planner . buffer_line ( delta [ X_AXIS ] , delta [ Y_AXIS ] , delta [ Z_AXIS ] , destination [ E_AXIS ] , ( feedrate / 60 ) * ( feedrate_multiplier / 100.0 ) , active_extruder ) ;
planner . buffer_line ( delta [ X_AXIS ] , delta [ Y_AXIS ] , delta [ Z_AXIS ] , destination [ E_AXIS ] , MMM_TO_MMS_SCALED ( feedrate_mm_m ) , active_extruder ) ;
set_current_to_destination ( ) ;
set_current_to_destination ( ) ;
}
}
# endif
# endif
@ -1655,8 +1658,8 @@ inline void set_destination_to_current() { memcpy(destination, current_position,
* Plan a move to ( X , Y , Z ) and set the current_position
* Plan a move to ( X , Y , Z ) and set the current_position
* The final current_position may not be the one that was requested
* The final current_position may not be the one that was requested
*/
*/
static void do_blocking_move_to ( float x , float y , float z , float f eed_rate = 0.0 ) {
static void do_blocking_move_to ( float x , float y , float z , float f r_mm_m = 0.0 ) {
float old_feedrate = feedrate ;
float old_feedrate _mm_m = feedrate _mm_m ;
# if ENABLED(DEBUG_LEVELING_FEATURE)
# if ENABLED(DEBUG_LEVELING_FEATURE)
if ( DEBUGGING ( LEVELING ) ) print_xyz ( PSTR ( " do_blocking_move_to " ) , NULL , x , y , z ) ;
if ( DEBUGGING ( LEVELING ) ) print_xyz ( PSTR ( " do_blocking_move_to " ) , NULL , x , y , z ) ;
@ -1664,7 +1667,7 @@ static void do_blocking_move_to(float x, float y, float z, float feed_rate = 0.0
# if ENABLED(DELTA)
# if ENABLED(DELTA)
feedrate = ( feed_rate ! = 0.0 ) ? feed_rate : XY_PROBE_FEEDRATE ;
feedrate _mm_m = ( fr_mm_m ! = 0.0 ) ? fr_mm_m : XY_PROBE_FEEDRATE_MM_M ;
destination [ X_AXIS ] = x ;
destination [ X_AXIS ] = x ;
destination [ Y_AXIS ] = y ;
destination [ Y_AXIS ] = y ;
@ -1679,19 +1682,19 @@ static void do_blocking_move_to(float x, float y, float z, float feed_rate = 0.0
// If Z needs to raise, do it before moving XY
// If Z needs to raise, do it before moving XY
if ( current_position [ Z_AXIS ] < z ) {
if ( current_position [ Z_AXIS ] < z ) {
feedrate = ( feed_rate ! = 0.0 ) ? feed_rate : homing_feedrate [ Z_AXIS ] ;
feedrate _mm_m = ( fr_mm_m ! = 0.0 ) ? fr_mm_m : homing_feedrate_mm_m [ Z_AXIS ] ;
current_position [ Z_AXIS ] = z ;
current_position [ Z_AXIS ] = z ;
line_to_current_position ( ) ;
line_to_current_position ( ) ;
}
}
feedrate = ( feed_rate ! = 0.0 ) ? feed_rate : XY_PROBE_FEEDRATE ;
feedrate _mm_m = ( fr_mm_m ! = 0.0 ) ? fr_mm_m : XY_PROBE_FEEDRATE_MM_M ;
current_position [ X_AXIS ] = x ;
current_position [ X_AXIS ] = x ;
current_position [ Y_AXIS ] = y ;
current_position [ Y_AXIS ] = y ;
line_to_current_position ( ) ;
line_to_current_position ( ) ;
// If Z needs to lower, do it after moving XY
// If Z needs to lower, do it after moving XY
if ( current_position [ Z_AXIS ] > z ) {
if ( current_position [ Z_AXIS ] > z ) {
feedrate = ( feed_rate ! = 0.0 ) ? feed_rate : homing_feedrate [ Z_AXIS ] ;
feedrate _mm_m = ( fr_mm_m ! = 0.0 ) ? fr_mm_m : homing_feedrate_mm_m [ Z_AXIS ] ;
current_position [ Z_AXIS ] = z ;
current_position [ Z_AXIS ] = z ;
line_to_current_position ( ) ;
line_to_current_position ( ) ;
}
}
@ -1700,23 +1703,23 @@ static void do_blocking_move_to(float x, float y, float z, float feed_rate = 0.0
stepper . synchronize ( ) ;
stepper . synchronize ( ) ;
feedrate = old_feedrate ;
feedrate _mm_m = old_feedrate _mm_m ;
}
}
inline void do_blocking_move_to_x ( float x , float f eed_rate = 0.0 ) {
inline void do_blocking_move_to_x ( float x , float f r_mm_m = 0.0 ) {
do_blocking_move_to ( x , current_position [ Y_AXIS ] , current_position [ Z_AXIS ] , f eed_rate ) ;
do_blocking_move_to ( x , current_position [ Y_AXIS ] , current_position [ Z_AXIS ] , f r_mm_m ) ;
}
}
inline void do_blocking_move_to_y ( float y ) {
inline void do_blocking_move_to_y ( float y ) {
do_blocking_move_to ( current_position [ X_AXIS ] , y , current_position [ Z_AXIS ] ) ;
do_blocking_move_to ( current_position [ X_AXIS ] , y , current_position [ Z_AXIS ] ) ;
}
}
inline void do_blocking_move_to_xy ( float x , float y , float f eed_rate = 0.0 ) {
inline void do_blocking_move_to_xy ( float x , float y , float f r_mm_m = 0.0 ) {
do_blocking_move_to ( x , y , current_position [ Z_AXIS ] , f eed_rate ) ;
do_blocking_move_to ( x , y , current_position [ Z_AXIS ] , f r_mm_m ) ;
}
}
inline void do_blocking_move_to_z ( float z , float f eed_rate = 0.0 ) {
inline void do_blocking_move_to_z ( float z , float f r_mm_m = 0.0 ) {
do_blocking_move_to ( current_position [ X_AXIS ] , current_position [ Y_AXIS ] , z , f eed_rate ) ;
do_blocking_move_to ( current_position [ X_AXIS ] , current_position [ Y_AXIS ] , z , f r_mm_m ) ;
}
}
//
//
@ -1732,9 +1735,9 @@ static void setup_for_endstop_or_probe_move() {
# if ENABLED(DEBUG_LEVELING_FEATURE)
# if ENABLED(DEBUG_LEVELING_FEATURE)
if ( DEBUGGING ( LEVELING ) ) DEBUG_POS ( " setup_for_endstop_or_probe_move " , current_position ) ;
if ( DEBUGGING ( LEVELING ) ) DEBUG_POS ( " setup_for_endstop_or_probe_move " , current_position ) ;
# endif
# endif
saved_feedrate = feedrate ;
saved_feedrate _mm_m = feedrate _mm_m ;
saved_feedrate_ multi pli er = feedrate_ multi pli er;
saved_feedrate_ percentage = feedrate_ percentage ;
feedrate_ multi pli er = 100 ;
feedrate_ percentage = 100 ;
refresh_cmd_timeout ( ) ;
refresh_cmd_timeout ( ) ;
}
}
@ -1742,8 +1745,8 @@ static void clean_up_after_endstop_or_probe_move() {
# if ENABLED(DEBUG_LEVELING_FEATURE)
# if ENABLED(DEBUG_LEVELING_FEATURE)
if ( DEBUGGING ( LEVELING ) ) DEBUG_POS ( " clean_up_after_endstop_or_probe_move " , current_position ) ;
if ( DEBUGGING ( LEVELING ) ) DEBUG_POS ( " clean_up_after_endstop_or_probe_move " , current_position ) ;
# endif
# endif
feedrate = saved_feedrate ;
feedrate _mm_m = saved_feedrate _mm_m ;
feedrate_ multi pli er = saved_feedrate_ multi pli er;
feedrate_ percentage = saved_feedrate_ percentage ;
refresh_cmd_timeout ( ) ;
refresh_cmd_timeout ( ) ;
}
}
@ -2061,7 +2064,7 @@ static void clean_up_after_endstop_or_probe_move() {
// at the height where the probe triggered.
// at the height where the probe triggered.
static float run_z_probe ( ) {
static float run_z_probe ( ) {
float old_feedrate = feedrate ;
float old_feedrate _mm_m = feedrate _mm_m ;
// Prevent stepper_inactive_time from running out and EXTRUDER_RUNOUT_PREVENT from extruding
// Prevent stepper_inactive_time from running out and EXTRUDER_RUNOUT_PREVENT from extruding
refresh_cmd_timeout ( ) ;
refresh_cmd_timeout ( ) ;
@ -2076,7 +2079,7 @@ static void clean_up_after_endstop_or_probe_move() {
# endif
# endif
// move down slowly until you find the bed
// move down slowly until you find the bed
feedrate = homing_feedrate [ Z_AXIS ] / 4 ;
feedrate _mm_m = homing_feedrate _mm_m [ Z_AXIS ] / 4 ;
destination [ Z_AXIS ] = - 10 ;
destination [ Z_AXIS ] = - 10 ;
prepare_move_to_destination_raw ( ) ; // this will also set_current_to_destination
prepare_move_to_destination_raw ( ) ; // this will also set_current_to_destination
stepper . synchronize ( ) ;
stepper . synchronize ( ) ;
@ -2100,7 +2103,7 @@ static void clean_up_after_endstop_or_probe_move() {
planner . bed_level_matrix . set_to_identity ( ) ;
planner . bed_level_matrix . set_to_identity ( ) ;
# endif
# endif
feedrate = homing_feedrate [ Z_AXIS ] ;
feedrate _mm_m = homing_feedrate _mm_m [ Z_AXIS ] ;
// Move down until the Z probe (or endstop?) is triggered
// Move down until the Z probe (or endstop?) is triggered
float zPosition = - ( Z_MAX_LENGTH + 10 ) ;
float zPosition = - ( Z_MAX_LENGTH + 10 ) ;
@ -2139,7 +2142,7 @@ static void clean_up_after_endstop_or_probe_move() {
SYNC_PLAN_POSITION_KINEMATIC ( ) ;
SYNC_PLAN_POSITION_KINEMATIC ( ) ;
feedrate = old_feedrate ;
feedrate _mm_m = old_feedrate _mm_m ;
return current_position [ Z_AXIS ] ;
return current_position [ Z_AXIS ] ;
}
}
@ -2164,7 +2167,7 @@ static void clean_up_after_endstop_or_probe_move() {
}
}
# endif
# endif
float old_feedrate = feedrate ;
float old_feedrate _mm_m = feedrate _mm_m ;
// Ensure a minimum height before moving the probe
// Ensure a minimum height before moving the probe
do_probe_raise ( Z_RAISE_BETWEEN_PROBINGS ) ;
do_probe_raise ( Z_RAISE_BETWEEN_PROBINGS ) ;
@ -2177,7 +2180,7 @@ static void clean_up_after_endstop_or_probe_move() {
SERIAL_ECHOLNPGM ( " ) " ) ;
SERIAL_ECHOLNPGM ( " ) " ) ;
}
}
# endif
# endif
feedrate = XY_PROBE_FEEDRATE ;
feedrate _mm_m = XY_PROBE_FEEDRATE _MM_M ;
do_blocking_move_to_xy ( x - ( X_PROBE_OFFSET_FROM_EXTRUDER ) , y - ( Y_PROBE_OFFSET_FROM_EXTRUDER ) ) ;
do_blocking_move_to_xy ( x - ( X_PROBE_OFFSET_FROM_EXTRUDER ) , y - ( Y_PROBE_OFFSET_FROM_EXTRUDER ) ) ;
# if ENABLED(DEBUG_LEVELING_FEATURE)
# if ENABLED(DEBUG_LEVELING_FEATURE)
@ -2214,7 +2217,7 @@ static void clean_up_after_endstop_or_probe_move() {
if ( DEBUGGING ( LEVELING ) ) SERIAL_ECHOLNPGM ( " <<< probe_pt " ) ;
if ( DEBUGGING ( LEVELING ) ) SERIAL_ECHOLNPGM ( " <<< probe_pt " ) ;
# endif
# endif
feedrate = old_feedrate ;
feedrate _mm_m = old_feedrate _mm_m ;
return measured_z ;
return measured_z ;
}
}
@ -2415,7 +2418,7 @@ static void homeaxis(AxisEnum axis) {
// Move towards the endstop until an endstop is triggered
// Move towards the endstop until an endstop is triggered
destination [ axis ] = 1.5 * max_length ( axis ) * axis_home_dir ;
destination [ axis ] = 1.5 * max_length ( axis ) * axis_home_dir ;
feedrate = homing_feedrate [ axis ] ;
feedrate _mm_m = homing_feedrate _mm_m [ axis ] ;
line_to_destination ( ) ;
line_to_destination ( ) ;
stepper . synchronize ( ) ;
stepper . synchronize ( ) ;
@ -2455,7 +2458,7 @@ static void homeaxis(AxisEnum axis) {
sync_plan_position ( ) ;
sync_plan_position ( ) ;
// Move to the adjusted endstop height
// Move to the adjusted endstop height
feedrate = homing_feedrate [ axis ] ;
feedrate _mm_m = homing_feedrate _mm_m [ axis ] ;
destination [ Z_AXIS ] = adj ;
destination [ Z_AXIS ] = adj ;
line_to_destination ( ) ;
line_to_destination ( ) ;
stepper . synchronize ( ) ;
stepper . synchronize ( ) ;
@ -2519,13 +2522,13 @@ static void homeaxis(AxisEnum axis) {
if ( retracting = = retracted [ active_extruder ] ) return ;
if ( retracting = = retracted [ active_extruder ] ) return ;
float old_feedrate = feedrate ;
float old_feedrate _mm_m = feedrate _mm_m ;
set_destination_to_current ( ) ;
set_destination_to_current ( ) ;
if ( retracting ) {
if ( retracting ) {
feedrate = retract_feedrate_mm_s * 60 ;
feedrate _mm_m = MMS_TO_MMM ( retract_feedrate_mm_s ) ;
current_position [ E_AXIS ] + = ( swapping ? retract_length_swap : retract_length ) / volumetric_multiplier [ active_extruder ] ;
current_position [ E_AXIS ] + = ( swapping ? retract_length_swap : retract_length ) / volumetric_multiplier [ active_extruder ] ;
sync_plan_position_e ( ) ;
sync_plan_position_e ( ) ;
prepare_move_to_destination ( ) ;
prepare_move_to_destination ( ) ;
@ -2543,14 +2546,14 @@ static void homeaxis(AxisEnum axis) {
SYNC_PLAN_POSITION_KINEMATIC ( ) ;
SYNC_PLAN_POSITION_KINEMATIC ( ) ;
}
}
feedrate = retract_recover_feedrate * 60 ;
feedrate _mm_m = MMM_TO_MMS ( retract_recover_feedrate_mm_s ) ;
float move_e = swapping ? retract_length_swap + retract_recover_length_swap : retract_length + retract_recover_length ;
float move_e = swapping ? retract_length_swap + retract_recover_length_swap : retract_length + retract_recover_length ;
current_position [ E_AXIS ] - = move_e / volumetric_multiplier [ active_extruder ] ;
current_position [ E_AXIS ] - = move_e / volumetric_multiplier [ active_extruder ] ;
sync_plan_position_e ( ) ;
sync_plan_position_e ( ) ;
prepare_move_to_destination ( ) ;
prepare_move_to_destination ( ) ;
}
}
feedrate = old_feedrate ;
feedrate _mm_m = old_feedrate _mm_m ;
retracted [ active_extruder ] = retracting ;
retracted [ active_extruder ] = retracting ;
} // retract()
} // retract()
@ -2612,7 +2615,7 @@ void gcode_get_destination() {
}
}
if ( code_seen ( ' F ' ) & & code_value_linear_units ( ) > 0.0 )
if ( code_seen ( ' F ' ) & & code_value_linear_units ( ) > 0.0 )
feedrate = code_value_linear_units ( ) ;
feedrate _mm_m = code_value_linear_units ( ) ;
# if ENABLED(PRINTCOUNTER)
# if ENABLED(PRINTCOUNTER)
if ( ! DEBUGGING ( DRYRUN ) )
if ( ! DEBUGGING ( DRYRUN ) )
@ -2845,7 +2848,7 @@ inline void gcode_G4() {
destination [ X_AXIS ] = 1.5 * mlx * x_axis_home_dir ;
destination [ X_AXIS ] = 1.5 * mlx * x_axis_home_dir ;
destination [ Y_AXIS ] = 1.5 * mly * home_dir ( Y_AXIS ) ;
destination [ Y_AXIS ] = 1.5 * mly * home_dir ( Y_AXIS ) ;
feedrate = min ( homing_feedrate [ X_AXIS ] , homing_feedrate [ Y_AXIS ] ) * sqrt ( mlratio * mlratio + 1 ) ;
feedrate _mm_m = min ( homing_feedrate _mm_m [ X_AXIS ] , homing_feedrate _mm_m [ Y_AXIS ] ) * sqrt ( sq( mlratio ) + 1 ) ;
line_to_destination ( ) ;
line_to_destination ( ) ;
stepper . synchronize ( ) ;
stepper . synchronize ( ) ;
endstops . hit_on_purpose ( ) ; // clear endstop hit flags
endstops . hit_on_purpose ( ) ; // clear endstop hit flags
@ -2942,7 +2945,7 @@ inline void gcode_G28() {
// Move all carriages up together until the first endstop is hit.
// Move all carriages up together until the first endstop is hit.
for ( int i = X_AXIS ; i < = Z_AXIS ; i + + ) destination [ i ] = 3 * ( Z_MAX_LENGTH ) ;
for ( int i = X_AXIS ; i < = Z_AXIS ; i + + ) destination [ i ] = 3 * ( Z_MAX_LENGTH ) ;
feedrate = 1.732 * homing_feedrate [ X_AXIS ] ;
feedrate _mm_m = 1.732 * homing_feedrate _mm_m [ X_AXIS ] ;
line_to_destination ( ) ;
line_to_destination ( ) ;
stepper . synchronize ( ) ;
stepper . synchronize ( ) ;
endstops . hit_on_purpose ( ) ; // clear endstop hit flags
endstops . hit_on_purpose ( ) ; // clear endstop hit flags
@ -3163,7 +3166,7 @@ inline void gcode_G28() {
# if ENABLED(MESH_G28_REST_ORIGIN)
# if ENABLED(MESH_G28_REST_ORIGIN)
current_position [ Z_AXIS ] = 0.0 ;
current_position [ Z_AXIS ] = 0.0 ;
set_destination_to_current ( ) ;
set_destination_to_current ( ) ;
feedrate = homing_feedrate [ Z_AXIS ] ;
feedrate _mm_m = homing_feedrate _mm_m [ Z_AXIS ] ;
line_to_destination ( ) ;
line_to_destination ( ) ;
stepper . synchronize ( ) ;
stepper . synchronize ( ) ;
# if ENABLED(DEBUG_LEVELING_FEATURE)
# if ENABLED(DEBUG_LEVELING_FEATURE)
@ -3223,8 +3226,8 @@ inline void gcode_G28() {
enum MeshLevelingState { MeshReport , MeshStart , MeshNext , MeshSet , MeshSetZOffset , MeshReset } ;
enum MeshLevelingState { MeshReport , MeshStart , MeshNext , MeshSet , MeshSetZOffset , MeshReset } ;
inline void _mbl_goto_xy ( float x , float y ) {
inline void _mbl_goto_xy ( float x , float y ) {
float old_feedrate = feedrate ;
float old_feedrate _mm_m = feedrate _mm_m ;
feedrate = homing_feedrate [ X_AXIS ] ;
feedrate _mm_m = homing_feedrate _mm_m [ X_AXIS ] ;
current_position [ Z_AXIS ] = MESH_HOME_SEARCH_Z
current_position [ Z_AXIS ] = MESH_HOME_SEARCH_Z
# if Z_RAISE_BETWEEN_PROBINGS > MIN_Z_HEIGHT_FOR_HOMING
# if Z_RAISE_BETWEEN_PROBINGS > MIN_Z_HEIGHT_FOR_HOMING
@ -3244,7 +3247,7 @@ inline void gcode_G28() {
line_to_current_position ( ) ;
line_to_current_position ( ) ;
# endif
# endif
feedrate = old_feedrate ;
feedrate _mm_m = old_feedrate _mm_m ;
stepper . synchronize ( ) ;
stepper . synchronize ( ) ;
}
}
@ -3491,7 +3494,7 @@ inline void gcode_G28() {
}
}
# endif
# endif
xy_probe_ speed = code_seen ( ' S ' ) ? ( int ) code_value_linear_units ( ) : XY_PROBE_SPEED ;
xy_probe_ feedrate_mm_m = code_seen ( ' S ' ) ? ( int ) code_value_linear_units ( ) : XY_PROBE_SPEED ;
int left_probe_bed_position = code_seen ( ' L ' ) ? ( int ) code_value_axis_units ( X_AXIS ) : LEFT_PROBE_BED_POSITION ,
int left_probe_bed_position = code_seen ( ' L ' ) ? ( int ) code_value_axis_units ( X_AXIS ) : LEFT_PROBE_BED_POSITION ,
right_probe_bed_position = code_seen ( ' R ' ) ? ( int ) code_value_axis_units ( X_AXIS ) : RIGHT_PROBE_BED_POSITION ,
right_probe_bed_position = code_seen ( ' R ' ) ? ( int ) code_value_axis_units ( X_AXIS ) : RIGHT_PROBE_BED_POSITION ,
@ -5162,7 +5165,7 @@ inline void gcode_M92() {
if ( value < 20.0 ) {
if ( value < 20.0 ) {
float factor = planner . axis_steps_per_mm [ i ] / value ; // increase e constants if M92 E14 is given for netfab.
float factor = planner . axis_steps_per_mm [ i ] / value ; // increase e constants if M92 E14 is given for netfab.
planner . max_e_jerk * = factor ;
planner . max_e_jerk * = factor ;
planner . max_feedrate [ i ] * = factor ;
planner . max_feedrate _mm_s [ i ] * = factor ;
planner . max_acceleration_steps_per_s2 [ i ] * = factor ;
planner . max_acceleration_steps_per_s2 [ i ] * = factor ;
}
}
planner . axis_steps_per_mm [ i ] = value ;
planner . axis_steps_per_mm [ i ] = value ;
@ -5371,7 +5374,7 @@ inline void gcode_M201() {
inline void gcode_M203 ( ) {
inline void gcode_M203 ( ) {
for ( int8_t i = 0 ; i < NUM_AXIS ; i + + )
for ( int8_t i = 0 ; i < NUM_AXIS ; i + + )
if ( code_seen ( axis_codes [ i ] ) )
if ( code_seen ( axis_codes [ i ] ) )
planner . max_feedrate [ i ] = code_value_axis_units ( i ) ;
planner . max_feedrate _mm_s [ i ] = code_value_axis_units ( i ) ;
}
}
/**
/**
@ -5417,8 +5420,8 @@ inline void gcode_M204() {
* E = Max E Jerk ( units / sec ^ 2 )
* E = Max E Jerk ( units / sec ^ 2 )
*/
*/
inline void gcode_M205 ( ) {
inline void gcode_M205 ( ) {
if ( code_seen ( ' S ' ) ) planner . min_feedrate = code_value_linear_units ( ) ;
if ( code_seen ( ' S ' ) ) planner . min_feedrate _mm_s = code_value_linear_units ( ) ;
if ( code_seen ( ' T ' ) ) planner . min_travel_feedrate = code_value_linear_units ( ) ;
if ( code_seen ( ' T ' ) ) planner . min_travel_feedrate _mm_s = code_value_linear_units ( ) ;
if ( code_seen ( ' B ' ) ) planner . min_segment_time = code_value_millis ( ) ;
if ( code_seen ( ' B ' ) ) planner . min_segment_time = code_value_millis ( ) ;
if ( code_seen ( ' X ' ) ) planner . max_xy_jerk = code_value_linear_units ( ) ;
if ( code_seen ( ' X ' ) ) planner . max_xy_jerk = code_value_linear_units ( ) ;
if ( code_seen ( ' Z ' ) ) planner . max_z_jerk = code_value_axis_units ( Z_AXIS ) ;
if ( code_seen ( ' Z ' ) ) planner . max_z_jerk = code_value_axis_units ( Z_AXIS ) ;
@ -5516,7 +5519,7 @@ inline void gcode_M206() {
*/
*/
inline void gcode_M207 ( ) {
inline void gcode_M207 ( ) {
if ( code_seen ( ' S ' ) ) retract_length = code_value_axis_units ( E_AXIS ) ;
if ( code_seen ( ' S ' ) ) retract_length = code_value_axis_units ( E_AXIS ) ;
if ( code_seen ( ' F ' ) ) retract_feedrate_mm_s = code_value_axis_units( E_AXIS ) / 60 ;
if ( code_seen ( ' F ' ) ) retract_feedrate_mm_s = MMM_TO_MMS( code_value_axis_units( E_AXIS ) ) ;
if ( code_seen ( ' Z ' ) ) retract_zlift = code_value_axis_units ( Z_AXIS ) ;
if ( code_seen ( ' Z ' ) ) retract_zlift = code_value_axis_units ( Z_AXIS ) ;
# if EXTRUDERS > 1
# if EXTRUDERS > 1
if ( code_seen ( ' W ' ) ) retract_length_swap = code_value_axis_units ( E_AXIS ) ;
if ( code_seen ( ' W ' ) ) retract_length_swap = code_value_axis_units ( E_AXIS ) ;
@ -5528,11 +5531,11 @@ inline void gcode_M206() {
*
*
* S [ + units ] retract_recover_length ( in addition to M207 S * )
* S [ + units ] retract_recover_length ( in addition to M207 S * )
* W [ + units ] retract_recover_length_swap ( multi - extruder )
* W [ + units ] retract_recover_length_swap ( multi - extruder )
* F [ units / min ] retract_recover_feedrate
* F [ units / min ] retract_recover_feedrate _mm_s
*/
*/
inline void gcode_M208 ( ) {
inline void gcode_M208 ( ) {
if ( code_seen ( ' S ' ) ) retract_recover_length = code_value_axis_units ( E_AXIS ) ;
if ( code_seen ( ' S ' ) ) retract_recover_length = code_value_axis_units ( E_AXIS ) ;
if ( code_seen ( ' F ' ) ) retract_recover_feedrate = code_value_axis_units ( E_AXIS ) / 60 ;
if ( code_seen ( ' F ' ) ) retract_recover_feedrate _mm_s = MMM_TO_MMS ( code_value_axis_units ( E_AXIS ) ) ;
# if EXTRUDERS > 1
# if EXTRUDERS > 1
if ( code_seen ( ' W ' ) ) retract_recover_length_swap = code_value_axis_units ( E_AXIS ) ;
if ( code_seen ( ' W ' ) ) retract_recover_length_swap = code_value_axis_units ( E_AXIS ) ;
# endif
# endif
@ -5603,7 +5606,7 @@ inline void gcode_M206() {
* M220 : Set speed percentage factor , aka " Feed Rate " ( M220 S95 )
* M220 : Set speed percentage factor , aka " Feed Rate " ( M220 S95 )
*/
*/
inline void gcode_M220 ( ) {
inline void gcode_M220 ( ) {
if ( code_seen ( ' S ' ) ) feedrate_ multi pli er = code_value_int ( ) ;
if ( code_seen ( ' S ' ) ) feedrate_ percentage = code_value_int ( ) ;
}
}
/**
/**
@ -6307,10 +6310,10 @@ inline void gcode_M503() {
// Define runplan for move axes
// Define runplan for move axes
# if ENABLED(DELTA)
# if ENABLED(DELTA)
# define RUNPLAN(RATE ) calculate_delta(destination); \
# define RUNPLAN(RATE _MM_S ) calculate_delta(destination); \
planner . buffer_line ( delta [ X_AXIS ] , delta [ Y_AXIS ] , delta [ Z_AXIS ] , destination [ E_AXIS ] , RATE , active_extruder ) ;
planner . buffer_line ( delta [ X_AXIS ] , delta [ Y_AXIS ] , delta [ Z_AXIS ] , destination [ E_AXIS ] , RATE _MM_S , active_extruder ) ;
# else
# else
# define RUNPLAN(RATE ) line_to_destination(RATE * 60 );
# define RUNPLAN(RATE _MM_S) line_to_destination(MMS_TO_MMM(RATE_MM_S) );
# endif
# endif
KEEPALIVE_STATE ( IN_HANDLER ) ;
KEEPALIVE_STATE ( IN_HANDLER ) ;
@ -6725,14 +6728,14 @@ inline void gcode_T(uint8_t tmp_extruder) {
return ;
return ;
}
}
float old_feedrate = feedrate ;
float old_feedrate _mm_m = feedrate _mm_m ;
if ( code_seen ( ' F ' ) ) {
if ( code_seen ( ' F ' ) ) {
float next_feedrate = code_value_axis_units ( X_AXIS ) ;
float next_feedrate _mm_m = code_value_axis_units ( X_AXIS ) ;
if ( next_feedrate > 0.0 ) old_feedrate = feedrate = next_feedrate ;
if ( next_feedrate _mm_m > 0.0 ) old_feedrate _mm_m = feedrate _mm_m = next_feedrate _mm_m ;
}
}
else
else
feedrate = XY_PROBE_FEEDRATE ;
feedrate _mm_m = XY_PROBE_FEEDRATE _MM_M ;
if ( tmp_extruder ! = active_extruder ) {
if ( tmp_extruder ! = active_extruder ) {
bool no_move = code_seen ( ' S ' ) & & code_value_bool ( ) ;
bool no_move = code_seen ( ' S ' ) & & code_value_bool ( ) ;
@ -6775,7 +6778,7 @@ inline void gcode_T(uint8_t tmp_extruder) {
current_position [ Y_AXIS ] ,
current_position [ Y_AXIS ] ,
current_position [ Z_AXIS ] + ( i = = 2 ? 0 : TOOLCHANGE_PARK_ZLIFT ) ,
current_position [ Z_AXIS ] + ( i = = 2 ? 0 : TOOLCHANGE_PARK_ZLIFT ) ,
current_position [ E_AXIS ] ,
current_position [ E_AXIS ] ,
planner . max_feedrate [ i = = 1 ? X_AXIS : Z_AXIS ] ,
planner . max_feedrate _mm_s [ i = = 1 ? X_AXIS : Z_AXIS ] ,
active_extruder
active_extruder
) ;
) ;
stepper . synchronize ( ) ;
stepper . synchronize ( ) ;
@ -6838,7 +6841,7 @@ inline void gcode_T(uint8_t tmp_extruder) {
current_position [ Y_AXIS ] ,
current_position [ Y_AXIS ] ,
current_position [ Z_AXIS ] + z_raise ,
current_position [ Z_AXIS ] + z_raise ,
current_position [ E_AXIS ] ,
current_position [ E_AXIS ] ,
planner . max_feedrate [ Z_AXIS ] ,
planner . max_feedrate _mm_s [ Z_AXIS ] ,
active_extruder
active_extruder
) ;
) ;
stepper . synchronize ( ) ;
stepper . synchronize ( ) ;
@ -6853,7 +6856,7 @@ inline void gcode_T(uint8_t tmp_extruder) {
current_position [ Y_AXIS ] ,
current_position [ Y_AXIS ] ,
current_position [ Z_AXIS ] + z_diff ,
current_position [ Z_AXIS ] + z_diff ,
current_position [ E_AXIS ] ,
current_position [ E_AXIS ] ,
planner . max_feedrate [ Z_AXIS ] ,
planner . max_feedrate _mm_s [ Z_AXIS ] ,
active_extruder
active_extruder
) ;
) ;
stepper . synchronize ( ) ;
stepper . synchronize ( ) ;
@ -6984,7 +6987,7 @@ inline void gcode_T(uint8_t tmp_extruder) {
enable_solenoid_on_active_extruder ( ) ;
enable_solenoid_on_active_extruder ( ) ;
# endif // EXT_SOLENOID
# endif // EXT_SOLENOID
feedrate = old_feedrate ;
feedrate _mm_m = old_feedrate _mm_m ;
# else // HOTENDS <= 1
# else // HOTENDS <= 1
@ -7837,9 +7840,9 @@ void clamp_to_software_endstops(float target[3]) {
# if ENABLED(MESH_BED_LEVELING)
# if ENABLED(MESH_BED_LEVELING)
// This function is used to split lines on mesh borders so each segment is only part of one mesh area
// This function is used to split lines on mesh borders so each segment is only part of one mesh area
void mesh_buffer_line ( float x , float y , float z , const float e , float f eed_rate , const uint8_t & extruder , uint8_t x_splits = 0xff , uint8_t y_splits = 0xff ) {
void mesh_buffer_line ( float x , float y , float z , const float e , float f r_mm_s , const uint8_t & extruder , uint8_t x_splits = 0xff , uint8_t y_splits = 0xff ) {
if ( ! mbl . active ( ) ) {
if ( ! mbl . active ( ) ) {
planner . buffer_line ( x , y , z , e , f eed_rate , extruder ) ;
planner . buffer_line ( x , y , z , e , f r_mm_s , extruder ) ;
set_current_to_destination ( ) ;
set_current_to_destination ( ) ;
return ;
return ;
}
}
@ -7853,7 +7856,7 @@ void mesh_buffer_line(float x, float y, float z, const float e, float feed_rate,
NOMORE ( cy , MESH_NUM_Y_POINTS - 2 ) ;
NOMORE ( cy , MESH_NUM_Y_POINTS - 2 ) ;
if ( pcx = = cx & & pcy = = cy ) {
if ( pcx = = cx & & pcy = = cy ) {
// Start and end on same mesh square
// Start and end on same mesh square
planner . buffer_line ( x , y , z , e , f eed_rate , extruder ) ;
planner . buffer_line ( x , y , z , e , f r_mm_s , extruder ) ;
set_current_to_destination ( ) ;
set_current_to_destination ( ) ;
return ;
return ;
}
}
@ -7892,7 +7895,7 @@ void mesh_buffer_line(float x, float y, float z, const float e, float feed_rate,
}
}
else {
else {
// Already split on a border
// Already split on a border
planner . buffer_line ( x , y , z , e , f eed_rate , extruder ) ;
planner . buffer_line ( x , y , z , e , f r_mm_s , extruder ) ;
set_current_to_destination ( ) ;
set_current_to_destination ( ) ;
return ;
return ;
}
}
@ -7901,12 +7904,12 @@ void mesh_buffer_line(float x, float y, float z, const float e, float feed_rate,
destination [ Y_AXIS ] = ny ;
destination [ Y_AXIS ] = ny ;
destination [ Z_AXIS ] = nz ;
destination [ Z_AXIS ] = nz ;
destination [ E_AXIS ] = ne ;
destination [ E_AXIS ] = ne ;
mesh_buffer_line ( nx , ny , nz , ne , f eed_rate , extruder , x_splits , y_splits ) ;
mesh_buffer_line ( nx , ny , nz , ne , f r_mm_s , extruder , x_splits , y_splits ) ;
destination [ X_AXIS ] = x ;
destination [ X_AXIS ] = x ;
destination [ Y_AXIS ] = y ;
destination [ Y_AXIS ] = y ;
destination [ Z_AXIS ] = z ;
destination [ Z_AXIS ] = z ;
destination [ E_AXIS ] = e ;
destination [ E_AXIS ] = e ;
mesh_buffer_line ( x , y , z , e , f eed_rate , extruder , x_splits , y_splits ) ;
mesh_buffer_line ( x , y , z , e , f r_mm_s , extruder , x_splits , y_splits ) ;
}
}
# endif // MESH_BED_LEVELING
# endif // MESH_BED_LEVELING
@ -7919,8 +7922,8 @@ void mesh_buffer_line(float x, float y, float z, const float e, float feed_rate,
float cartesian_mm = sqrt ( sq ( difference [ X_AXIS ] ) + sq ( difference [ Y_AXIS ] ) + sq ( difference [ Z_AXIS ] ) ) ;
float cartesian_mm = sqrt ( sq ( difference [ X_AXIS ] ) + sq ( difference [ Y_AXIS ] ) + sq ( difference [ Z_AXIS ] ) ) ;
if ( cartesian_mm < 0.000001 ) cartesian_mm = abs ( difference [ E_AXIS ] ) ;
if ( cartesian_mm < 0.000001 ) cartesian_mm = abs ( difference [ E_AXIS ] ) ;
if ( cartesian_mm < 0.000001 ) return false ;
if ( cartesian_mm < 0.000001 ) return false ;
float _feedrate = feedrate * feedrate_multiplier / 6000.0 ;
float _feedrate _mm_s = MMM_TO_MMS_SCALED ( feedrate_mm_m ) ;
float seconds = cartesian_mm / _feedrate ;
float seconds = cartesian_mm / _feedrate _mm_s ;
int steps = max ( 1 , int ( delta_segments_per_second * seconds ) ) ;
int steps = max ( 1 , int ( delta_segments_per_second * seconds ) ) ;
float inv_steps = 1.0 / steps ;
float inv_steps = 1.0 / steps ;
@ -7944,7 +7947,7 @@ void mesh_buffer_line(float x, float y, float z, const float e, float feed_rate,
//DEBUG_POS("prepare_delta_move_to", target);
//DEBUG_POS("prepare_delta_move_to", target);
//DEBUG_POS("prepare_delta_move_to", delta);
//DEBUG_POS("prepare_delta_move_to", delta);
planner . buffer_line ( delta [ X_AXIS ] , delta [ Y_AXIS ] , delta [ Z_AXIS ] , target [ E_AXIS ] , _feedrate , active_extruder ) ;
planner . buffer_line ( delta [ X_AXIS ] , delta [ Y_AXIS ] , delta [ Z_AXIS ] , target [ E_AXIS ] , _feedrate _mm_s , active_extruder ) ;
}
}
return true ;
return true ;
}
}
@ -7963,7 +7966,7 @@ void mesh_buffer_line(float x, float y, float z, const float e, float feed_rate,
// move duplicate extruder into correct duplication position.
// move duplicate extruder into correct duplication position.
planner . set_position_mm ( inactive_extruder_x_pos , current_position [ Y_AXIS ] , current_position [ Z_AXIS ] , current_position [ E_AXIS ] ) ;
planner . set_position_mm ( inactive_extruder_x_pos , current_position [ Y_AXIS ] , current_position [ Z_AXIS ] , current_position [ E_AXIS ] ) ;
planner . buffer_line ( current_position [ X_AXIS ] + duplicate_extruder_x_offset ,
planner . buffer_line ( current_position [ X_AXIS ] + duplicate_extruder_x_offset ,
current_position [ Y_AXIS ] , current_position [ Z_AXIS ] , current_position [ E_AXIS ] , planner . max_feedrate [ X_AXIS ] , 1 ) ;
current_position [ Y_AXIS ] , current_position [ Z_AXIS ] , current_position [ E_AXIS ] , planner . max_feedrate _mm_s [ X_AXIS ] , 1 ) ;
SYNC_PLAN_POSITION_KINEMATIC ( ) ;
SYNC_PLAN_POSITION_KINEMATIC ( ) ;
stepper . synchronize ( ) ;
stepper . synchronize ( ) ;
extruder_duplication_enabled = true ;
extruder_duplication_enabled = true ;
@ -7983,9 +7986,9 @@ void mesh_buffer_line(float x, float y, float z, const float e, float feed_rate,
}
}
delayed_move_time = 0 ;
delayed_move_time = 0 ;
// unpark extruder: 1) raise, 2) move into starting XY position, 3) lower
// unpark extruder: 1) raise, 2) move into starting XY position, 3) lower
planner . buffer_line ( raised_parked_position [ X_AXIS ] , raised_parked_position [ Y_AXIS ] , raised_parked_position [ Z_AXIS ] , current_position [ E_AXIS ] , planner . max_feedrate [ Z_AXIS ] , active_extruder ) ;
planner . buffer_line ( raised_parked_position [ X_AXIS ] , raised_parked_position [ Y_AXIS ] , raised_parked_position [ Z_AXIS ] , current_position [ E_AXIS ] , planner . max_feedrate _mm_s [ Z_AXIS ] , active_extruder ) ;
planner . buffer_line ( current_position [ X_AXIS ] , current_position [ Y_AXIS ] , raised_parked_position [ Z_AXIS ] , current_position [ E_AXIS ] , PLANNER_XY_FEEDRATE ( ) , active_extruder ) ;
planner . buffer_line ( current_position [ X_AXIS ] , current_position [ Y_AXIS ] , raised_parked_position [ Z_AXIS ] , current_position [ E_AXIS ] , PLANNER_XY_FEEDRATE ( ) , active_extruder ) ;
planner . buffer_line ( current_position [ X_AXIS ] , current_position [ Y_AXIS ] , current_position [ Z_AXIS ] , current_position [ E_AXIS ] , planner . max_feedrate [ Z_AXIS ] , active_extruder ) ;
planner . buffer_line ( current_position [ X_AXIS ] , current_position [ Y_AXIS ] , current_position [ Z_AXIS ] , current_position [ E_AXIS ] , planner . max_feedrate _mm_s [ Z_AXIS ] , active_extruder ) ;
active_extruder_parked = false ;
active_extruder_parked = false ;
}
}
}
}
@ -7997,16 +8000,16 @@ void mesh_buffer_line(float x, float y, float z, const float e, float feed_rate,
# if DISABLED(DELTA) && DISABLED(SCARA)
# if DISABLED(DELTA) && DISABLED(SCARA)
inline bool prepare_move_to_destination_cartesian ( ) {
inline bool prepare_move_to_destination_cartesian ( ) {
// Do not use feedrate_ multi pli er for E or Z only moves
// Do not use feedrate_ percentage for E or Z only moves
if ( current_position [ X_AXIS ] = = destination [ X_AXIS ] & & current_position [ Y_AXIS ] = = destination [ Y_AXIS ] ) {
if ( current_position [ X_AXIS ] = = destination [ X_AXIS ] & & current_position [ Y_AXIS ] = = destination [ Y_AXIS ] ) {
line_to_destination ( ) ;
line_to_destination ( ) ;
}
}
else {
else {
# if ENABLED(MESH_BED_LEVELING)
# if ENABLED(MESH_BED_LEVELING)
mesh_buffer_line ( destination [ X_AXIS ] , destination [ Y_AXIS ] , destination [ Z_AXIS ] , destination [ E_AXIS ] , ( feedrate / 60 ) * ( feedrate_multiplier / 100.0 ) , active_extruder ) ;
mesh_buffer_line ( destination [ X_AXIS ] , destination [ Y_AXIS ] , destination [ Z_AXIS ] , destination [ E_AXIS ] , MMM_TO_MMS_SCALED ( feedrate_mm_m ) , active_extruder ) ;
return false ;
return false ;
# else
# else
line_to_destination ( feedrate * feedrate_multiplier / 100.0 ) ;
line_to_destination ( MMM_SCALED( feedrate_mm_m ) ) ;
# endif
# endif
}
}
return true ;
return true ;
@ -8150,7 +8153,7 @@ void prepare_move_to_destination() {
// Initialize the extruder axis
// Initialize the extruder axis
arc_target [ E_AXIS ] = current_position [ E_AXIS ] ;
arc_target [ E_AXIS ] = current_position [ E_AXIS ] ;
float f eed_rate = feedrate * feedrate_multiplier / 60 / 100.0 ;
float f r_mm_s = MMM_TO_MMS_SCALED ( feedrate_mm_m ) ;
millis_t next_idle_ms = millis ( ) + 200UL ;
millis_t next_idle_ms = millis ( ) + 200UL ;
@ -8194,9 +8197,9 @@ void prepare_move_to_destination() {
# if ENABLED(AUTO_BED_LEVELING_FEATURE)
# if ENABLED(AUTO_BED_LEVELING_FEATURE)
adjust_delta ( arc_target ) ;
adjust_delta ( arc_target ) ;
# endif
# endif
planner . buffer_line ( delta [ X_AXIS ] , delta [ Y_AXIS ] , delta [ Z_AXIS ] , arc_target [ E_AXIS ] , f eed_rate , active_extruder ) ;
planner . buffer_line ( delta [ X_AXIS ] , delta [ Y_AXIS ] , delta [ Z_AXIS ] , arc_target [ E_AXIS ] , f r_mm_s , active_extruder ) ;
# else
# else
planner . buffer_line ( arc_target [ X_AXIS ] , arc_target [ Y_AXIS ] , arc_target [ Z_AXIS ] , arc_target [ E_AXIS ] , f eed_rate , active_extruder ) ;
planner . buffer_line ( arc_target [ X_AXIS ] , arc_target [ Y_AXIS ] , arc_target [ Z_AXIS ] , arc_target [ E_AXIS ] , f r_mm_s , active_extruder ) ;
# endif
# endif
}
}
@ -8206,9 +8209,9 @@ void prepare_move_to_destination() {
# if ENABLED(AUTO_BED_LEVELING_FEATURE)
# if ENABLED(AUTO_BED_LEVELING_FEATURE)
adjust_delta ( target ) ;
adjust_delta ( target ) ;
# endif
# endif
planner . buffer_line ( delta [ X_AXIS ] , delta [ Y_AXIS ] , delta [ Z_AXIS ] , target [ E_AXIS ] , f eed_rate , active_extruder ) ;
planner . buffer_line ( delta [ X_AXIS ] , delta [ Y_AXIS ] , delta [ Z_AXIS ] , target [ E_AXIS ] , f r_mm_s , active_extruder ) ;
# else
# else
planner . buffer_line ( target [ X_AXIS ] , target [ Y_AXIS ] , target [ Z_AXIS ] , target [ E_AXIS ] , f eed_rate , active_extruder ) ;
planner . buffer_line ( target [ X_AXIS ] , target [ Y_AXIS ] , target [ Z_AXIS ] , target [ E_AXIS ] , f r_mm_s , active_extruder ) ;
# endif
# endif
// As far as the parser is concerned, the position is now == target. In reality the
// As far as the parser is concerned, the position is now == target. In reality the
@ -8221,7 +8224,7 @@ void prepare_move_to_destination() {
# if ENABLED(BEZIER_CURVE_SUPPORT)
# if ENABLED(BEZIER_CURVE_SUPPORT)
void plan_cubic_move ( const float offset [ 4 ] ) {
void plan_cubic_move ( const float offset [ 4 ] ) {
cubic_b_spline ( current_position , destination , offset , feedrate * feedrate_multiplier / 60 / 100.0 , active_extruder ) ;
cubic_b_spline ( current_position , destination , offset , MMM_TO_MMS_SCALED( feedrate_mm_m ) , active_extruder ) ;
// As far as the parser is concerned, the position is now == target. In reality the
// As far as the parser is concerned, the position is now == target. In reality the
// motion control system might still be processing the action and the real tool position
// motion control system might still be processing the action and the real tool position
@ -8547,7 +8550,7 @@ void manage_inactivity(bool ignore_stepper_queue/*=false*/) {
float oldepos = current_position [ E_AXIS ] , oldedes = destination [ E_AXIS ] ;
float oldepos = current_position [ E_AXIS ] , oldedes = destination [ E_AXIS ] ;
planner . buffer_line ( destination [ X_AXIS ] , destination [ Y_AXIS ] , destination [ Z_AXIS ] ,
planner . buffer_line ( destination [ X_AXIS ] , destination [ Y_AXIS ] , destination [ Z_AXIS ] ,
destination [ E_AXIS ] + ( EXTRUDER_RUNOUT_EXTRUDE ) * ( EXTRUDER_RUNOUT_ESTEPS ) / planner . axis_steps_per_mm [ E_AXIS ] ,
destination [ E_AXIS ] + ( EXTRUDER_RUNOUT_EXTRUDE ) * ( EXTRUDER_RUNOUT_ESTEPS ) / planner . axis_steps_per_mm [ E_AXIS ] ,
( EXTRUDER_RUNOUT_SPEED ) / 60. * ( EXTRUDER_RUNOUT_ESTEPS ) / planner . axis_steps_per_mm [ E_AXIS ] , active_extruder ) ;
MMM_TO_MMS ( EXTRUDER_RUNOUT_SPEED ) * ( EXTRUDER_RUNOUT_ESTEPS ) / planner . axis_steps_per_mm [ E_AXIS ] , active_extruder ) ;
current_position [ E_AXIS ] = oldepos ;
current_position [ E_AXIS ] = oldepos ;
destination [ E_AXIS ] = oldedes ;
destination [ E_AXIS ] = oldedes ;
planner . set_e_position_mm ( oldepos ) ;
planner . set_e_position_mm ( oldepos ) ;