mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
e10202a608
* Support intel 8080 LCD panel IO on ESP32-S3 * Support RGB LCD panel on ESP32-S3 * Support SPI && I2C LCD panel IO on all esp chips
21 lines
822 B
Plaintext
21 lines
822 B
Plaintext
menu "LCD and Touch Panel"
|
|
menu "LCD Peripheral Configuration"
|
|
depends on IDF_TARGET_ESP32S3
|
|
choice LCD_PERIPH_CLK_SRC
|
|
prompt "Select clock source for LCD peripheral"
|
|
default LCD_PERIPH_CLK_SRC_XTAL if PM_ENABLE
|
|
default LCD_PERIPH_CLK_SRC_PLL160M
|
|
help
|
|
The peripheral clock is where LCD bus clock derives from.
|
|
Each clock source has its unique feature, e.g.
|
|
1. XTAL clock can help LCD work stable when DFS is enabled
|
|
2. PLL160M can achieve higher pixel clock resolution
|
|
|
|
config LCD_PERIPH_CLK_SRC_PLL160M
|
|
bool "PLL_160M clock"
|
|
config LCD_PERIPH_CLK_SRC_XTAL
|
|
bool "XTAL clock"
|
|
endchoice # LCD_PERIPH_CLK_SRC
|
|
endmenu
|
|
endmenu
|