It will server a page fine. I can jump to the next page fine.
If I use a page that has a form that posts such as a login it will work fine if its posting back to itself.
If I use a page that has a form that posts data which then sets a cookie or goes to another page using the
Code: Select all
server.sendHeader("Location", "/");
If you do a refresh on the browser it recovers.
If you run the handleclient command in the core1 loop everything is happy and works. I feel like the native wifi tasks running on core0 are causing the reset somehow? Its fine for single page but anything that requires more gives the browser reset.
My initial solution was to switch the handleclient over to the core1 in my program anytime I needed more than a single page but this does interrupt my task there and would prefer it to run totally on core0. I appreciate any advice!