We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
src/peripheral/scb.rs:835 has
const SCB_AIRCR_PRIGROUP_MASK: u32 = 0x5 << 8;
This field is three bits. The mask should be 0x7 or 0b111.
The text was updated successfully, but these errors were encountered:
bb49576
Successfully merging a pull request may close this issue.
src/peripheral/scb.rs:835 has
This field is three bits. The mask should be 0x7 or 0b111.
The text was updated successfully, but these errors were encountered: