1# Kinetis KV5x series configuration options
2
3# Copyright (c) 2019 SEAL AG
4# Copyright 2024 NXP
5# SPDX-License-Identifier: Apache-2.0
6
7if SOC_SERIES_KINETIS_KV5X
8
9config NUM_IRQS
10	# must be >= the highest interrupt number used
11	default 121
12
13config GPIO
14	default y
15
16# The flash option register (FOPT) boot options
17# 1111 1011 - Set NMI pin/interrupts to disabled.
18config KINETIS_FLASH_CONFIG_FOPT
19	default 0xFB
20	depends on KINETIS_FLASH_CONFIG
21
22endif # SOC_SERIES_KINETIS_KV5X
23