Explorar el Código

Merge pull request #5148 from thinkyhead/rc_dual_tool_z_limit

Fix Z raise with DXC_AUTO_PARK_MODE
Scott Lahteine hace 8 años
padre
commit
3b6a43f7ad

+ 1
- 1
Marlin/Configuration_adv.h Ver fichero

313
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
313
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
314
 
314
 
315
   // This is the default power-up mode which can be later using M605.
315
   // This is the default power-up mode which can be later using M605.
316
-  #define DEFAULT_DUAL_X_CARRIAGE_MODE 0
316
+  #define DEFAULT_DUAL_X_CARRIAGE_MODE DXC_FULL_CONTROL_MODE
317
 
317
 
318
   // Default settings in "Auto-park Mode"
318
   // Default settings in "Auto-park Mode"
319
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder
319
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder

+ 55
- 50
Marlin/Marlin_main.cpp Ver fichero

1303
 
1303
 
1304
 #if ENABLED(DUAL_X_CARRIAGE)
1304
 #if ENABLED(DUAL_X_CARRIAGE)
1305
 
1305
 
1306
-  #define DXC_FULL_CONTROL_MODE 0
1307
-  #define DXC_AUTO_PARK_MODE    1
1308
-  #define DXC_DUPLICATION_MODE  2
1309
-
1310
-  static int dual_x_carriage_mode = DEFAULT_DUAL_X_CARRIAGE_MODE;
1306
+  static DualXMode dual_x_carriage_mode = DEFAULT_DUAL_X_CARRIAGE_MODE;
1311
 
1307
 
