Browse Source

Dual X with home_z_safely is not parked

Scott Lahteine 8 years ago
parent
commit
ca24af7d5d
1 changed files with 6 additions and 0 deletions
  1. 6
    0
      Marlin/Marlin_main.cpp

+ 6
- 0
Marlin/Marlin_main.cpp View File

@@ -3253,6 +3253,12 @@ inline void gcode_G4() {
3253 3253
       #if ENABLED(DEBUG_LEVELING_FEATURE)
3254 3254
         if (DEBUGGING(LEVELING)) DEBUG_POS("Z_SAFE_HOMING", destination);
3255 3255
       #endif
3256
+
3257
+      // This causes the carriage on Dual X to unpark
3258
+      #if ENABLED(DUAL_X_CARRIAGE)
3259
+        active_extruder_parked = false;
3260
+      #endif
3261
+
3256 3262
       do_blocking_move_to_xy(destination[X_AXIS], destination[Y_AXIS]);
3257 3263
       HOMEAXIS(Z);
3258 3264
     }

Loading…
Cancel
Save