diff --git a/Cargo.toml b/Cargo.toml index 99951149b4..67564786da 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -53,7 +53,6 @@ required-features = ["__v7"] [dependencies] cortex-m-rtic-macros = { path = "macros", version = "0.5.3" } rtic-core = "0.3.0" -cortex-m-rt = "0.6.9" heapless = "0.6.1" [dependencies.cortex-m] diff --git a/src/lib.rs b/src/lib.rs index f456e30c46..b2c2c712a3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -57,8 +57,6 @@ extern crate cortex_m_7 as cortex_m; use cortex_m::interrupt::InterruptNumber; use cortex_m::peripheral::{CBP, CPUID, DCB, DWT, FPB, FPU, ITM, MPU, NVIC, SCB, TPIU}; -#[cfg(all(not(feature = "heterogeneous"), not(feature = "homogeneous")))] -use cortex_m_rt as _; // vector table pub use cortex_m_rtic_macros::app; pub use rtic_core::{Exclusive, Mutex};