1312
   static float x_home_pos(int extruder) {
1308
   static float x_home_pos(int extruder) {
1313
     if (extruder == 0)
1309
     if (extruder == 0)
6950
    */
6946
    */
6951
   inline void gcode_M605() {
6947
   inline void gcode_M605() {
6952
     stepper.synchronize();
6948
     stepper.synchronize();
6953
-    if (code_seen('S')) dual_x_carriage_mode = code_value_byte();
6949
+    if (code_seen('S')) dual_x_carriage_mode = (DualXMode)code_value_byte();
6954
     switch (dual_x_carriage_mode) {
6950
     switch (dual_x_carriage_mode) {
6951
+      case DXC_FULL_CONTROL_MODE:
6952
+      case DXC_AUTO_PARK_MODE:
6953
+        break;
6955
       case DXC_DUPLICATION_MODE:
6954
       case DXC_DUPLICATION_MODE:
6956
         if (code_seen('X')) duplicate_extruder_x_offset = max(code_value_axis_units(X_AXIS), X2_MIN_POS - x_home_pos(0));
6955
         if (code_seen('X')) duplicate_extruder_x_offset = max(code_value_axis_units(X_AXIS), X2_MIN_POS - x_home_pos(0));
6957
         if (code_seen('R')) duplicate_extruder_temp_offset = code_value_temp_diff();
6956
         if (code_seen('R')) duplicate_extruder_temp_offset = code_value_temp_diff();
6966
         SERIAL_CHAR(',');
6965
         SERIAL_CHAR(',');
6967
         SERIAL_ECHOLN(hotend_offset[Y_AXIS][1]);
6966
         SERIAL_ECHOLN(hotend_offset[Y_AXIS][1]);
6968
         break;
6967
         break;
6969
-      case DXC_FULL_CONTROL_MODE:
6970
-      case DXC_AUTO_PARK_MODE:
6971
-        break;
6972
       default:
6968
       default:
6973
         dual_x_carriage_mode = DEFAULT_DUAL_X_CARRIAGE_MODE;
6969
         dual_x_carriage_mode = DEFAULT_DUAL_X_CARRIAGE_MODE;
6974
         break;
6970
         break;
7258
             if (DEBUGGING(LEVELING)) {
7254
             if (DEBUGGING(LEVELING)) {
7259
               SERIAL_ECHOPGM("Dual X Carriage Mode ");
7255
               SERIAL_ECHOPGM("Dual X Carriage Mode ");
7260
               switch (dual_x_carriage_mode) {
7256
               switch (dual_x_carriage_mode) {
7261
-                case DXC_DUPLICATION_MODE: SERIAL_ECHOLNPGM("DXC_DUPLICATION_MODE"); break;
7262
-                case DXC_AUTO_PARK_MODE: SERIAL_ECHOLNPGM("DXC_AUTO_PARK_MODE"); break;
7263
                 case DXC_FULL_CONTROL_MODE: SERIAL_ECHOLNPGM("DXC_FULL_CONTROL_MODE"); break;
7257
                 case DXC_FULL_CONTROL_MODE: SERIAL_ECHOLNPGM("DXC_FULL_CONTROL_MODE"); break;
7258
+                case DXC_AUTO_PARK_MODE: SERIAL_ECHOLNPGM("DXC_AUTO_PARK_MODE"); break;
7259
+                case DXC_DUPLICATION_MODE: SERIAL_ECHOLNPGM("DXC_DUPLICATION_MODE"); break;
7264
               }
7260
               }
7265
             }
7261
             }
7266
           #endif
7262
           #endif
7305
               current_position[X_AXIS] = LOGICAL_X_POSITION(inactive_extruder_x_pos);
7301
               current_position[X_AXIS] = LOGICAL_X_POSITION(inactive_extruder_x_pos);
7306
               inactive_extruder_x_pos = RAW_X_POSITION(destination[X_AXIS]);
7302
               inactive_extruder_x_pos = RAW_X_POSITION(destination[X_AXIS]);
7307
               break;
7303
               break;
7304
+            case DXC_AUTO_PARK_MODE:
7305
+              // record raised toolhead position for use by unpark
7306
+              memcpy(raised_parked_position, current_position, sizeof(raised_parked_position));
7307
+              raised_parked_position[Z_AXIS] += TOOLCHANGE_UNPARK_ZLIFT;
7308
+              #if ENABLED(max_software_endstops)
7309
+                NOMORE(raised_parked_position[Z_AXIS], soft_endstop_max[Z_AXIS]);
7310
+              #endif
7311
+              active_extruder_parked = true;
7312
+              delayed_move_time = 0;
7313
+              break;
7308
             case DXC_DUPLICATION_MODE:
7314
             case DXC_DUPLICATION_MODE:
7309
               active_extruder_parked = (active_extruder == 0); // this triggers the second extruder to move into the duplication position
7315
               active_extruder_parked = (active_extruder == 0); // this triggers the second extruder to move into the duplication position
7310
               if (active_extruder_parked)
7316
               if (active_extruder_parked)
7314
               inactive_extruder_x_pos = RAW_X_POSITION(destination[X_AXIS]);
7320
               inactive_extruder_x_pos = RAW_X_POSITION(destination[X_AXIS]);
7315
               extruder_duplication_enabled = false;
7321
               extruder_duplication_enabled = false;
7316
               break;
7322
               break;
7317
-            default:
7318
-              // record raised toolhead position for use by unpark
7319
-              memcpy(raised_parked_position, current_position, sizeof(raised_parked_position));
7320
-              raised_parked_position[Z_AXIS] += TOOLCHANGE_UNPARK_ZLIFT;
7321
-              active_extruder_parked = true;
7322
-              delayed_move_time = 0;
7323
-              break;
7324
           }
7323
           }
7325
 
7324
 
7326
           #if ENABLED(DEBUG_LEVELING_FEATURE)
7325
           #if ENABLED(DEBUG_LEVELING_FEATURE)
8975
    */
8974
    */
8976
   inline bool prepare_move_to_destination_dualx() {
8975
   inline bool prepare_move_to_destination_dualx() {
8977
     if (active_extruder_parked) {
8976
     if (active_extruder_parked) {
8978
-      if (dual_x_carriage_mode == DXC_DUPLICATION_MODE && active_extruder == 0) {
8979
-        // move duplicate extruder into correct duplication position.
8980
-        planner.set_position_mm(
8981
-          LOGICAL_X_POSITION(inactive_extruder_x_pos),
8982
-          current_position[Y_AXIS],
8983
-          current_position[Z_AXIS],
8984
-          current_position[E_AXIS]
8985
-        );
8986
-        planner.buffer_line(current_position[X_AXIS] + duplicate_extruder_x_offset,
8987
-                         current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], planner.max_feedrate_mm_s[X_AXIS], 1);
8988
-        SYNC_PLAN_POSITION_KINEMATIC();
8989
-        stepper.synchronize();
8990
-        extruder_duplication_enabled = true;
8991
-        active_extruder_parked = false;
8992
-      }
8993
-      else if (dual_x_carriage_mode == DXC_AUTO_PARK_MODE) { // handle unparking of head
8994
-        if (current_position[E_AXIS] == destination[E_AXIS]) {
8995
-          // This is a travel move (with no extrusion)
8996
-          // Skip it, but keep track of the current position
8997
-          // (so it can be used as the start of the next non-travel move)
8998
-          if (delayed_move_time != 0xFFFFFFFFUL) {
8999
-            set_current_to_destination();
9000
-            NOLESS(raised_parked_position[Z_AXIS], destination[Z_AXIS]);
9001
-            delayed_move_time = millis();
9002
-            return false;
8977
+      switch (dual_x_carriage_mode) {
8978
+        case DXC_FULL_CONTROL_MODE:
8979
+          break;
8980
+        case DXC_DUPLICATION_MODE:
8981
+          if (active_extruder == 0) {
8982
+            // move duplicate extruder into correct duplication position.
8983
+            planner.set_position_mm(
8984
+              LOGICAL_X_POSITION(inactive_extruder_x_pos),
8985
+              current_position[Y_AXIS],
8986
+              current_position[Z_AXIS],
8987
+              current_position[E_AXIS]
8988
+            );
8989
+            planner.buffer_line(current_position[X_AXIS] + duplicate_extruder_x_offset,
8990
+                             current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], planner.max_feedrate_mm_s[X_AXIS], 1);
8991
+            SYNC_PLAN_POSITION_KINEMATIC();
8992
+            stepper.synchronize();
8993
+            extruder_duplication_enabled = true;
8994
+            active_extruder_parked = false;
9003
           }
8995
           }
9004
-        }
9005
-        delayed_move_time = 0;
9006
-        // unpark extruder: 1) raise, 2) move into starting XY position, 3) lower
9007
-        planner.buffer_line(raised_parked_position[X_AXIS], raised_parked_position[Y_AXIS], raised_parked_position[Z_AXIS], current_position[E_AXIS], planner.max_feedrate_mm_s[Z_AXIS], active_extruder);
9008
-        planner.buffer_line(current_position[X_AXIS], current_position[Y_AXIS], raised_parked_position[Z_AXIS], current_position[E_AXIS], PLANNER_XY_FEEDRATE(), active_extruder);
9009
-        planner.buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], planner.max_feedrate_mm_s[Z_AXIS], active_extruder);
9010
-        active_extruder_parked = false;
8996
+          break;
8997
+        case DXC_AUTO_PARK_MODE:
8998
+          if (current_position[E_AXIS] == destination[E_AXIS]) {
8999
+            // This is a travel move (with no extrusion)
9000
+            // Skip it, but keep track of the current position
9001
+            // (so it can be used as the start of the next non-travel move)
9002
+            if (delayed_move_time != 0xFFFFFFFFUL) {
9003
+              set_current_to_destination();
9004
+              NOLESS(raised_parked_position[Z_AXIS], destination[Z_AXIS]);
9005
+              delayed_move_time = millis();
9006
+              return false;
9007
+            }
9008
+          }
9009
+          delayed_move_time = 0;
9010
+          // unpark extruder: 1) raise, 2) move into starting XY position, 3) lower
9011
+          planner.buffer_line(raised_parked_position[X_AXIS], raised_parked_position[Y_AXIS], raised_parked_position[Z_AXIS], current_position[E_AXIS], planner.max_feedrate_mm_s[Z_AXIS], active_extruder);
9012
+          planner.buffer_line(current_position[X_AXIS], current_position[Y_AXIS], raised_parked_position[Z_AXIS], current_position[E_AXIS], PLANNER_XY_FEEDRATE(), active_extruder);
9013
+          planner.buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], planner.max_feedrate_mm_s[Z_AXIS], active_extruder);
9014
+          active_extruder_parked = false;
9015
+          break;
9011
       }
9016
       }
9012
     }
9017
     }
