diff options
Diffstat (limited to 'cortex-m-rt/src/lib.rs')
-rw-r--r-- | cortex-m-rt/src/lib.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cortex-m-rt/src/lib.rs b/cortex-m-rt/src/lib.rs index 5fb5057..4d9bf3f 100644 --- a/cortex-m-rt/src/lib.rs +++ b/cortex-m-rt/src/lib.rs @@ -25,6 +25,10 @@ //! [`#[exception]`]: ../cortex_m_rt_macros/fn.exception.html //! [`#[pre_init]`]: ../cortex_m_rt_macros/fn.pre_init.html //! +//! This crate also implements a related attribute called `#[interrupt]`, which allows you +//! to define interrupt handlers. However, since which interrupts are available depends on the +//! microcontroller in use, this attribute should be re-exported and used from a device crate. +//! //! # Requirements //! //! ## `memory.x` |