I'm trying to get the enet_lwip example to work on the F28M35x Concerto. I've tried a number of things, none of which seem to work.
1. Connecting the controlcard directly to my computer with an ethernet cable. The card does not show up at all.
2. Connecting the controlcard to the router with an ethernet cable. My thinking here is that it should get an IP address from the router with DHCP and show up. It doesn't show up at all on the list of connected devices on the router. I made a variable for saving the ip address, like so:
static int currentIP = 0;
void SysTickIntHandler(void)
{
currentIP = lwIPLocalIPAddrGet();
//
// Call the lwIP timer handler.
//
lwIPTimer(SYSTICKMS);
}
When I pause and inspect this variable, the result is 0x20002768, or 32.0.39.104, which doesn't even make sense as an IP address on this network. So what's going on?
The only way I've managed to connect the controlcard is through a static ip address, which is used in the enet_uip example.
Any help is greatly appreciated.

