From 0138f274cfeaaf2572224fa8a5278f6e793ba0a8 Mon Sep 17 00:00:00 2001 From: Jonas Schievink Date: Thu, 27 Aug 2020 21:05:28 +0200 Subject: [PATCH] Remove outdated TODO --- src/peripheral/mod.rs | 2 -- src/peripheral/nvic.rs | 4 +++- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/peripheral/mod.rs b/src/peripheral/mod.rs index cae11338..961f31d0 100644 --- a/src/peripheral/mod.rs +++ b/src/peripheral/mod.rs @@ -55,8 +55,6 @@ //! //! - ARMv7-M Architecture Reference Manual (Issue E.b) - Chapter B3 -// TODO stand-alone register: STIR - use core::marker::PhantomData; use core::ops; diff --git a/src/peripheral/nvic.rs b/src/peripheral/nvic.rs index a2f85f49..4332707a 100644 --- a/src/peripheral/nvic.rs +++ b/src/peripheral/nvic.rs @@ -79,9 +79,11 @@ 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`. + /// [`NVIC::pend`]. /// /// This method is not available on ARMv6-M chips. + /// + /// [`NVIC::pend`]: #method.pend #[cfg(not(armv6m))] #[inline] pub fn request(&mut self, interrupt: I)