From 05b1d99ba3788d739670f92a100760289d8f5535 Mon Sep 17 00:00:00 2001 From: "Weisman, Alex (Contractor-NBCUniversal)" Date: Mon, 16 Dec 2024 19:36:55 -0500 Subject: [PATCH] YZ Inverted & pin defined --- Marlin/Configuration.h | 4 ++-- Marlin/Configuration_adv.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h index 926e247..1ffbdf2 100644 --- a/Marlin/Configuration.h +++ b/Marlin/Configuration.h @@ -1670,8 +1670,8 @@ // @section motion // Invert the stepper direction. Change (or reverse the motor connector) if an axis goes the wrong way. -#define INVERT_X_DIR false -#define INVERT_Y_DIR false +#define INVERT_X_DIR true +#define INVERT_Y_DIR true #define INVERT_Z_DIR true //#define INVERT_I_DIR false //#define INVERT_J_DIR false diff --git a/Marlin/Configuration_adv.h b/Marlin/Configuration_adv.h index fa466e0..d4f5472 100644 --- a/Marlin/Configuration_adv.h +++ b/Marlin/Configuration_adv.h @@ -533,9 +533,9 @@ * The fan turns on automatically whenever any driver is enabled and turns * off (or reduces to idle speed) shortly after drivers are turned off. */ -//#define USE_CONTROLLER_FAN +#define USE_CONTROLLER_FAN #if ENABLED(USE_CONTROLLER_FAN) - //#define CONTROLLER_FAN_PIN -1 // Set a custom pin for the controller fan + #define CONTROLLER_FAN_PIN PB15 // Set a custom pin for the controller fan //#define CONTROLLER_FAN2_PIN -1 // Set a custom pin for second controller fan //#define CONTROLLER_FAN_USE_Z_ONLY // With this option only the Z axis is considered //#define CONTROLLER_FAN_IGNORE_Z // Ignore Z stepper. Useful when stepper timeout is disabled.