Volodymyr Shymanskyy
Volodymyr Shymanskyy
I think of reworking the board connection mechanism: 1. Upon connection verify if user code is running (send `Enter`, see if REPL responds) - If REPL responds, automatically load system...
### Summary Some of my ESP32-S3 boards need to have CDC disabled. For details, see https://github.com/micropython/micropython/issues/14217 My board definition includes: ```c // Disable USB CDC as the same pins are...
### Summary This allows running `mpy-tool` using MicroPython itself. ### Testing Currently it is used in `ViperIDE` to disassemble `.mpy` files: - MicroPython VM runs in-browser using WebAssembly - The...
### Summary Enable `.pem` certificate parser for tls/ssl. ### Testing Working fine for a few month in Blynk.Edgent. ### Trade-offs and Alternatives Use `.der` certificates, but DER format does not...
Based on my (mostly positive) experience working with PPP on ESP32, I'd like to raise a concern regarding DNS in multi-interface configurations. ESP32 docs say: > DNS server configuration in...
### Summary When building non-trivial native modules, the compiler runtime needs to be linked manually, which is a tedious process. This PR allows `mpy_ld` to automatically resolve dependencies and link...