From 44e657766e6de472dd9dffa1137f4535ad537247 Mon Sep 17 00:00:00 2001 From: Thomas Moore Date: Thu, 25 May 2017 08:06:27 -0500 Subject: [PATCH] Add incompatibility error to Sanity Check for MIXING_EXTRUDER and LIN_ADVANCE --- Marlin/SanityCheck.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Marlin/SanityCheck.h b/Marlin/SanityCheck.h index 952200d145..5d9d1b12c8 100644 --- a/Marlin/SanityCheck.h +++ b/Marlin/SanityCheck.h @@ -372,6 +372,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