mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-25 08:12:30 +00:00
core atomic
This commit is contained in:
parent
03d8f99aa5
commit
874d5f7c65
@ -1,6 +1,8 @@
|
|||||||
#![no_std]
|
#![no_std]
|
||||||
#![no_main]
|
#![no_main]
|
||||||
|
|
||||||
|
use core::sync::atomic::{AtomicU16, Ordering};
|
||||||
|
|
||||||
use defmt::*;
|
use defmt::*;
|
||||||
use embassy_executor::Spawner;
|
use embassy_executor::Spawner;
|
||||||
use embassy_rp::adc::{self, Adc, Async, Config, InterruptHandler};
|
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::blocking_mutex::raw::NoopRawMutex;
|
||||||
use embassy_sync::zerocopy_channel::{Channel, Receiver, Sender};
|
use embassy_sync::zerocopy_channel::{Channel, Receiver, Sender};
|
||||||
use embassy_time::{Duration, Ticker, Timer};
|
use embassy_time::{Duration, Ticker, Timer};
|
||||||
use portable_atomic::{AtomicU16, Ordering};
|
|
||||||
use static_cell::StaticCell;
|
use static_cell::StaticCell;
|
||||||
use {defmt_rtt as _, panic_probe as _};
|
use {defmt_rtt as _, panic_probe as _};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user