2021-06-08 21:09:17 +02:00
|
|
|
#![no_std]
|
|
|
|
#![no_main]
|
2021-07-03 14:05:12 +02:00
|
|
|
#![allow(incomplete_features)]
|
2021-06-08 21:09:17 +02:00
|
|
|
#![feature(trait_alias)]
|
|
|
|
#![feature(min_type_alias_impl_trait)]
|
|
|
|
#![feature(impl_trait_in_bindings)]
|
|
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
|
|
|
|
#[path = "../example_common.rs"]
|
|
|
|
mod example_common;
|
|
|
|
|
2021-07-03 14:05:12 +02:00
|
|
|
use embassy_stm32::gpio::NoPin;
|
2021-06-08 21:09:17 +02:00
|
|
|
use example_common::*;
|
|
|
|
|
|
|
|
use cortex_m_rt::entry;
|
2021-07-23 14:24:38 +02:00
|
|
|
use embassy_stm32::dac::{Channel, Dac, Value};
|
2021-08-03 20:31:41 +02:00
|
|
|
use embassy_stm32::rcc;
|
2021-08-03 19:57:18 +02:00
|
|
|
use embassy_stm32::time::U32Ext;
|
2021-08-03 20:31:41 +02:00
|
|
|
use embassy_stm32::Config;
|
2021-06-08 21:09:17 +02:00
|
|
|
|
|
|
|
#[entry]
|
|
|
|
fn main() -> ! {
|
|
|
|
info!("Hello World, dude!");
|
|
|
|
|
2021-08-04 17:32:39 +02:00
|
|
|
let p = embassy_stm32::init( config() );
|
2021-06-08 21:09:17 +02:00
|
|
|
|
2021-08-03 19:57:18 +02:00
|
|
|
unsafe {
|
|
|
|
Dbgmcu::enable_all();
|
|
|
|
}
|
2021-06-08 21:09:17 +02:00
|
|
|
|
|
|
|
let mut dac = Dac::new(p.DAC1, p.PA4, NoPin);
|
|
|
|
|
|
|
|
loop {
|
|
|
|
for v in 0..=255 {
|
2021-07-03 14:05:12 +02:00
|
|
|
unwrap!(dac.set(Channel::Ch1, Value::Bit8(to_sine_wave(v))));
|
|
|
|
unwrap!(dac.trigger(Channel::Ch1));
|
2021-06-08 21:09:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-03 19:57:18 +02:00
|
|
|
use embassy_stm32::dbgmcu::Dbgmcu;
|
2021-08-03 20:31:41 +02:00
|
|
|
use micromath::F32Ext;
|
2021-06-08 21:09:17 +02:00
|
|
|
|
|
|
|
fn to_sine_wave(v: u8) -> u8 {
|
|
|
|
if v >= 128 {
|
|
|
|
// top half
|
2021-07-23 14:24:38 +02:00
|
|
|
let r = 3.14 * ((v - 128) as f32 / 128.0);
|
2021-06-08 21:09:17 +02:00
|
|
|
(r.sin() * 128.0 + 127.0) as u8
|
|
|
|
} else {
|
|
|
|
// bottom half
|
2021-07-23 14:24:38 +02:00
|
|
|
let r = 3.14 + 3.14 * (v as f32 / 128.0);
|
2021-06-08 21:09:17 +02:00
|
|
|
(r.sin() * 128.0 + 127.0) as u8
|
|
|
|
}
|
|
|
|
}
|
2021-08-04 17:32:39 +02:00
|
|
|
|
|
|
|
fn config() -> Config {
|
|
|
|
let mut config = Config::default();
|
|
|
|
config.rcc = rcc_config();
|
|
|
|
config
|
|
|
|
}
|
|
|
|
|
|
|
|
fn rcc_config() -> rcc::Config {
|
|
|
|
let mut config = rcc::Config::default();
|
|
|
|
config.sys_ck = Some(400.mhz().into());
|
|
|
|
config.pll1.q_ck = Some( 100.mhz().into() );
|
|
|
|
config
|
|
|
|
}
|