2020-09-22 16:03:43 +00:00
|
|
|
//! HAL interface to the UARTE peripheral
|
|
|
|
//!
|
|
|
|
//! See product specification:
|
|
|
|
//!
|
|
|
|
//! - nrf52832: Section 35
|
|
|
|
//! - nrf52840: Section 6.34
|
|
|
|
use core::cmp::min;
|
2021-01-03 00:40:40 +00:00
|
|
|
use core::mem;
|
2020-09-22 16:03:43 +00:00
|
|
|
use core::ops::Deref;
|
|
|
|
use core::pin::Pin;
|
|
|
|
use core::sync::atomic::{compiler_fence, Ordering};
|
|
|
|
use core::task::{Context, Poll};
|
2021-02-28 23:44:38 +00:00
|
|
|
use embassy::interrupt::InterruptExt;
|
2020-09-22 16:03:43 +00:00
|
|
|
use embassy::io::{AsyncBufRead, AsyncWrite, Result};
|
2021-01-01 21:30:11 +00:00
|
|
|
use embassy::util::WakerRegistration;
|
2021-03-07 23:15:40 +00:00
|
|
|
use embassy_extras::low_power_wait_until;
|
|
|
|
use embassy_extras::peripheral::{PeripheralMutex, PeripheralState};
|
|
|
|
use embassy_extras::ring_buffer::RingBuffer;
|
2021-01-02 19:31:50 +00:00
|
|
|
use embedded_hal::digital::v2::OutputPin;
|
2020-09-22 16:03:43 +00:00
|
|
|
|
2021-03-07 23:15:40 +00:00
|
|
|
use crate::fmt::*;
|
2021-01-06 22:36:46 +00:00
|
|
|
use crate::hal::ppi::ConfigurablePpi;
|
2021-02-26 00:55:27 +00:00
|
|
|
use crate::interrupt::{self, Interrupt};
|
2021-01-03 00:40:40 +00:00
|
|
|
use crate::pac;
|
2020-09-22 16:03:43 +00:00
|
|
|
|
2021-01-02 19:31:50 +00:00
|
|
|
// Re-export SVD variants to allow user to directly set values
|
|
|
|
pub use crate::hal::uarte::Pins;
|
2021-01-06 22:36:46 +00:00
|
|
|
pub use pac::uarte0::{baudrate::BAUDRATE_A as Baudrate, config::PARITY_A as Parity};
|
2020-09-22 16:03:43 +00:00
|
|
|
|
|
|
|
#[derive(Copy, Clone, Debug, PartialEq)]
|
|
|
|
enum RxState {
|
|
|
|
Idle,
|
|
|
|
Receiving,
|
|
|
|
}
|
2021-01-05 20:14:04 +00:00
|
|
|
|
2020-09-22 16:03:43 +00:00
|
|
|
#[derive(Copy, Clone, Debug, PartialEq)]
|
|
|
|
enum TxState {
|
|
|
|
Idle,
|
|
|
|
Transmitting(usize),
|
|
|
|
}
|
|
|
|
|
2021-01-06 22:36:46 +00:00
|
|
|
struct State<'a, U: Instance, T: TimerInstance, P1: ConfigurablePpi, P2: ConfigurablePpi> {
|
|
|
|
uarte: U,
|
|
|
|
timer: T,
|
|
|
|
ppi_channel_1: P1,
|
|
|
|
ppi_channel_2: P2,
|
2021-01-05 20:14:04 +00:00
|
|
|
|
|
|
|
rx: RingBuffer<'a>,
|
|
|
|
rx_state: RxState,
|
|
|
|
rx_waker: WakerRegistration,
|
|
|
|
|
|
|
|
tx: RingBuffer<'a>,
|
|
|
|
tx_state: TxState,
|
|
|
|
tx_waker: WakerRegistration,
|
|
|
|
}
|
|
|
|
|
2020-09-22 16:03:43 +00:00
|
|
|
/// Interface to a UARTE instance
|
|
|
|
///
|
|
|
|
/// This is a very basic interface that comes with the following limitations:
|
|
|
|
/// - The UARTE instances share the same address space with instances of UART.
|
|
|
|
/// You need to make sure that conflicting instances
|
|
|
|
/// are disabled before using `Uarte`. See product specification:
|
|
|
|
/// - nrf52832: Section 15.2
|
|
|
|
/// - nrf52840: Section 6.1.2
|
2021-01-06 22:36:46 +00:00
|
|
|
pub struct BufferedUarte<
|
|
|
|
'a,
|
|
|
|
U: Instance,
|
|
|
|
T: TimerInstance,
|
|
|
|
P1: ConfigurablePpi,
|
|
|
|
P2: ConfigurablePpi,
|
|
|
|
> {
|
|
|
|
inner: PeripheralMutex<State<'a, U, T, P1, P2>>,
|
2020-09-22 16:03:43 +00:00
|
|
|
}
|
|
|
|
|
2021-01-06 22:36:46 +00:00
|
|
|
impl<'a, U: Instance, T: TimerInstance, P1: ConfigurablePpi, P2: ConfigurablePpi>
|
|
|
|
BufferedUarte<'a, U, T, P1, P2>
|
|
|
|
{
|
2020-12-29 00:53:17 +00:00
|
|
|
pub fn new(
|
2021-01-06 16:09:42 +00:00
|
|
|
uarte: U,
|
2021-01-06 22:36:46 +00:00
|
|
|
timer: T,
|
|
|
|
mut ppi_channel_1: P1,
|
|
|
|
mut ppi_channel_2: P2,
|
2021-01-06 16:09:42 +00:00
|
|
|
irq: U::Interrupt,
|
2021-01-03 00:40:40 +00:00
|
|
|
rx_buffer: &'a mut [u8],
|
|
|
|
tx_buffer: &'a mut [u8],
|
2020-12-29 00:53:17 +00:00
|
|
|
mut pins: Pins,
|
|
|
|
parity: Parity,
|
|
|
|
baudrate: Baudrate,
|
|
|
|
) -> Self {
|
2020-09-22 16:03:43 +00:00
|
|
|
// Select pins
|
|
|
|
uarte.psel.rxd.write(|w| {
|
2021-03-05 08:23:44 +00:00
|
|
|
unsafe { w.bits(pins.rxd.psel_bits()) };
|
2020-09-22 16:03:43 +00:00
|
|
|
w.connect().connected()
|
|
|
|
});
|
|
|
|
pins.txd.set_high().unwrap();
|
|
|
|
uarte.psel.txd.write(|w| {
|
2021-03-05 08:23:44 +00:00
|
|
|
unsafe { w.bits(pins.txd.psel_bits()) };
|
2020-09-22 16:03:43 +00:00
|
|
|
w.connect().connected()
|
|
|
|
});
|
|
|
|
|
|
|
|
// Optional pins
|
|
|
|
uarte.psel.cts.write(|w| {
|
|
|
|
if let Some(ref pin) = pins.cts {
|
2021-03-05 08:23:44 +00:00
|
|
|
unsafe { w.bits(pin.psel_bits()) };
|
2020-09-22 16:03:43 +00:00
|
|
|
w.connect().connected()
|
|
|
|
} else {
|
|
|
|
w.connect().disconnected()
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
uarte.psel.rts.write(|w| {
|
|
|
|
if let Some(ref pin) = pins.rts {
|
2021-03-05 08:23:44 +00:00
|
|
|
unsafe { w.bits(pin.psel_bits()) };
|
2020-09-22 16:03:43 +00:00
|
|
|
w.connect().connected()
|
|
|
|
} else {
|
|
|
|
w.connect().disconnected()
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Enable UARTE instance
|
|
|
|
uarte.enable.write(|w| w.enable().enabled());
|
|
|
|
|
|
|
|
// Enable interrupts
|
|
|
|
uarte.intenset.write(|w| w.endrx().set().endtx().set());
|
|
|
|
|
|
|
|
// Configure
|
|
|
|
let hardware_flow_control = pins.rts.is_some() && pins.cts.is_some();
|
|
|
|
uarte
|
|
|
|
.config
|
|
|
|
.write(|w| w.hwfc().bit(hardware_flow_control).parity().variant(parity));
|
|
|
|
|
|
|
|
// Configure frequency
|
|
|
|
uarte.baudrate.write(|w| w.baudrate().variant(baudrate));
|
|
|
|
|
2021-01-05 00:57:05 +00:00
|
|
|
// Disable the irq, let the Registration enable it when everything is set up.
|
|
|
|
irq.disable();
|
2021-01-03 00:40:40 +00:00
|
|
|
irq.pend();
|
|
|
|
|
2021-01-06 22:36:46 +00:00
|
|
|
// BAUDRATE register values are `baudrate * 2^32 / 16000000`
|
|
|
|
// source: https://devzone.nordicsemi.com/f/nordic-q-a/391/uart-baudrate-register-values
|
|
|
|
//
|
|
|
|
// We want to stop RX if line is idle for 2 bytes worth of time
|
|
|
|
// That is 20 bits (each byte is 1 start bit + 8 data bits + 1 stop bit)
|
|
|
|
// This gives us the amount of 16M ticks for 20 bits.
|
|
|
|
let timeout = 0x8000_0000 / (baudrate as u32 / 40);
|
|
|
|
|
2021-01-06 23:50:40 +00:00
|
|
|
timer.tasks_stop.write(|w| unsafe { w.bits(1) });
|
2021-01-06 22:36:46 +00:00
|
|
|
timer.bitmode.write(|w| w.bitmode()._32bit());
|
|
|
|
timer.prescaler.write(|w| unsafe { w.prescaler().bits(0) });
|
|
|
|
timer.cc[0].write(|w| unsafe { w.bits(timeout) });
|
|
|
|
timer.mode.write(|w| w.mode().timer());
|
|
|
|
timer.shorts.write(|w| {
|
|
|
|
w.compare0_clear().set_bit();
|
|
|
|
w.compare0_stop().set_bit();
|
|
|
|
w
|
|
|
|
});
|
|
|
|
|
|
|
|
ppi_channel_1.set_event_endpoint(&uarte.events_rxdrdy);
|
|
|
|
ppi_channel_1.set_task_endpoint(&timer.tasks_clear);
|
|
|
|
ppi_channel_1.set_fork_task_endpoint(&timer.tasks_start);
|
|
|
|
ppi_channel_1.enable();
|
|
|
|
|
|
|
|
ppi_channel_2.set_event_endpoint(&timer.events_compare[0]);
|
|
|
|
ppi_channel_2.set_task_endpoint(&uarte.tasks_stoprx);
|
|
|
|
ppi_channel_2.enable();
|
|
|
|
|
2020-12-28 22:57:50 +00:00
|
|
|
BufferedUarte {
|
2021-01-05 00:57:05 +00:00
|
|
|
inner: PeripheralMutex::new(
|
2021-01-03 00:40:40 +00:00
|
|
|
State {
|
2021-01-06 22:36:46 +00:00
|
|
|
uarte,
|
|
|
|
timer,
|
|
|
|
ppi_channel_1,
|
|
|
|
ppi_channel_2,
|
2021-01-03 00:40:40 +00:00
|
|
|
|
|
|
|
rx: RingBuffer::new(rx_buffer),
|
|
|
|
rx_state: RxState::Idle,
|
|
|
|
rx_waker: WakerRegistration::new(),
|
|
|
|
|
|
|
|
tx: RingBuffer::new(tx_buffer),
|
|
|
|
tx_state: TxState::Idle,
|
|
|
|
tx_waker: WakerRegistration::new(),
|
|
|
|
},
|
2021-01-06 21:48:54 +00:00
|
|
|
irq,
|
2021-01-03 00:40:40 +00:00
|
|
|
),
|
2020-09-22 16:03:43 +00:00
|
|
|
}
|
|
|
|
}
|
2021-01-05 20:14:04 +00:00
|
|
|
|
2021-01-11 09:40:37 +00:00
|
|
|
pub fn set_baudrate(self: Pin<&mut Self>, baudrate: Baudrate) {
|
|
|
|
self.inner().with(|state, _irq| {
|
|
|
|
let timeout = 0x8000_0000 / (baudrate as u32 / 40);
|
|
|
|
state.timer.cc[0].write(|w| unsafe { w.bits(timeout) });
|
|
|
|
state.timer.tasks_clear.write(|w| unsafe { w.bits(1) });
|
|
|
|
|
|
|
|
state
|
|
|
|
.uarte
|
|
|
|
.baudrate
|
|
|
|
.write(|w| w.baudrate().variant(baudrate));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-01-06 22:36:46 +00:00
|
|
|
fn inner(self: Pin<&mut Self>) -> Pin<&mut PeripheralMutex<State<'a, U, T, P1, P2>>> {
|
2021-01-05 20:14:04 +00:00
|
|
|
unsafe { Pin::new_unchecked(&mut self.get_unchecked_mut().inner) }
|
|
|
|
}
|
2020-09-22 16:03:43 +00:00
|
|
|
}
|
|
|
|
|
2021-01-06 22:36:46 +00:00
|
|
|
impl<'a, U: Instance, T: TimerInstance, P1: ConfigurablePpi, P2: ConfigurablePpi> AsyncBufRead
|
|
|
|
for BufferedUarte<'a, U, T, P1, P2>
|
|
|
|
{
|
2020-09-22 16:03:43 +00:00
|
|
|
fn poll_fill_buf(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<&[u8]>> {
|
2021-01-06 21:48:54 +00:00
|
|
|
self.inner().with(|state, _irq| {
|
2021-01-05 20:14:04 +00:00
|
|
|
// Conservative compiler fence to prevent optimizations that do not
|
|
|
|
// take in to account actions by DMA. The fence has been placed here,
|
|
|
|
// before any DMA action has started
|
|
|
|
compiler_fence(Ordering::SeqCst);
|
|
|
|
trace!("poll_read");
|
|
|
|
|
|
|
|
// We have data ready in buffer? Return it.
|
|
|
|
let buf = state.rx.pop_buf();
|
2021-02-14 00:41:36 +00:00
|
|
|
if !buf.is_empty() {
|
2021-01-05 20:14:04 +00:00
|
|
|
trace!(" got {:?} {:?}", buf.as_ptr() as u32, buf.len());
|
|
|
|
let buf: &[u8] = buf;
|
|
|
|
let buf: &[u8] = unsafe { mem::transmute(buf) };
|
|
|
|
return Poll::Ready(Ok(buf));
|
|
|
|
}
|
|
|
|
|
|
|
|
trace!(" empty");
|
|
|
|
state.rx_waker.register(cx.waker());
|
|
|
|
Poll::<Result<&[u8]>>::Pending
|
2021-01-03 00:40:40 +00:00
|
|
|
})
|
2020-09-22 16:03:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn consume(self: Pin<&mut Self>, amt: usize) {
|
2021-01-06 21:48:54 +00:00
|
|
|
self.inner().with(|state, irq| {
|
2021-01-05 20:14:04 +00:00
|
|
|
trace!("consume {:?}", amt);
|
|
|
|
state.rx.pop(amt);
|
|
|
|
irq.pend();
|
|
|
|
})
|
2020-09-22 16:03:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-06 22:36:46 +00:00
|
|
|
impl<'a, U: Instance, T: TimerInstance, P1: ConfigurablePpi, P2: ConfigurablePpi> AsyncWrite
|
|
|
|
for BufferedUarte<'a, U, T, P1, P2>
|
|
|
|
{
|
2020-09-22 16:03:43 +00:00
|
|
|
fn poll_write(self: Pin<&mut Self>, cx: &mut Context<'_>, buf: &[u8]) -> Poll<Result<usize>> {
|
2021-01-06 21:48:54 +00:00
|
|
|
self.inner().with(|state, irq| {
|
2021-01-05 20:14:04 +00:00
|
|
|
trace!("poll_write: {:?}", buf.len());
|
|
|
|
|
|
|
|
let tx_buf = state.tx.push_buf();
|
2021-02-14 00:41:36 +00:00
|
|
|
if tx_buf.is_empty() {
|
2021-01-05 20:14:04 +00:00
|
|
|
trace!("poll_write: pending");
|
|
|
|
state.tx_waker.register(cx.waker());
|
|
|
|
return Poll::Pending;
|
|
|
|
}
|
2020-09-22 16:03:43 +00:00
|
|
|
|
2021-01-05 20:14:04 +00:00
|
|
|
let n = min(tx_buf.len(), buf.len());
|
|
|
|
tx_buf[..n].copy_from_slice(&buf[..n]);
|
|
|
|
state.tx.push(n);
|
2020-09-22 16:03:43 +00:00
|
|
|
|
2021-01-05 20:14:04 +00:00
|
|
|
trace!("poll_write: queued {:?}", n);
|
2020-09-22 16:03:43 +00:00
|
|
|
|
2021-01-05 20:14:04 +00:00
|
|
|
// Conservative compiler fence to prevent optimizations that do not
|
|
|
|
// take in to account actions by DMA. The fence has been placed here,
|
|
|
|
// before any DMA action has started
|
|
|
|
compiler_fence(Ordering::SeqCst);
|
2020-09-22 16:03:43 +00:00
|
|
|
|
2021-01-05 20:14:04 +00:00
|
|
|
irq.pend();
|
2020-09-22 16:03:43 +00:00
|
|
|
|
2021-01-05 20:14:04 +00:00
|
|
|
Poll::Ready(Ok(n))
|
|
|
|
})
|
2020-09-22 16:03:43 +00:00
|
|
|
}
|
2021-01-03 00:40:40 +00:00
|
|
|
}
|
|
|
|
|
2021-03-18 01:01:29 +00:00
|
|
|
impl<'a, U: Instance, T: TimerInstance, P1: ConfigurablePpi, P2: ConfigurablePpi> Drop
|
|
|
|
for State<'a, U, T, P1, P2>
|
2021-01-11 09:39:59 +00:00
|
|
|
{
|
2021-03-18 01:01:29 +00:00
|
|
|
fn drop(&mut self) {
|
2021-01-11 09:39:59 +00:00
|
|
|
self.timer.tasks_stop.write(|w| unsafe { w.bits(1) });
|
|
|
|
if let RxState::Receiving = self.rx_state {
|
|
|
|
self.uarte.tasks_stoprx.write(|w| unsafe { w.bits(1) });
|
|
|
|
}
|
|
|
|
if let TxState::Transmitting(_) = self.tx_state {
|
|
|
|
self.uarte.tasks_stoptx.write(|w| unsafe { w.bits(1) });
|
|
|
|
}
|
|
|
|
if let RxState::Receiving = self.rx_state {
|
2021-01-11 10:24:34 +00:00
|
|
|
low_power_wait_until(|| self.uarte.events_endrx.read().bits() == 1);
|
2021-01-11 09:39:59 +00:00
|
|
|
}
|
|
|
|
if let TxState::Transmitting(_) = self.tx_state {
|
2021-01-11 10:24:34 +00:00
|
|
|
low_power_wait_until(|| self.uarte.events_endtx.read().bits() == 1);
|
2021-01-11 09:39:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-06 22:36:46 +00:00
|
|
|
impl<'a, U: Instance, T: TimerInstance, P1: ConfigurablePpi, P2: ConfigurablePpi> PeripheralState
|
|
|
|
for State<'a, U, T, P1, P2>
|
|
|
|
{
|
2021-01-06 21:48:54 +00:00
|
|
|
type Interrupt = U::Interrupt;
|
2020-09-22 16:03:43 +00:00
|
|
|
fn on_interrupt(&mut self) {
|
|
|
|
trace!("irq: start");
|
2021-01-06 22:36:46 +00:00
|
|
|
loop {
|
2020-09-22 16:03:43 +00:00
|
|
|
match self.rx_state {
|
|
|
|
RxState::Idle => {
|
|
|
|
trace!(" irq_rx: in state idle");
|
|
|
|
|
|
|
|
let buf = self.rx.push_buf();
|
2021-02-14 00:41:36 +00:00
|
|
|
if !buf.is_empty() {
|
2020-09-22 16:03:43 +00:00
|
|
|
trace!(" irq_rx: starting {:?}", buf.len());
|
|
|
|
self.rx_state = RxState::Receiving;
|
|
|
|
|
|
|
|
// Set up the DMA read
|
2021-01-06 22:36:46 +00:00
|
|
|
self.uarte.rxd.ptr.write(|w|
|
2020-09-22 16:03:43 +00:00
|
|
|
// The PTR field is a full 32 bits wide and accepts the full range
|
|
|
|
// of values.
|
|
|
|
unsafe { w.ptr().bits(buf.as_ptr() as u32) });
|
2021-01-06 22:36:46 +00:00
|
|
|
self.uarte.rxd.maxcnt.write(|w|
|
2020-09-22 16:03:43 +00:00
|
|
|
// We're giving it the length of the buffer, so no danger of
|
|
|
|
// accessing invalid memory. We have verified that the length of the
|
|
|
|
// buffer fits in an `u8`, so the cast to `u8` is also fine.
|
|
|
|
//
|
|
|
|
// The MAXCNT field is at least 8 bits wide and accepts the full
|
|
|
|
// range of values.
|
|
|
|
unsafe { w.maxcnt().bits(buf.len() as _) });
|
|
|
|
trace!(" irq_rx: buf {:?} {:?}", buf.as_ptr() as u32, buf.len());
|
|
|
|
|
|
|
|
// Start UARTE Receive transaction
|
2021-01-06 22:36:46 +00:00
|
|
|
self.uarte.tasks_startrx.write(|w|
|
2020-09-22 16:03:43 +00:00
|
|
|
// `1` is a valid value to write to task registers.
|
|
|
|
unsafe { w.bits(1) });
|
|
|
|
}
|
2021-01-06 22:36:46 +00:00
|
|
|
break;
|
2020-09-22 16:03:43 +00:00
|
|
|
}
|
|
|
|
RxState::Receiving => {
|
|
|
|
trace!(" irq_rx: in state receiving");
|
2021-01-06 22:36:46 +00:00
|
|
|
if self.uarte.events_endrx.read().bits() != 0 {
|
2021-01-06 23:50:40 +00:00
|
|
|
self.timer.tasks_stop.write(|w| unsafe { w.bits(1) });
|
2020-09-22 16:03:43 +00:00
|
|
|
|
2021-01-06 22:36:46 +00:00
|
|
|
let n: usize = self.uarte.rxd.amount.read().amount().bits() as usize;
|
2020-09-22 16:03:43 +00:00
|
|
|
trace!(" irq_rx: endrx {:?}", n);
|
|
|
|
self.rx.push(n);
|
|
|
|
|
2021-01-06 22:36:46 +00:00
|
|
|
self.uarte.events_endrx.reset();
|
2020-09-22 16:03:43 +00:00
|
|
|
|
|
|
|
self.rx_waker.wake();
|
|
|
|
self.rx_state = RxState::Idle;
|
2021-01-06 22:36:46 +00:00
|
|
|
} else {
|
|
|
|
break;
|
2020-09-22 16:03:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-06 22:36:46 +00:00
|
|
|
loop {
|
2020-09-22 16:03:43 +00:00
|
|
|
match self.tx_state {
|
|
|
|
TxState::Idle => {
|
|
|
|
trace!(" irq_tx: in state Idle");
|
|
|
|
let buf = self.tx.pop_buf();
|
2021-02-14 00:41:36 +00:00
|
|
|
if !buf.is_empty() {
|
2020-09-22 16:03:43 +00:00
|
|
|
trace!(" irq_tx: starting {:?}", buf.len());
|
|
|
|
self.tx_state = TxState::Transmitting(buf.len());
|
|
|
|
|
|
|
|
// Set up the DMA write
|
2021-01-06 22:36:46 +00:00
|
|
|
self.uarte.txd.ptr.write(|w|
|
2020-09-22 16:03:43 +00:00
|
|
|
// The PTR field is a full 32 bits wide and accepts the full range
|
|
|
|
// of values.
|
|
|
|
unsafe { w.ptr().bits(buf.as_ptr() as u32) });
|
2021-01-06 22:36:46 +00:00
|
|
|
self.uarte.txd.maxcnt.write(|w|
|
2020-09-22 16:03:43 +00:00
|
|
|
// We're giving it the length of the buffer, so no danger of
|
|
|
|
// accessing invalid memory. We have verified that the length of the
|
|
|
|
// buffer fits in an `u8`, so the cast to `u8` is also fine.
|
|
|
|
//
|
|
|
|
// The MAXCNT field is 8 bits wide and accepts the full range of
|
|
|
|
// values.
|
|
|
|
unsafe { w.maxcnt().bits(buf.len() as _) });
|
|
|
|
|
|
|
|
// Start UARTE Transmit transaction
|
2021-01-06 22:36:46 +00:00
|
|
|
self.uarte.tasks_starttx.write(|w|
|
2020-09-22 16:03:43 +00:00
|
|
|
// `1` is a valid value to write to task registers.
|
|
|
|
unsafe { w.bits(1) });
|
|
|
|
}
|
2021-01-06 22:36:46 +00:00
|
|
|
break;
|
2020-09-22 16:03:43 +00:00
|
|
|
}
|
|
|
|
TxState::Transmitting(n) => {
|
|
|
|
trace!(" irq_tx: in state Transmitting");
|
2021-01-06 22:36:46 +00:00
|
|
|
if self.uarte.events_endtx.read().bits() != 0 {
|
|
|
|
self.uarte.events_endtx.reset();
|
2020-09-22 16:03:43 +00:00
|
|
|
|
|
|
|
trace!(" irq_tx: endtx {:?}", n);
|
|
|
|
self.tx.pop(n);
|
|
|
|
self.tx_waker.wake();
|
|
|
|
self.tx_state = TxState::Idle;
|
2021-01-06 22:36:46 +00:00
|
|
|
} else {
|
|
|
|
break;
|
2020-09-22 16:03:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
trace!("irq: end");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-06 16:09:42 +00:00
|
|
|
mod sealed {
|
|
|
|
pub trait Instance {}
|
2020-09-22 16:03:43 +00:00
|
|
|
|
2021-01-06 16:09:42 +00:00
|
|
|
impl Instance for crate::pac::UARTE0 {}
|
2020-10-31 22:03:09 +00:00
|
|
|
#[cfg(any(feature = "52833", feature = "52840", feature = "9160"))]
|
2021-01-06 16:09:42 +00:00
|
|
|
impl Instance for crate::pac::UARTE1 {}
|
2021-01-06 22:36:46 +00:00
|
|
|
|
|
|
|
pub trait TimerInstance {}
|
|
|
|
impl TimerInstance for crate::pac::TIMER0 {}
|
|
|
|
impl TimerInstance for crate::pac::TIMER1 {}
|
|
|
|
impl TimerInstance for crate::pac::TIMER2 {}
|
2020-09-22 16:03:43 +00:00
|
|
|
}
|
|
|
|
|
2021-01-06 22:36:46 +00:00
|
|
|
pub trait Instance: Deref<Target = pac::uarte0::RegisterBlock> + sealed::Instance {
|
2021-02-26 00:55:27 +00:00
|
|
|
type Interrupt: Interrupt;
|
2020-09-22 16:03:43 +00:00
|
|
|
}
|
|
|
|
|
2021-01-03 00:40:40 +00:00
|
|
|
impl Instance for pac::UARTE0 {
|
2021-02-26 00:55:27 +00:00
|
|
|
type Interrupt = interrupt::UARTE0_UART0;
|
2020-09-22 16:03:43 +00:00
|
|
|
}
|
|
|
|
|
2021-01-03 21:30:47 +00:00
|
|
|
#[cfg(any(feature = "52833", feature = "52840", feature = "9160"))]
|
2021-01-03 00:40:40 +00:00
|
|
|
impl Instance for pac::UARTE1 {
|
2021-02-26 00:55:27 +00:00
|
|
|
type Interrupt = interrupt::UARTE1;
|
2020-09-22 16:03:43 +00:00
|
|
|
}
|
2021-01-06 22:36:46 +00:00
|
|
|
|
|
|
|
pub trait TimerInstance:
|
|
|
|
Deref<Target = pac::timer0::RegisterBlock> + sealed::TimerInstance
|
|
|
|
{
|
|
|
|
}
|
|
|
|
impl TimerInstance for crate::pac::TIMER0 {}
|
|
|
|
impl TimerInstance for crate::pac::TIMER1 {}
|
|
|
|
impl TimerInstance for crate::pac::TIMER2 {}
|