1# Copyright (c) 2021 Espressif Systems (Shanghai) Co., Ltd. 2# SPDX-License-Identifier: Apache-2.0 3 4config INTC_ESP32C3 5 bool "ESP32C3 interrupt controller driver" 6 depends on SOC_FAMILY_ESPRESSIF_ESP32 7 depends on SOC_SERIES_ESP32C2 || SOC_SERIES_ESP32C3 || SOC_SERIES_ESP32C6 8 default y 9 help 10 Enables the esp32c3 interrupt controller driver to handle ISR 11 management at SoC level. 12 13config INTC_ESP32C3_DECISIONS_LOG 14 bool "Espressif's interrupt allocator logging" 15 depends on INTC_ESP32C3 16 select LOG 17 help 18 Enable this option to visualize information on decisions made by the 19 interrupt allocator. This has no impact on the interrupt allocator usage 20 but may be valuable for debugging purposes. When enabled, messages are 21 print to the serial console. 22