We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85cee2a commit 0d40861Copy full SHA for 0d40861
1 file changed
cortex-m/src/peripheral/nvic.rs
@@ -31,6 +31,7 @@ pub struct RegisterBlock {
31
32
/// Interrupt Active Bit (not present on Cortex-M0 variants)
33
#[cfg(not(armv6m))]
34
+ #[mmio(PureRead)]
35
iabr: [u32; 16],
36
#[cfg(armv6m)]
37
_reserved4: [u32; 16],
@@ -74,6 +75,7 @@ pub struct RegisterBlock {
74
75
76
/// Software Trigger Interrupt
77
78
+ #[mmio(Write)]
79
stir: u32,
80
}
81
0 commit comments