Did you find some errors in Serial Monitor?
I found the following error with ESP32-S3 (XIAO) & ILI9341 (2.4") when I execute TFT_graphicstest_PDQ :
Rebooting...
ESP-ROM:esp32s3-20210327
Build:Mar 27 2021
rst:0xc (RTC_SW_CPU_RST),boot:0x8 (SPI_FAST_FLASH_BOOT)
Saved PC:0x40378c2a
SPIWP:0xee
mode:DIO, clock div:1
load:0x3fce2820,len:0x1188
load:0x403c8700,len:0x4
load:0x403c8704,len:0xbf0
load:0x403cb700,len:0x30e4
entry 0x403c88ac
Bodmer's TFT_eSPI library Test!
Guru Meditation Error: Core 1 panic'ed (StoreProhibited). Exception was unhandled.
Core 1 register dump:
PC : 0x42003af8 PS : 0x00060530 A0 : 0x82003b84 A1 : 0x3fca1840
A2 : 0x3fc96490 A3 : 0x00000000 A4 : 0x00000008 A5 : 0x00000009
A6 : 0x000000ff A7 : 0x60004000 A8 : 0x00000010 A9 : 0x08000000
A10 : 0x3fc9655c A11 : 0x04c4b400 A12 : 0x00000001 A13 : 0x00000000
A14 : 0x00000004 A15 : 0x04c4b400 SAR : 0x00000002 EXCCAUSE: 0x0000001d
EXCVADDR: 0x00000010 LBEG : 0x42005cbc LEND : 0x42005cc9 LCOUNT : 0x00000000
I my case, I have the following enabled in User_Setup.h
to solve my issue:
// The ESP32 has 2 free SPI ports i.e. VSPI and HSPI, the VSPI is the default.
// If the VSPI port is in use and pins are not accessible (e.g. TTGO T-Beam)
// then uncomment the following line:
#define USE_HSPI_PORT // or USE_FSPI_PORT
You can find some issues related to TFT_eSPI, ESP32-S3 and ESP32 Espressif board package 3.x. For example:
Hope this helps to solve your issue.