1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2026-01-01 01:41:18 +01:00
RIOT/cpu/esp_common/Kconfig
2025-09-12 11:50:26 +02:00

21 lines
469 B
Plaintext

# SPDX-FileCopyrightText: 2020 HAW Hamburg
# SPDX-License-Identifier: LGPL-2.1-only
config CPU_ARCH_XTENSA
bool
help
Xtensa based architecture is used for the ESP8266 or the ESP32x SoC variant
config CPU_ARCH_RISCV
bool
help
RISC-V based architecture is used for the ESP32x SoC variant.
config CPU_COMMON_ESP
bool
## Common CPU symbols
config CPU_ARCH
default "xtensa" if CPU_ARCH_XTENSA
default "rv32" if CPU_ARCH_RISCV