Ryan Summers
Ryan Summers
My only concern is that we don't currently expose a way for external users of `stabilizer` to add to `NetworkUsers` without modifying the `stabilizer` library. I think `minireq` is the...
> If I understand correctly, you're talking about a functional implementation of Clock for host systems that will actually return the current time. Correct - the intent is to have...
As a follow up, I published a separate crate as [`std-embedded-time`](https://crates.io/crates/std-embedded-time) - I would be open to PRs to allow fast-forwarding time etc. or would be happy to incroporate it...
Hey guys, I know this may be a little bit late, but I was also having this issue. What I discovered is that there _is_ a safe API to do...
@WyseNynja https://github.com/ryan-summers/shared-bus-rtic/blob/b33e05009dd92639197bc63174fb51ff5ed1078e/src/lib.rs#L59-L86 I originally used a dummy mutex in `shared-bus-rtic`, but was encountering issues with sharing the bus across multiple RTIC tasks (due to it not implementing [`Sync`](https://doc.rust-lang.org/std/sync/)) and have...
@Rahix I believe it is now safe to close this issue after the release of 0.2.0 - I'm successfully using this crate as-is with RTIC. I'll look into pulling `shared-bus-rtic`...
> That's cool! Can you share some code? Should we add/change something to make it even easier? Also, would it make sense to add an example and documentation for this...
> I just gave @ryan-summers's approach a try for sharing SPI in RTIC. Looks like it's still not possible because `acquire_spi` is only defined for `BusManager`. Is that limitation still...
`shared-bus-rtic`'s only current use is to share a SPI bus for RTIC applications, since `shared-bus` can't quite do that yet due to some soundness issues around CS ownership
Mind posting an example of the output? And where would the pretty-print go? In `impl core::fmt::Display`?