Diego Barrios Romero

Results 40 issues of Diego Barrios Romero

I think it could be useful for the `Clock::delay()` method to have a non-blocking interface like: `fn delay(dur: Dur) -> nb::Result`. This would return `Err(nb::Error::WouldBlock)` as long as the delay...

enhancement
discussion

Depends on https://github.com/rust-embedded/embedded-hal/pull/392 Also adds 10-bit addressing support. Not tested in hardware yet, though. Fixes #82

S-waiting-on-review
T-embedded-linux

Depends on #392

S-waiting-on-review
T-hal

This allows overwriting the png library output name from the outside by making it a cmake cache variable.

This allows overwriting the library debug postfix from the outside by making it a cmake cache variable.

Reading through #100 and #101, here is a PR turning this repository into a workspace. The idea would be that if @ianrrees and @Disasm agree, we could incorporate their device-side...

I added a changelog, the licenses and filled the authors in commit order. Is there anything left to do before the 0.4.0 release? @MathiasKoch could you add the team @rust-embedded-community/embedded-storage...

As of version 0.1.0 (coming from #12) addresses are fixed to `u32`, however, this is inconvenient for devices with very small small (wasteful) or very big (> 4GB) capacity (cannot...

> hey fyi `tokio::time::sleep` is only good [down to `ms` resolutions](https://docs.rs/tokio/latest/tokio/time/fn.sleep.html), for more granularity we typically need something `nanosleep` or a hot loop, so this implementation won't be accurate for...