iOSのBLEコントローラアプリ「RCBController」とmbed HRM1017を接続し、RCサーボモータを操作するテストプログラムです。

Dependencies:   BLE_API_Native_IRC Servo mbed

Fork of BLE_RCBController by Junichi Katsu

  • 古いBLEライブラリを使っているのでプラットフォームは”Nordic nRF51822”を選択してください。
  • ライブラリ類はUpdateしないでください。コンパイルエラーになります。

うまく接続できない時は、iPhone/iPadのBluetoothをOFF->ONしてキャッシュをクリアしてみてください。

/media/uploads/robo8080/img_1560.jpg

Committer:
jksoft
Date:
Thu Jul 10 14:21:52 2014 +0000
Revision:
0:8c643bfe55b7
??

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jksoft 0:8c643bfe55b7 1 /* Copyright (c) 2008 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 /** @file
jksoft 0:8c643bfe55b7 13 * @brief Common defines and macros for firmware developed by Nordic Semiconductor.
jksoft 0:8c643bfe55b7 14 */
jksoft 0:8c643bfe55b7 15
jksoft 0:8c643bfe55b7 16 #ifndef NORDIC_COMMON_H__
jksoft 0:8c643bfe55b7 17 #define NORDIC_COMMON_H__
jksoft 0:8c643bfe55b7 18
jksoft 0:8c643bfe55b7 19 #include "nordic_global.h"
jksoft 0:8c643bfe55b7 20
jksoft 0:8c643bfe55b7 21 /** Swaps the upper byte with the lower byte in a 16 bit variable */
jksoft 0:8c643bfe55b7 22 //lint -emacro((572),SWAP) // Suppress warning 572 "Excessive shift value"
jksoft 0:8c643bfe55b7 23 #define SWAP(x) ((((x)&0xFF)<<8)|(((x)>>8)&0xFF))
jksoft 0:8c643bfe55b7 24
jksoft 0:8c643bfe55b7 25 /** The upper 8 bits of a 16 bit value */
jksoft 0:8c643bfe55b7 26 #define MSB(a) (((a) & 0xFF00) >> 8)
jksoft 0:8c643bfe55b7 27 /** The lower 8 bits (of a 16 bit value) */
jksoft 0:8c643bfe55b7 28 #define LSB(a) ((a) & 0xFF)
jksoft 0:8c643bfe55b7 29
jksoft 0:8c643bfe55b7 30 /** Leaves the minimum of the two arguments */
jksoft 0:8c643bfe55b7 31 /*lint -emacro(506, MIN) */ /* Suppress "Constant value Boolean */
jksoft 0:8c643bfe55b7 32 #define MIN(a, b) ((a) < (b) ? (a) : (b))
jksoft 0:8c643bfe55b7 33 /** Leaves the maximum of the two arguments */
jksoft 0:8c643bfe55b7 34 /*lint -emacro(506, MAX) */ /* Suppress "Constant value Boolean */
jksoft 0:8c643bfe55b7 35 #define MAX(a, b) ((a) < (b) ? (b) : (a))
jksoft 0:8c643bfe55b7 36
jksoft 0:8c643bfe55b7 37 #define BIT_0 0x01 /**< The value of bit 0 */
jksoft 0:8c643bfe55b7 38 #define BIT_1 0x02 /**< The value of bit 1 */
jksoft 0:8c643bfe55b7 39 #define BIT_2 0x04 /**< The value of bit 2 */
jksoft 0:8c643bfe55b7 40 #define BIT_3 0x08 /**< The value of bit 3 */
jksoft 0:8c643bfe55b7 41 #define BIT_4 0x10 /**< The value of bit 4 */
jksoft 0:8c643bfe55b7 42 #define BIT_5 0x20 /**< The value of bit 5 */
jksoft 0:8c643bfe55b7 43 #define BIT_6 0x40 /**< The value of bit 6 */
jksoft 0:8c643bfe55b7 44 #define BIT_7 0x80 /**< The value of bit 7 */
jksoft 0:8c643bfe55b7 45 #define BIT_8 0x0100 /**< The value of bit 8 */
jksoft 0:8c643bfe55b7 46 #define BIT_9 0x0200 /**< The value of bit 9 */
jksoft 0:8c643bfe55b7 47 #define BIT_10 0x0400 /**< The value of bit 10 */
jksoft 0:8c643bfe55b7 48 #define BIT_11 0x0800 /**< The value of bit 11 */
jksoft 0:8c643bfe55b7 49 #define BIT_12 0x1000 /**< The value of bit 12 */
jksoft 0:8c643bfe55b7 50 #define BIT_13 0x2000 /**< The value of bit 13 */
jksoft 0:8c643bfe55b7 51 #define BIT_14 0x4000 /**< The value of bit 14 */
jksoft 0:8c643bfe55b7 52 #define BIT_15 0x8000 /**< The value of bit 15 */
jksoft 0:8c643bfe55b7 53 #define BIT_16 0x00010000 /**< The value of bit 16 */
jksoft 0:8c643bfe55b7 54 #define BIT_17 0x00020000 /**< The value of bit 17 */
jksoft 0:8c643bfe55b7 55 #define BIT_18 0x00040000 /**< The value of bit 18 */
jksoft 0:8c643bfe55b7 56 #define BIT_19 0x00080000 /**< The value of bit 19 */
jksoft 0:8c643bfe55b7 57 #define BIT_20 0x00100000 /**< The value of bit 20 */
jksoft 0:8c643bfe55b7 58 #define BIT_21 0x00200000 /**< The value of bit 21 */
jksoft 0:8c643bfe55b7 59 #define BIT_22 0x00400000 /**< The value of bit 22 */
jksoft 0:8c643bfe55b7 60 #define BIT_23 0x00800000 /**< The value of bit 23 */
jksoft 0:8c643bfe55b7 61 #define BIT_24 0x01000000 /**< The value of bit 24 */
jksoft 0:8c643bfe55b7 62 #define BIT_25 0x02000000 /**< The value of bit 25 */
jksoft 0:8c643bfe55b7 63 #define BIT_26 0x04000000 /**< The value of bit 26 */
jksoft 0:8c643bfe55b7 64 #define BIT_27 0x08000000 /**< The value of bit 27 */
jksoft 0:8c643bfe55b7 65 #define BIT_28 0x10000000 /**< The value of bit 28 */
jksoft 0:8c643bfe55b7 66 #define BIT_29 0x20000000 /**< The value of bit 29 */
jksoft 0:8c643bfe55b7 67 #define BIT_30 0x40000000 /**< The value of bit 30 */
jksoft 0:8c643bfe55b7 68 #define BIT_31 0x80000000 /**< The value of bit 31 */
jksoft 0:8c643bfe55b7 69
jksoft 0:8c643bfe55b7 70 #define UNUSED_VARIABLE(X) ((void)(X))
jksoft 0:8c643bfe55b7 71 #define UNUSED_PARAMETER(X) UNUSED_VARIABLE(X)
jksoft 0:8c643bfe55b7 72
jksoft 0:8c643bfe55b7 73 #endif // NORDIC_COMMON_H__