We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b889e49 commit d742708Copy full SHA for d742708
src/peripheral/scb.rs
@@ -305,8 +305,8 @@ impl VectActive {
305
306
#[cfg(not(armv6m))]
307
mod scb_consts {
308
- pub const SCB_CCR_IC_MASK: u32 = (1 << 17);
309
- pub const SCB_CCR_DC_MASK: u32 = (1 << 16);
+ pub const SCB_CCR_IC_MASK: u32 = 1 << 17;
+ pub const SCB_CCR_DC_MASK: u32 = 1 << 16;
310
}
311
312
0 commit comments