From a8617429e4c3177a3e7c31b20ee36a2dfe6b6430 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1niel=20Buga?= Date: Mon, 16 Dec 2024 19:00:01 +0100 Subject: [PATCH] Add note --- embassy-time-driver/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/embassy-time-driver/src/lib.rs b/embassy-time-driver/src/lib.rs index c776fbdf8..9f2795a01 100644 --- a/embassy-time-driver/src/lib.rs +++ b/embassy-time-driver/src/lib.rs @@ -46,6 +46,9 @@ //! //! Then, you'll need to adapt the `schedule_wake` method to use this queue. //! +//! Note that if you are using multiple queues, you will need to ensure that a single timer +//! queue item is only ever enqueued into a single queue at a time. +//! //! ```ignore //! use core::cell::RefCell; //! use core::task::Waker;