Albin Hedman

Results 161 comments of Albin Hedman

https://github.com/stm32-rs/stm32g4xx-hal/blame/main/src/dma/transfer.rs#L14

Seems it was always this way

CI seems quite angry, however I am not so sure if it is all my fault...

I cherry-picked your commits from #1115 to see if the CI is happy. Let me know if you want me to clean up the history and/or rebase.

Not sure what is wrong but CI seems to be stuck running forever :/

My understanding is that we can not know in the macro if the type used in the arg to a task is Send/Sync or limit the task to only be...

[One hack](https://play.rust-lang.org/?version=stable&mode=debug&edition=2024&gist=efcc222984d07552fe0f48b29dec34c8) that would avoid the attribute would be to produce something like this: ```rust mod task1 { use super::*; pub fn spawn(x: T0, y: T1) where T0: Dummy +...

Sorry for the late answer. I am a bit torn here on what the best way to solve this is. When using a 32bit counter with a large period value,...

Nice! Is the `Debug` impl done by [svd2rust](https://github.com/rust-embedded/svd2rust)? So a bug/feature request to report there?

I had to enable the feature `critical-section` of the pac to gain access to the method `Peripherals::take()` which is used in the examples. Further, an implementation is needed or there...