embassy/examples/stm32g4/src/bin/pll.rs

36 lines
805 B
Rust
Raw Normal View History

2023-06-04 04:10:43 +02:00
#![no_std]
#![no_main]
#![feature(type_alias_impl_trait)]
use defmt::*;
use embassy_executor::Spawner;
use embassy_stm32::rcc::{ClockSrc, Pll, PllM, PllN, PllR, PllSrc};
2023-06-04 04:10:43 +02:00
use embassy_stm32::Config;
use embassy_time::Timer;
2023-06-04 04:10:43 +02:00
use {defmt_rtt as _, panic_probe as _};
#[embassy_executor::main]
async fn main(_spawner: Spawner) {
let mut config = Config::default();
config.rcc.pll = Some(Pll {
2023-10-22 22:39:55 +02:00
source: PllSrc::HSI,
2023-10-09 02:48:22 +02:00
prediv_m: PllM::DIV4,
mul_n: PllN::MUL85,
div_p: None,
div_q: None,
// Main system clock at 170 MHz
2023-10-09 02:48:22 +02:00
div_r: Some(PllR::DIV2),
});
config.rcc.mux = ClockSrc::PLL;
2023-06-04 04:10:43 +02:00
let _p = embassy_stm32::init(config);
info!("Hello World!");
loop {
Timer::after_millis(1000).await;
2023-06-04 04:10:43 +02:00
info!("1s elapsed");
}
}