Nielda wrote: > Does anybody know how I can make the lwIP stack work together with > the new Ethernet MAC interface (i.e. rtmac_0)?
Call: netif_add(&netif, &ipaddr, &netmask, &gw, NULL, your_if_init, tcpip_input); netif_set_default(&netif); your_if_init() must be the initialisation routine (power-on-reset) for your Ethernet interface. (set MAC address etc). Bye, Christiaan Simons Hardware / Software Engineer Axon Digital Design http://www.axon.tv This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. This message contains confidential information and is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. _______________________________________________ lwip-users mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/lwip-users
