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
The IRQ callback routine ended up passing in a stack variable address. For main
app code this is legal because the app blocks until the LWIP call returns. But
for IRQs, it returns immediately (can't block in IRQ) and the stack pointer we
passed in will be corrupt. Use a dumb static (heap) variable for now.
W5100 is now running with multiple AdvancedWebServer clients in parallel with
a WiFiClient MOTD process on core 1, in parallel.
Rewriting the CYW43 driver to work with this TBD.
0 commit comments