9013
     return true;
9018
     return true;

+ 8
- 0
Marlin/enum.h Ver fichero

194
   LCDVIEW_CALL_NO_REDRAW
194
   LCDVIEW_CALL_NO_REDRAW
195
 };
195
 };
196
 
196
 
197
+#if ENABLED(DUAL_X_CARRIAGE)
198
+  enum DualXMode {
199
+    DXC_FULL_CONTROL_MODE,
200
+    DXC_AUTO_PARK_MODE,
201
+    DXC_DUPLICATION_MODE
202
+  };
203
+#endif
204
+
197
 #endif // __ENUM_H__
205
 #endif // __ENUM_H__

+ 1
- 1
Marlin/example_configurations/Cartesio/Configuration_adv.h Ver fichero

313
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
313
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
314
 
314
 
315
   // This is the default power-up mode which can be later using M605.
315
   // This is the default power-up mode which can be later using M605.
316
-  #define DEFAULT_DUAL_X_CARRIAGE_MODE 0
316
+  #define DEFAULT_DUAL_X_CARRIAGE_MODE DXC_FULL_CONTROL_MODE
317
 
317
 
318
   // Default settings in "Auto-park Mode"
318
   // Default settings in "Auto-park Mode"
319
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder
319
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder

+ 1
- 1
Marlin/example_configurations/Felix/Configuration_adv.h Ver fichero

