> I call tcpip_callback(dhcp_start(netif_default),0); from 
> my application thread.

That syntax is going to call dhcp_start() from your application thread,
and pass the return value to tcpip_callback: not what you want.

Try netifapi_netif_common( &netif_default, NULL, dhcp_start);

Not sure if you have tried this: don't use the static IP address at all
(use 0.0.0.0), and see if DHCP works right.

Marty



_______________________________________________
lwip-users mailing list
lwip-users@nongnu.org
https://lists.nongnu.org/mailman/listinfo/lwip-users

Reply via email to