2021-12-07 05:14:27 +01:00
|
|
|
#![no_std]
|
|
|
|
#![no_main]
|
|
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
|
|
|
|
#[path = "../example_common.rs"]
|
|
|
|
mod example_common;
|
|
|
|
use defmt::assert_eq;
|
|
|
|
use embassy::executor::Spawner;
|
|
|
|
use embassy_stm32::spi::{self, Spi};
|
|
|
|
use embassy_stm32::time::Hertz;
|
|
|
|
use embassy_stm32::Peripherals;
|
|
|
|
use example_common::*;
|
|
|
|
|
|
|
|
#[embassy::main(config = "config()")]
|
|
|
|
async fn main(_spawner: Spawner, p: Peripherals) {
|
|
|
|
info!("Hello World!");
|
|
|
|
|
2022-02-24 00:19:26 +01:00
|
|
|
#[cfg(feature = "stm32f103c8")]
|
|
|
|
let (sck, mosi, miso, tx_dma, rx_dma) = (p.PA5, p.PA7, p.PA6, p.DMA1_CH3, p.DMA1_CH2);
|
2021-12-07 05:14:27 +01:00
|
|
|
#[cfg(feature = "stm32f429zi")]
|
|
|
|
let (sck, mosi, miso, tx_dma, rx_dma) = (p.PA5, p.PA7, p.PA6, p.DMA2_CH3, p.DMA2_CH2);
|
|
|
|
#[cfg(feature = "stm32h755zi")]
|
|
|
|
let (sck, mosi, miso, tx_dma, rx_dma) = (p.PA5, p.PB5, p.PA6, p.DMA1_CH0, p.DMA1_CH1);
|
|
|
|
#[cfg(feature = "stm32g491re")]
|
2022-03-09 00:35:37 +01:00
|
|
|
let (sck, mosi, miso, tx_dma, rx_dma) = (p.PA5, p.PA7, p.PA6, p.DMA1_CH1, p.DMA1_CH2);
|
2021-12-07 05:14:27 +01:00
|
|
|
#[cfg(feature = "stm32g071rb")]
|
2022-03-09 00:35:37 +01:00
|
|
|
let (sck, mosi, miso, tx_dma, rx_dma) = (p.PA5, p.PA7, p.PA6, p.DMA1_CH1, p.DMA1_CH2);
|
2021-12-07 05:14:27 +01:00
|
|
|
#[cfg(feature = "stm32wb55rg")]
|
2022-03-09 00:35:37 +01:00
|
|
|
let (sck, mosi, miso, tx_dma, rx_dma) = (p.PA5, p.PA7, p.PA6, p.DMA1_CH1, p.DMA1_CH2);
|
2021-12-07 05:14:27 +01:00
|
|
|
|
|
|
|
let mut spi = Spi::new(
|
|
|
|
p.SPI1,
|
|
|
|
sck, // Arduino D13
|
|
|
|
mosi, // Arduino D11
|
|
|
|
miso, // Arduino D12
|
|
|
|
tx_dma,
|
|
|
|
rx_dma,
|
|
|
|
Hertz(1_000_000),
|
|
|
|
spi::Config::default(),
|
|
|
|
);
|
|
|
|
|
|
|
|
let data: [u8; 9] = [0x00, 0xFF, 0xAA, 0x55, 0xC0, 0xFF, 0xEE, 0xC0, 0xDE];
|
|
|
|
|
|
|
|
// Arduino pins D11 and D12 (MOSI-MISO) are connected together with a 1K resistor.
|
|
|
|
// so we should get the data we sent back.
|
|
|
|
let mut buf = [0; 9];
|
2022-01-26 22:39:06 +01:00
|
|
|
spi.transfer(&mut buf, &data).await.unwrap();
|
2021-12-07 05:14:27 +01:00
|
|
|
assert_eq!(buf, data);
|
|
|
|
|
2022-03-15 00:31:36 +01:00
|
|
|
spi.transfer_in_place(&mut buf).await.unwrap();
|
|
|
|
assert_eq!(buf, data);
|
|
|
|
|
2022-03-15 00:46:18 +01:00
|
|
|
// Check read/write don't hang. We can't check they transfer the right data
|
|
|
|
// without fancier test mechanisms.
|
|
|
|
spi.write(&buf).await.unwrap();
|
|
|
|
spi.read(&mut buf).await.unwrap();
|
|
|
|
spi.write(&buf).await.unwrap();
|
|
|
|
spi.read(&mut buf).await.unwrap();
|
|
|
|
spi.write(&buf).await.unwrap();
|
|
|
|
|
|
|
|
// Check transfer doesn't break after having done a write, due to garbage in the FIFO
|
|
|
|
spi.transfer(&mut buf, &data).await.unwrap();
|
|
|
|
assert_eq!(buf, data);
|
|
|
|
|
2022-03-15 00:48:11 +01:00
|
|
|
// Check zero-length operations, these should be noops.
|
|
|
|
spi.transfer::<u8>(&mut [], &[]).await.unwrap();
|
|
|
|
spi.transfer_in_place::<u8>(&mut []).await.unwrap();
|
|
|
|
spi.read::<u8>(&mut []).await.unwrap();
|
|
|
|
spi.write::<u8>(&[]).await.unwrap();
|
|
|
|
|
2022-03-15 04:13:33 +01:00
|
|
|
// === Check mixing blocking with async.
|
|
|
|
spi.blocking_transfer(&mut buf, &data).unwrap();
|
|
|
|
assert_eq!(buf, data);
|
|
|
|
spi.transfer(&mut buf, &data).await.unwrap();
|
|
|
|
assert_eq!(buf, data);
|
|
|
|
spi.blocking_write(&buf).unwrap();
|
|
|
|
spi.transfer(&mut buf, &data).await.unwrap();
|
|
|
|
assert_eq!(buf, data);
|
|
|
|
spi.blocking_read(&mut buf).unwrap();
|
|
|
|
spi.blocking_write(&buf).unwrap();
|
|
|
|
spi.write(&buf).await.unwrap();
|
|
|
|
spi.read(&mut buf).await.unwrap();
|
|
|
|
spi.blocking_write(&buf).unwrap();
|
|
|
|
spi.blocking_read(&mut buf).unwrap();
|
|
|
|
spi.write(&buf).await.unwrap();
|
|
|
|
|
2021-12-07 05:14:27 +01:00
|
|
|
info!("Test OK");
|
|
|
|
cortex_m::asm::bkpt();
|
|
|
|
}
|