Skip to content

Commit

Permalink
Merge #339
Browse files Browse the repository at this point in the history
339: Fix AIRCR PRIGROUP mask r=thejpster a=msamsonoff

Closes #338 

Co-authored-by: Matthew W. Samsonoff <matt.samsonoff@gmail.com>
  • Loading branch information
bors[bot] and msamsonoff committed Sep 5, 2021
2 parents 5e01de8 + cf75bbc commit bb49576
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/peripheral/scb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,7 @@ impl SCB {
}

const SCB_AIRCR_VECTKEY: u32 = 0x05FA << 16;
const SCB_AIRCR_PRIGROUP_MASK: u32 = 0x5 << 8;
const SCB_AIRCR_PRIGROUP_MASK: u32 = 0x7 << 8;
const SCB_AIRCR_SYSRESETREQ: u32 = 1 << 2;

impl SCB {
Expand Down

0 comments on commit bb49576

Please sign in to comment.