aboutsummaryrefslogtreecommitdiff
path: root/embassy-rp/src/lib.rs
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2025-04-07 23:13:35 +0000
committerGitHub <[email protected]>2025-04-07 23:13:35 +0000
commita23e971d313e8098b8d3a13f3ddf7629aa79a98c (patch)
treed45c6783176caa1131fcbb022e62433ed7f73674 /embassy-rp/src/lib.rs
parentdb3179cfb4be8596adbc601b27056bce03781407 (diff)
parent313328c09a52ba6f8f30105a3a9f98a76a5aef69 (diff)
Merge pull request #4017 from shilga/SpinlockMutex
embassy-rp: Spinlock mutex implementation
Diffstat (limited to 'embassy-rp/src/lib.rs')
-rw-r--r--embassy-rp/src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/embassy-rp/src/lib.rs b/embassy-rp/src/lib.rs
index 35099d07b..f549446bc 100644
--- a/embassy-rp/src/lib.rs
+++ b/embassy-rp/src/lib.rs
@@ -41,6 +41,8 @@ pub mod rom_data;
41#[cfg(feature = "rp2040")] 41#[cfg(feature = "rp2040")]
42pub mod rtc; 42pub mod rtc;
43pub mod spi; 43pub mod spi;
44mod spinlock;
45pub mod spinlock_mutex;
44#[cfg(feature = "time-driver")] 46#[cfg(feature = "time-driver")]
45pub mod time_driver; 47pub mod time_driver;
46#[cfg(feature = "_rp235x")] 48#[cfg(feature = "_rp235x")]