pdgilbert
pdgilbert
(I'm just a newbie trying to learn about Rust and embedded programming.) Having worked some examples I have thought a few times that some sort of hardware unit testing would...
There is also more detail at these two pull requests that have been merged. - https://github.com/stm32-rs/stm32f4xx-hal/pull/286 - https://github.com/stm32-rs/stm32f7xx-hal/pull/115
FWIW, I am a newbie struggling with some of the same issues and started keeping a scoreboard of my success working out examples. (https://pdgilbert.github.io/eg_stm_hal/) There are some that are a...
I don't understand the technical aspects of this, so can't comment on whether it is safe. FWIW, from a user's pont of view it would be nice if it were...
(I apologize if I am asking things that should be obvious. I'm new to many aspects of Rust and embedded programming.) I'm curious to understand what can reasonably be expected...
I look forward to the destructing proposed by rust-lang/rfcs#2909 , but with practice I am becoming less bothered by needing to keep the structure intact while looping. Thank you for...
@David-OConnor I'm a newbie so may be doing something simple wrong, but when I try your code in a loop I get 25.332558 C and no sensitivity to an increase...
It seems the `stm32f7` crate has modules `stm32f7::stm32f7x3` and `stm32f7::stm32f7x9` and the first has `adc_common` and `adc2` while the second has `adc_common` and `adc1`. It looks like` stm32f7xx_hal` has `pac::adc2`...
(Sorry, I wrote this weeks ago, but forgot to click and it got lost on a browser tab.) Thank you for the extended explanation! As you may have guessed, I...
I've looked at this more now but will not claim that I really understand it. The `stm32f7x2.svd` file has support for `adc` so I do not think that is the...