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 3c758ed commit e306045Copy full SHA for e306045
src/lib.rs
@@ -426,6 +426,12 @@
426
427
/// Assigns a handler to an interrupt
428
///
429
+/// **NOTE** The `interrupt!` macro on Cortex-M device crates is closer in syntax to the
430
+/// [`exception!`] macro. This documentation doesn't apply to it. For the exact syntax of this macro
431
+/// check the documentation of the device crate you are using.
432
+///
433
+/// [`exception!`]: https://docs.rs/cortex-m-rt/0.5.0/cortex_m_rt/macro.exception.html
434
435
/// This macro takes two arguments: the name of an interrupt and the path to the
436
/// function that will be used as the handler of that interrupt. That function
437
/// must have signature `fn()`.
0 commit comments