313
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
313
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
314
 
314
 
315
   // This is the default power-up mode which can be later using M605.
315
   // This is the default power-up mode which can be later using M605.
316
-  #define DEFAULT_DUAL_X_CARRIAGE_MODE 0
316
+  #define DEFAULT_DUAL_X_CARRIAGE_MODE DXC_FULL_CONTROL_MODE
317
 
317
 
318
   // Default settings in "Auto-park Mode"
318
   // Default settings in "Auto-park Mode"
319
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder
319
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder

+ 1
- 1
Marlin/example_configurations/Hephestos/Configuration_adv.h Ver fichero

313
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
313
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
314
 
314
 
315
   // This is the default power-up mode which can be later using M605.
315
   // This is the default power-up mode which can be later using M605.
316
-  #define DEFAULT_DUAL_X_CARRIAGE_MODE 0
316
+  #define DEFAULT_DUAL_X_CARRIAGE_MODE DXC_FULL_CONTROL_MODE
317
 
317
 
318
   // Default settings in "Auto-park Mode"
318
   // Default settings in "Auto-park Mode"
319
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder
319
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder

+ 1
- 1
Marlin/example_configurations/Hephestos_2/Configuration_adv.h Ver fichero

313
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
313
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
314
 
314
 
315
   // This is the default power-up mode which can be later using M605.
315
   // This is the default power-up mode which can be later using M605.
316
-  #define DEFAULT_DUAL_X_CARRIAGE_MODE 0
316
+  #define DEFAULT_DUAL_X_CARRIAGE_MODE DXC_FULL_CONTROL_MODE
317
 
317
 
318
   // Default settings in "Auto-park Mode"
318
   // Default settings in "Auto-park Mode"
319
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder
319
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder

+ 1
- 1
Marlin/example_configurations/K8200/Configuration_adv.h Ver fichero

319
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
319
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
320
 
320
 
321
   // This is the default power-up mode which can be later using M605.
