Mathias Koch

Results 166 comments of Mathias Koch

I for one would love to see this be an option!

Regarding this, would it be an option to use `core::time::Duration` as Time for timers? I think that would make MUCH more sense than using Hertz for a countdown timer? Of...

Ohh You are totally right! I was waaay to fast on an early monday morning! Totally forgot we are only talking about stack. Please disregard this issue! Feel free to...

In my case i am using both ram regions, but only for static queues and buffers: ```rust #[init(None)] #[link_section = ".ram2"] res_queue: Option, #[init(None)] #[link_section = ".ram2"] urc_queue: Option, #[init(None)]...

> Seems like for `stm32l4x5` the `ascr` register will only be available in `stm32-rs` v0.15.0 Maybe this PR can be delayed until that is released. I did the PR that...

stm32-rs v0.15.0 released: https://github.com/stm32-rs/stm32-rs/releases/tag/v0.15.0 :tada:

How does this PR differ from https://github.com/stm32-rs/stm32l4xx-hal/pull/309?

I think the problem is that it is missing a new release of stm32-rs?

It is using `defmt-rtt`

> After reset the bootloader runs first and then it loads the "app". You are flashing the app with probe-run and the app is using defmt-rtt. If that's the case...