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

Dependencies:   BLE_API_Native_IRC BLE_API mbed

Committer:
jksoft
Date:
Wed Aug 20 13:30:11 2014 +0000
Revision:
2:dd85fdc18224
Parent:
1:48f6e08a3ac2
???

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jksoft 0:8c643bfe55b7 1 /* Copyright (c) 2012 Nordic Semiconductor. All Rights Reserved.
jksoft 0:8c643bfe55b7 2 *
jksoft 0:8c643bfe55b7 3 * The information contained herein is property of Nordic Semiconductor ASA.
jksoft 0:8c643bfe55b7 4 * Terms and conditions of usage are described in detail in NORDIC
jksoft 0:8c643bfe55b7 5 * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
jksoft 0:8c643bfe55b7 6 *
jksoft 0:8c643bfe55b7 7 * Licensees are granted free, non-transferable use of the information. NO
jksoft 0:8c643bfe55b7 8 * WARRANTY of ANY KIND is provided. This heading must NOT be removed from
jksoft 0:8c643bfe55b7 9 * the file.
jksoft 0:8c643bfe55b7 10 *
jksoft 0:8c643bfe55b7 11 */
jksoft 0:8c643bfe55b7 12
jksoft 0:8c643bfe55b7 13 /** @cond To make doxygen skip this file */
jksoft 0:8c643bfe55b7 14
jksoft 0:8c643bfe55b7 15 /** @file
jksoft 0:8c643bfe55b7 16 *
jksoft 0:8c643bfe55b7 17 * @defgroup ble_sdk_app_gls_bondmngr_cfg GLS Bond Manager Configuration
jksoft 0:8c643bfe55b7 18 * @{
jksoft 0:8c643bfe55b7 19 * @ingroup ble_sdk_app_gls
jksoft 0:8c643bfe55b7 20 * @brief Definition of bond manager configurable parameters
jksoft 0:8c643bfe55b7 21 */
jksoft 0:8c643bfe55b7 22
jksoft 0:8c643bfe55b7 23 #ifndef BLE_BONDMNGR_CFG_H__
jksoft 0:8c643bfe55b7 24 #define BLE_BONDMNGR_CFG_H__
jksoft 0:8c643bfe55b7 25
jksoft 0:8c643bfe55b7 26 /**@brief Number of CCCDs used in the GLS application. */
jksoft 0:8c643bfe55b7 27 #define BLE_BONDMNGR_CCCD_COUNT 2
jksoft 0:8c643bfe55b7 28
jksoft 0:8c643bfe55b7 29 /**@brief Maximum number of bonded centrals. */
jksoft 0:8c643bfe55b7 30 #define BLE_BONDMNGR_MAX_BONDED_CENTRALS 7
jksoft 0:8c643bfe55b7 31
jksoft 0:8c643bfe55b7 32 #endif // BLE_BONDMNGR_CFG_H__
jksoft 0:8c643bfe55b7 33
jksoft 0:8c643bfe55b7 34 /** @} */
jksoft 0:8c643bfe55b7 35 /** @endcond */