321
   // This is the default power-up mode which can be later using M605.
322
-  #define DEFAULT_DUAL_X_CARRIAGE_MODE 0
322
+  #define DEFAULT_DUAL_X_CARRIAGE_MODE DXC_FULL_CONTROL_MODE
323
 
323
 
324
   // Default settings in "Auto-park Mode"
324
   // Default settings in "Auto-park Mode"
325
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder
325
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder

+ 1
- 1
Marlin/example_configurations/K8400/Configuration_adv.h Ver fichero

313
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
313
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
314
 
314
 
315
   // This is the default power-up mode which can be later using M605.
315
   // This is the default power-up mode which can be later using M605.
316
-  #define DEFAULT_DUAL_X_CARRIAGE_MODE 0
316
+  #define DEFAULT_DUAL_X_CARRIAGE_MODE DXC_FULL_CONTROL_MODE
317
 
317
 
318
   // Default settings in "Auto-park Mode"
318
   // Default settings in "Auto-park Mode"
319
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder
319
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder

+ 1
- 1
Marlin/example_configurations/RigidBot/Configuration_adv.h Ver fichero

313
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
313
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
314
 
314
 
315
   // This is the default power-up mode which can be later using M605.
315
   // This is the default power-up mode which can be later using M605.
316
-  #define DEFAULT_DUAL_X_CARRIAGE_MODE 0
316
+  #define DEFAULT_DUAL_X_CARRIAGE_MODE DXC_FULL_CONTROL_MODE
317
 
317
 
318
   // Default settings in "Auto-park Mode"
318
   // Default settings in "Auto-park Mode"
319
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder
319
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder

+ 1
- 1
Marlin/example_configurations/SCARA/Configuration_adv.h Ver fichero

313
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
313
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
314
 
314
 
315
   // This is the default power-up mode which can be later using M605.
315
   // This is the default power-up mode which can be later using M605.
316
-  #define DEFAULT_DUAL_X_CARRIAGE_MODE 0
316
+  #define DEFAULT_DUAL_X_CARRIAGE_MODE DXC_FULL_CONTROL_MODE
317
 
317
 
318
   // Default settings in "Auto-park Mode"
318
   // Default settings in "Auto-park Mode"
319
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder
319
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder

+ 1
- 1
Marlin/example_configurations/TAZ4/Configuration_adv.h Ver fichero

321
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
321
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
322
 
322
 
323
   // This is the default power-up mode which can be later using M605.
323
   // This is the default power-up mode which can be later using M605.
324
-  #define DEFAULT_DUAL_X_CARRIAGE_MODE 0
324
+  #define DEFAULT_DUAL_X_CARRIAGE_MODE DXC_FULL_CONTROL_MODE
325
 
325
 
326
   // Default settings in "Auto-park Mode"
326
   // Default settings in "Auto-park Mode"
327
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder
327
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder

+ 1
- 1
Marlin/example_configurations/WITBOX/Configuration_adv.h Ver fichero

313
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
313
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
314
 
314
 
315
   // This is the default power-up mode which can be later using M605.
315
   // This is the default power-up mode which can be later using M605.
316
-  #define DEFAULT_DUAL_X_CARRIAGE_MODE 0
316
+  #define DEFAULT_DUAL_X_CARRIAGE_MODE DXC_FULL_CONTROL_MODE
317
 
317
 
318
   // Default settings in "Auto-park Mode"
318
   // Default settings in "Auto-park Mode"
319
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder
319
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder

+ 1
- 1
Marlin/example_configurations/delta/biv2.5/Configuration_adv.h Ver fichero

313
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
313
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
314
 
314
 
315
   // This is the default power-up mode which can be later using M605.
315
   // This is the default power-up mode which can be later using M605.
316
-  #define DEFAULT_DUAL_X_CARRIAGE_MODE 0
316
+  #define DEFAULT_DUAL_X_CARRIAGE_MODE DXC_FULL_CONTROL_MODE
317
 
317
 
