2022-08-04 02:31:59 +02:00
|
|
|
#![no_std]
|
|
|
|
#![no_main]
|
|
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
|
|
|
|
use defmt::*;
|
2022-08-17 23:40:16 +02:00
|
|
|
use embassy_executor::Spawner;
|
2023-06-28 11:58:25 +02:00
|
|
|
use embassy_stm32::dac::{DacCh1, DacChannel, Value};
|
|
|
|
use embassy_stm32::dma::NoDma;
|
2022-08-04 02:31:59 +02:00
|
|
|
use {defmt_rtt as _, panic_probe as _};
|
|
|
|
|
|
|
|
#[embassy_executor::main]
|
2022-08-17 18:49:55 +02:00
|
|
|
async fn main(_spawner: Spawner) -> ! {
|
|
|
|
let p = embassy_stm32::init(Default::default());
|
2022-08-04 02:31:59 +02:00
|
|
|
info!("Hello World, dude!");
|
|
|
|
|
2023-06-28 11:58:25 +02:00
|
|
|
let mut dac = DacCh1::new(p.DAC, NoDma, p.PA4);
|
2023-07-22 13:45:18 +02:00
|
|
|
unwrap!(dac.set_trigger_enable(false));
|
2022-08-04 02:31:59 +02:00
|
|
|
|
|
|
|
loop {
|
|
|
|
for v in 0..=255 {
|
2023-06-28 11:58:25 +02:00
|
|
|
unwrap!(dac.set(Value::Bit8(to_sine_wave(v))));
|
2022-08-04 02:31:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
use micromath::F32Ext;
|
|
|
|
|
|
|
|
fn to_sine_wave(v: u8) -> u8 {
|
|
|
|
if v >= 128 {
|
|
|
|
// top half
|
|
|
|
let r = 3.14 * ((v - 128) as f32 / 128.0);
|
|
|
|
(r.sin() * 128.0 + 127.0) as u8
|
|
|
|
} else {
|
|
|
|
// bottom half
|
|
|
|
let r = 3.14 + 3.14 * (v as f32 / 128.0);
|
|
|
|
(r.sin() * 128.0 + 127.0) as u8
|
|
|
|
}
|
|
|
|
}
|