diff options
-rw-r--r-- | src/peripheral/nvic.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/peripheral/nvic.rs b/src/peripheral/nvic.rs index ceda1a1..a81fa6d 100644 --- a/src/peripheral/nvic.rs +++ b/src/peripheral/nvic.rs @@ -84,6 +84,8 @@ impl NVIC { /// Writing a value to the INTID field is the same as manually pending an interrupt by setting /// the corresponding interrupt bit in an Interrupt Set Pending Register. This is similar to /// `set_pending`. + /// + /// This method is not available on ARMv6-M chips. pub fn request<I>(&mut self, interrupt: I) where I: Nr, |