Part Number: PROCESSOR-SDK-TDAX
Tool/software: TI-RTOS
In the process of adding my own command to network_ctrl for our TDA2Px EVM, I noticed that NetworkCtrl_cmdHandlerEcho() calls ChainsCommon_Osal_getVirtAddr(). Why is this needed? Two of the functions in chains_common_osal.c make no sense to me, since they just return the parameter that was passed to them. It does not appear to even act as a cast, since the return type is the same. Do I need to use this to for some reason?
UInt32 ChainsCommon_Osal_getVirtAddr(UInt32 phyAddr)
{
return (phyAddr);
}
UInt32 ChainsCommon_Osal_getPhysAddr(UInt32 virtAddr)
{
return (virtAddr);
}
As a sidenote, does Osal mean?
Thanks.