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

41 lines
985 B
Rust
Raw Normal View History

2021-07-21 22:45:43 +02:00
#![no_std]
#![no_main]
#![feature(type_alias_impl_trait)]
#[path = "../example_common.rs"]
mod example_common;
use core::fmt::Write;
use core::str::from_utf8;
use embassy::executor::Spawner;
use embassy_stm32::spi::{Config, Spi};
use embassy_stm32::time::Hertz;
use embassy_stm32::Peripherals;
use example_common::*;
2021-07-21 22:45:43 +02:00
use heapless::String;
#[embassy::main]
async fn main(_spawner: Spawner, p: Peripherals) {
info!("Hello World!");
2021-07-21 22:45:43 +02:00
let mut spi = Spi::new(
p.SPI1,
p.PB3,
p.PB5,
p.PB4,
2021-07-21 22:45:43 +02:00
p.DMA2_CH3,
p.DMA2_CH2,
Hertz(1_000_000),
Config::default(),
);
for n in 0u32.. {
let mut write: String<128> = String::new();
let mut read = [0; 128];
2021-07-21 22:45:43 +02:00
core::write!(&mut write, "Hello DMA World {}!\r\n", n).unwrap();
spi.transfer(&mut read[0..write.len()], write.as_bytes())
.await
.ok();
2021-07-21 22:45:43 +02:00
info!("read via spi+dma: {}", from_utf8(&read).unwrap());
}
}