Part Number: RM57L843
Other Parts Discussed in Thread: HALCOGEN
Hello,
I have Integrated and complied the Lwip 1.4.1 stack in IAR,
The same stack is working in ccs and tested the UDP protocol,
As following image the workaround for intrinsic function in IAR for enabling the interrupts and CPSR status Getting is as,
CPSR status getting workaround
uint32_t IntMasterStatusGet(void)
{
// return (0xC0 & _get_CPSR());
return (0xC0 & __get_CPSR());
}
But as initializing the lwip, the code is getting hanged in mloop in HL_sys_core.asm as, and i observed that MINIDONE bit is set to 0 which means Memory hardware initialization is not complete for all memory
but if i comment
lwIPInit(0u, pucMacaddress, (uint32_t)SERVER_IP, (uint32_t)SUBNET_MASK, (uint32_t)GATE_WAY, (uint32_t)IPADDR_USE_STATIC);
my rest code is working well without UDP feature,
please let me know where and what i am missing,
Thank you,
Vikas N.

