Page 1 of 1

Is LAN cable connected

Posted: Fri Mar 06, 2009 7:23 am
by jmcpherson96
Is there a function in the Network libraries for the MOD5270 board to check if the LAN (cable) is connected to the MOD5270 board?

Re: Is LAN cable connected

Posted: Fri Mar 06, 2009 7:30 am
by Chris Ruff
I use this...


if (!bEthLink)
{
// no media!
return IP_TYPE_ERROR;
}

Chris