テスト用です。

Dependencies:   mbed

Committer:
jksoft
Date:
Tue Oct 11 11:09:42 2016 +0000
Revision:
0:8468a4403fea
SB??ver;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jksoft 0:8468a4403fea 1 /* Copyright (c) 2012 Nordic Semiconductor. All Rights Reserved.
jksoft 0:8468a4403fea 2 *
jksoft 0:8468a4403fea 3 * The information contained herein is property of Nordic Semiconductor ASA.
jksoft 0:8468a4403fea 4 * Terms and conditions of usage are described in detail in NORDIC
jksoft 0:8468a4403fea 5 * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
jksoft 0:8468a4403fea 6 *
jksoft 0:8468a4403fea 7 * Licensees are granted free, non-transferable use of the information. NO
jksoft 0:8468a4403fea 8 * WARRANTY of ANY KIND is provided. This heading must NOT be removed from
jksoft 0:8468a4403fea 9 * the file.
jksoft 0:8468a4403fea 10 *
jksoft 0:8468a4403fea 11 */
jksoft 0:8468a4403fea 12
jksoft 0:8468a4403fea 13 /* Attention!
jksoft 0:8468a4403fea 14 * To maintain compliance with Nordic Semiconductor ASA’s Bluetooth profile
jksoft 0:8468a4403fea 15 * qualification listings, this section of source code must not be modified.
jksoft 0:8468a4403fea 16 */
jksoft 0:8468a4403fea 17
jksoft 0:8468a4403fea 18 #ifndef BLE_SENSOR_LOCATION_H__
jksoft 0:8468a4403fea 19 #define BLE_SENSOR_LOCATION_H__
jksoft 0:8468a4403fea 20
jksoft 0:8468a4403fea 21 typedef enum {
jksoft 0:8468a4403fea 22 BLE_SENSOR_LOCATION_OTHER = 0 , /**<-- Other */
jksoft 0:8468a4403fea 23 BLE_SENSOR_LOCATION_TOP_OF_SHOE = 1 , /**<-- Top of shoe */
jksoft 0:8468a4403fea 24 BLE_SENSOR_LOCATION_IN_SHOE = 2 , /**<-- In shoe */
jksoft 0:8468a4403fea 25 BLE_SENSOR_LOCATION_HIP = 3 , /**<-- Hip */
jksoft 0:8468a4403fea 26 BLE_SENSOR_LOCATION_FRONT_WHEEL = 4 , /**<-- Front Wheel */
jksoft 0:8468a4403fea 27 BLE_SENSOR_LOCATION_LEFT_CRANK = 5 , /**<-- Left Crank */
jksoft 0:8468a4403fea 28 BLE_SENSOR_LOCATION_RIGHT_CRANK = 6 , /**<-- Right Crank */
jksoft 0:8468a4403fea 29 BLE_SENSOR_LOCATION_LEFT_PEDAL = 7 , /**<-- Left Pedal */
jksoft 0:8468a4403fea 30 BLE_SENSOR_LOCATION_RIGHT_PEDAL = 8 , /**<-- Right Pedal */
jksoft 0:8468a4403fea 31 BLE_SENSOR_LOCATION_FRONT_HUB = 9 , /**<-- Front Hub */
jksoft 0:8468a4403fea 32 BLE_SENSOR_LOCATION_REAR_DROPOUT = 10, /**<-- Rear Dropout */
jksoft 0:8468a4403fea 33 BLE_SENSOR_LOCATION_CHAINSTAY = 11, /**<-- Chainstay */
jksoft 0:8468a4403fea 34 BLE_SENSOR_LOCATION_REAR_WHEEL = 12, /**<-- Rear Wheel */
jksoft 0:8468a4403fea 35 BLE_SENSOR_LOCATION_REAR_HUB = 13, /**<-- Rear Hub */
jksoft 0:8468a4403fea 36 }ble_sensor_location_t;
jksoft 0:8468a4403fea 37
jksoft 0:8468a4403fea 38 #define BLE_NB_MAX_SENSOR_LOCATIONS 14
jksoft 0:8468a4403fea 39
jksoft 0:8468a4403fea 40 #endif // BLE_SENSOR_LOCATION_H__