diff options
author | 2021-01-26 23:00:57 +0000 | |
---|---|---|
committer | 2021-01-26 23:00:57 +0000 | |
commit | 80ce8ce1dc34db8acb65248b11efe0414f545df1 (patch) | |
tree | abeae4e2211b67d30d2db0c119ab5a093b929fcc /src | |
parent | 2dae1e411c40c3f545806c77a7164a74a42727a1 (diff) | |
download | cortex-m-80ce8ce1dc34db8acb65248b11efe0414f545df1.tar.gz cortex-m-80ce8ce1dc34db8acb65248b11efe0414f545df1.tar.zst cortex-m-80ce8ce1dc34db8acb65248b11efe0414f545df1.zip |
Fix missing peripheral::itm export, prepare v0.6.7
Diffstat (limited to 'src')
-rw-r--r-- | src/peripheral/mod.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/peripheral/mod.rs b/src/peripheral/mod.rs index 152eb49..297b32f 100644 --- a/src/peripheral/mod.rs +++ b/src/peripheral/mod.rs @@ -84,6 +84,9 @@ pub mod mpu; pub mod nvic; pub mod scb; +#[cfg(all(not(armv6m), not(armv8m_base)))] +pub use cortex_m_0_7::peripheral::itm; + pub use cortex_m_0_7::peripheral::{cpuid, dcb, dwt, syst}; #[cfg(not(armv6m))] pub use cortex_m_0_7::peripheral::{fpb, tpiu}; |