1# ESP32C3 board configuration
2
3# Copyright (c) 2021 Espressif Systems (Shanghai) Co., Ltd.
4# SPDX-License-Identifier: Apache-2.0
5
6if SOC_ESP32C3
7
8config SOC
9	default "esp32c3"
10
11config NUM_IRQS
12	default 32
13
14config GEN_ISR_TABLES
15	default y
16
17config GEN_SW_ISR_TABLE
18	default y
19
20config GEN_IRQ_VECTOR_TABLE
21	default n
22
23config DYNAMIC_INTERRUPTS
24	default y
25
26config XIP
27	default n
28
29config ISR_STACK_SIZE
30	default 2048
31
32config ATOMIC_OPERATIONS_C
33	default y
34
35config MINIMAL_LIBC_OPTIMIZE_STRING_FOR_SIZE
36	default n
37
38config LOG_DETECT_MISSED_STRDUP
39	default n
40
41endif
42