Christopher Hunt
Christopher Hunt
Has there been any thinking in terms of supporting `Stream` aka `AsyncIterator`, or will that come down to some future syntax like `yield SomeType`? Thanks.
Given a custom format (attached), I'm not seeing columns such as `timestamp` appear when performing an SQL query - in fact I'm not even convinced that I've got the custom...
Should we make the following fields of the `FieldData` struct public? ``` temperature: i16, pressure: u32, humidity: u32, gas_resistance: u32, ``` My first requirement is to encode these fields into...
Would you consider creating an alias of "idea" for the gen-idea task? We have done something similar with Play so that we have the IDEA creation look similar to the...
- Rust version : `rustc 1.54.0 (a178d0322 2021-07-26)` - nom version : `7.0.0` - nom compilation features used: `None` As I understand things, `CR` on its own is also a...
I believe we need a way of providing a `dilated` value as per Akka test kits so that we can accommodate timings on CI. Here's the line in question that...
Having spent some time on creating a PR for Embassy that introduces a non-alloc MPSC, there was a question posed as to whether the MPSC would be a better fit...
Thanks for this plugin. I'm assuming there's no in-built support for testing private/protected methods. I'd see this as being particularly useful there. Have you thought about that?
Embassy provides various types of Mutex e.g. Noop. This PR allows the mutex to be provided as per what we do with the MPSC. A major benefit is that the...
The existing (default) timer driver for nRF implements one using the RTC, which uses the LFCLK. An additional feature has been provided where the HFCLK can be used for the...