Select one of the symbols to view example projects that use it.
 
Outline
#define H_BLECSC_SENSOR_
#include "modlog/modlog.h"
#include "nimble/ble.h"
#define GATT_CSC_UUID
#define GATT_CSC_MEASUREMENT_UUID
#define GATT_CSC_FEATURE_UUID
#define GATT_SENSOR_LOCATION_UUID
#define GATT_SC_CONTROL_POINT_UUID
#define GATT_DEVICE_INFO_UUID
#define GATT_MANUFACTURER_NAME_UUID
#define GATT_MODEL_NUMBER_UUID
#define CSC_MEASUREMENT_WHEEL_REV_PRESENT
#define CSC_MEASUREMENT_CRANK_REV_PRESENT
#define CSC_FEATURE_WHEEL_REV_DATA
#define CSC_FEATURE_CRANK_REV_DATA
#define CSC_FEATURE_MULTIPLE_SENSOR_LOC
#define SENSOR_LOCATION_OTHER
#define SENSOR_LOCATION_TOP_OF_SHOE
#define SENSOR_LOCATION_IN_SHOE
#define SENSOR_LOCATION_HIP
#define SENSOR_LOCATION_FRONT_WHEEL
#define SENSOR_LOCATION_LEFT_CRANK
#define SENSOR_LOCATION_RIGHT_CRANK
#define SENSOR_LOCATION_LEFT_PEDAL
#define SENSOR_LOCATION_RIGHT_PEDAL
#define SENSOR_LOCATION_FROT_HUB
#define SENSOR_LOCATION_REAR_DROPOUT
#define SENSOR_LOCATION_CHAINSTAY
#define SENSOR_LOCATION_REAR_WHEEL
#define SENSOR_LOCATION_REAR_HUB
#define SENSOR_LOCATION_CHEST
#define SENSOR_LOCATION_SPIDER
#define SENSOR_LOCATION_CHAIN_RING
#define SC_CP_OP_SET_CUMULATIVE_VALUE
#define SC_CP_OP_START_SENSOR_CALIBRATION
#define SC_CP_OP_UPDATE_SENSOR_LOCATION
#define SC_CP_OP_REQ_SUPPORTED_SENSOR_LOCATIONS
#define SC_CP_OP_RESPONSE
#define SC_CP_RESPONSE_SUCCESS
#define SC_CP_RESPONSE_OP_NOT_SUPPORTED
#define SC_CP_RESPONSE_INVALID_PARAM
#define SC_CP_RESPONSE_OP_FAILED
ble_csc_measurement_state
csc_measurement_handle;
csc_control_point_handle;
gatt_svr_init(struct ble_csc_measurement_state *);
gatt_svr_chr_notify_csc_measurement(uint16_t);
gatt_svr_set_cp_indicate(uint8_t);
Files
loading...
SourceVuESP-IDF Framework and Examplesblecsc samplemain/blecsc_sens.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. *//* ... */ #ifndef H_BLECSC_SENSOR_ #define H_BLECSC_SENSOR_ #include "modlog/modlog.h" #include "nimble/ble.h" #ifdef __cplusplus extern "C" { #endif /* Cycling Speed and Cadence configuration */ #define GATT_CSC_UUID 0x1816 #define GATT_CSC_MEASUREMENT_UUID 0x2A5B #define GATT_CSC_FEATURE_UUID 0x2A5C #define GATT_SENSOR_LOCATION_UUID 0x2A5D #define GATT_SC_CONTROL_POINT_UUID 0x2A55 /* Device Information configuration */ #define GATT_DEVICE_INFO_UUID 0x180A #define GATT_MANUFACTURER_NAME_UUID 0x2A29 #define GATT_MODEL_NUMBER_UUID 0x2A24 /*CSC Measurement flags*/ #define CSC_MEASUREMENT_WHEEL_REV_PRESENT 0x01 #define CSC_MEASUREMENT_CRANK_REV_PRESENT 0x02 /* CSC feature flags */ #define CSC_FEATURE_WHEEL_REV_DATA 0x01 #define CSC_FEATURE_CRANK_REV_DATA 0x02 #define CSC_FEATURE_MULTIPLE_SENSOR_LOC 0x04 /* Sensor location enum */ #define SENSOR_LOCATION_OTHER 0 #define SENSOR_LOCATION_TOP_OF_SHOE 1 #define SENSOR_LOCATION_IN_SHOE 2 #define SENSOR_LOCATION_HIP 3 #define SENSOR_LOCATION_FRONT_WHEEL 4 #define SENSOR_LOCATION_LEFT_CRANK 5 #define SENSOR_LOCATION_RIGHT_CRANK 6 #define SENSOR_LOCATION_LEFT_PEDAL 7 #define SENSOR_LOCATION_RIGHT_PEDAL 8 #define SENSOR_LOCATION_FROT_HUB 9 #define SENSOR_LOCATION_REAR_DROPOUT 10 #define SENSOR_LOCATION_CHAINSTAY 11 #define SENSOR_LOCATION_REAR_WHEEL 12 #define SENSOR_LOCATION_REAR_HUB 13 #define SENSOR_LOCATION_CHEST 14 #define SENSOR_LOCATION_SPIDER 15 #define SENSOR_LOCATION_CHAIN_RING 16 /* SC Control Point op codes */ #define SC_CP_OP_SET_CUMULATIVE_VALUE 1 #define SC_CP_OP_START_SENSOR_CALIBRATION 2 #define SC_CP_OP_UPDATE_SENSOR_LOCATION 3 #define SC_CP_OP_REQ_SUPPORTED_SENSOR_LOCATIONS 4 #define SC_CP_OP_RESPONSE 16 /*SC Control Point response values */ #define SC_CP_RESPONSE_SUCCESS 1 #define SC_CP_RESPONSE_OP_NOT_SUPPORTED 2 #define SC_CP_RESPONSE_INVALID_PARAM 3 #define SC_CP_RESPONSE_OP_FAILED 4 /* CSC simulation configuration */ #define CSC_FEATURES (CSC_FEATURE_WHEEL_REV_DATA | \ CSC_FEATURE_CRANK_REV_DATA |\ CSC_FEATURE_MULTIPLE_SENSOR_LOC)... 40 defines struct ble_csc_measurement_state { uint32_t cumulative_wheel_rev; uint16_t last_wheel_evt_time; uint16_t cumulative_crank_rev; uint16_t last_crank_evt_time; }{ ... }; extern uint16_t csc_measurement_handle; extern uint16_t csc_control_point_handle; int gatt_svr_init(struct ble_csc_measurement_state * csc_measurement_state); int gatt_svr_chr_notify_csc_measurement(uint16_t conn_handle); void gatt_svr_set_cp_indicate(uint8_t indication_status); #ifdef __cplusplus }{...} #endif /* ... */ #endif
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.