embassy/examples/stm32f4/src/bin/pwm.rs

36 lines
1.0 KiB
Rust
Raw Normal View History

2022-06-23 01:27:39 +02:00
#![no_std]
#![no_main]
#![feature(type_alias_impl_trait)]
use defmt::*;
use embassy::executor::Spawner;
use embassy::time::{Duration, Timer};
use embassy_stm32::pwm::simple_pwm::SimplePwm;
use embassy_stm32::pwm::Channel;
use embassy_stm32::time::khz;
2022-06-23 01:30:55 +02:00
use embassy_stm32::Peripherals;
2022-06-23 01:27:39 +02:00
use {defmt_rtt as _, panic_probe as _};
2022-06-23 01:30:55 +02:00
#[embassy::main]
2022-06-23 01:27:39 +02:00
async fn main(_spawner: Spawner, p: Peripherals) {
info!("Hello World!");
let mut pwm = SimplePwm::new_1ch(p.TIM1, p.PE9, khz(10));
2022-06-23 01:27:39 +02:00
let max = pwm.get_max_duty();
pwm.enable(Channel::Ch1);
info!("PWM initialized");
info!("PWM max duty {}", max);
loop {
pwm.set_duty(Channel::Ch1, 0);
Timer::after(Duration::from_millis(300)).await;
pwm.set_duty(Channel::Ch1, max / 4);
Timer::after(Duration::from_millis(300)).await;
pwm.set_duty(Channel::Ch1, max / 2);
Timer::after(Duration::from_millis(300)).await;
pwm.set_duty(Channel::Ch1, max - 1);
Timer::after(Duration::from_millis(300)).await;
}
}