Merge pull request #3616 from thinkyhead/rc_fixup_some_movement
General cleanup around high level move functions
This commit is contained in:
		| @@ -2343,7 +2343,6 @@ static void homeaxis(AxisEnum axis) { | ||||
|         #else | ||||
|           sync_plan_position(); | ||||
|         #endif | ||||
|         //prepare_move(); | ||||
|       } | ||||
|  | ||||
|       feedrate = retract_recover_feedrate * 60; | ||||
| @@ -7328,12 +7327,8 @@ void mesh_plan_buffer_line(float x, float y, float z, const float e, float feed_ | ||||
|         adjust_delta(target); | ||||
|       #endif | ||||
|  | ||||
|       //SERIAL_ECHOPGM("target[X_AXIS]="); SERIAL_ECHOLN(target[X_AXIS]); | ||||
|       //SERIAL_ECHOPGM("target[Y_AXIS]="); SERIAL_ECHOLN(target[Y_AXIS]); | ||||
|       //SERIAL_ECHOPGM("target[Z_AXIS]="); SERIAL_ECHOLN(target[Z_AXIS]); | ||||
|       //SERIAL_ECHOPGM("delta[X_AXIS]="); SERIAL_ECHOLN(delta[X_AXIS]); | ||||
|       //SERIAL_ECHOPGM("delta[Y_AXIS]="); SERIAL_ECHOLN(delta[Y_AXIS]); | ||||
|       //SERIAL_ECHOPGM("delta[Z_AXIS]="); SERIAL_ECHOLN(delta[Z_AXIS]); | ||||
|       //DEBUG_POS("prepare_move_delta", target); | ||||
|       //DEBUG_POS("prepare_move_delta", delta); | ||||
|  | ||||
|       plan_buffer_line(delta[X_AXIS], delta[Y_AXIS], delta[Z_AXIS], target[E_AXIS], feedrate / 60 * feedrate_multiplier / 100.0, active_extruder); | ||||
|     } | ||||
| @@ -7423,13 +7418,10 @@ void prepare_move() { | ||||
|     if (!prepare_move_scara(destination)) return; | ||||
|   #elif ENABLED(DELTA) | ||||
|     if (!prepare_move_delta(destination)) return; | ||||
|   #endif | ||||
|  | ||||
|   #if ENABLED(DUAL_X_CARRIAGE) | ||||
|     if (!prepare_move_dual_x_carriage()) return; | ||||
|   #endif | ||||
|  | ||||
|   #if DISABLED(DELTA) && DISABLED(SCARA) | ||||
|   #else | ||||
|     #if ENABLED(DUAL_X_CARRIAGE) | ||||
|       if (!prepare_move_dual_x_carriage()) return; | ||||
|     #endif | ||||
|     if (!prepare_move_cartesian()) return; | ||||
|   #endif | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user