shared-bus icon indicating copy to clipboard operation
shared-bus copied to clipboard

Crate for sharing buses between multiple devices

Results 15 shared-bus issues
Sort by recently updated
recently updated
newest added

The current version is still pretty much what I drafted up initially. The design has shown a few flaws over time, which should be addressed in a new version. Here...

I got lost on your example for using shared-bus with threads. My cargo.toml file in [dependencies] ``` shared-bus = {git = "https://github.com/Rahix/shared-bus.git", version = "0.2.3", features = ["eh-alpha", "std"]} ```...

question

I have seen that the different proxy types (`I2cProxy`, `SpiProxy` and `AdcProxy`) are essentially the same types. The only difference for the `SpiProxy` is that should only be initialized with...

Is there anything that would prevent adding support for can bus? If not and this would be a welcome addition I'll plan to start working on it as it would...

Hi there, I'm a visitor from https://github.com/rust-embedded/embedded-hal/issues/35 :) I'm currently trying to use shared-bus in an [RTFM](https://github.com/japaric/cortex-m-rtfm) project and am trying to late-initialise peripherals. I can't quite get it to...

The "fix" for #8 assumes that drivers will only activate their CS right before communicating and deactivate it right afterwards and that there is no way for any other code...

Hello, I stumbled upon the issue of bus sharing among device structs and I was trying to use `shared-bus` to solve it. Although it looks very promising I was stopped...

Many people (including myself) prefer the mutex implementations from the popular `parking_lot` library, due to their different performance and design characteristics. It would be nice if this crate could support...