david gauchard

Results 351 comments of david gauchard

@ziplock9000 You need to be more specific, and provide an MCVE so one can try to reproduce the issue, including @dok-net the esp8266 Software Serial maintainer.

The call `::clearToEOL()` is in the library and also automatically called when you `::println()`.

> println() can cause scrolling in the case when the cursor is on the last line. Well, sorry for this imprecision :]

@scargill check ~#47~ v1.2.1

@tvixen check ~#47~ v1.2.1 for scrolling.

Would this kind of change help ? ```cpp --- a/src/WebSockets4WebServer.h +++ b/src/WebSockets4WebServer.h @@ -30,9 +30,10 @@ #if WEBSOCKETS_NETWORK_TYPE == NETWORK_ESP8266 && WEBSERVER_HAS_HOOK -class WebSockets4WebServer : public WebSocketsServerCore { +template +class...

About esp8266 / SSL running out of memory, there are two paths for optimization: - [BearSSL_MaxFragmentLength.ino](https://github.com/esp8266/Arduino/blob/master/libraries/ESP8266WiFi/examples/BearSSL_MaxFragmentLength/BearSSL_MaxFragmentLength.ino) - [MMU](https://arduino-esp8266.readthedocs.io/en/latest/mmu.html) There is an ongoing PR for the hook thing in esp32 repo....

About BSSL/MLFN, that's right. I don't know whether one can restrict the buffer size from the server size (even if that's not really standard). MFLN is not in applications but...

The warning will disappear with `// falls through` indicating to the compiler, which is trying to help, that the absence of `break` is on purpose. This is because of (or...

Yes, both ways work. The one with `//` is backward compatible with older versions of gcc (works with `/* */` too).