2021-09-01 23:55:20 +02:00
|
|
|
#![no_std]
|
|
|
|
#![no_main]
|
|
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
|
2022-04-02 04:35:06 +02:00
|
|
|
use defmt::info;
|
2021-09-01 23:55:20 +02:00
|
|
|
use embassy::executor::Spawner;
|
|
|
|
use embassy::time::{Duration, Timer};
|
2021-10-12 02:24:26 +02:00
|
|
|
use embassy_nrf::saadc::{ChannelConfig, Config, Saadc};
|
2021-09-01 23:55:20 +02:00
|
|
|
use embassy_nrf::{interrupt, Peripherals};
|
2022-04-02 04:35:06 +02:00
|
|
|
|
|
|
|
use defmt_rtt as _; // global logger
|
|
|
|
use panic_probe as _;
|
2021-09-01 23:55:20 +02:00
|
|
|
|
|
|
|
#[embassy::main]
|
|
|
|
async fn main(_spawner: Spawner, mut p: Peripherals) {
|
|
|
|
let config = Config::default();
|
2021-10-07 09:00:03 +02:00
|
|
|
let channel_config = ChannelConfig::single_ended(&mut p.P0_02);
|
2021-10-12 02:24:26 +02:00
|
|
|
let mut saadc = Saadc::new(p.SAADC, interrupt::take!(SAADC), config, [channel_config]);
|
2021-09-01 23:55:20 +02:00
|
|
|
|
|
|
|
loop {
|
2021-10-07 09:00:03 +02:00
|
|
|
let mut buf = [0; 1];
|
|
|
|
saadc.sample(&mut buf).await;
|
|
|
|
info!("sample: {=i16}", &buf[0]);
|
2021-09-01 23:55:20 +02:00
|
|
|
Timer::after(Duration::from_millis(100)).await;
|
|
|
|
}
|
|
|
|
}
|