Hi All,
I'm controlling the LCD via mcu_lcd driver of mimxrt1064.
When I build app in SRAM_DTC (at the second, first is FLASH), FLEXIO_MCULCD_Init() can work well.
But when I change SRAM_DTC to BOARD_SDRAM, FLEXIO_MCULCD_Init() can not work, and go into error handle as below.
void __assertion_failed(char *failedExpr)
{
(void)PRINTF("ASSERT ERROR \" %s \n", failedExpr);
for (;;)
{
__BKPT(0);
}
}
Below is the setting of RAM selection (BOARD_SDRAM is selecting)

How can I solve this problem by using BOARD_SDRAM?
(My app is weight, so I do not want to use SRAM_DTC)