Fix comment on M83, add comment to prepare_move

2.0.x
Scott Lahteine 10 years ago committed by Richard Wackerbarth
parent 8c760f1c31
commit 9682ed455e

@ -3805,7 +3805,7 @@ inline void gcode_M81() {
inline void gcode_M82() { axis_relative_modes[E_AXIS] = false; } inline void gcode_M82() { axis_relative_modes[E_AXIS] = false; }
/** /**
* M82: Set E codes relative while in Absolute Coordinates (G90) mode * M83: Set E codes relative while in Absolute Coordinates (G90) mode
*/ */
inline void gcode_M83() { axis_relative_modes[E_AXIS] = true; } inline void gcode_M83() { axis_relative_modes[E_AXIS] = true; }
@ -6153,6 +6153,9 @@ void mesh_plan_buffer_line(float x, float y, float z, const float e, float feed_
/** /**
* Prepare a single move and get ready for the next one * Prepare a single move and get ready for the next one
*
* (This may call plan_buffer_line several times to put
* smaller moves into the planner for DELTA or SCARA.)
*/ */
void prepare_move() { void prepare_move() {
clamp_to_software_endstops(destination); clamp_to_software_endstops(destination);

Loading…
Cancel
Save