6b57b3b786
Refactor the ESP32 target SOCs together with all related boards. Most braking changes includes: - changing the CONFIG_SOC_ESP32* to refer to the actual soc line (esp32,esp32s2,esp32s3,esp32c3) - replacing CONFIG_SOC with the CONFIG_SOC_SERIES - creating CONFIG_SOC_FAMILY_ESP32 to embrace all the ESP32 across all used architectures - introducing CONFIG_SOC_PART_NUMBER_* to provide a SOC model config - introducing the 'common' folder to hide all commonly used configs and files. - updating west.yml to reflect previous changes in hal Signed-off-by: Marek Matej <marek.matej@espressif.com>
21 lines
684 B
Plaintext
21 lines
684 B
Plaintext
# Copyright (c) 2021 Espressif Systems (Shanghai) Co., Ltd.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config INTC_ESP32C3
|
|
bool "ESP32C3 interrupt controller driver"
|
|
depends on SOC_SERIES_ESP32C3
|
|
default y
|
|
help
|
|
Enables the esp32c3 interrupt controller driver to handle ISR
|
|
management at SoC level.
|
|
|
|
config INTC_ESP32C3_DECISIONS_LOG
|
|
bool "Espressif's interrupt allocator logging"
|
|
depends on INTC_ESP32C3
|
|
select LOG
|
|
help
|
|
Enable this option to visualize information on decisions made by the
|
|
interrupt allocator. This has no impact on the interrupt allocator usage
|
|
but may be valuable for debugging purposes. When enabled, messages are
|
|
print to the serial console.
|