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 13e04bd commit 0138f27Copy full SHA for 0138f27
src/peripheral/mod.rs
@@ -55,8 +55,6 @@
55
//!
56
//! - ARMv7-M Architecture Reference Manual (Issue E.b) - Chapter B3
57
58
-// TODO stand-alone register: STIR
59
-
60
use core::marker::PhantomData;
61
use core::ops;
62
src/peripheral/nvic.rs
@@ -79,9 +79,11 @@ impl NVIC {
79
///
80
/// Writing a value to the INTID field is the same as manually pending an interrupt by setting
81
/// the corresponding interrupt bit in an Interrupt Set Pending Register. This is similar to
82
- /// `set_pending`.
+ /// [`NVIC::pend`].
83
84
/// This method is not available on ARMv6-M chips.
85
+ ///
86
+ /// [`NVIC::pend`]: #method.pend
87
#[cfg(not(armv6m))]
88
#[inline]
89
pub fn request<I>(&mut self, interrupt: I)
0 commit comments