Albin Hedman
Albin Hedman
I hope I am wrong, but I think there might be a race condition in the gpio's `into_{x}` methods. https://github.com/stm32-rs/stm32g4xx-hal/blob/f8b6ff82d26d3a235d44cd0aa760cb3afd99ee35/src/gpio.rs#L386 Notice how we perform a read-modify-write sequence without anything preventing...
Add methods for getting/setting the integral term. Add some more tests for integers
Hi! Sorry if this is the wrong place to ask. Related #2309 From skimming through https://blog.drogue.io/firmware-updates-part-1/ there seems to be quite some overlap between what embassy-boot does(or did when the...
### 1. Changing pin state Today a gpio pin can be turned into another mode using for example `let pin = pin.into_push_pull_output();` or `let pin = pin.into_alternate()`. This can also...
An attempt at adding support for the 32bit sram access scheme found in the H5 family
Does this library support the 32bit access scheme of the stm32h5 family? If so should `EP_MEMORY_ACCESS_2X16` be `true`?
Refactor timer to be a bit closer to f4xx-hal, trying to reduce macro usage somewhat. Also adds rtic monotonics from f4xx-hal with very little changes. Fixes #99 **Not tested**
Thought I would try to experiment a bit with adding tests that could run an a Nucleo or similar without any ~~/with very little~~ external connections. From what I can...
Thought I would make an issue to have somewhere to discuss Some prior art * [f4](https://github.com/stm32-rs/stm32f4xx-hal/tree/master/src/dma) * [g0](https://github.com/stm32-rs/stm32g0xx-hal/blob/main/src/dma.rs) * [h7](https://github.com/stm32-rs/stm32h7xx-hal/tree/master/src/dma) Doc * [embedonomicon - DMA](https://docs.rust-embedded.org/embedonomicon/dma.html) cc @AdinAck