Max Prokhorov

Results 502 comments of Max Prokhorov

> There is a card inserted that is formatted with exFAT and there is one file test.txt exFAT is not currently supported by our APIs, only FAT We would have...

So https://github.com/esp8266/Arduino/pull/7027 is the culprit. But code above does not check the value regardless, so our exception is replaced with a run-time error. Looking at esp32 where PR was also...

> https://github.com/espressif/esp-lwip/blob/2.1.2-esp/src/netif/slipif.c repository is here, we do not use Espressif LWIP repo * https://github.com/lwip-tcpip/lwip is our upstream * https://github.com/d-a-v/esp82xx-nonos-linklayer is the builder + some patches things just have to be...

> As there is no documentation other than the source code and the examples, one would deduce that using attach_scheduled resolves the warning given in the recommendation > Is that...

Just use braces to init? ```cpp #include struct Foo { std::atomic bar { false }; }; ``` gcc8 stdlib should be ok with that (`~/[email protected]+2021r2-patch5/bin/xtensa-esp32-elf-g++ -c atomic.cpp` works with the...

Arduino library dependency framework would pick things up during interactive session, true. Not the case here, library must be present in search path. Note that if you'd do that, now...

> I've checked the aforementioned sketches. The all appear to use EspSoftwareSerial in order to have two UARTs available, one for logging. IIRC the second UART of ESP8266 is TX...

Fixing CI might be a good start? Can't merge if 'Squash and merge' button does not work. https://github.com/esp8266/Arduino/blob/47327e8449a061dcce540ba60e4341cefbabac50/tests/common.sh#L203 `skip_sketch`, followed by `skip_ino` must skip impossible-to-build sketches, which includes ghostl coroutine...

See #8916 and #8990. Main concerns are with new -std=... build defaults applied to every lib and sketch besides our Core files, (sometimes useless) new warnings, and also incomplete support...