Hello,
I successfully modified Hello_UDP to TCP and used it in fixed IP (no DHCP). Now I need to use both ethernet interfaces simultaneously for my application.
So first I have modified the example to use the second interface : I replaced
CfgAddEntry( hCfg, CFGTAG_IPNET, 1, 0,
sizeof(CI_IPNET), (UINT8 *)&NA, 0 );
by (third argument =2 = interface 2)
CfgAddEntry( hCfg, CFGTAG_IPNET, 2, 0,
sizeof(CI_IPNET), (UINT8 *)&NA, 0 );
but when I execute the application the second Ethernet led blinks but no IP address is associated, NetworkIPAddr is never called...
Have an idea ? Does I need to change interfaces number somewhere else ?
2) In http://processors.wiki.ti.com/index.php/Network_Developers_Kit_FAQ I read that it is not possible to use both Ethernet interfaces simultaneously (Q32),
is that true or a misunderstanding from me confusing PHY and ethernet interfaces ?
Regards,
Thierry