This commit is contained in:
ivmarkov 2024-08-26 08:14:00 +00:00
parent 1ef5f8de66
commit 580a5f8c9b
2 changed files with 2 additions and 1 deletions

View File

@ -508,6 +508,7 @@ pub mod asynch {
unsafe impl<const N: usize> Sync for IsrReactor<N> {}
/// Single-slot lock-free signaling primitive supporting signalling with a `u32` bit-set.
///
/// A variation of the `Notification` HAL primitive which is however safe to be notified from an ISR context.
///
/// It is useful for sending data between an ISR routine (or a regular task context) and an async task when the

View File

@ -1,6 +1,6 @@
//: QueueHandle_t ! UART peripheral control
//!
//! Controls UART peripherals (UART0, UART1, UART2).
//!
//! Notice that UART0 is typically already used for loading firmware and logging.
//! Therefore use UART1 and UART2 in your application.
//! Any pin can be used for `rx` and `tx`.