From 632a50d94008ff7d2444bc079beab556020e8064 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Sat, 16 Jul 2022 22:46:31 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=91=E2=80=8D=F0=9F=92=BB=20Update=20si?= =?UTF-8?q?mulator=20configuration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/examples/Simulator/Configuration.h | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/config/examples/Simulator/Configuration.h b/config/examples/Simulator/Configuration.h index e1cac745a7..5ed20146d6 100644 --- a/config/examples/Simulator/Configuration.h +++ b/config/examples/Simulator/Configuration.h @@ -39,6 +39,21 @@ */ #define CONFIGURATION_H_VERSION 02010100 +// +// Simulator currently supports these displays. Choose one! +// +#define REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER +//#define LIGHTWEIGHT_UI +//#define TFT_CLASSIC_UI +//#define TFT_COLOR_UI + +// Enable parent LCD based on your selection above +#if EITHER(TFT_CLASSIC_UI, TFT_COLOR_UI) + #define TFT_GENERIC +#elif ENABLED(LIGHTWEIGHT_UI) + #define REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER +#endif + //=========================================================================== //============================= Getting Started ============================= //=========================================================================== @@ -2411,7 +2426,7 @@ * SD Card support is disabled by default. If your controller has an SD slot, * you must uncomment the following option or it won't work. */ -//#define SDSUPPORT +#define SDSUPPORT /** * SD CARD: ENABLE CRC @@ -2671,7 +2686,7 @@ // RepRapDiscount FULL GRAPHIC Smart Controller // https://reprap.org/wiki/RepRapDiscount_Full_Graphic_Smart_Controller // -#define REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER +//#define REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER // // K.3D Full Graphic Smart Controller @@ -3058,12 +3073,12 @@ // Interface. Enable one of the following options: //#define TFT_INTERFACE_FSMC - //#define TFT_INTERFACE_SPI + #define TFT_INTERFACE_SPI // TFT Resolution. Enable one of the following options: //#define TFT_RES_320x240 //#define TFT_RES_480x272 - //#define TFT_RES_480x320 + #define TFT_RES_480x320 //#define TFT_RES_1024x600 #endif