aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor/src
diff options
context:
space:
mode:
authorErik BĂ„nvik <[email protected]>2024-03-03 01:27:52 +0100
committerGitHub <[email protected]>2024-03-03 01:27:52 +0100
commitf45116884285bd5609bbd1f771e1bb42edfb8d90 (patch)
tree08edb6bb8aa7be74583a532feeb08f264b2f7372 /embassy-executor/src
parent047b20cee42e4438bcf054c4f94812c4895508e7 (diff)
parent64890498ca6d6193ca0ac30952c24a657b8b88f3 (diff)
Merge branch 'embassy-rs:main' into feat/radio-ieee802154
Diffstat (limited to 'embassy-executor/src')
-rw-r--r--embassy-executor/src/arch/riscv32.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-executor/src/arch/riscv32.rs b/embassy-executor/src/arch/riscv32.rs
index c56f502d3..01e63a9fd 100644
--- a/embassy-executor/src/arch/riscv32.rs
+++ b/embassy-executor/src/arch/riscv32.rs
@@ -6,9 +6,9 @@ pub use thread::*;
6#[cfg(feature = "executor-thread")] 6#[cfg(feature = "executor-thread")]
7mod thread { 7mod thread {
8 use core::marker::PhantomData; 8 use core::marker::PhantomData;
9 use core::sync::atomic::{AtomicBool, Ordering};
9 10
10 pub use embassy_executor_macros::main_riscv as main; 11 pub use embassy_executor_macros::main_riscv as main;
11 use portable_atomic::{AtomicBool, Ordering};
12 12
13 use crate::{raw, Spawner}; 13 use crate::{raw, Spawner};
14 14