executor: remove atomic-polyfill.

This commit is contained in:
Dario Nieuwenhuis
2023-11-14 22:32:48 +01:00
parent 50a983fd9b
commit bef9b7a853
10 changed files with 280 additions and 67 deletions

View File

@ -7,9 +7,9 @@ pub use thread::*;
mod thread {
use core::marker::PhantomData;
use atomic_polyfill::{AtomicBool, Ordering};
#[cfg(feature = "nightly")]
pub use embassy_macros::main_riscv as main;
use portable_atomic::{AtomicBool, Ordering};
use crate::{raw, Spawner};