ble_sensor_location.h 1.7 KB

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