2021-07-08 18:55:27 +00:00
|
|
|
#![no_std]
|
|
|
|
#![no_main]
|
|
|
|
#![feature(trait_alias)]
|
|
|
|
#![feature(min_type_alias_impl_trait)]
|
|
|
|
#![feature(impl_trait_in_bindings)]
|
|
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
#![allow(incomplete_features)]
|
|
|
|
|
|
|
|
#[path = "../example_common.rs"]
|
|
|
|
mod example_common;
|
|
|
|
use core::fmt::Write;
|
2021-07-24 11:57:11 +00:00
|
|
|
use defmt::panic;
|
|
|
|
use embassy::executor::Spawner;
|
2021-07-15 03:42:06 +00:00
|
|
|
use embassy_stm32::dma::NoDma;
|
2021-07-08 18:55:27 +00:00
|
|
|
use embassy_stm32::usart::{Config, Uart};
|
2021-07-24 11:57:11 +00:00
|
|
|
use embassy_stm32::{pac, Peripherals};
|
2021-07-14 22:30:31 +00:00
|
|
|
use embassy_traits::uart::Write as _;
|
2021-07-08 18:55:27 +00:00
|
|
|
use example_common::*;
|
|
|
|
use heapless::String;
|
|
|
|
|
2021-07-24 11:57:11 +00:00
|
|
|
#[embassy::main]
|
|
|
|
async fn main(_spawner: Spawner, p: Peripherals) {
|
2021-07-08 18:55:27 +00:00
|
|
|
info!("Hello World!");
|
|
|
|
|
2021-07-14 22:30:31 +00:00
|
|
|
unsafe {
|
|
|
|
pac::DBGMCU.cr().modify(|w| {
|
|
|
|
w.set_dbg_sleep(true);
|
|
|
|
w.set_dbg_standby(true);
|
|
|
|
w.set_dbg_stop(true);
|
|
|
|
});
|
|
|
|
}
|
2021-07-08 18:55:27 +00:00
|
|
|
|
2021-07-24 11:57:11 +00:00
|
|
|
let config = Config::default();
|
|
|
|
let mut usart = Uart::new(p.UART4, p.PA1, p.PA0, p.DMA1_CH3, NoDma, config);
|
|
|
|
|
|
|
|
for n in 0u32.. {
|
|
|
|
let mut s: String<128> = String::new();
|
|
|
|
core::write!(&mut s, "Hello DMA World {}!\r\n", n).unwrap();
|
2021-07-08 18:55:27 +00:00
|
|
|
|
2021-07-24 11:57:11 +00:00
|
|
|
info!("Writing...");
|
|
|
|
usart.write(s.as_bytes()).await.ok();
|
2021-07-08 18:55:27 +00:00
|
|
|
|
2021-07-24 11:57:11 +00:00
|
|
|
info!("wrote DMA");
|
|
|
|
}
|
2021-07-08 18:55:27 +00:00
|
|
|
}
|