You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm attempting to get the rust-radio-sx128x crate working with the nrf-hal. That hal hasn't yet implemented the v1.0.0-alpha.Nembedded-hal traits.
So far compat() has solved all the trait errors except for blocking::spi::transactional. I'm unsure of how to add that trait to this crate.
Is it possible to add the transactional trait to this repo? Or do I need to fork nrf-hal and implement it there like you suggest here? rust-iot/rust-radio-sx127x#18 (comment)
Cheers!
The text was updated successfully, but these errors were encountered:
Ahh, I didn't put it in because embedded_hal::blocking::spi::Transactional doesn't exist until v1.0.0-alpha.X...
In the past I had a polyfill for this, technically it opens a whole CS related can of worms but, might as well add have it here anyway (perhaps with a warning and link to rust-embedded/embedded-hal#180)?
I'm attempting to get the
rust-radio-sx128x
crate working with thenrf-hal
. That hal hasn't yet implemented thev1.0.0-alpha.N
embedded-hal
traits.So far
compat()
has solved all the trait errors except forblocking::spi::transactional
. I'm unsure of how to add that trait to this crate.Is it possible to add the
transactional
trait to this repo? Or do I need to forknrf-hal
and implement it there like you suggest here? rust-iot/rust-radio-sx127x#18 (comment)Cheers!
The text was updated successfully, but these errors were encountered: