-
Notifications
You must be signed in to change notification settings - Fork 107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Local copy of latest stm32-rs required to build #5
Comments
stm32h7
version on the next stm32-rs release
@richardeoin @astraw @hargoniX do you have pending breaking changes for stm32-rs that you would like to land before 0.8 or can we try pushing for that release to get this out of the way? I don't have anything pending for 0.8. |
I don't have done anything related to stm32-rs yet so that's a clear no from me |
Also nothing pending from me. |
@jordens I've got two PRs open stm32-rs/stm32-rs#241 Would be good to land them for 0.8 |
19: timers, bugfix: fix periodic CountDown timer r=richardeoin a=richardeoin Previously the `CountDown` timer failed to start a new countdown if the periodic timer was running and no `wait()` call was made in the previous period. This was as the UIF bit was already set. See embedded-hal docs for the contract: https://docs.rs/embedded-hal/0.2.3/embedded_hal/timer/trait.CountDown.html#tymethod.start Add example to demonstrate correct behaviour. 26: rcc: add options to configure more PLL outputs r=richardeoin a=richardeoin * All 3 outputs of PLL1 can be configured. * Moving closer to a generic interface for PLL2/PLL3; just needs macro definitions and call to setup. * An `assert` will occour if pll1_p_ck is set independently when it is requried for sys_ck. * When `pll1_r_ck` is `None` in the configuration struct, it is set if required to keep `traceclk` running. Afaict there's no documentation on acceptable frequencies for `traceclk`, set p_ck/2 as a sensible choice (can be overridden by setting some `pll1_r_ck`). 27: Init traits prelude r=richardeoin a=richardeoin adc: Add initialisation trait Simplifies usage: ```rust let _ = adc::Adc::adc3(dp.ADC3, &mut delay, &mut ccdr); ``` to ```rust let _ = dp.ADC3.adc(&mut delay, &mut ccdr); ``` Previous method still works. Re-work arguments for timer, doesn't break anything as there aren't any examples yet. Closes #20 28: Porting i2c to the extension trait pattern r=richardeoin a=hargoniX See #27 31: dependencies: use stm32h7 PAC 0.8 r=richardeoin a=jordens * remove and warnings notes on using the local build of stm32h7 * bump cortex-m-rt to 0.6.10 (.ARM.exidx section) * mention that this works with beta close: #5 Co-authored-by: Richard Meadows <[email protected]> Co-authored-by: Henrik Böving <[email protected]> Co-authored-by: Robert Jördens <[email protected]>
27: Init traits prelude r=richardeoin a=richardeoin adc: Add initialisation trait Simplifies usage: ```rust let _ = adc::Adc::adc3(dp.ADC3, &mut delay, &mut ccdr); ``` to ```rust let _ = dp.ADC3.adc(&mut delay, &mut ccdr); ``` Previous method still works. Re-work arguments for timer, doesn't break anything as there aren't any examples yet. Closes #20 28: Porting i2c to the extension trait pattern r=richardeoin a=hargoniX See #27 31: dependencies: use stm32h7 PAC 0.8 r=richardeoin a=jordens * remove and warnings notes on using the local build of stm32h7 * bump cortex-m-rt to 0.6.10 (.ARM.exidx section) * mention that this works with beta close: #5 Co-authored-by: Richard Meadows <[email protected]> Co-authored-by: Henrik Böving <[email protected]> Co-authored-by: Robert Jördens <[email protected]>
None of this will succeed until stm32-rs#5 is resolved. Stable builds will only succeed once stm32-rs#6 is resolved.
This matches the currently targeted dependencies/rust versions. It should be removed once stm32-rs#5 and stm32-rs#6 are resolved.
27: Init traits prelude r=richardeoin a=richardeoin adc: Add initialisation trait Simplifies usage: ```rust let _ = adc::Adc::adc3(dp.ADC3, &mut delay, &mut ccdr); ``` to ```rust let _ = dp.ADC3.adc(&mut delay, &mut ccdr); ``` Previous method still works. Re-work arguments for timer, doesn't break anything as there aren't any examples yet. Closes stm32-rs#20 28: Porting i2c to the extension trait pattern r=richardeoin a=hargoniX See stm32-rs#27 31: dependencies: use stm32h7 PAC 0.8 r=richardeoin a=jordens * remove and warnings notes on using the local build of stm32h7 * bump cortex-m-rt to 0.6.10 (.ARM.exidx section) * mention that this works with beta close: stm32-rs#5 Co-authored-by: Richard Meadows <[email protected]> Co-authored-by: Henrik Böving <[email protected]> Co-authored-by: Robert Jördens <[email protected]>
Waiting on an upstream release.
The text was updated successfully, but these errors were encountered: