You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You are supposed to be able to call lwip_freertos_init twice as it protects agaist tcpip_init being called twice, but the first line contains assert(!lwip_context);
It should probably be assert(!lwip_context || lwip_context == context); and lwip_context should only be set once?
The text was updated successfully, but these errors were encountered:
You are supposed to be able to call lwip_freertos_init twice as it protects agaist tcpip_init being called twice, but the first line contains assert(!lwip_context);
It should probably be assert(!lwip_context || lwip_context == context); and lwip_context should only be set once?
The text was updated successfully, but these errors were encountered: