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
       #if ENABLED(DEBUG_LEVELING_FEATURE)
3253
       #if ENABLED(DEBUG_LEVELING_FEATURE)
3254
         if (DEBUGGING(LEVELING)) DEBUG_POS("Z_SAFE_HOMING", destination);
3254
         if (DEBUGGING(LEVELING)) DEBUG_POS("Z_SAFE_HOMING", destination);
3255
       #endif
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
       do_blocking_move_to_xy(destination[X_AXIS], destination[Y_AXIS]);
3262
       do_blocking_move_to_xy(destination[X_AXIS], destination[Y_AXIS]);
3257
       HOMEAXIS(Z);
3263
       HOMEAXIS(Z);
3258
     }
3264
     }

Loading…
Cancel
Save