Will Miles

Results 88 comments of Will Miles

> looks good. does this work on all platforms including ESP8266? if ESP8266 does not have nough RAM or is too slow it should be excluded with an `#ifdef /...

> > _ZNSt17_Function_handlerIFvPvP11AsyncClientEZN21AsyncWebServerRequestC4EP14AsyncWebServerS2_EUlS0_S2_E1_E9_M_invokeERKSt9_Any_dataOS0_OS2_ > > :? > > _ZNKSt8functionIFvPvP11AsyncClientEEclES0_S2_ > > :? > > _ZN11AsyncClient6_closeEv$part$14 > > :? > > _ZL19_async_service_taskPv > > :? > > I am having a...

I'm pretty sure that the call of `AsyncClient::_close()` is getting inlined in to `_async_service_task()` through `AsyncClient::_poll()`, when it detects an rx timeout. This implies the LwIP event -> AsyncClient pcb...

Thanks, that narrows it down a bit: we're probably looking for an issue in the "connect" sequence, rather than the listen callbacks used by the web server. I'll focus on...

Possible duplicate of #4389 .

I'm really not a fan of the code duplication. (Sometimes I think copy-and-paste ought to be banned from IDEs!) I'll second the suggestion regarding supporting all possible modes instead of...

Reproduced on my test setup, investigating now

Fix is merged in 0_15.

> I have moved the pins counter logic to a separate function Bus::getRequiredPins(). I have replaced the error messages with better ones and updated the default variables in the example...