Merge pull request #2258 from ExplodingWaffle/patch-1

make usart::State private
This commit is contained in:
Dario Nieuwenhuis 2024-01-19 23:30:47 +01:00 committed by GitHub
commit a2eb46e9e4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -82,16 +82,17 @@ impl<T: BasicInstance> interrupt::typelevel::Handler<T::Interrupt> for Interrupt
}
}
/// Buffered UART State
pub struct State {
rx_waker: AtomicWaker,
rx_buf: RingBuffer,
pub(crate) use sealed::State;
pub(crate) mod sealed {
use super::*;
pub struct State {
pub(crate) rx_waker: AtomicWaker,
pub(crate) rx_buf: RingBuffer,
pub(crate) tx_waker: AtomicWaker,
pub(crate) tx_buf: RingBuffer,
}
tx_waker: AtomicWaker,
tx_buf: RingBuffer,
}
impl State {
impl State {
/// Create new state
pub const fn new() -> Self {
Self {
@ -101,6 +102,7 @@ impl State {
tx_waker: AtomicWaker::new(),
}
}
}
}
/// Bidirectional buffered UART