Jonathan Bastien-Filiatrault
Jonathan Bastien-Filiatrault
I am spawning tasks inside an async executor that needs tasks to be 'static, I would like to be able to use RTIC resource proxies inside my async task. Right...
I am currently unable to run my application standalone when a debugger is not present. I am suspecting that it is because the TPIU and the ITM port are not...
I reported the issue to async-io initially, I thought it might be appropriate to also raise the issue here. https://github.com/smol-rs/async-lock/issues/84
I tried this code: ```rust // Wi-Fi setup, etc.... let s = std::net::TcpStream::connect(("example.com", 80))?; log::info!("socket connected"); if let Err(e) = s.set_nodelay(true) { log::error!("nodelay error: {e:?}"); }; ``` I expected to...
Code: https://github.com/esp-rs/esp-idf-svc/blob/4fff46bba1be66ae3c6945d3b8bda30a589f6f6b/examples/tls_async.rs Backtrace: [backtrace.txt](https://github.com/smol-rs/async-io/files/14695958/crash.txt) Crate versions: [Cargo.lock](https://github.com/smol-rs/async-io/files/14695995/Cargo.lock.txt) I am running the example on a ESPcam board, with an esp32 (revision v3.0) Xtensa module (Tinker AI ESP32-S, to be exact). The...
In short, libc exposes a value of 8193, when the IP stack is expecting 1 as the value of the TCP_NODELAY option. Initial issue: https://github.com/esp-rs/rust/issues/218 Related PR (unmerged): https://github.com/rust-lang/libc/pull/3345
I'm using this to make a captive portal using the DNS method (edge_captive made it really simple).
backtrace requires Rust 1.82 or newer, use that as the MSRV.
Pretty simple and self descriptive.
Returns raw i32 / u32 or, with the "fixed" feature enabled, proper fixed point numbers from the "fixed" crate. Builds upon the previous "maintenance" PR https://github.com/VersBinarii/bme280-rs/pull/44