summaryrefslogtreecommitdiff
path: root/nrf-softdevice/src/ble/gatt_server.rs
diff options
context:
space:
mode:
Diffstat (limited to 'nrf-softdevice/src/ble/gatt_server.rs')
-rw-r--r--nrf-softdevice/src/ble/gatt_server.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/nrf-softdevice/src/ble/gatt_server.rs b/nrf-softdevice/src/ble/gatt_server.rs
index 398f88d..99d22dd 100644
--- a/nrf-softdevice/src/ble/gatt_server.rs
+++ b/nrf-softdevice/src/ble/gatt_server.rs
@@ -182,6 +182,12 @@ where
server.on_write(params.handle, &v).map(|e| f(e));
}
+ raw::BLE_GATTS_EVTS_BLE_GATTS_EVT_SYS_ATTR_MISSING => {
+ info!("initializing gatt sys att");
+ let ret =
+ raw::sd_ble_gatts_sys_attr_set(conn_handle, ::core::ptr::null(), 0, 0);
+ RawError::convert(ret).err();
+ }
_ => {}
}
None