2021-12-08 05:43:39 +01:00
|
|
|
#![no_std]
|
|
|
|
#![no_main]
|
|
|
|
#![feature(type_alias_impl_trait)]
|
2023-05-30 00:10:36 +02:00
|
|
|
#[path = "../common.rs"]
|
|
|
|
mod common;
|
2021-12-08 05:43:39 +01:00
|
|
|
|
2023-05-30 00:10:36 +02:00
|
|
|
use common::*;
|
2021-12-08 05:43:39 +01:00
|
|
|
use defmt::assert_eq;
|
2022-08-17 23:40:16 +02:00
|
|
|
use embassy_executor::Spawner;
|
2023-05-01 18:17:29 +02:00
|
|
|
use embassy_futures::join::join;
|
2021-12-08 05:43:39 +01:00
|
|
|
use embassy_stm32::usart::{Config, Uart};
|
2023-05-25 00:29:56 +02:00
|
|
|
|
2022-08-17 18:49:55 +02:00
|
|
|
#[embassy_executor::main]
|
|
|
|
async fn main(_spawner: Spawner) {
|
|
|
|
let p = embassy_stm32::init(config());
|
2021-12-08 05:43:39 +01:00
|
|
|
info!("Hello World!");
|
|
|
|
|
|
|
|
// Arduino pins D0 and D1
|
|
|
|
// They're connected together with a 1K resistor.
|
2023-09-25 22:34:18 +02:00
|
|
|
let usart = peri!(p, UART);
|
|
|
|
let rx = peri!(p, UART_RX);
|
|
|
|
let tx = peri!(p, UART_TX);
|
|
|
|
let rx_dma = peri!(p, UART_RX_DMA);
|
|
|
|
let tx_dma = peri!(p, UART_TX_DMA);
|
|
|
|
let irq = irqs!(UART);
|
2021-12-08 05:43:39 +01:00
|
|
|
|
|
|
|
let config = Config::default();
|
2023-05-01 18:17:29 +02:00
|
|
|
let usart = Uart::new(usart, rx, tx, irq, tx_dma, rx_dma, config);
|
2021-12-08 05:43:39 +01:00
|
|
|
|
2023-05-01 18:17:29 +02:00
|
|
|
const LEN: usize = 128;
|
|
|
|
let mut tx_buf = [0; LEN];
|
|
|
|
let mut rx_buf = [0; LEN];
|
2021-12-08 05:43:39 +01:00
|
|
|
|
2023-05-01 18:17:29 +02:00
|
|
|
let (mut tx, mut rx) = usart.split();
|
2021-12-08 05:43:39 +01:00
|
|
|
|
2023-06-19 22:38:27 +02:00
|
|
|
for n in 0..42 {
|
|
|
|
for i in 0..LEN {
|
|
|
|
tx_buf[i] = (i ^ n) as u8;
|
|
|
|
}
|
|
|
|
|
|
|
|
let tx_fut = async {
|
|
|
|
tx.write(&tx_buf).await.unwrap();
|
|
|
|
};
|
|
|
|
let rx_fut = async {
|
|
|
|
rx.read(&mut rx_buf).await.unwrap();
|
|
|
|
};
|
2023-05-02 19:35:02 +02:00
|
|
|
|
2023-06-19 22:38:27 +02:00
|
|
|
// note: rx needs to be polled first, to workaround this bug:
|
|
|
|
// https://github.com/embassy-rs/embassy/issues/1426
|
|
|
|
join(rx_fut, tx_fut).await;
|
2023-05-01 18:17:29 +02:00
|
|
|
|
2023-06-19 22:38:27 +02:00
|
|
|
assert_eq!(tx_buf, rx_buf);
|
|
|
|
}
|
2021-12-08 05:43:39 +01:00
|
|
|
|
|
|
|
info!("Test OK");
|
|
|
|
cortex_m::asm::bkpt();
|
|
|
|
}
|