25 lines
425 B
Plaintext
25 lines
425 B
Plaintext
#
|
|
# Copyright (c) 2018, NXP
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
if BOARD_MIMXRT1050_EVK
|
|
|
|
choice
|
|
prompt "Code location selection"
|
|
default CODE_ITCM
|
|
|
|
config CODE_ITCM
|
|
bool "Link code into internal instruction tightly coupled memory (ITCM)"
|
|
|
|
config CODE_HYPERFLASH
|
|
bool "Link code into external HyperFlash memory"
|
|
|
|
config CODE_QSPI
|
|
bool "Link code into external QSPI memory"
|
|
|
|
endchoice
|
|
|
|
endif # BOARD_MIMXRT1050_EVK
|