mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-22 14:53:03 +00:00
26 lines
606 B
Rust
26 lines
606 B
Rust
|
#![no_std]
|
||
|
#![no_main]
|
||
|
|
||
|
use defmt::*;
|
||
|
use embassy_stm32::usart::{Config, Uart};
|
||
|
use {defmt_rtt as _, panic_probe as _};
|
||
|
|
||
|
#[cortex_m_rt::entry]
|
||
|
fn main() -> ! {
|
||
|
info!("Hello World!");
|
||
|
|
||
|
let p = embassy_stm32::init(Default::default());
|
||
|
|
||
|
let config = Config::default();
|
||
|
let mut usart = Uart::new_blocking(p.USART2, p.PA3, p.PA2, config).unwrap();
|
||
|
|
||
|
unwrap!(usart.blocking_write(b"Hello Embassy World!\r\n"));
|
||
|
info!("wrote Hello, starting echo");
|
||
|
|
||
|
let mut buf = [0u8; 1];
|
||
|
loop {
|
||
|
unwrap!(usart.blocking_read(&mut buf));
|
||
|
unwrap!(usart.blocking_write(&buf));
|
||
|
}
|
||
|
}
|