Browse Source

Revert "[2.0.x]Idex and bl touch fixes" (#11407)

* Revert "[2.0.x] bltouch home refinements (#11397)"

This reverts commit 74900f7a70.

* Revert "[2.0.x]Idex and bl touch fixes (#11395)"

This reverts commit 6dafb90c01.
Roxy-3D 7 years ago
parent
commit
16432376ab
No account linked to committer's email address
1 changed files with 4 additions and 7 deletions
  1. 4
    7
      Marlin/src/module/tool_change.cpp

+ 4
- 7
Marlin/src/module/tool_change.cpp View File

377
           #endif
377
           #endif
378
         }
378
         }
379
 
379
 
380
-        
380
+        // Save current position to destination, for use later
381
+        set_destination_from_current();
381
 
382
 
382
         #if HAS_LEVELING
383
         #if HAS_LEVELING
383
           // Set current position to the physical position
384
           // Set current position to the physical position
386
         #endif
387
         #endif
387
 
388
 
388
         #if ENABLED(DUAL_X_CARRIAGE)
389
         #if ENABLED(DUAL_X_CARRIAGE)
389
-          if(current_position[X_AXIS] != x_home_pos(active_extruder))
390
-            set_destination_from_current();
391
-          else
392
-            no_move = true;
390
+
393
           dualx_tool_change(tmp_extruder, no_move); // Can modify no_move
391
           dualx_tool_change(tmp_extruder, no_move); // Can modify no_move
394
 
392
 
395
         #else // !DUAL_X_CARRIAGE
393
         #else // !DUAL_X_CARRIAGE
396
-          // Save current position to destination, for use later
397
-          set_destination_from_current();
394
+
398
           #if ENABLED(PARKING_EXTRUDER) // Dual Parking extruder
395
           #if ENABLED(PARKING_EXTRUDER) // Dual Parking extruder
399
             parking_extruder_tool_change(tmp_extruder, no_move);
396
             parking_extruder_tool_change(tmp_extruder, no_move);
400
           #endif
397
           #endif

Loading…
Cancel
Save