diff --git a/Processors/TFT_eSPI_RP2040.c b/Processors/TFT_eSPI_RP2040.c index b06d3aa..d20201c 100644 --- a/Processors/TFT_eSPI_RP2040.c +++ b/Processors/TFT_eSPI_RP2040.c @@ -133,7 +133,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; } } 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. 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