Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions examples/apps/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,8 @@ bt-hci = { version = "0.6" }
embassy-futures = "0.1.1"
embassy-sync = { version = "0.7" }
embassy-time = "0.5"
#embedded-hal = "1.0"
embedded-hal-async = "1.0"
static_cell = "2"
#embedded-io = "0.6"
heapless = "0.9"
rand_core = { version = "0.6", default-features = false }

Expand All @@ -30,8 +28,6 @@ defmt = [
"dep:defmt",
"trouble-host/defmt",
"bt-hci/defmt",
#"embedded-io/defmt-03",
#"embedded-hal/defmt-03"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These were meant to be fully removed in a previous PR. Using this opportunity to clean up.

]
log = [
"dep:log",
Expand Down
2 changes: 2 additions & 0 deletions examples/apps/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ pub(crate) mod fmt;
pub mod ble_advertise;
pub mod ble_advertise_multiple;
pub mod ble_bas_central;
#[cfg(feature = "security")]
pub mod ble_bas_central_sec;
pub mod ble_bas_peripheral;
#[cfg(feature = "security")]
pub mod ble_bas_peripheral_sec;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also these are #unrelated. Noticed that the _sec modules were not conditional, but they really should be. Consider this also a cleanup?

pub mod ble_beacon;
pub mod ble_l2cap_central;
Expand Down
Loading