stm32l0xx-hal
stm32l0xx-hal copied to clipboard
A hardware abstraction layer (HAL) for the STM32L0 series microcontrollers written in Rust
Just wondering if there's interest in providing methods to control the `RTC_CALR` register in the RTC register block. If so any suggestions as to what that api should look like?...
I have a STM32L071CBTx which is connected to another board wia Uart. I want to put my mcu in sleep mode when the other board power is off. but tx...
the only way to disable voltage regulater before going to sleep is to manually edit register yourself, which also needs access to internal rb by calling release on ADC, which...
It seems the if you call 'rcc.freeze(rcc::Config::msi(MSIRange::Range5));' and then enable Adc it will just freeze, because there is no clock to it (default is HSI16) and no way to change...
Hello everyone! In [`src/adc.rs`](https://github.com/stm32-rs/stm32l0xx-hal/blob/master/src/adc.rs#L693) analog input pins are enabled based on feature macros like the following: ``` #[cfg(all( feature = "stm32l072", any( feature = "lqfp64", feature = "lqfp100", feature =...
The `Timer::start()` [implementation](https://github.com/stm32-rs/stm32l0xx-hal/blob/master/src/timer.rs#L177-L205) breaks if the `ticks` value calculated inside the start function is an exact multiple of `(1
I implemented L0x0 subfamily and got the examples compile (and verified that the blink example is working!) https://github.com/stm32-rs/stm32l0xx-hal/issues/141 Please someone have a look at the unsafe brackets I had to...
Hi! Support for the STM32L0x0 subfamily seems to be missing, according to both the README and `docs.rs`. Presumably, this is because they are also missing from the Peripheral Access Crate,...
I use the STM32L0XX serie of chip as I2C->SPI/UART/IO bridge. And for this, I need the chip to be in STOP mode and wake up on I2C address match. I...
DMA serial support only exists for stm32l0x2 and stm32l0x3. But as far as I can tell, it should be possible to support stm32l0x1 also. Please advice if there are any...