summaryrefslogtreecommitdiff
path: root/examples/src/bin/ble_bas_peripheral.rs
diff options
context:
space:
mode:
authorDario Nieuwenhuis <dirbaio@dirbaio.net>2020-11-09 23:49:07 +0100
committerDario Nieuwenhuis <dirbaio@dirbaio.net>2020-11-09 23:49:07 +0100
commit140bb3946d39aaacc6c0503557ab81c5e0ded85f (patch)
tree9a8cc849da310764fdfe4fda5c6d423b32c1aa5a /examples/src/bin/ble_bas_peripheral.rs
parent79287df811a74ea97b5a7f45e4598fd892c9caea (diff)
downloadnrf-softdevice-140bb3946d39aaacc6c0503557ab81c5e0ded85f.zip
gatt_server: fix macro breaking if missing imports.
Diffstat (limited to 'examples/src/bin/ble_bas_peripheral.rs')
-rw-r--r--examples/src/bin/ble_bas_peripheral.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/src/bin/ble_bas_peripheral.rs b/examples/src/bin/ble_bas_peripheral.rs
index eb755f2..da80644 100644
--- a/examples/src/bin/ble_bas_peripheral.rs
+++ b/examples/src/bin/ble_bas_peripheral.rs
@@ -10,8 +10,7 @@ use core::mem;
use cortex_m_rt::entry;
use defmt::info;
-use nrf_softdevice::ble::gatt_server::{Characteristic, CharacteristicHandles, RegisterError};
-use nrf_softdevice::ble::{gatt_server, peripheral, Connection, Uuid};
+use nrf_softdevice::ble::{gatt_server, peripheral, Connection};
use nrf_softdevice::{raw, RawError, Softdevice};
use embassy::executor::{task, Executor};