You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
585 B
40 lines
585 B
# NXP S32ZE MCUs series |
|
|
|
# Copyright 2022,2024 NXP |
|
# SPDX-License-Identifier: Apache-2.0 |
|
|
|
if SOC_SERIES_S32ZE |
|
|
|
config NUM_IRQS |
|
# must be >= the highest interrupt number used |
|
default 991 |
|
|
|
config FPU |
|
default y |
|
|
|
config SYS_CLOCK_HW_CYCLES_PER_SEC |
|
default 2000000 |
|
|
|
config MAIN_STACK_SIZE |
|
default 1024 |
|
|
|
if !XIP |
|
config FLASH_SIZE |
|
default 0 |
|
|
|
config FLASH_BASE_ADDRESS |
|
default 0 |
|
endif # !XIP |
|
|
|
if NET_L2_ETHERNET |
|
|
|
# NETC drops TCP/UDP packets with invalid checksum |
|
config NET_TCP_CHECKSUM |
|
default n |
|
|
|
config NET_UDP_CHECKSUM |
|
default n |
|
|
|
endif # NET_L2_ETHERNET |
|
|
|
endif # SOC_SERIES_S32ZE
|
|
|