Hi everyone,
I am using MIMXRT1064-EVK with SDK version 2.15.0.
I am trying to run the SDK sample lwip_dhcp_freertos on SDRAM.
I added the below symbols to the project.
> SKIP_SYSCLK_INIT
> XIP_BOOT_HEADER_DCD_ENABLE=1
Next I moved BOARD_SDRAM to the top of memory details.
> RAM BOARD_SDRAM RAM 0x80000000 0x1e00000
> Flash PROGRAM_FLASH Flash 0x70000000 0x400000 MIMXRT1064.cfx
> RAM SRAM_DTC RAM2 0x20000000 0x20000
> RAM SRAM_ITC RAM3 0x0 0x20000
> RAM SRAM_OC RAM4 0x20200000 0xc0000
> RAM NCACHE_REGION RAM5 0x81e00000 0x200000
and checked Link application to RAM.
When I build and run the project, it works as expected at first.
However, even if you repeatedly connect and disconnect the LAN cable after that, the DHCP state does not change.
How can I run it on SDRAM?
Thanks in advance.