ivmarkov
ivmarkov
`panic_immediate_abort` was removed *temporarily* in commit https://github.com/ivmarkov/rust-esp32-std-demo/commit/1a763596a48824a6c196dcdd9c373faf63a73a03#diff-c0f7069e07464fa4e93b743976ee388e5ee530e3393fa306e4745d442bbf1fe8 because of [this issue in Rust nightly](https://github.com/rust-lang/cargo/issues/10019). However, the above issue is fixed in the meantime, so `panic_immediate_abort` was restored with this commit:...
Yes, there is. But I think it is a bit too early. For one, I've yet to see something meaningful implemented either by the community, or by me which is...
By the way - and if it is not clear - the "async" patches revolve around asynchronous **networking**. They basically (a) patch the `socket2` crate to be ESP-IDF compatible, and...
With [edge-net](https://github.com/ivmarkov/edge-net) on the horizon, I've started upstreaming the async stuff. First patch that needs to happen is in libc itself: https://github.com/rust-lang/libc/pull/2864 The patches to `polling`, `socket2` and `smol` itself...
None of us understands or uses BT in his daily activities though. Help and PRs greatly appreciated!
Ok then shall i pull the existing code into - say - `esp-ulp-hal`, rebase it on top of the PAC crates and move to the `esp-rs` org?
I think the ULP should indeed be part of the `esp-hal` repo. Since we are talking about support for both S2 and S3, I guess I should PR two packages...
Hmmmm... and maybe I'll need `esp-ulp-hal-common`. Not clear yet.
How much flash does your esp32c3 board have? This looks suspicious: E (366) spi_flash: Detected size(2048k) smaller than the size in the binary image header(4096k). Probe failed.
> Hi, I actually have the same problem. My ESP32C3 has 2048k flash. I find it strange that a simple release build weight more than 8Mb. What is actually flashed...