1# Microchip MEC MCU series configuration options 2 3# Copyright (c) 2018 Intel Corporation 4# SPDX-License-Identifier: Apache-2.0 5 6if SOC_SERIES_MEC15XX 7 8config NUM_IRQS 9 # must be >= the highest interrupt number used 10 # - include the UART interrupts 11 # All NVIC external sources. 12 default 174 13 14rsource "Kconfig.defconfig.mec1501*" 15 16if RTOS_TIMER 17 18config SOC_HAS_TIMING_FUNCTIONS 19 default y if !CORTEX_M_DWT 20 21config ARCH_HAS_CUSTOM_BUSY_WAIT 22 default y 23 24endif # RTOS_TIMER 25 26config CORTEX_M_SYSTICK 27 depends on !RTOS_TIMER 28 29endif # SOC_SERIES_MEC15XX 30