From 676f2f92179fb1033249a7a0c827ec67a819afaf Mon Sep 17 00:00:00 2001 From: InsanityAutomation Date: Mon, 19 Aug 2019 19:33:50 -0400 Subject: [PATCH] Lingering changes --- Marlin/Configuration.h | 22 +++++++++++----------- Marlin/Configuration_adv.h | 2 +- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h index 1d45aec5c7..5ea4b37196 100644 --- a/Marlin/Configuration.h +++ b/Marlin/Configuration.h @@ -1,9 +1,9 @@ -#define ABL_BLTOUCH // Replaces RGB LED -#define GraphicalLCD // Will work next to MKS TFT -#define TMC_2209 // Defaults to TMC2100 -#define ABL_UBL // Defaults to Bilinear +//#define ABL_BLTOUCH // Replaces RGB LED +//#define GraphicalLCD // Will work next to MKS TFT +//#define TMC_2209 // Defaults to TMC2100 +//#define ABL_UBL // Defaults to Bilinear //#define RunoutSensor // Tinymachines Lerdge Sensor -#define RELOCATE_LED // Since the bltouch by default removed the LED, set this if you simply moved them off the hotend +//#define RELOCATE_LED // Since the bltouch by default removed the LED, set this if you simply moved them off the hotend /** * Marlin 3D Printer Firmware @@ -95,13 +95,13 @@ * We encourage you to take advantage of this new feature and we also * respectfully request that you retain the unmodified Marlin boot screen. */ +#if ENABLED(GraphicalLCD) + // Enable to show the bitmap in Marlin/_Bootscreen.h on startup. + #define SHOW_CUSTOM_BOOTSCREEN -// Enable to show the bitmap in Marlin/_Bootscreen.h on startup. -#define SHOW_CUSTOM_BOOTSCREEN - -// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen. -#define CUSTOM_STATUS_SCREEN_IMAGE - + // Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen. + #define CUSTOM_STATUS_SCREEN_IMAGE +#endif // @section machine /** diff --git a/Marlin/Configuration_adv.h b/Marlin/Configuration_adv.h index f1d24d0bb0..3b9959e125 100644 --- a/Marlin/Configuration_adv.h +++ b/Marlin/Configuration_adv.h @@ -883,7 +883,7 @@ * LED Control Menu * Enable this feature to add LED Control to the LCD menu */ -#if DISABLED(ABL_BLTOUCH) || ENABLED(RELOCATE_LED) +#if (DISABLED(ABL_BLTOUCH) || ENABLED(RELOCATE_LED)) && ENABLED(GraphicalLCD) #define LED_CONTROL_MENU #endif