1# NXP S32Z/E MCUs family default configuration 2 3# Copyright 2022 NXP 4# SPDX-License-Identifier: Apache-2.0 5 6if SOC_SERIES_S32ZE_R52 7 8config SOC_SERIES 9 default "s32ze" 10 11config NUM_IRQS 12 # must be >= the highest interrupt number used 13 default 991 14 15config FPU 16 default y 17 18config SYS_CLOCK_HW_CYCLES_PER_SEC 19 default 2000000 20 21config MAIN_STACK_SIZE 22 default 1024 23 24if !XIP 25config FLASH_SIZE 26 default 0 27 28config FLASH_BASE_ADDRESS 29 default 0 30endif # !XIP 31 32if NET_L2_ETHERNET 33 34# NETC drops TCP/UDP packets with invalid checksum 35config NET_TCP_CHECKSUM 36 default n 37 38config NET_UDP_CHECKSUM 39 default n 40 41endif # NET_L2_ETHERNET 42 43source "soc/arm/nxp_s32/s32ze/Kconfig.defconfig.s32*" 44 45endif # SOC_SERIES_S32ZE_R52 46