iOSのBLEコントローラアプリ「RCBController」と接続し、コントローラの操作を取得するサンプルプログラムです。 mbed HRM1017で動作を確認しています。 2014.08.20時点でのBLEライブラリに対応しました。

Dependencies:   BLE_API mbed

Fork of BLE_RCBController by Junichi Katsu

HRM1017/nordic/nrf-sdk/ble/ble_central_bondmngr.h

Committer:
jksoft
Date:
2014-08-20
Revision:
4:ebda47d22091
Parent:
nRF51822/nordic/nrf-sdk/ble/ble_central_bondmngr.h@ 1:48f6e08a3ac2

File content as of revision 4:ebda47d22091:

#ifndef __BLE_CENTRAL_BONDMNGR_H_
#define __BLE_CENTRAL_BONDMNGR_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