From 2b2208e217a96086696bd6f36cff2a6cd4c4ac9f Mon Sep 17 00:00:00 2001 From: onsdagens Date: Wed, 27 Sep 2023 21:39:35 +0200 Subject: esp32c3 support --- rtic-common/src/wait_queue.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rtic-common/src/wait_queue.rs') diff --git a/rtic-common/src/wait_queue.rs b/rtic-common/src/wait_queue.rs index 4b1b0f3..ef3afe8 100644 --- a/rtic-common/src/wait_queue.rs +++ b/rtic-common/src/wait_queue.rs @@ -3,9 +3,9 @@ use core::marker::PhantomPinned; use core::pin::Pin; use core::ptr::null_mut; -use core::sync::atomic::{AtomicBool, AtomicPtr, Ordering}; use core::task::Waker; use critical_section as cs; +use portable_atomic::{AtomicBool, AtomicPtr, Ordering}; /// A helper definition of a wait queue. pub type WaitQueue = DoublyLinkedList; -- cgit v1.2.3