Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of nRF51822 by
Diff: nordic/nrf-sdk/ble/ble_central_bondmngr.h
- Revision:
- 0:eff01767de02
- Child:
- 37:c29c330d942c
diff -r 000000000000 -r eff01767de02 nordic/nrf-sdk/ble/ble_central_bondmngr.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/nordic/nrf-sdk/ble/ble_central_bondmngr.h Wed Mar 26 14:38:17 2014 +0000
@@ -0,0 +1,26 @@
+#ifndef __BLE_CENTRAL_BONDMNGR_H_
+#define __BLE_CENTRAL_BONDMNGR_H_
+
+#include "nordic_global.h"
+#include "ble.h"
+#include "ble_gap.h"
+
+#include <stdint.h>
+#include <stdbool.h>
+
+typedef struct
+{
+ ble_gap_sec_params_t * p_sec_params;
+} ble_central_bondmngr_t;
+
+typedef struct
+{
+ ble_gap_sec_params_t * p_sec_params;
+ bool delete_bonds;
+} ble_central_bondmngr_init_t;
+
+uint32_t ble_central_bondmngr_init(ble_central_bondmngr_t * p_bm, ble_central_bondmngr_init_t * p_bm_init);
+void ble_central_bondmngr_on_ble_evt(ble_central_bondmngr_t * p_bm, ble_evt_t * p_ble_evt);
+uint32_t ble_central_bondmngr_store(ble_central_bondmngr_t * p_bm);
+
+#endif
