boards: mimxrt1060_evk: Use external memories by default
Changes the default code location from internal itcm to external qspi or hyperflash. Changes the default data location from internal dtcm to external sdram. Signed-off-by: Maureen Helm <maureen.helm@nxp.com>
This commit is contained in:
parent
f72bbf5c16
commit
e1f5a2e5df
|
@ -8,7 +8,8 @@ if BOARD_MIMXRT1060_EVK || BOARD_MIMXRT1060_EVK_HYPERFLASH
|
|||
|
||||
choice
|
||||
prompt "Code location selection"
|
||||
default CODE_ITCM
|
||||
default CODE_HYPERFLASH if BOARD_MIMXRT1060_EVK_HYPERFLASH
|
||||
default CODE_QSPI if BOARD_MIMXRT1060_EVK
|
||||
|
||||
config CODE_ITCM
|
||||
bool "Link code into internal instruction tightly coupled memory (ITCM)"
|
||||
|
@ -27,7 +28,7 @@ endchoice
|
|||
|
||||
choice
|
||||
prompt "Data location selection"
|
||||
default DATA_DTCM
|
||||
default DATA_SDRAM
|
||||
|
||||
config DATA_DTCM
|
||||
bool "Link data into internal data tightly coupled memory (DTCM)"
|
||||
|
|
|
@ -12,5 +12,5 @@ toolchain:
|
|||
- zephyr
|
||||
- gnuarmemb
|
||||
- xtools
|
||||
ram: 128
|
||||
flash: 128
|
||||
ram: 32768
|
||||
flash: 8192
|
||||
|
|
|
@ -12,5 +12,5 @@ toolchain:
|
|||
- zephyr
|
||||
- gnuarmemb
|
||||
- xtools
|
||||
ram: 128
|
||||
flash: 128
|
||||
ram: 32768
|
||||
flash: 65536
|
||||
|
|
Loading…
Reference in a new issue