Skip to content
Snippets Groups Projects
Unverified Commit b639f1ad authored by Scott Lahteine's avatar Scott Lahteine Committed by GitHub
Browse files

Correct some retract() comments

parent 1541224a
No related branches found
No related tags found
No related merge requests found
......@@ -153,10 +153,10 @@ void FWRetract::retract(const bool retracting
else {
// If a hop was done and Z hasn't changed, undo the Z hop
if (hop_amount) {
current_position[Z_AXIS] += retract_zlift; // Pretend current pos is lower. Next move raises Z.
current_position[Z_AXIS] += retract_zlift; // Pretend current pos is higher. Next move lowers Z.
SYNC_PLAN_POSITION_KINEMATIC(); // Set the planner to the new position
feedrate_mm_s = planner.max_feedrate_mm_s[Z_AXIS]; // Z feedrate to max
prepare_move_to_destination(); // Raise up to the old current pos
prepare_move_to_destination(); // Lower down to the old current pos
hop_amount = 0.0; // Clear hop
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment