Browse Source

Do kinematic segments with buffer_line_kinematic

This breaks the raw option, but in the future perhaps all planner moves
will be sent in raw form instead of logical.
pull/1/head
Scott Lahteine 8 years ago
parent
commit
e7cf566fc5
  1. 4
      Marlin/Marlin_main.cpp

4
Marlin/Marlin_main.cpp

@ -8823,9 +8823,7 @@ void set_current_from_steppers_for_axis(const AxisEnum axis) {
// For non-interpolated delta calculate every segment
for (uint16_t s = segments + 1; --s;) {
DELTA_NEXT(segment_distance[i]);
DELTA_IK();
ADJUST_DELTA(DELTA_VAR);
planner.buffer_line(delta[A_AXIS], delta[B_AXIS], delta[C_AXIS], DELTA_VAR[E_AXIS], _feedrate_mm_s, active_extruder);
planner.buffer_line_kinematic(DELTA_VAR, _feedrate_mm_s, active_extruder);
}
#endif

Loading…
Cancel
Save