Skip to content

Commit bbf4a54

Browse files
Merge #260
260: Remove outdated TODO r=therealprof a=jonas-schievink STIR has been wrapped in the NVIC (it isn't standalone) Co-authored-by: Jonas Schievink <[email protected]>
2 parents 13e04bd + 0138f27 commit bbf4a54

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/peripheral/mod.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,6 @@
5555
//!
5656
//! - ARMv7-M Architecture Reference Manual (Issue E.b) - Chapter B3
5757
58-
// TODO stand-alone register: STIR
59-
6058
use core::marker::PhantomData;
6159
use core::ops;
6260

src/peripheral/nvic.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,11 @@ impl NVIC {
7979
///
8080
/// Writing a value to the INTID field is the same as manually pending an interrupt by setting
8181
/// the corresponding interrupt bit in an Interrupt Set Pending Register. This is similar to
82-
/// `set_pending`.
82+
/// [`NVIC::pend`].
8383
///
8484
/// This method is not available on ARMv6-M chips.
85+
///
86+
/// [`NVIC::pend`]: #method.pend
8587
#[cfg(not(armv6m))]
8688
#[inline]
8789
pub fn request<I>(&mut self, interrupt: I)

0 commit comments

Comments
 (0)