From aafa3af08803b809853f7c5bc4d650a7196e1008 Mon Sep 17 00:00:00 2001 From: Daniel Mooney Date: Sat, 12 Dec 2020 14:23:00 -0600 Subject: [PATCH] Update Configuration.h PSU_ACTIVE_HIGH should be PSU_ACTIVE_STATE PSU_ACTIVE_STATE set from false to low. --- Marlin/Configuration.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h index 36a070f997..5f5c51f675 100644 --- a/Marlin/Configuration.h +++ b/Marlin/Configuration.h @@ -785,9 +785,9 @@ #if ENABLED(PSU_CONTROL) #if ENABLED(PowerShutoffKit) #define PS_ON_PIN 12 - #define PSU_ACTIVE_HIGH HIGH + #define PSU_ACTIVE_STATE HIGH #else - #define PSU_ACTIVE_HIGH FALSE // Set 'LOW' for ATX, 'HIGH' for X-Box + #define PSU_ACTIVE_STATE LOW // Set 'LOW' for ATX, 'HIGH' for X-Box #endif //#define PSU_DEFAULT_OFF // Keep power off until enabled directly with M80