16 lines
489 B
Plaintext
16 lines
489 B
Plaintext
# LPCXpresso54114 board
|
|
#
|
|
# Copyright (c) 2017, 2024 NXP
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# Place size restrictions on first image if dual core is enabled
|
|
if SECOND_CORE_MCUX && BOARD_LPCXPRESSO54114_LPC54114_M4
|
|
|
|
# Workaround for not being able to have commas in macro arguments
|
|
DT_CHOSEN_Z_CODE_PARTITION := zephyr,code-partition
|
|
|
|
config FLASH_LOAD_SIZE
|
|
default $(dt_chosen_reg_size_hex,$(DT_CHOSEN_Z_CODE_PARTITION))
|
|
|
|
endif # SECOND_CORE_MCUX && BOARD_LPCXPRESSO54114_LPC54114_M4
|