Fix for compile failing when building for ESP-S3 due to LV_DISP_PIN_BUSY being undefined.

This commit is contained in:
Marty Weiner 2022-09-11 15:23:27 -04:00
parent 1759b774a9
commit 60544ea42d
2 changed files with 4 additions and 1 deletions

3
.gitignore vendored
View file

@ -60,3 +60,6 @@ build
# Kconfig files
sdkconfig
sdkconfig.old
# VIM files
*.sw[mnop]

View file

@ -930,7 +930,7 @@ menu "LVGL TFT Display controller"
config LV_DISP_PIN_BUSY
int "GPIO for Busy" if LV_TFT_DISPLAY_CONTROLLER_IL3820 || LV_TFT_DISPLAY_CONTROLLER_JD79653A || LV_TFT_DISPLAY_CONTROLLER_UC8151D
default 35 if LV_TFT_DISPLAY_CONTROLLER_IL3820 || LV_TFT_DISPLAY_CONTROLLER_JD79653A || LV_TFT_DISPLAY_CONTROLLER_UC8151D
default 35 if IDF_TARGET_ESP32 || IDF_TARGET_ESP32S2
default 35 if IDF_TARGET_ESP32 || IDF_TARGET_ESP32S2 || IDF_TARGET_ESP32S3
default 21 if IDF_TARGET_ESP32C3
help