summaryrefslogtreecommitdiff
path: root/examples/src/bin/ble_l2cap_peripheral.rs
diff options
context:
space:
mode:
authoralexmoon <alex.r.moon@gmail.com>2022-04-14 15:20:25 -0400
committeralexmoon <alex.r.moon@gmail.com>2022-07-12 14:34:16 -0400
commit5de2bab964549cd481062d3590f1d0c930c4f2f0 (patch)
treee14c6bdef1650adcf8adeba9053d0183423bae2f /examples/src/bin/ble_l2cap_peripheral.rs
parent96dbdc838ac2d2a0997eebeda77cead2154d5d22 (diff)
downloadnrf-softdevice-5de2bab964549cd481062d3590f1d0c930c4f2f0.zip
Make Softdevice::enable return an exclusive reference
Diffstat (limited to 'examples/src/bin/ble_l2cap_peripheral.rs')
-rw-r--r--examples/src/bin/ble_l2cap_peripheral.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/src/bin/ble_l2cap_peripheral.rs b/examples/src/bin/ble_l2cap_peripheral.rs
index eccd555..23ef03e 100644
--- a/examples/src/bin/ble_l2cap_peripheral.rs
+++ b/examples/src/bin/ble_l2cap_peripheral.rs
@@ -147,7 +147,7 @@ fn main() -> ! {
unwrap!(RawError::convert(unsafe { raw::sd_clock_hfclk_request() }));
let executor = EXECUTOR.put(Executor::new());
- executor.run(|spawner| {
+ executor.run(move |spawner| {
unwrap!(spawner.spawn(softdevice_task(sd)));
unwrap!(spawner.spawn(bluetooth_task(sd)));
});