This commit is contained in:
parent
bea5a852a2
commit
246b084429
@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
|
|
||||||
# [unreleased]
|
# [unreleased]
|
||||||
|
|
||||||
|
# [v0.3.0] 2024-30-09
|
||||||
|
|
||||||
## Changed
|
## Changed
|
||||||
|
|
||||||
- Improve and fix SPI abstractions. Add new low level interface. The primary SPI constructor now
|
- Improve and fix SPI abstractions. Add new low level interface. The primary SPI constructor now
|
||||||
|
@ -895,7 +895,7 @@ impl<Uart: Instance> Tx<Uart> {
|
|||||||
///
|
///
|
||||||
/// This does not necesarily mean that the FIFO can process another word because it might be
|
/// This does not necesarily mean that the FIFO can process another word because it might be
|
||||||
/// full.
|
/// full.
|
||||||
/// Use the [Self::read_fifo] function to write a word to the FIFO reliably using the [nb]
|
/// Use the [Self::write_fifo] function to write a word to the FIFO reliably using the [nb]
|
||||||
/// API.
|
/// API.
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pub fn write_fifo_unchecked(&self, data: u32) {
|
pub fn write_fifo_unchecked(&self, data: u32) {
|
||||||
@ -948,7 +948,7 @@ impl<Uart: Instance> embedded_io::Write for Tx<Uart> {
|
|||||||
|
|
||||||
/// Serial receiver, using interrupts to offload reading to the hardware.
|
/// Serial receiver, using interrupts to offload reading to the hardware.
|
||||||
///
|
///
|
||||||
/// You can use [Rx::to_rx_with_irq] to convert a normal [Rx] structure into this structure.
|
/// You can use [Rx::into_rx_with_irq] to convert a normal [Rx] structure into this structure.
|
||||||
/// This structure provides two distinct ways to read the UART RX using interrupts. It should
|
/// This structure provides two distinct ways to read the UART RX using interrupts. It should
|
||||||
/// be noted that the interrupt service routine (ISR) still has to be provided by the user. However,
|
/// be noted that the interrupt service routine (ISR) still has to be provided by the user. However,
|
||||||
/// this structure provides API calls which can be used inside the ISRs to simplify the reading
|
/// this structure provides API calls which can be used inside the ISRs to simplify the reading
|
||||||
|
Loading…
Reference in New Issue
Block a user