forked from esp-arduino-libs/ESP32_Display_Panel
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathKconfig
More file actions
22 lines (18 loc) · 788 Bytes
/
Kconfig
File metadata and controls
22 lines (18 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
menu "ESP Display Panel Configurations"
config ESP_PANEL_DRIVERS_FILE_SKIP
bool "Enable to skip `esp_panel_drivers_conf.h`"
default y
help
If want to use `esp_panel_drivers_conf.h` to configure the panel, uncheck this option. Otherwise, the configurations in sdkconfig will be used.
config ESP_PANEL_BOARD_FILE_SKIP
bool "Enable to skip `esp_panel_board_*.h`"
default y
help
If want to use `esp_panel_board_*.h` to configure the panel, uncheck this option. Otherwise, the configurations in sdkconfig will be used.
if ESP_PANEL_DRIVERS_FILE_SKIP
orsource "./src/drivers/Kconfig.drivers"
endif
if ESP_PANEL_BOARD_FILE_SKIP
orsource "./src/board/Kconfig.board"
endif
endmenu