Skip to content

Commit

Permalink
Merge pull request MarlinFirmware#866 from sakunamary/Marlin_v1
Browse files Browse the repository at this point in the history
fix bug for dual extruders not working
  • Loading branch information
nothinman committed Apr 2, 2014
2 parents 303ee67 + 8759508 commit 9a5d23d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Marlin/Marlin_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3049,7 +3049,16 @@ void process_commands()
// Set the new active extruder and position
active_extruder = tmp_extruder;
#endif //else DUAL_X_CARRIAGE
#ifdef DELTA

calculate_delta(current_position); // change cartesian kinematic to delta kinematic;
//sent position to plan_set_position();
plan_set_position(delta[X_AXIS], delta[Y_AXIS], delta[Z_AXIS],current_position[E_AXIS]);

#else
plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]);

#endif
// Move to the old position if 'F' was in the parameters
if(make_move && Stopped == false) {
prepare_move();
Expand Down

0 comments on commit 9a5d23d

Please sign in to comment.