1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/esp_common: add module esp_riscv to Kconfig

This commit is contained in:
Gunar Schorcht 2022-06-25 23:52:15 +02:00
parent 4b86ae3b5e
commit 778ff10978
2 changed files with 20 additions and 0 deletions

View File

@ -69,6 +69,11 @@ config HAS_ARCH_ESP_XTENSA
help
Indicates that an Xtensa-based 'ESP' architecture is being used.
config HAS_ARCH_ESP_RISCV
bool
help
Indicates that an RISC-V-based 'ESP' architecture is being used.
config HAS_ESP_WIFI_ENTERPRISE
bool
help
@ -119,6 +124,7 @@ config MODULE_ESP_LOG_STARTUP
config MODULE_ESP_QEMU
bool "Simulate ESP with QEMU"
rsource "esp-riscv/Kconfig"
rsource "esp-xtensa/Kconfig"
rsource "freertos/Kconfig"
rsource "periph/Kconfig"

View File

@ -0,0 +1,14 @@
# Copyright (c) 2022 Gunar Schorcht
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
#
config MODULE_ESP_RISCV
bool
depends on TEST_KCONFIG
depends on HAS_ARCH_ESP_RISCV
default y
help
Platform-dependent code for Xtensa-based ESP SoCs.