Re: [lwip-users] lwip on Xilinx devices - MII management interface

2010-05-10 Thread Marianovich, Andre
Hiroyasu Matsubara schrieb: > Q1.On Xilinx FPGA,is there any method to drive ethernet PHY IC without > MII management interface ? In fact you need an interface between the MAC and the PHY so you need some kind of MII (MII,GMII, RGMII, etc.) to get MAC and PHY connected. _

RE: [lwip-users] Hardware - level for netif_remove()

2010-05-10 Thread Bill Auerbach
True. Add to the netif more function pointers, like init, power_up, power_down, shut_down, etc. I would expect being an embedded systems targeted TCP/IP stack that most applications have one netif. I've never been crazy about netif_add calling init. I would expect the netif to be added already

[lwip-users] debug help

2010-05-10 Thread Bernhard 'Gustl' Bauer
Hi I don't get any debug messages. This is in my lwip.opts.h: #define LWIP_DEBUG 1 #define SNTP_DEBUG (LWIP_DBG_ON) Is there anything else I must do? TIA Gustl ___ lwip-users mailing list lwip-users@nongnu

Re: [lwip-users] Hardware - level for netif_remove()

2010-05-10 Thread Christian Steffen
Hi Simon, Am 08.05.2010 10:30, schrieb goldsi...@gmx.de: Being like that, we could also add another function for low_level_remove() instead of re-using the init function. I think this is a clear and traceable solution. The question is whether many people need it because it adds to the code si