david gauchard
david gauchard
@igor-epam What do you think of saving the content of `br_ssl_engine_last_error` in a "releaseSSL()" method that would also call `_freeSSL()` ?
If the issue is A-MPDU (appeared in 802.11n ?), it should disappear when forcing the esp in mode 802.11g. ``` WiFi.setPhyMode(WIFI_PHY_MODE_11G); ```
If you're able to locate the file `mkbuildoptglobals.py`, can you try and change https://github.com/esp8266/Arduino/blob/1662248b394740d82824f504a021d4dad3d314b6/tools/mkbuildoptglobals.py#L676 to ```py default_encoding = 'utf-8' ``` and report if this fixes your issue ?
The loopback interface is [explicitly disabled](https://github.com/d-a-v/esp82xx-nonos-linklayer/blob/4087efd9d2a8e1cee9a159e0796d831dc1e0c497/glue-lwip/arduino/lwipopts.h#L1712-L1718) in the current configuration. Then these packets are not retained so they should be(?) sent, and are lost in the network: they are probably...
Our toolchain is not configured to build and provide the thread library (`_GLIBCXX_HAS_GTHREADS` is not defined). There is currently no multithreading enabled in this architecture because this is useless until...
#9083 should be merged first
@JAndrassy your #9044 reminds me of this. Is your work around Arduino networking libraries portability also extends to higher level APIs ?
It seems we can make an adapter for SDFat
Why is `in_min` returned when input range is 0? Why not `out_min` or `(out_min + out_max)/2` ? User always expects to get a value of the same order as `out_min..out_max`....
A bit of history: https://github.com/esp8266/Arduino/pull/4626 (what you want to remove) https://github.com/esp8266/Arduino/issues/5257 https://github.com/esp8266/Arduino/pull/5355 Here is the documentation: https://arduino-esp8266.readthedocs.io/en/latest/esp8266wifi/client-examples.html?#general-client-loop esp8266 must have been more heavily using networking after Arduino made up this...