summaryrefslogtreecommitdiff
path: root/examples/src/bin/ble_bas_peripheral.rs
diff options
context:
space:
mode:
authoralexmoon <alex.r.moon@gmail.com>2022-08-03 19:57:00 -0600
committerGitHub <noreply@github.com>2022-08-03 19:57:00 -0600
commitab0ad770c729b4f034bf0a085b50347a3e6b2ea9 (patch)
treede4346b0a4292773a0aff19256d6e11c69045056 /examples/src/bin/ble_bas_peripheral.rs
parent068536b616ef3790d8758b164f2fc3803c89fc26 (diff)
parentefa5e46b917bf750665a12711bd0e8f18c412cab (diff)
downloadnrf-softdevice-ab0ad770c729b4f034bf0a085b50347a3e6b2ea9.zip
Merge pull request #128 from embassy-rs/update-embassy
Update Embassy (for the executor/util crate split)
Diffstat (limited to 'examples/src/bin/ble_bas_peripheral.rs')
-rw-r--r--examples/src/bin/ble_bas_peripheral.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/src/bin/ble_bas_peripheral.rs b/examples/src/bin/ble_bas_peripheral.rs
index d62a111..03fc603 100644
--- a/examples/src/bin/ble_bas_peripheral.rs
+++ b/examples/src/bin/ble_bas_peripheral.rs
@@ -9,14 +9,14 @@ use core::mem;
use cortex_m_rt::entry;
use defmt::{info, *};
-use embassy::executor::Executor;
-use embassy::util::Forever;
+use embassy_executor::executor::Executor;
+use embassy_util::Forever;
use nrf_softdevice::ble::{gatt_server, peripheral};
use nrf_softdevice::{raw, Softdevice};
static EXECUTOR: Forever<Executor> = Forever::new();
-#[embassy::task]
+#[embassy_executor::task]
async fn softdevice_task(sd: &'static Softdevice) {
sd.run().await;
}
@@ -39,7 +39,7 @@ struct Server {
foo: FooService,
}
-#[embassy::task]
+#[embassy_executor::task]
async fn bluetooth_task(sd: &'static Softdevice, server: Server) {
#[rustfmt::skip]
let adv_data = &[