38 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
| // Setup for the ESP32 S3 with ILI9341 display
 | |
| // Note SPI DMA with ESP32 S3 is not currently supported
 | |
| #define USER_SETUP_ID 70
 | |
| // See SetupX_Template.h for all options available
 | |
| #define ILI9341_DRIVER
 | |
| 
 | |
|                     // Typical board default pins - change to match your board
 | |
| #define TFT_CS   34 //     10 or 34 (FSPI CS0) 
 | |
| #define TFT_MOSI 35 //     11 or 35 (FSPI D)
 | |
| #define TFT_SCLK 36 //     12 or 36 (FSPI CLK)
 | |
| #define TFT_MISO 37 //     13 or 37 (FSPI Q)
 | |
| 
 | |
| // Use pins in range 0-31
 | |
| #define TFT_DC    7
 | |
| #define TFT_RST   6
 | |
| 
 | |
| //#define TOUCH_CS 16 // Optional for touch screen
 | |
| 
 | |
| #define LOAD_GLCD
 | |
| #define LOAD_FONT2
 | |
| #define LOAD_FONT4
 | |
| #define LOAD_FONT6
 | |
| #define LOAD_FONT7
 | |
| #define LOAD_FONT8
 | |
| #define LOAD_GFXFF
 | |
| 
 | |
| #define SMOOTH_FONT
 | |
| 
 | |
| // FSPI port (SPI2) used unless following defined. HSPI port (SPI3) NOT TESTED YET
 | |
| //#define USE_HSPI_PORT
 | |
| 
 | |
| //#define SPI_FREQUENCY  27000000
 | |
| #define SPI_FREQUENCY  40000000   // Maximum for ILI9341
 | |
| 
 | |
| #define SPI_READ_FREQUENCY  6000000 // 6 MHz is the maximum SPI read speed for the ST7789V
 | |
| 
 | |
| #define SPI_TOUCH_FREQUENCY 2500000
 |