Merge pull request #531 from Dirbaio/remove-cmrt-dep

v0.5: Remove cortex-m-rt dependency.
This commit is contained in:
Emil Fresk 2021-09-27 10:14:04 +02:00 committed by GitHub
commit 074c0ef1d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 3 deletions

View file

@ -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]

View file

@ -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};