embassy/embassy-nrf-examples/src/bin/uart.rs

75 lines
2.5 KiB
Rust
Raw Normal View History

2020-09-22 18:03:43 +02:00
#![no_std]
#![no_main]
2021-03-17 02:48:16 +01:00
#![feature(min_type_alias_impl_trait)]
#![feature(impl_trait_in_bindings)]
2020-09-22 18:03:43 +02:00
#![feature(type_alias_impl_trait)]
2021-03-27 03:12:58 +01:00
#![allow(incomplete_features)]
2020-09-22 18:03:43 +02:00
#[path = "../example_common.rs"]
mod example_common;
use example_common::*;
2020-12-29 01:53:17 +01:00
use defmt::panic;
2021-03-29 02:47:10 +02:00
use embassy::executor::Spawner;
2021-03-22 01:15:44 +01:00
use embassy::traits::uart::{Read, Write};
2021-03-29 02:47:10 +02:00
use embassy::util::Steal;
2021-03-29 00:42:08 +02:00
use embassy_nrf::gpio::NoPin;
2021-03-29 02:47:10 +02:00
use embassy_nrf::{interrupt, uarte, Peripherals};
2020-09-24 22:04:45 +02:00
2021-03-29 02:47:10 +02:00
#[embassy::main]
async fn main(spawner: Spawner) {
2021-03-27 03:12:58 +01:00
let p = unsafe { Peripherals::steal() };
2021-03-22 01:15:44 +01:00
let mut config = uarte::Config::default();
config.parity = uarte::Parity::EXCLUDED;
config.baudrate = uarte::Baudrate::BAUD115200;
let irq = interrupt::take!(UARTE0_UART0);
2021-04-14 16:01:43 +02:00
let mut uart =
unsafe { uarte::Uarte::new(p.UARTE0, irq, p.P0_08, p.P0_06, NoPin, NoPin, config) };
2020-09-22 18:03:43 +02:00
info!("uarte initialized!");
2020-12-23 16:18:29 +01:00
// Message must be in SRAM
let mut buf = [0; 8];
buf.copy_from_slice(b"Hello!\r\n");
2021-04-14 16:01:43 +02:00
unwrap!(uart.write(&buf).await);
2020-09-22 18:03:43 +02:00
info!("wrote hello in uart!");
loop {
2021-01-01 23:04:18 +01:00
info!("reading...");
2021-04-14 16:01:43 +02:00
unwrap!(uart.read(&mut buf).await);
2021-03-22 01:15:44 +01:00
info!("writing...");
2021-04-14 16:01:43 +02:00
unwrap!(uart.write(&buf).await);
2021-01-01 23:04:18 +01:00
2021-03-22 01:15:44 +01:00
/*
2021-01-01 23:04:18 +01:00
// `receive()` doesn't return until the buffer has been completely filled with
// incoming data, which in this case is 8 bytes.
//
// This example shows how to use `select` to run an uart receive concurrently with a
// 1 second timer, effectively adding a timeout to the receive operation.
2021-03-22 01:15:44 +01:00
let recv_fut = uart.read(&mut buf);
2021-01-01 23:04:18 +01:00
let timer_fut = Timer::after(Duration::from_millis(1000));
2021-01-02 19:14:54 +01:00
let received_len = match select(recv_fut, timer_fut).await {
2021-01-01 23:04:18 +01:00
// recv_fut completed first, so we've received `buf_len` bytes.
2021-01-02 19:14:54 +01:00
Either::Left(_) => buf_len,
2021-01-01 23:04:18 +01:00
// timer_fut completed first. `select` gives us back the future that didn't complete, which
// is `recv_fut` in this case, so we can do further stuff with it.
//
// The recv_fut would stop the uart read automatically when dropped. However, we want to know how
// many bytes have been received, so we have to "gracefully stop" it with `.stop()`.
2021-01-02 19:14:54 +01:00
Either::Right((_, recv_fut)) => recv_fut.stop().await,
2020-12-23 16:18:29 +01:00
};
2021-01-02 19:14:54 +01:00
let received = &mut buf[..received_len];
2020-12-23 16:18:29 +01:00
2021-02-14 01:41:36 +01:00
if !received.is_empty() {
2021-02-24 08:57:06 +01:00
info!("read done, got {}", received);
2020-12-23 16:18:29 +01:00
// Echo back received data
2021-03-22 01:15:44 +01:00
unwrap!(uart.write(received).await);
2020-09-22 18:03:43 +02:00
}
2021-03-22 01:15:44 +01:00
*/
2020-09-22 18:03:43 +02:00
}
}