1# Copyright (c) 2024 Microchip Technology Inc.
2# SPDX-License-Identifier: Apache-2.0
3
4# Microchip MECH172x MCU series configuration options
5
6if SOC_SERIES_MECH172X
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
14config CORTEX_M_SYSTICK
15	depends on !RTOS_TIMER
16
17endif # SOC_SERIES_MECH172X
18