1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-24 22:13:52 +01:00

Merge pull request #20087 from MrKevinWeiss/pr/fix/esp32s3-wt32-sc01-plus

cpu/esp32: Fix kconfig of esp-lcd
This commit is contained in:
Marian Buschsieweke 2023-11-16 07:11:27 +00:00 committed by GitHub
commit bf90638e80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 1 deletions

View File

@ -26,6 +26,7 @@ rsource "eth/Kconfig"
rsource "event/Kconfig"
rsource "gpio/Kconfig"
rsource "heap/Kconfig"
rsource "lcd/Kconfig"
rsource "nvs_flash/Kconfig"
rsource "rmt/Kconfig"
rsource "spi_flash/Kconfig"

View File

@ -10,6 +10,7 @@ config MODULE_ESP_IDF_HEAP
bool
depends on TEST_KCONFIG
depends on MODULE_ESP_IDF
default y if MODULE_LCD_PARALLEL_LL_MCU
select PACKAGE_TLSF
help
ESP-IDF heap library. This library is required if external SPI RAM

View File

@ -8,7 +8,7 @@
config MODULE_ESP_IDF_LCD
bool
depends on TEST_KCONFIG
depends on MODULE_ESP_IDF && HAS_ESP_LCD
depends on MODULE_ESP_IDF
default y if MODULE_LCD_PARALLEL_LL_MCU