Skip to content

Commit

Permalink
Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmarkov committed Aug 26, 2024
1 parent 1ef5f8d commit 580a5f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/interrupt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/uart.rs
Original file line number Diff line number Diff line change
@@ -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`.
Expand Down

0 comments on commit 580a5f8

Please sign in to comment.