Part Number: MSP432E401Y
Tool/software: TI-RTOS
Hi,
I need some help getting the running IP configuration out of NDK.
Here's my failed stab at it.
void ndk_cfg_test(void)
{
int i, count;
void *hCfg = NULL;
CI_IPNET *ip_cfg;
CI_ROUTE *ip_route;
hCfg = CfgGetDefault();
if(hCfg != NULL)
{
count = CfgGetEntryCnt(hCfg, CFGTAG_IPNET, 1);
CfgGetEntry(hCfg, CFGTAG_IPNET, 1, 1, &ip_cfg);
}
asm(" nop");
}