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 immediately be the fact that SpiProxy does not emplement the embedded_hal::spi::FullDuplex trait, which I need to use [embedded_sdmmc](https://docs.rs/embedded-sdmmc/0.3.0/embedded_sdmmc/struct.SdMmcSpi.html).
I was wondering if there is a particular reason for this missing implementation, if it's scheduled for a later date (I couldn't find it in the roadmap) or if it was simply missed (the FullDuplex trait is in a different module from embedded_hal::blocking::spi::{Write, Transfer}, which are actually implemented).
Hello,
I stumbled upon the issue of bus sharing among device structs and I was trying to use
shared-busto solve it.Although it looks very promising I was stopped immediately be the fact that
SpiProxydoes not emplement theembedded_hal::spi::FullDuplextrait, which I need to use[embedded_sdmmc](https://docs.rs/embedded-sdmmc/0.3.0/embedded_sdmmc/struct.SdMmcSpi.html).I was wondering if there is a particular reason for this missing implementation, if it's scheduled for a later date (I couldn't find it in the roadmap) or if it was simply missed (the
FullDuplextrait is in a different module fromembedded_hal::blocking::spi::{Write, Transfer}, which are actually implemented).