-
Notifications
You must be signed in to change notification settings - Fork 244
L4 and WB fixes #580
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
L4 and WB fixes #580
Conversation
Of note, re the |
All issues I posted about are fixed. Thanks @adamgreig! |
Added L412 Updated USB_FS interrupt change logic on L4x2 and L412 Fixed last 3 RTC regs on L412 not adding due to bkpr regs not being deleted Fixed WB IPCC and HSEM reg naming
…r/stm32-rs into l4_wb_fixes_attempt
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@David-OConnor thanks for this PR! I've made a few tweaks in the recent commits, mainly:
- some bits were wrong in the TIM16/TIM17 fixes for WB55
- you can use
_split
to break a wide field into lots of individual bits, without having to write them all out - (so I applied it to the other similar fields in WB55 EXTI too)
- I refactored the L4x2 and L412 common patches into a separate file so they can't drift apart
bors merge
Fixes #555, #563, #565, #567, #570, #572, and #575.
See #578; "unrecoverable" git errors.
Not currently working:
Removed the L4x2
USB_FS
rename toUSB
: the RM calls itUSB_FS
. Previous justification, from a code comment:The peripheral is called
USB
; the interrupt is calledUSB_FS
.