David O'Connor
David O'Connor
Here's what I've come up with, using an example from the `timers` module. Others should be similar. This is more general and current than `aux`: Cargo.toml: ```toml [dependencies] cortex-m =...
After getting more experience with rust on embedded, and the `embedded-hal` ecosystem, I think a better approach would be to ditch the `aux` modules entirely, and use `hal` traits/modules directly,...
I don't suspect this is the most elegant approach, but I've added event listeners to (non-checkbox) `input`, `select`, and `textarea` elements that don't have `input` listeners, where if there's an...
Closing in favor of https://github.com/stm32-rs/stm32f3xx-hal/pull/159
I just noticed that the [L0 hal implementation](https://github.com/stm32-rs/stm32l0xx-hal/blob/master/src/rcc.rs) is very similar to the `clocks` module in my fork. Its base struct holds prescaler values. Its primary API is to use...
Thank you. After digging more in the Datasheet, as you allude to. (I think I'm using a very similar chip), I've come up with this WIP code. Not quite right,...
Thank you very much - that's exactly what I need to get started (And hopefully get an example of all this into this repo eventually) - both in strategy, and...
Of note, H7 is another example of clustering.
Thoughts on returning as part of the result, a percent (or portion) off from requested? edit: This is subjective, but I'm not sure this abstraction goes to the core of...
I'll add your wheel factorization approach to my forks here and on L4 after testing. The sqrt approach I have is easy to understand, doesn't overflow, and is often good...