Remove trivial to remove uses of atomic-polyfill.

This commit is contained in:
Dario Nieuwenhuis
2023-07-12 18:30:43 +02:00
parent ed86fc175f
commit dff9bd9711
12 changed files with 12 additions and 19 deletions

View File

@ -1,8 +1,7 @@
use core::convert::TryInto;
use core::ptr::write_volatile;
use core::sync::atomic::{fence, Ordering};
use core::sync::atomic::{fence, AtomicBool, Ordering};
use atomic_polyfill::AtomicBool;
use embassy_sync::waitqueue::AtomicWaker;
use pac::flash::regs::Sr;
use pac::FLASH_SIZE;