strom-und-spiele
strom-und-spiele
Hello @FlippievanDyk , [The Rust Embedded Book](https://rust-embedded.github.io/book/start/registers.html) gives a nice illustration on what PACs and HALs are doing. Ideally, the HAL is abstracting on the PAC to control the hardware...
Thanks for clearing that up. To summarize: the [f3xx-hal is obfuscating the grouping of the pins in a huge macro](https://github.com/stm32-rs/stm32f3xx-hal/blob/master/src/serial.rs#L231). Whereas the [l4xx-hal introduces a new trait and impl it...
Disclaimer: I never set a chip to low-power mode with this crate. However I feel like this is a task rather specific to your needs and use of the chip...
You're right about the implementation beeing general. What I wanted to say is that using it requires you to understand all the implications the different modes have as they change...
hi @talalahsan01, if you post the code you are working with e.g. to your github account, we could have a look into it. if you describe your set up we...
The latest update (v 0.5.0) fixed some timing issues. @talalahsan01 when updating to this version of the hal, does the error still persist?
Gist for direct usage: https://gist.github.com/strom-und-spiele/8155f19258adfd66214d2d0aac956a43
Hey, It helps a lot if you describe your setup in more detail (esp. what chip you are using), what your requirements are in detail and things you have tried...