diff options
author | 2023-01-07 14:07:50 +0100 | |
---|---|---|
committer | 2023-03-01 00:31:07 +0100 | |
commit | 6dc2d29cd994a27fa59e23f9fb0bece677c83ffa (patch) | |
tree | 5c02e71c8b2c1b9ade8265547b036dc5dafe0752 /src | |
parent | 29228c47239f12794feb91ae5a81d748530c40dc (diff) | |
download | rtic-6dc2d29cd994a27fa59e23f9fb0bece677c83ffa.tar.gz rtic-6dc2d29cd994a27fa59e23f9fb0bece677c83ffa.tar.zst rtic-6dc2d29cd994a27fa59e23f9fb0bece677c83ffa.zip |
export Cell removed, expmples updated
Diffstat (limited to '')
-rw-r--r-- | src/export.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/export.rs b/src/export.rs index 49ebd878..d6b2fc04 100644 --- a/src/export.rs +++ b/src/export.rs @@ -1,8 +1,5 @@ pub use bare_metal::CriticalSection; -use core::{ - cell::Cell, - sync::atomic::{AtomicBool, Ordering}, -}; +use core::sync::atomic::{AtomicBool, Ordering}; pub use cortex_m::{ asm::nop, asm::wfi, |