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
Currently the crate does not compile due to a SNAFU in the SVD files which are propagated through the generated PAC:
error[E0432]: unresolved imports `stm32::rcc::cfgr::SWW`, `stm32::rcc::cfgr::USBPREW`
--> src/rcc.rs:4:24
|
4 | use stm32::rcc::cfgr::{SWW, USBPREW};
| ^^^ ^^^^^^^ no `USBPREW` in `stm32f103::rcc::cfgr`
| |
| no `SWW` in `stm32f103::rcc::cfgr`. Did you mean to use `_SWW`?
error[E0599]: no method named `usbpre` found for type `&mut stm32f1::stm32f103::rcc::cfgr::W` in the current scope
--> src/rcc.rs:272:18
|
272 | .usbpre()
| ^^^^^^
error: aborting due to 2 previous errors
Some errors occurred: E0432, E0599.
For more information about an error, try `rustc --explain E0432`.
The text was updated successfully, but these errors were encountered:
Currently the crate does not compile due to a SNAFU in the SVD files which are propagated through the generated PAC:
The text was updated successfully, but these errors were encountered: