Browse Source

Fix filament runout for idex duplication modes (#12168)

InsanityAutomation 6 years ago
parent
commit
55ac2f4c23
1 changed files with 4 additions and 0 deletions
  1. 4
    0
      Marlin/src/feature/runout.h

+ 4
- 0
Marlin/src/feature/runout.h View File

167
         return runout_bits;                     // A single sensor applying to all extruders
167
         return runout_bits;                     // A single sensor applying to all extruders
168
       #else
168
       #else
169
         #if ENABLED(DUAL_X_CARRIAGE)
169
         #if ENABLED(DUAL_X_CARRIAGE)
170
+          if (dual_x_carriage_mode == DXC_DUPLICATION_MODE || dual_x_carriage_mode == DXC_SCALED_DUPLICATION_MODE)
171
+            return runout_bits;                 // Any extruder
172
+          else
173
+        #elif ENABLED(DUAL_NOZZLE_DUPLICATION_MODE)
170
           if (extruder_duplication_enabled)
174
           if (extruder_duplication_enabled)
171
             return runout_bits;                 // Any extruder
175
             return runout_bits;                 // Any extruder
172
           else
176
           else

Loading…
Cancel
Save