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

30 lines
755 B
Rust
Raw Normal View History

2021-05-16 02:57:46 +02:00
#![no_std]
#![no_main]
#![feature(type_alias_impl_trait)]
use core::fmt::Write;
use defmt::*;
use defmt_rtt as _; // global logger
use embassy::executor::Spawner;
2021-07-15 05:42:06 +02:00
use embassy_stm32::dma::NoDma;
2021-05-16 02:57:46 +02:00
use embassy_stm32::usart::{Config, Uart};
use embassy_stm32::Peripherals;
2021-05-16 02:57:46 +02:00
use heapless::String;
use panic_probe as _;
2021-05-16 02:57:46 +02:00
#[embassy::main]
async fn main(_spawner: Spawner, p: Peripherals) {
info!("Hello World!");
2021-05-16 02:57:46 +02:00
let config = Config::default();
let mut usart = Uart::new(p.USART3, p.PD9, p.PD8, p.DMA1_CH3, NoDma, config);
2021-05-16 02:57:46 +02:00
for n in 0u32.. {
2021-05-16 02:57:46 +02:00
let mut s: String<128> = String::new();
core::write!(&mut s, "Hello DMA World {}!\r\n", n).unwrap();
unwrap!(usart.write(s.as_bytes()).await);
2021-05-16 02:57:46 +02:00
info!("wrote DMA");
}
}