Merge pull request #6852 from tcm0116/mixing_extruder_lin_advance

Generate error if MIXING_EXTRUDER and LIN_ADVANCE are both enabled
This commit is contained in:
Scott Lahteine 2017-05-30 13:37:51 -05:00 committed by GitHub
commit 84a0a77c59

View file

@ -396,6 +396,8 @@
#error "Please select either MIXING_EXTRUDER or SWITCHING_EXTRUDER, not both."
#elif ENABLED(SINGLENOZZLE)
#error "MIXING_EXTRUDER is incompatible with SINGLENOZZLE."
#elif ENABLED(LIN_ADVANCE)
#error "MIXING_EXTRUDER is incompatible with LIN_ADVANCE."
#endif
#endif