318
   // Default settings in "Auto-park Mode"
318
   // Default settings in "Auto-park Mode"
319
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder
319
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder

+ 1
- 1
Marlin/example_configurations/delta/generic/Configuration_adv.h Ver fichero

313
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
313
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
314
 
314
 
315
   // This is the default power-up mode which can be later using M605.
315
   // This is the default power-up mode which can be later using M605.
316
-  #define DEFAULT_DUAL_X_CARRIAGE_MODE 0
316
+  #define DEFAULT_DUAL_X_CARRIAGE_MODE DXC_FULL_CONTROL_MODE
317
 
317
 
318
   // Default settings in "Auto-park Mode"
318
   // Default settings in "Auto-park Mode"
319
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder
319
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder

+ 1
- 1
Marlin/example_configurations/delta/kossel_mini/Configuration_adv.h Ver fichero

313
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
313
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
314
 
314
 
315
   // This is the default power-up mode which can be later using M605.
315
   // This is the default power-up mode which can be later using M605.
316
-  #define DEFAULT_DUAL_X_CARRIAGE_MODE 0
316
+  #define DEFAULT_DUAL_X_CARRIAGE_MODE DXC_FULL_CONTROL_MODE
317
 
317
 
318
   // Default settings in "Auto-park Mode"
318
   // Default settings in "Auto-park Mode"
319
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder
319
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder

+ 1
- 1
Marlin/example_configurations/delta/kossel_pro/Configuration_adv.h Ver fichero

318
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
318
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
319
 
319
 
320
   // This is the default power-up mode which can be later using M605.
320
   // This is the default power-up mode which can be later using M605.
321
-  #define DEFAULT_DUAL_X_CARRIAGE_MODE 0
321
+  #define DEFAULT_DUAL_X_CARRIAGE_MODE DXC_FULL_CONTROL_MODE
322
 
322
 
323
   // Default settings in "Auto-park Mode"
323
   // Default settings in "Auto-park Mode"
324
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder
324
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder

+ 1
- 1
Marlin/example_configurations/delta/kossel_xl/Configuration_adv.h Ver fichero

313
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
313
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
314
 
314
 
315
   // This is the default power-up mode which can be later using M605.
315
   // This is the default power-up mode which can be later using M605.
316
-  #define DEFAULT_DUAL_X_CARRIAGE_MODE 0
316
+  #define DEFAULT_DUAL_X_CARRIAGE_MODE DXC_FULL_CONTROL_MODE
317
 
317
 
318
   // Default settings in "Auto-park Mode"
318
   // Default settings in "Auto-park Mode"
319
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder
319
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder

+ 1
- 1
Marlin/example_configurations/makibox/Configuration_adv.h Ver fichero

313
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
313
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
314
 
314
 
315
   // This is the default power-up mode which can be later using M605.
315
   // This is the default power-up mode which can be later using M605.
316
-  #define DEFAULT_DUAL_X_CARRIAGE_MODE 0
316
+  #define DEFAULT_DUAL_X_CARRIAGE_MODE DXC_FULL_CONTROL_MODE
317
 
317
 
318
   // Default settings in "Auto-park Mode"
318
   // Default settings in "Auto-park Mode"
319
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder
319
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder

+ 1
- 1
Marlin/example_configurations/tvrrug/Round2/Configuration_adv.h Ver fichero

313
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
313
   //                           once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
314
 
314
 
315
   // This is the default power-up mode which can be later using M605.
315
   // This is the default power-up mode which can be later using M605.
316
-  #define DEFAULT_DUAL_X_CARRIAGE_MODE 0
316
+  #define DEFAULT_DUAL_X_CARRIAGE_MODE DXC_FULL_CONTROL_MODE
317
 
317
 
318
   // Default settings in "Auto-park Mode"
318
   // Default settings in "Auto-park Mode"
319
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder
319
   #define TOOLCHANGE_PARK_ZLIFT   0.2      // the distance to raise Z axis when parking an extruder

Loading…
Cancelar
Guardar