How to create a project on STM32H745Zi-q with Ethernet ,lwip with RTO's?
Can you please help me anyone to solve the below warning as well as note in Ethernet configuration .....
-->WARning ;-The ETH can work only when RAM is pointing at 0x24000000
-->NOTE:-PHY Driver must be configured from the LwIP 'Platform Settings' top right tab
i'm working on STM32745zi-q with ethernet and lwip with RTO's for UDP...... here i'm follwing the below ST links
at the same time going through FAQ link to
"https://community.st.com/s/article/FAQ-Ethernet-not-working-on-STM32H7x3"
please can I get the solution to set the RAM address to 0x24000000,as well as to how to set IP address,Net-mask address of the board.
Here the next step where i'm struck in debugging of code too is as follows...... in lan8742.c file ,getting as return value as LAN8742_STATUS_ERROR macro.
int32_t LAN8742_RegisterBusIO(lan8742_Object_t *pObj, lan8742_IOCtx_t *ioctx)
{
if(!pObj || !ioctx->ReadReg || !ioctx->WriteReg || !ioctx->GetTick)
{
return LAN8742_STATUS_ERROR;
}
pObj->IO.Init = ioctx->Init;
pObj->IO.DeInit = ioctx->DeInit;
pObj->IO.ReadReg = ioctx->ReadReg;
pObj->IO.WriteReg = ioctx->WriteReg;
pObj->IO.GetTick = ioctx->GetTick;
return LAN8742_STATUS_OK;
}
please can i find any solution for this
