From 3a56836ead4570739e1280eb058e2dcd18268634 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Mon, 8 Aug 2016 18:06:11 -0700 Subject: [PATCH] Always disable SLOWDOWN for DELTA/SCARA --- Marlin/Conditionals_post.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Marlin/Conditionals_post.h b/Marlin/Conditionals_post.h index 1c0dc56a09..2945ee16ad 100644 --- a/Marlin/Conditionals_post.h +++ b/Marlin/Conditionals_post.h @@ -143,10 +143,11 @@ #endif /** - * DELTA should ignore Z_SAFE_HOMING + * DELTA should ignore Z_SAFE_HOMING and SLOWDOWN */ #if ENABLED(DELTA) #undef Z_SAFE_HOMING + #undef SLOWDOWN #endif /**