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 8bb2a61 commit 05ddb44Copy full SHA for 05ddb44
src/peripheral/nvic.rs
@@ -33,9 +33,16 @@ pub struct RegisterBlock {
33
/// Interrupt Active Bit (not present on Cortex-M0 variants)
34
#[cfg(not(armv6m))]
35
pub iabr: [RO<u32>; 16],
36
- #[cfg(armv6m)]
+ #[cfg(any(armv6m, armv8m))]
37
_reserved4: [u32; 16],
38
39
+ #[cfg(armv8m)]
40
+ /// Interrupt Target Non-secure (only present on Arm v8-M)
41
+ pub itns: [RW<u32>; 16],
42
43
+ _reserved5: [u32; 32],
44
+
45
+ #[cfg(not(armv8m))]
46
_reserved5: [u32; 48],
47
48
/// Interrupt Priority
0 commit comments