From 68ae8bc8ac6307ac328302168261e5279c76ad83 Mon Sep 17 00:00:00 2001 From: Marcio Teixeira Date: Wed, 14 Feb 2018 15:09:14 -0700 Subject: [PATCH] Disabled the kill button (T1953) This fix will prevent the printer from halting if the push button on the LCD is depressed. Since this button is inaccessible on our printers, it is better to disable it. --- Marlin/Conditionals_LulzBot.h | 1 + Marlin/pins_MINIRAMBO.h | 2 +- Marlin/pins_RAMBO.h | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Marlin/Conditionals_LulzBot.h b/Marlin/Conditionals_LulzBot.h index f8b68418c..f5c821b9f 100644 --- a/Marlin/Conditionals_LulzBot.h +++ b/Marlin/Conditionals_LulzBot.h @@ -1886,6 +1886,7 @@ #define LULZBOT_SCROLL_LONG_FILENAMES #define LULZBOT_BABYSTEP_ZPROBE_GFX_OVERLAY #define LULZBOT_THIN_OVERLAY_ARROWS + #define LULZBOT_DISABLE_KILL_BUTTON #endif /* Marlin requires static PSTRs to display on the LCD display, because of this */ diff --git a/Marlin/pins_MINIRAMBO.h b/Marlin/pins_MINIRAMBO.h index b326112e6..0bede15fa 100644 --- a/Marlin/pins_MINIRAMBO.h +++ b/Marlin/pins_MINIRAMBO.h @@ -140,7 +140,7 @@ // #if ENABLED(ULTRA_LCD) - #if !MB(MINIRAMBO_10A) + #if !MB(MINIRAMBO_10A) && !defined(LULZBOT_DISABLE_KILL_BUTTON) #define KILL_PIN 32 #endif diff --git a/Marlin/pins_RAMBO.h b/Marlin/pins_RAMBO.h index 609383cd2..718ce6d32 100644 --- a/Marlin/pins_RAMBO.h +++ b/Marlin/pins_RAMBO.h @@ -199,7 +199,9 @@ // #if ENABLED(ULTRA_LCD) + #if !defined(LULZBOT_DISABLE_KILL_BUTTON) #define KILL_PIN 80 + #endif #if ENABLED(NEWPANEL)