Browse Source

Merge pull request #6570 from FHeilmann/patch-2

Fix broken fwretract recovery extruder feedrate
Scott Lahteine 7 years ago
parent
commit
28e597f945
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      Marlin/Marlin_main.cpp

+ 3
- 1
Marlin/Marlin_main.cpp View File

3062
         // Pretend current position is higher. Z will lower on the next move
3062
         // Pretend current position is higher. Z will lower on the next move
3063
         current_position[Z_AXIS] += retract_zlift;
3063
         current_position[Z_AXIS] += retract_zlift;
3064
         SYNC_PLAN_POSITION_KINEMATIC();
3064
         SYNC_PLAN_POSITION_KINEMATIC();
3065
+        // Lower Z
3066
+        prepare_move_to_destination();
3065
       }
3067
       }
3066
 
3068
 
3067
       feedrate_mm_s = retract_recover_feedrate_mm_s;
3069
       feedrate_mm_s = retract_recover_feedrate_mm_s;
3069
       current_position[E_AXIS] -= move_e / volumetric_multiplier[active_extruder];
3071
       current_position[E_AXIS] -= move_e / volumetric_multiplier[active_extruder];
3070
       sync_plan_position_e();
3072
       sync_plan_position_e();
3071
 
3073
 
3072
-      // Lower Z and recover E
3074
+      // Recover E
3073
       prepare_move_to_destination();
3075
       prepare_move_to_destination();
3074
     }
3076
     }
3075
 
3077
 

Loading…
Cancel
Save