1# Microchip MEC MCU series configuration options 2 3# Copyright (c) 2021 Microchip Technology Inc. 4# SPDX-License-Identifier: Apache-2.0 5 6if SOC_SERIES_MEC172X 7 8config NUM_IRQS 9 # must be >= the highest interrupt number used 10 # - include the UART interrupts 11 # All NVIC external sources. 12 default 181 13 14rsource "Kconfig.defconfig.mec172x*" 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 29config PS2_XEC 30 default y 31 depends on PS2 32 33endif # SOC_SERIES_MEC172X 34