From b8b45b0b04a44a5443423e4662a0fe87f229378b Mon Sep 17 00:00:00 2001 From: Bodmer Date: Wed, 10 May 2023 19:15:49 +0100 Subject: [PATCH 1/3] Fix #2645 (#2648) --- Processors/TFT_eSPI_RP2040.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Processors/TFT_eSPI_RP2040.c b/Processors/TFT_eSPI_RP2040.c index 6ca1fef..1025bae 100644 --- a/Processors/TFT_eSPI_RP2040.c +++ b/Processors/TFT_eSPI_RP2040.c @@ -145,7 +145,7 @@ void pioinit(uint32_t clock_freq) { if (!pio_can_add_program(tft_pio, &tft_io_program)) { tft_pio = pio1; if (!pio_can_add_program(tft_pio, &tft_io_program)) { - Serial.println("No room for PIO program!"); + // Serial.println("No room for PIO program!"); return; } } From 678cc82f2df6765d848d4189bb742469af95f358 Mon Sep 17 00:00:00 2001 From: Bodmer Date: Sun, 14 May 2023 00:08:41 +0100 Subject: [PATCH 2/3] Update Setup206_LilyGo_T_Display_S3.h Add chip select on GPIO 6 --- User_Setups/Setup206_LilyGo_T_Display_S3.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/User_Setups/Setup206_LilyGo_T_Display_S3.h b/User_Setups/Setup206_LilyGo_T_Display_S3.h index 42678ac..7a58eca 100644 --- a/User_Setups/Setup206_LilyGo_T_Display_S3.h +++ b/User_Setups/Setup206_LilyGo_T_Display_S3.h @@ -17,7 +17,8 @@ #define TFT_WIDTH 170 #define TFT_HEIGHT 320 -#define TFT_DC 7 +#define TFT_CS 6 +#define TFT_DC 7 #define TFT_RST 5 #define TFT_WR 8 From 8160d67d8975039a9a9b04181b22faccc68193bc Mon Sep 17 00:00:00 2001 From: Bodmer Date: Mon, 15 May 2023 00:08:35 +0100 Subject: [PATCH 3/3] Update User_Setup_Select.h --- User_Setup_Select.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/User_Setup_Select.h b/User_Setup_Select.h index 38a5f9e..135cb3d 100644 --- a/User_Setup_Select.h +++ b/User_Setup_Select.h @@ -12,11 +12,8 @@ // Create a shortcut to this file on your desktop to permit quick access for editing. // Re-compile and upload after making and saving any changes to this file. -// Customised User_Setup files are stored in the "User_Setups" folder. - -// It is also possible for the user tft settings to be included with the sketch, see -// the "Sketch_with_tft_setup" generic example. This may be more convenient for -// multiple projects. +// Example User_Setup files are stored in the "User_Setups" folder. These can be used +// unmodified or adapted for a particular hardware configuration. #ifndef USER_SETUP_LOADED // Lets PlatformIO users define settings in // platformio.ini, see notes in "Tools" folder.