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;
|
2021-12-08 05:43:39 +01:00
|
|
|
use embassy_stm32::dma::NoDma;
|
2023-05-14 21:59:10 +02:00
|
|
|
use embassy_stm32::usart::{Config, Error, Uart};
|
2023-05-25 00:29:56 +02:00
|
|
|
use embassy_stm32::{bind_interrupts, peripherals, usart};
|
2023-05-02 02:52:37 +02:00
|
|
|
use embassy_time::{Duration, Instant};
|
2021-12-08 05:43:39 +01:00
|
|
|
|
2023-05-25 00:29:56 +02:00
|
|
|
#[cfg(any(
|
|
|
|
feature = "stm32f103c8",
|
|
|
|
feature = "stm32g491re",
|
|
|
|
feature = "stm32g071rb",
|
|
|
|
feature = "stm32h755zi",
|
|
|
|
feature = "stm32c031c6",
|
|
|
|
))]
|
|
|
|
bind_interrupts!(struct Irqs {
|
|
|
|
USART1 => usart::InterruptHandler<peripherals::USART1>;
|
|
|
|
});
|
|
|
|
|
|
|
|
#[cfg(feature = "stm32u585ai")]
|
|
|
|
bind_interrupts!(struct Irqs {
|
|
|
|
USART3 => usart::InterruptHandler<peripherals::USART3>;
|
|
|
|
});
|
|
|
|
|
|
|
|
#[cfg(feature = "stm32f429zi")]
|
|
|
|
bind_interrupts!(struct Irqs {
|
|
|
|
USART6 => usart::InterruptHandler<peripherals::USART6>;
|
|
|
|
});
|
|
|
|
|
|
|
|
#[cfg(any(feature = "stm32wb55rg", feature = "stm32h563zi"))]
|
|
|
|
bind_interrupts!(struct Irqs {
|
|
|
|
LPUART1 => usart::InterruptHandler<peripherals::LPUART1>;
|
|
|
|
});
|
|
|
|
|
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.
|
2022-02-24 00:19:26 +01:00
|
|
|
#[cfg(feature = "stm32f103c8")]
|
2023-05-25 00:29:56 +02:00
|
|
|
let (mut tx, mut rx, mut usart) = (p.PA9, p.PA10, p.USART1);
|
2021-12-08 05:43:39 +01:00
|
|
|
#[cfg(feature = "stm32g491re")]
|
2023-05-25 00:29:56 +02:00
|
|
|
let (mut tx, mut rx, mut usart) = (p.PC4, p.PC5, p.USART1);
|
2021-12-08 05:43:39 +01:00
|
|
|
#[cfg(feature = "stm32g071rb")]
|
2023-05-25 00:29:56 +02:00
|
|
|
let (mut tx, mut rx, mut usart) = (p.PC4, p.PC5, p.USART1);
|
2021-12-08 05:43:39 +01:00
|
|
|
#[cfg(feature = "stm32f429zi")]
|
2023-05-25 00:29:56 +02:00
|
|
|
let (mut tx, mut rx, mut usart) = (p.PG14, p.PG9, p.USART6);
|
2021-12-08 05:43:39 +01:00
|
|
|
#[cfg(feature = "stm32wb55rg")]
|
2023-05-25 00:29:56 +02:00
|
|
|
let (mut tx, mut rx, mut usart) = (p.PA2, p.PA3, p.LPUART1);
|
2021-12-08 05:43:39 +01:00
|
|
|
#[cfg(feature = "stm32h755zi")]
|
2023-05-25 00:29:56 +02:00
|
|
|
let (mut tx, mut rx, mut usart) = (p.PB6, p.PB7, p.USART1);
|
2022-04-26 23:57:26 +02:00
|
|
|
#[cfg(feature = "stm32u585ai")]
|
2023-05-25 00:29:56 +02:00
|
|
|
let (mut tx, mut rx, mut usart) = (p.PD8, p.PD9, p.USART3);
|
2023-04-10 15:12:47 +02:00
|
|
|
#[cfg(feature = "stm32h563zi")]
|
2023-05-25 00:29:56 +02:00
|
|
|
let (mut tx, mut rx, mut usart) = (p.PB6, p.PB7, p.LPUART1);
|
2023-04-11 13:37:10 +02:00
|
|
|
#[cfg(feature = "stm32c031c6")]
|
2023-05-25 00:29:56 +02:00
|
|
|
let (mut tx, mut rx, mut usart) = (p.PB6, p.PB7, p.USART1);
|
2021-12-08 05:43:39 +01:00
|
|
|
|
2023-05-02 02:52:37 +02:00
|
|
|
{
|
|
|
|
let config = Config::default();
|
2023-05-25 00:29:56 +02:00
|
|
|
let mut usart = Uart::new(&mut usart, &mut rx, &mut tx, Irqs, NoDma, NoDma, config);
|
2021-12-08 05:43:39 +01:00
|
|
|
|
2023-05-02 02:52:37 +02:00
|
|
|
// We can't send too many bytes, they have to fit in the FIFO.
|
|
|
|
// This is because we aren't sending+receiving at the same time.
|
2021-12-08 05:43:39 +01:00
|
|
|
|
2023-05-02 02:52:37 +02:00
|
|
|
let data = [0xC0, 0xDE];
|
|
|
|
usart.blocking_write(&data).unwrap();
|
2021-12-08 05:43:39 +01:00
|
|
|
|
2023-05-02 02:52:37 +02:00
|
|
|
let mut buf = [0; 2];
|
|
|
|
usart.blocking_read(&mut buf).unwrap();
|
|
|
|
assert_eq!(buf, data);
|
|
|
|
}
|
|
|
|
|
2023-05-14 21:59:10 +02:00
|
|
|
// Test error handling with with an overflow error
|
|
|
|
{
|
|
|
|
let config = Config::default();
|
2023-05-25 00:29:56 +02:00
|
|
|
let mut usart = Uart::new(&mut usart, &mut rx, &mut tx, Irqs, NoDma, NoDma, config);
|
2023-05-14 21:59:10 +02:00
|
|
|
|
|
|
|
// Send enough bytes to fill the RX FIFOs off all USART versions.
|
|
|
|
let data = [0xC0, 0xDE, 0x12, 0x23, 0x34];
|
|
|
|
usart.blocking_write(&data).unwrap();
|
|
|
|
usart.blocking_flush().unwrap();
|
|
|
|
|
|
|
|
// The error should be reported first.
|
|
|
|
let mut buf = [0; 1];
|
|
|
|
let err = usart.blocking_read(&mut buf);
|
|
|
|
assert_eq!(err, Err(Error::Overrun));
|
|
|
|
|
|
|
|
// At least the first data byte should still be available on all USART versions.
|
|
|
|
usart.blocking_read(&mut buf).unwrap();
|
|
|
|
assert_eq!(buf[0], data[0]);
|
|
|
|
}
|
|
|
|
|
2023-05-02 02:52:37 +02:00
|
|
|
// Test that baudrate divider is calculated correctly.
|
|
|
|
// Do it by comparing the time it takes to send a known number of bytes.
|
|
|
|
for baudrate in [
|
|
|
|
300,
|
|
|
|
9600,
|
|
|
|
115200,
|
|
|
|
250_000,
|
|
|
|
337_934,
|
|
|
|
#[cfg(not(feature = "stm32f103c8"))]
|
|
|
|
1_000_000,
|
|
|
|
#[cfg(not(feature = "stm32f103c8"))]
|
|
|
|
2_000_000,
|
|
|
|
] {
|
|
|
|
info!("testing baudrate {}", baudrate);
|
|
|
|
|
|
|
|
let mut config = Config::default();
|
|
|
|
config.baudrate = baudrate;
|
2023-05-25 00:29:56 +02:00
|
|
|
let mut usart = Uart::new(&mut usart, &mut rx, &mut tx, Irqs, NoDma, NoDma, config);
|
2023-05-02 02:52:37 +02:00
|
|
|
|
|
|
|
let n = (baudrate as usize / 100).max(64);
|
|
|
|
|
|
|
|
let start = Instant::now();
|
|
|
|
for _ in 0..n {
|
|
|
|
usart.blocking_write(&[0x00]).unwrap();
|
|
|
|
}
|
|
|
|
let dur = Instant::now() - start;
|
|
|
|
let want_dur = Duration::from_micros(n as u64 * 10 * 1_000_000 / (baudrate as u64));
|
|
|
|
let fuzz = want_dur / 5;
|
|
|
|
if dur < want_dur - fuzz || dur > want_dur + fuzz {
|
|
|
|
defmt::panic!(
|
|
|
|
"bad duration for baudrate {}: got {:?} want {:?}",
|
|
|
|
baudrate,
|
|
|
|
dur,
|
|
|
|
want_dur
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2021-12-08 05:43:39 +01:00
|
|
|
|
|
|
|
info!("Test OK");
|
|
|
|
cortex_m::asm::bkpt();
|
|
|
|
}
|