Browse Source

Merge pull request #6852 from tcm0116/mixing_extruder_lin_advance

Generate error if MIXING_EXTRUDER and LIN_ADVANCE are both enabled
Scott Lahteine 8 years ago
parent
commit
84a0a77c59
1 changed files with 2 additions and 0 deletions
  1. 2
    0
      Marlin/SanityCheck.h

+ 2
- 0
Marlin/SanityCheck.h View File

396
     #error "Please select either MIXING_EXTRUDER or SWITCHING_EXTRUDER, not both."
396
     #error "Please select either MIXING_EXTRUDER or SWITCHING_EXTRUDER, not both."
397
   #elif ENABLED(SINGLENOZZLE)
397
   #elif ENABLED(SINGLENOZZLE)
398
     #error "MIXING_EXTRUDER is incompatible with SINGLENOZZLE."
398
     #error "MIXING_EXTRUDER is incompatible with SINGLENOZZLE."
399
+  #elif ENABLED(LIN_ADVANCE)
400
+    #error "MIXING_EXTRUDER is incompatible with LIN_ADVANCE."
399
   #endif
401
   #endif
400
 #endif
402
 #endif
401
 
403
 

Loading…
Cancel
Save