mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-22 06:42:32 +00:00
Merge pull request #2258 from ExplodingWaffle/patch-1
make usart::State private
This commit is contained in:
commit
a2eb46e9e4
@ -82,23 +82,25 @@ impl<T: BasicInstance> interrupt::typelevel::Handler<T::Interrupt> for Interrupt
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Buffered UART State
|
pub(crate) use sealed::State;
|
||||||
pub struct State {
|
pub(crate) mod sealed {
|
||||||
rx_waker: AtomicWaker,
|
use super::*;
|
||||||
rx_buf: RingBuffer,
|
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,
|
impl State {
|
||||||
tx_buf: RingBuffer,
|
/// Create new state
|
||||||
}
|
pub const fn new() -> Self {
|
||||||
|
Self {
|
||||||
impl State {
|
rx_buf: RingBuffer::new(),
|
||||||
/// Create new state
|
tx_buf: RingBuffer::new(),
|
||||||
pub const fn new() -> Self {
|
rx_waker: AtomicWaker::new(),
|
||||||
Self {
|
tx_waker: AtomicWaker::new(),
|
||||||
rx_buf: RingBuffer::new(),
|
}
|
||||||
tx_buf: RingBuffer::new(),
|
|
||||||
rx_waker: AtomicWaker::new(),
|
|
||||||
tx_waker: AtomicWaker::new(),
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user