From 6d5bdd5558492f78f026013d6bf7905bd330a314 Mon Sep 17 00:00:00 2001 From: Sebastiaan Dammann Date: Sun, 25 Oct 2020 14:30:14 +0100 Subject: [PATCH] Disable filament runout by default because many people have issues with it #7 --- Marlin/Configuration.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h index a6545031651d..85b9298750b6 100644 --- a/Marlin/Configuration.h +++ b/Marlin/Configuration.h @@ -1177,7 +1177,7 @@ */ #define FILAMENT_RUNOUT_SENSOR #if ENABLED(FILAMENT_RUNOUT_SENSOR) - #define FIL_RUNOUT_ENABLED_DEFAULT true // Enable the sensor on startup. Override with M412 followed by M500. + #define FIL_RUNOUT_ENABLED_DEFAULT false // Enable the sensor on startup. Override with M412 followed by M500. #define NUM_RUNOUT_SENSORS 1 // Number of sensors, up to one per extruder. Define a FIL_RUNOUT#_PIN for each. #define FIL_RUNOUT_STATE HIGH // Pin state indicating that filament is NOT present. #define FIL_RUNOUT_PULLUP // Use internal pullup for filament runout pins.