1# Copyright (c) 2024 Michael Hope 2# SPDX-License-Identifier: Apache-2.0 3 4if SOC_SERIES_QINGKE_V2A 5 6config SYS_CLOCK_HW_CYCLES_PER_SEC 7 default $(dt_node_int_prop_int,/cpus/cpu@0,clock-frequency) 8 9config MAIN_STACK_SIZE 10 default 512 11 12config IDLE_STACK_SIZE 13 default 256 14 15config ISR_STACK_SIZE 16 default 256 17 18config CLOCK_CONTROL 19 default y 20 21rsource "Kconfig.defconfig.*" 22 23endif # SOC_SERIES_QINGKE_V2A 24