aboutsummaryrefslogtreecommitdiff
path: root/cyw43/src/lib.rs
diff options
context:
space:
mode:
authorJoost Buijgers <[email protected]>2024-10-11 12:18:04 +0200
committerJoost Buijgers <[email protected]>2024-10-11 12:18:04 +0200
commit350a15a0cd72dc1d8ef65d2c398f279d571f5193 (patch)
tree6672de20e8f10dba5271994d75feda52362da4aa /cyw43/src/lib.rs
parent9555259c57a07338792cfe0fdd363a59616a8062 (diff)
make bluetooth module public
Diffstat (limited to 'cyw43/src/lib.rs')
-rw-r--r--cyw43/src/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/cyw43/src/lib.rs b/cyw43/src/lib.rs
index 6b71c18e6..3cd0e4988 100644
--- a/cyw43/src/lib.rs
+++ b/cyw43/src/lib.rs
@@ -9,7 +9,8 @@
9pub(crate) mod fmt; 9pub(crate) mod fmt;
10 10
11#[cfg(feature = "bluetooth")] 11#[cfg(feature = "bluetooth")]
12mod bluetooth; 12/// Bluetooth module.
13pub mod bluetooth;
13mod bus; 14mod bus;
14mod consts; 15mod consts;
15mod control; 16mod control;