From def4fc8079dcb646ef3cab446a4b160e09e169bf Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Mon, 15 Jan 2018 23:26:07 +0100 Subject: v0.3.0 --- src/lib.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 697dca6..4f909ae 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -37,18 +37,18 @@ //! # Dependencies //! //! The application crate must depend on a device crate generated using -//! [`svd2rust`] v0.11.x and the "rt" feature of that crate must be enabled. The +//! [`svd2rust`] v0.12.x and the "rt" feature of that crate must be enabled. The //! SVD file used to generate the device crate *must* contain [``] //! information. //! -//! [`svd2rust`]: https://docs.rs/svd2rust/0..0/svd2rust/ +//! [`svd2rust`]: https://docs.rs/svd2rust/0.12.0/svd2rust/ //! [``]: https://www.keil.com/pack/doc/CMSIS/SVD/html/elem_cpu.html //! //! # `app!` //! //! The `app!` macro is documented [here]. //! -//! [here]: https://docs.rs/cortex-m-rtfm-macros/0.2.0/cortex_m_rtfm_macros/fn.app.html +//! [here]: https://docs.rs/cortex-m-rtfm-macros/0.2.1/cortex_m_rtfm_macros/fn.app.html //! //! # Important: Cortex-M7 devices //! @@ -90,13 +90,13 @@ extern crate untagged_option; use core::{mem, u8}; pub use cortex_m::asm::{bkpt, wfi}; -pub use cortex_m::peripheral::NVIC; pub use cortex_m_rtfm_macros::app; pub use rtfm_core::{Resource, Threshold}; #[doc(hidden)] pub use untagged_option::UntaggedOption; use cortex_m::interrupt::{self, Nr}; +use cortex_m::peripheral::NVIC; #[cfg(not(armv6m))] use cortex_m::register::basepri; -- cgit v1.2.3