12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- extern "C" {
- typedef enum {
- BLE_SENSOR_LOCATION_OTHER = 0 ,
- BLE_SENSOR_LOCATION_TOP_OF_SHOE = 1 ,
- BLE_SENSOR_LOCATION_IN_SHOE = 2 ,
- BLE_SENSOR_LOCATION_HIP = 3 ,
- BLE_SENSOR_LOCATION_FRONT_WHEEL = 4 ,
- BLE_SENSOR_LOCATION_LEFT_CRANK = 5 ,
- BLE_SENSOR_LOCATION_RIGHT_CRANK = 6 ,
- BLE_SENSOR_LOCATION_LEFT_PEDAL = 7 ,
- BLE_SENSOR_LOCATION_RIGHT_PEDAL = 8 ,
- BLE_SENSOR_LOCATION_FRONT_HUB = 9 ,
- BLE_SENSOR_LOCATION_REAR_DROPOUT = 10,
- BLE_SENSOR_LOCATION_CHAINSTAY = 11,
- BLE_SENSOR_LOCATION_REAR_WHEEL = 12,
- BLE_SENSOR_LOCATION_REAR_HUB = 13,
- }ble_sensor_location_t;
- }
|