embassy/examples/stm32f334/src/bin/adc.rs

52 lines
1.4 KiB
Rust
Raw Normal View History

2023-09-05 23:46:57 +02:00
#![no_std]
#![no_main]
#![feature(type_alias_impl_trait)]
use defmt::info;
use embassy_executor::Spawner;
use embassy_stm32::adc::{Adc, SampleTime, VREF_INT};
use embassy_stm32::rcc::AdcClockSource;
use embassy_stm32::time::mhz;
2023-09-05 23:46:57 +02:00
use embassy_stm32::Config;
use embassy_time::{Delay, Duration, Timer};
use {defmt_rtt as _, panic_probe as _};
#[embassy_executor::main]
async fn main(_spawner: Spawner) -> ! {
let mut config = Config::default();
config.rcc.sysclk = Some(mhz(64));
config.rcc.hclk = Some(mhz(64));
config.rcc.pclk1 = Some(mhz(32));
config.rcc.pclk2 = Some(mhz(64));
config.rcc.adc = Some(AdcClockSource::PllDiv1);
2023-09-05 23:46:57 +02:00
let mut p = embassy_stm32::init(config);
2023-09-10 05:01:51 +02:00
info!("create adc...");
2023-09-05 23:46:57 +02:00
let mut adc = Adc::new(p.ADC1, &mut Delay);
adc.set_sample_time(SampleTime::Cycles601_5);
2023-09-10 05:01:51 +02:00
info!("enable vrefint...");
2023-09-05 23:46:57 +02:00
2023-09-10 05:01:51 +02:00
let mut vrefint = adc.enable_vref(&mut Delay);
let mut temperature = adc.enable_temperature();
2023-09-05 23:46:57 +02:00
loop {
2023-09-10 05:01:51 +02:00
let vref = adc.read(&mut vrefint);
info!("read vref: {}", vref);
let temp = adc.read(&mut temperature);
info!("read temperature: {}", temp);
let pin = adc.read(&mut p.PA0);
info!("read pin: {}", pin);
let pin_mv = pin as u32 * VREF_INT as u32 / vref as u32;
info!("computed pin mv: {}", pin_mv);
2023-09-05 23:46:57 +02:00
Timer::after(Duration::from_secs(1)).await;
}
}