aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorUlf Lilleengen <[email protected]>2024-01-12 08:33:35 +0000
committerGitHub <[email protected]>2024-01-12 08:33:35 +0000
commit131ef00658903420fb08e4666c01d93c3b5fd943 (patch)
treeeb2f1d8fa6e5ac1ada73a97007285417195de349 /tests
parente5a51a1ad59cbac83315a9a25c4773ac84eb6819 (diff)
parent7728c95584bb049b64507c458ba47455d4633396 (diff)
Merge pull request #2440 from embassy-rs/remove-git-dep
fix: use released version for stm32wb-hci
Diffstat (limited to 'tests')
-rw-r--r--tests/stm32/src/bin/wpan_ble.rs8
1 files changed, 3 insertions, 5 deletions
diff --git a/tests/stm32/src/bin/wpan_ble.rs b/tests/stm32/src/bin/wpan_ble.rs
index ff838471b..82a540d45 100644
--- a/tests/stm32/src/bin/wpan_ble.rs
+++ b/tests/stm32/src/bin/wpan_ble.rs
@@ -15,11 +15,9 @@ use embassy_stm32::rcc::WPAN_DEFAULT;
15use embassy_stm32_wpan::hci::host::uart::UartHci; 15use embassy_stm32_wpan::hci::host::uart::UartHci;
16use embassy_stm32_wpan::hci::host::{AdvertisingFilterPolicy, EncryptionKey, HostHci, OwnAddressType}; 16use embassy_stm32_wpan::hci::host::{AdvertisingFilterPolicy, EncryptionKey, HostHci, OwnAddressType};
17use embassy_stm32_wpan::hci::types::AdvertisingType; 17use embassy_stm32_wpan::hci::types::AdvertisingType;
18use embassy_stm32_wpan::hci::vendor::stm32wb::command::gap::{ 18use embassy_stm32_wpan::hci::vendor::command::gap::{AdvertisingDataType, DiscoverableParameters, GapCommands, Role};
19 AdvertisingDataType, DiscoverableParameters, GapCommands, Role, 19use embassy_stm32_wpan::hci::vendor::command::gatt::GattCommands;
20}; 20use embassy_stm32_wpan::hci::vendor::command::hal::{ConfigData, HalCommands, PowerLevel};
21use embassy_stm32_wpan::hci::vendor::stm32wb::command::gatt::GattCommands;
22use embassy_stm32_wpan::hci::vendor::stm32wb::command::hal::{ConfigData, HalCommands, PowerLevel};
23use embassy_stm32_wpan::hci::BdAddr; 21use embassy_stm32_wpan::hci::BdAddr;
24use embassy_stm32_wpan::lhci::LhciC1DeviceInformationCcrp; 22use embassy_stm32_wpan::lhci::LhciC1DeviceInformationCcrp;
25use embassy_stm32_wpan::sub::mm; 23use embassy_stm32_wpan::sub::mm;