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:
parent
4b86ae3b5e
commit
778ff10978
@ -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"
|
||||
|
14
cpu/esp_common/esp-riscv/Kconfig
Normal file
14
cpu/esp_common/esp-riscv/Kconfig
Normal 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.
|
Loading…
Reference in New Issue
Block a user