From 1456ba083ae3ed86611517828ed0ed3d999947e1 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Sat, 31 Dec 2022 21:49:44 -0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Warn=20about=20Endstop=20Interru?= =?UTF-8?q?pts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Marlin/src/inc/Warnings.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Marlin/src/inc/Warnings.cpp b/Marlin/src/inc/Warnings.cpp index 24f4d7fbe9..e0f179d828 100644 --- a/Marlin/src/inc/Warnings.cpp +++ b/Marlin/src/inc/Warnings.cpp @@ -777,6 +777,13 @@ #warning "Define MK3_FAN_PINS to swap hotend and part cooling fan pins. (Define NO_MK3_FAN_PINS_WARNING to suppress this warning.)" #endif +/** + * Endstop Interrupts is Indicated + */ +#if DISABLED(ENDSTOP_INTERRUPTS_FEATURE) + #warning "ENDSTOP_INTERRUPTS_FEATURE should be enabled for production use if possible!" +#endif + /** * BD Sensor should always include BABYSTEPPING */