2021-07-21 20:09:24 +02:00
|
|
|
#![no_std]
|
|
|
|
#![no_main]
|
|
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
|
|
|
|
use core::fmt::Write;
|
|
|
|
use core::str::from_utf8;
|
2022-06-12 22:15:44 +02:00
|
|
|
|
2021-08-03 20:31:41 +02:00
|
|
|
use cortex_m_rt::entry;
|
2022-04-02 04:35:06 +02:00
|
|
|
use defmt::*;
|
|
|
|
use embassy::executor::Executor;
|
|
|
|
use embassy::util::Forever;
|
2021-08-03 20:31:41 +02:00
|
|
|
use embassy_stm32::peripherals::{DMA1_CH3, DMA1_CH4, SPI3};
|
2022-04-02 04:35:06 +02:00
|
|
|
use embassy_stm32::time::U32Ext;
|
2022-06-12 22:15:44 +02:00
|
|
|
use embassy_stm32::{spi, Config};
|
2021-08-03 20:31:41 +02:00
|
|
|
use heapless::String;
|
2022-06-12 22:15:44 +02:00
|
|
|
use {defmt_rtt as _, panic_probe as _};
|
2021-07-21 20:09:24 +02:00
|
|
|
|
2022-04-02 04:35:06 +02:00
|
|
|
pub fn config() -> Config {
|
|
|
|
let mut config = Config::default();
|
|
|
|
config.rcc.sys_ck = Some(400.mhz().into());
|
|
|
|
config.rcc.hclk = Some(200.mhz().into());
|
|
|
|
config.rcc.pll1.q_ck = Some(100.mhz().into());
|
|
|
|
config
|
|
|
|
}
|
|
|
|
|
2021-07-21 20:09:24 +02:00
|
|
|
#[embassy::task]
|
2021-08-03 19:57:18 +02:00
|
|
|
async fn main_task(mut spi: spi::Spi<'static, SPI3, DMA1_CH3, DMA1_CH4>) {
|
2021-07-21 20:09:24 +02:00
|
|
|
for n in 0u32.. {
|
|
|
|
let mut write: String<128> = String::new();
|
2021-08-03 20:31:41 +02:00
|
|
|
let mut read = [0; 128];
|
2021-07-21 20:09:24 +02:00
|
|
|
core::write!(&mut write, "Hello DMA World {}!\r\n", n).unwrap();
|
2022-01-26 22:39:06 +01:00
|
|
|
// transfer will slice the &mut read down to &write's actual length.
|
|
|
|
spi.transfer(&mut read, write.as_bytes()).await.ok();
|
2021-07-21 20:09:24 +02:00
|
|
|
info!("read via spi+dma: {}", from_utf8(&read).unwrap());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static EXECUTOR: Forever<Executor> = Forever::new();
|
|
|
|
|
|
|
|
#[entry]
|
|
|
|
fn main() -> ! {
|
|
|
|
info!("Hello World!");
|
|
|
|
|
2021-08-04 17:35:18 +02:00
|
|
|
let p = embassy_stm32::init(config());
|
2021-07-21 20:09:24 +02:00
|
|
|
|
2021-08-03 19:57:18 +02:00
|
|
|
let spi = spi::Spi::new(
|
|
|
|
p.SPI3,
|
|
|
|
p.PB3,
|
|
|
|
p.PB5,
|
|
|
|
p.PB4,
|
|
|
|
p.DMA1_CH3,
|
|
|
|
p.DMA1_CH4,
|
|
|
|
1.mhz(),
|
|
|
|
spi::Config::default(),
|
|
|
|
);
|
2021-07-21 20:09:24 +02:00
|
|
|
|
|
|
|
let executor = EXECUTOR.put(Executor::new());
|
|
|
|
|
|
|
|
executor.run(|spawner| {
|
2021-08-03 19:57:18 +02:00
|
|
|
unwrap!(spawner.spawn(main_task(spi)));
|
2021-07-21 20:09:24 +02:00
|
|
|
})
|
|
|
|
}
|