You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
468 B
22 lines
468 B
# Copyright (c) 2024 Michael Hope |
|
# Copyright (c) 2024 Jianxiong Gu |
|
# SPDX-License-Identifier: Apache-2.0 |
|
|
|
config SOC_FAMILY_CH32V |
|
select RISCV |
|
select BUILD_OUTPUT_HEX |
|
select CH32V00X_SYSTICK |
|
imply XIP |
|
|
|
if SOC_FAMILY_CH32V |
|
|
|
config VECTOR_TABLE_SIZE |
|
int "Number of Interrupt and Exception Vectors" |
|
range 20 256 |
|
help |
|
This option defines the total number of interrupt and exception |
|
vectors in the vector table. |
|
|
|
rsource "*/Kconfig" |
|
|
|
endif # SOC_FAMILY_CH32V
|
|
|