From 350a15a0cd72dc1d8ef65d2c398f279d571f5193 Mon Sep 17 00:00:00 2001 From: Joost Buijgers Date: Fri, 11 Oct 2024 12:18:04 +0200 Subject: [PATCH] make bluetooth module public --- cyw43/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cyw43/src/lib.rs b/cyw43/src/lib.rs index 6b71c18e60..3cd0e49887 100644 --- a/cyw43/src/lib.rs +++ b/cyw43/src/lib.rs @@ -9,7 +9,8 @@ pub(crate) mod fmt; #[cfg(feature = "bluetooth")] -mod bluetooth; +/// Bluetooth module. +pub mod bluetooth; mod bus; mod consts; mod control;