2021-08-30 21:04:34 +08:00
|
|
|
# Copyright (c) 2021 Espressif Systems (Shanghai) Co., Ltd.
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
config INTC_ESP32C3
|
2022-03-09 19:05:12 +08:00
|
|
|
bool "ESP32C3 interrupt controller driver"
|
2024-05-14 23:33:47 +08:00
|
|
|
depends on SOC_SERIES_ESP32C3 || SOC_SERIES_ESP32C6
|
2021-08-30 21:04:34 +08:00
|
|
|
default y
|
|
|
|
help
|
|
|
|
Enables the esp32c3 interrupt controller driver to handle ISR
|
|
|
|
management at SoC level.
|
2021-09-03 03:32:05 +08:00
|
|
|
|
|
|
|
config INTC_ESP32C3_DECISIONS_LOG
|
2022-03-09 19:05:12 +08:00
|
|
|
bool "Espressif's interrupt allocator logging"
|
2021-09-03 03:32:05 +08:00
|
|
|
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.
|