core atomic

This commit is contained in:
kalkyl 2024-06-04 00:53:51 +02:00
parent 03d8f99aa5
commit 874d5f7c65

View File

@ -1,6 +1,8 @@
#![no_std]
#![no_main]
use core::sync::atomic::{AtomicU16, Ordering};
use defmt::*;
use embassy_executor::Spawner;
use embassy_rp::adc::{self, Adc, Async, Config, InterruptHandler};
@ -10,7 +12,6 @@ use embassy_rp::peripherals::DMA_CH0;
use embassy_sync::blocking_mutex::raw::NoopRawMutex;
use embassy_sync::zerocopy_channel::{Channel, Receiver, Sender};
use embassy_time::{Duration, Ticker, Timer};
use portable_atomic::{AtomicU16, Ordering};
use static_cell::StaticCell;
use {defmt_rtt as _, panic_probe as _};