You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current stm32-rs nightlies introduce breaking changes (especially to DFSDM).
Before, each register in a cluster was a dedicated field, now it's encapsulated into arrays.
See also this issue on svd2rust: rust-embedded/svd2rust#578
Example error (there are about 67 in the dfsdm file which are all similar):
error[E0609]: no field `flt2` on type `R`
--> src/dfsdm.rs:1392:46
|
201 | impl<R> Dfsdm<R>
| - type parameter 'R' declared here
...
1392 | let cr2 = &self.regs.flt2.cr2;
As a fix those parameters will need to be changed to use array indexing instead.
The text was updated successfully, but these errors were encountered:
Thanks for the heads-up. This will take some work, but ultimately this is a good change; will make that module (and any other it affects) much more concise.
Will make the change after the PACs are updated on crates.io.
As this is a change in the upstream svd2rust crate (so in the generator and not in how the patches are done to the svds in stm32-rs) I'm expecting this to happen across all variants that use clustering for registers (not all do).
Current stm32-rs nightlies introduce breaking changes (especially to DFSDM).
Before, each register in a cluster was a dedicated field, now it's encapsulated into arrays.
See also this issue on svd2rust: rust-embedded/svd2rust#578
This obviously breaks the crate:
Example file:
https://github.com/stm32-rs/stm32-rs-nightlies/blob/master/stm32h7/src/stm32h735/dfsdm.rs
Example error (there are about 67 in the dfsdm file which are all similar):
As a fix those parameters will need to be changed to use array indexing instead.
The text was updated successfully, but these errors were encountered: