From e3cdd21b41dbe5553fab02f6ef023573f11922c0 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Mon, 20 Dec 2021 23:51:37 +0100 Subject: [PATCH] added link to new example --- src/uart.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/uart.rs b/src/uart.rs index 675e257..93fe712 100644 --- a/src/uart.rs +++ b/src/uart.rs @@ -2,7 +2,8 @@ //! //! ## Examples //! -//! - [UART example](https://egit.irs.uni-stuttgart.de/rust/va108xx-hal/src/branch/main/examples/uart.rs) +//! - [UART simple example](https://egit.irs.uni-stuttgart.de/rust/va108xx-hal/src/branch/main/examples/uart.rs) +//! - [UART with IRQ and RTIC](https://egit.irs.uni-stuttgart.de/rust/va108xx-hal/src/branch/main/examples/uart-irq-rtic.rs) use core::{convert::Infallible, ptr}; use core::{marker::PhantomData, ops::Deref}; use libm::floorf;