2021-06-30 18:46:53 +00:00
|
|
|
#![no_std]
|
|
|
|
#![no_main]
|
|
|
|
#![feature(trait_alias)]
|
|
|
|
#![feature(min_type_alias_impl_trait)]
|
|
|
|
#![feature(impl_trait_in_bindings)]
|
|
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
#![allow(incomplete_features)]
|
|
|
|
|
|
|
|
#[path = "../example_common.rs"]
|
|
|
|
mod example_common;
|
|
|
|
use cortex_m::prelude::_embedded_hal_blocking_serial_Write;
|
2021-07-24 11:57:11 +00:00
|
|
|
use defmt::panic;
|
|
|
|
use embassy::executor::Spawner;
|
2021-07-15 03:42:06 +00:00
|
|
|
use embassy_stm32::dma::NoDma;
|
2021-06-30 18:46:53 +00:00
|
|
|
use embassy_stm32::usart::{Config, Uart};
|
2021-07-24 11:57:11 +00:00
|
|
|
use embassy_stm32::{pac, Peripherals};
|
2021-06-30 18:46:53 +00:00
|
|
|
use example_common::*;
|
|
|
|
|
2021-07-24 11:57:11 +00:00
|
|
|
#[embassy::main]
|
|
|
|
async fn main(_spawner: Spawner, p: Peripherals) {
|
2021-06-30 18:46:53 +00:00
|
|
|
info!("Hello World!");
|
|
|
|
|
2021-07-14 22:30:31 +00:00
|
|
|
unsafe {
|
|
|
|
pac::DBGMCU.cr().modify(|w| {
|
|
|
|
w.set_dbg_sleep(true);
|
|
|
|
w.set_dbg_standby(true);
|
|
|
|
w.set_dbg_stop(true);
|
|
|
|
});
|
|
|
|
}
|
2021-06-30 18:46:53 +00:00
|
|
|
|
2021-07-24 11:57:11 +00:00
|
|
|
let config = Config::default();
|
|
|
|
let mut usart = Uart::new(p.UART4, p.PA1, p.PA0, NoDma, NoDma, config);
|
2021-06-30 18:46:53 +00:00
|
|
|
|
2021-07-24 11:57:11 +00:00
|
|
|
usart.bwrite_all(b"Hello Embassy World!\r\n").unwrap();
|
|
|
|
info!("wrote Hello, starting echo");
|
2021-06-30 18:46:53 +00:00
|
|
|
|
2021-07-24 11:57:11 +00:00
|
|
|
let mut buf = [0u8; 1];
|
|
|
|
loop {
|
|
|
|
usart.read(&mut buf).unwrap();
|
|
|
|
usart.bwrite_all(&buf).unwrap();
|
|
|
|
}
|
2021-07-14 22:30:31 +00:00
|
|
|
}
|