stm32l0xx-hal
stm32l0xx-hal copied to clipboard
A hardware abstraction layer (HAL) for the STM32L0 series microcontrollers written in Rust
I'm seeing a strange problem with the Full Duplex SPI library I can't figure out. Any help is appreciated! The LSB on my reads usually comes back flipped even though...
In stm32l0xx-hal, we implement traits for pins in any mode and then configure the proper mode for those pins in a `setup` trait method. For example, for serial: ```rust impl...
SPI would benefit from half-duplex comms *(SPI control register 1: BIDIMODE)*. I realize this trait is missing in embedded-hal. I could potentially try to figure this out and bodge a...
Since the Serial Struct does not own the pins, I can't regain the ownership of the pins by calling `release()` I was wondering if there's a workaround of this? My...