Browse Source

Only DXC_AUTO_PARK_MODE should auto-move in tool_change

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

+ 3
- 0
Marlin/Marlin_main.cpp View File

@@ -7525,6 +7525,9 @@ void tool_change(const uint8_t tmp_extruder, const float fr_mm_s/*=0.0*/, bool n
7525 7525
             if (DEBUGGING(LEVELING)) DEBUG_POS("New Extruder", current_position);
7526 7526
           #endif
7527 7527
 
7528
+          // Only when auto-parking are carriages safe to move
7529
+          if (dual_x_carriage_mode != DXC_AUTO_PARK_MODE) no_move = true;
7530
+
7528 7531
           switch (dual_x_carriage_mode) {
7529 7532
             case DXC_FULL_CONTROL_MODE:
7530 7533
               current_position[X_AXIS] = LOGICAL_X_POSITION(inactive_extruder_x_pos);

Loading…
Cancel
Save