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

Dependencies:   BLE_API mbed

Fork of BLE_RCBController by Junichi Katsu

Committer:
jksoft
Date:
Wed Aug 20 13:41:01 2014 +0000
Revision:
4:ebda47d22091
Parent:
nRF51822/nordic/nrf-sdk/s110/nrf_error_sdm.h@1:48f6e08a3ac2
?????????

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jksoft 0:8c643bfe55b7 1 /*
jksoft 0:8c643bfe55b7 2 * Copyright (c) 2012 Nordic Semiconductor. All Rights Reserved.
jksoft 0:8c643bfe55b7 3 *
jksoft 0:8c643bfe55b7 4 * The information contained herein is confidential property of Nordic Semiconductor. The use,
jksoft 0:8c643bfe55b7 5 * copying, transfer or disclosure of such information is prohibited except by express written
jksoft 0:8c643bfe55b7 6 * agreement with Nordic Semiconductor.
jksoft 0:8c643bfe55b7 7 *
jksoft 0:8c643bfe55b7 8 */
jksoft 0:8c643bfe55b7 9 /**
jksoft 0:8c643bfe55b7 10 @addtogroup nrf_sdm_api
jksoft 0:8c643bfe55b7 11 @{
jksoft 0:8c643bfe55b7 12 @defgroup nrf_sdm_error SoftDevice Manager Error Codes
jksoft 0:8c643bfe55b7 13 @{
jksoft 0:8c643bfe55b7 14
jksoft 0:8c643bfe55b7 15 @brief Error definitions for the SDM API
jksoft 0:8c643bfe55b7 16 */
jksoft 0:8c643bfe55b7 17
jksoft 0:8c643bfe55b7 18 /* Header guard */
jksoft 0:8c643bfe55b7 19 #ifndef NRF_ERROR_SDM_H__
jksoft 0:8c643bfe55b7 20 #define NRF_ERROR_SDM_H__
jksoft 0:8c643bfe55b7 21
jksoft 0:8c643bfe55b7 22 #include "nrf_error.h"
jksoft 0:8c643bfe55b7 23
jksoft 0:8c643bfe55b7 24 #define NRF_ERROR_SDM_LFCLK_SOURCE_UNKNOWN (NRF_ERROR_SDM_BASE_NUM + 0) ///< Unknown lfclk source
jksoft 0:8c643bfe55b7 25 #define NRF_ERROR_SDM_INCORRECT_INTERRUPT_CONFIGURATION (NRF_ERROR_SDM_BASE_NUM + 1) ///< Incorrect interrupt configuration (can be caused by using illegal priority levels, or having enabled SoftDevice interrupts)
jksoft 0:8c643bfe55b7 26 #define NRF_ERROR_SDM_INCORRECT_CLENR0 (NRF_ERROR_SDM_BASE_NUM + 2) ///< Incorrect CLENR0 (can be caused by erronous SoftDevice flashing)
jksoft 0:8c643bfe55b7 27
jksoft 0:8c643bfe55b7 28 #endif // NRF_ERROR_SDM_H__
jksoft 0:8c643bfe55b7 29
jksoft 0:8c643bfe55b7 30 /**
jksoft 0:8c643bfe55b7 31 @}
jksoft 0:8c643bfe55b7 32 @}
jksoft 0:8c643bfe55b7 33 */