1# Copyright 2024 NXP
2# SPDX-License-Identifier: Apache-2.0
3
4if SOC_SERIES_MCXA
5
6config NUM_IRQS
7	default 88
8
9config SYS_CLOCK_HW_CYCLES_PER_SEC
10	default 1000000 if MCUX_OS_TIMER
11	default 16000 if MCUX_LPTMR_TIMER
12	default 96000000 if CORTEX_M_SYSTICK
13
14# Set to the minimal size of data which can be written.
15config FLASH_FILL_BUFFER_SIZE
16	default 128
17
18endif # SOC_SERIES_MCXA
19