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
             if (DEBUGGING(LEVELING)) DEBUG_POS("New Extruder", current_position);
7525
             if (DEBUGGING(LEVELING)) DEBUG_POS("New Extruder", current_position);
7526
           #endif
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
           switch (dual_x_carriage_mode) {
7531
           switch (dual_x_carriage_mode) {
7529
             case DXC_FULL_CONTROL_MODE:
7532
             case DXC_FULL_CONTROL_MODE:
7530
               current_position[X_AXIS] = LOGICAL_X_POSITION(inactive_extruder_x_pos);
7533
               current_position[X_AXIS] = LOGICAL_X_POSITION(inactive_extruder_x_pos);

Loading…
Cancel
Save