Ivan Grokhotkov
Ivan Grokhotkov
> Are we sure that the Rust code itself is creating proper frames, always, and that the frame traversal algorithm in ESP-IDF is resilient enough? There's not much of an...
@AnthonyDiGirolamo our team is also interested in contributing to improved performance, since our documentation builds are currently taking several hours. I have tried your branch to see if I can...
Right, but aren't both `compound.py` and `compoundsuper.py` in your PR auto-generated? I would expect that this would make them internally consistent. The API changes would then only be important outside...
The C++ API doesn't currently have any helpers for passing strings into and out of the interpreter. Since the WebAssembly program doesn't have access to the host memory, you need...
This does look similar to https://github.com/espressif/esp-idf/issues/7507, which was fixed in release/v4.4 and later.
Hi @dl9sec, > If they use copyrighted material from other right holders, they can ask for a relicensing/dual licensing. If all of them agree, no biggy. This is indeed possible...
Since SPIFFS library is a wrapper over esp-idf spiffs component, we would have to expose GC and check functions there. We have merge requests open for both, GC is ready...
Regarding the format specifiers, please take a look at this section of the migration guide for IDF 5.0: https://docs.espressif.com/projects/esp-idf/en/latest/esp32/migration-guides/release-5.x/5.0/gcc.html#int32-t-and-uint32-t-for-xtensa-compiler. (For fixed-width integer types such as uint32_t and int32_t, you need...
Regarding the 2nd issue (that ROM sign-on message is printed every time you open the port) I think this could be solved by burning some of the eFuse bits. If...
For reference, in most new Espressif projects we use pre-commit framework to format the code at commit time. For example, https://github.com/espressif/esp-bsp/blob/160c0d66d851c3e247de4c535dc8ddad5a7e585f/.pre-commit-config.yaml#L6 This option could be considered in Arduino-esp32 as well.