-
Notifications
You must be signed in to change notification settings - Fork 688
Expand file tree
/
Copy pathgatt_heart_rate_client.c
More file actions
437 lines (393 loc) · 18.2 KB
/
gatt_heart_rate_client.c
File metadata and controls
437 lines (393 loc) · 18.2 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
/*
* Copyright (C) 2018 BlueKitchen GmbH
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the copyright holders nor the names of
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
* 4. Any redistribution, use, or modification is done solely for
* personal benefit and not for any commercial purpose or for
* monetary gain.
*
* THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BLUEKITCHEN
* GMBH OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* Please inquire about commercial licensing options at
*
*/
#define BTSTACK_FILE__ "gatt_heart_rate_client.c"
// *****************************************************************************
/* EXAMPLE_START(gatt_heart_rate_client): GATT Heart Rate Sensor Client
*
* @text Connects for Heart Rate Sensor and reports measurements.
*/
// *****************************************************************************
#include <inttypes.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "btstack.h"
// prototypes
static void handle_gatt_client_event(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size);
static void gatt_heart_rate_client_request_to_send(void);
typedef enum {
APP_STATE_IDLE,
APP_STATE_W4_SCAN_RESULT,
APP_STATE_W4_CONNECT,
APP_STATE_W2_QUERY_SERVICE,
APP_STATE_W4_SERVICE_RESULT,
APP_STATE_W2_QUERY_HEART_RATE_MEASUREMENT_CHARACTERISTIC,
APP_STATE_W4_HEART_RATE_MEASUREMENT_CHARACTERISTIC,
APP_STATE_W2_ENABLE_NOTIFICATIONS,
APP_STATE_W4_ENABLE_NOTIFICATIONS_COMPLETE,
APP_STATE_W2_QUERY_SENSOR_LOCATION_CHARACTERISTIC,
APP_STATE_W4_SENSOR_LOCATION_CHARACTERISTIC,
APP_STATE_W2_QUERY_SENSOR_LOCATION,
APP_STATE_W4_SENSOR_LOCATION,
APP_STATE_CONNECTED
} app_state_t;
static const char * sensor_contact_string[] = {
"not supported",
"not supported",
"no/poor contact",
"good contact"
};
static bd_addr_t cmdline_addr;
static int cmdline_addr_found = 0;
// addr and type of device with correct name
static bd_addr_t le_streamer_addr;
static bd_addr_type_t le_streamer_addr_type;
static hci_con_handle_t connection_handle;
static btstack_context_callback_registration_t heart_rate_service_gatt_query_request;
static gatt_client_service_t heart_rate_service;
static gatt_client_characteristic_t body_sensor_location_characteristic;
static gatt_client_characteristic_t heart_rate_measurement_characteristic;
static uint8_t body_sensor_location;
static gatt_client_notification_t notification_listener;
static int listener_registered;
static app_state_t state = APP_STATE_IDLE;
static btstack_packet_callback_registration_t hci_event_callback_registration;
// returns 1 if name is found in advertisement
static int advertisement_report_contains_uuid16(uint16_t uuid16, uint8_t * advertisement_report){
// get advertisement from report event
const uint8_t * adv_data = gap_event_advertising_report_get_data(advertisement_report);
uint8_t adv_len = gap_event_advertising_report_get_data_length(advertisement_report);
// iterate over advertisement data
ad_context_t context;
int found = 0;
for (ad_iterator_init(&context, adv_len, adv_data) ; ad_iterator_has_more(&context) ; ad_iterator_next(&context)){
uint8_t data_type = ad_iterator_get_data_type(&context);
uint8_t data_size = ad_iterator_get_data_len(&context);
const uint8_t * data = ad_iterator_get_data(&context);
int i;
switch (data_type){
case BLUETOOTH_DATA_TYPE_INCOMPLETE_LIST_OF_16_BIT_SERVICE_CLASS_UUIDS:
case BLUETOOTH_DATA_TYPE_COMPLETE_LIST_OF_16_BIT_SERVICE_CLASS_UUIDS:
// compare common prefix
for (i=0; i<data_size;i+=2){
if (little_endian_read_16(data, i) == uuid16) {
found = 1;
break;
}
}
break;
default:
break;
}
}
return found;
}
static void handle_gatt_client_event(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){
UNUSED(packet_type);
UNUSED(channel);
UNUSED(size);
uint16_t heart_rate;
uint8_t sensor_contact;
uint8_t att_status;
switch(state){
case APP_STATE_W4_SERVICE_RESULT:
switch(hci_event_packet_get_type(packet)){
case GATT_EVENT_SERVICE_QUERY_RESULT:
// store service (we expect only one)
gatt_event_service_query_result_get_service(packet, &heart_rate_service);
break;
case GATT_EVENT_QUERY_COMPLETE:
att_status = gatt_event_query_complete_get_att_status(packet);
if (att_status != ATT_ERROR_SUCCESS){
printf("SERVICE_QUERY_RESULT - ATT Error 0x%02x.\n", att_status);
gap_disconnect(connection_handle);
break;
}
state = APP_STATE_W2_QUERY_HEART_RATE_MEASUREMENT_CHARACTERISTIC;
gatt_heart_rate_client_request_to_send();
break;
default:
break;
}
break;
case APP_STATE_W4_HEART_RATE_MEASUREMENT_CHARACTERISTIC:
switch(hci_event_packet_get_type(packet)){
case GATT_EVENT_CHARACTERISTIC_QUERY_RESULT:
gatt_event_characteristic_query_result_get_characteristic(packet, &heart_rate_measurement_characteristic);
break;
case GATT_EVENT_QUERY_COMPLETE:
att_status = gatt_event_query_complete_get_att_status(packet);
if (att_status != ATT_ERROR_SUCCESS){
printf("CHARACTERISTIC_QUERY_RESULT - ATT Error 0x%02x.\n", att_status);
gap_disconnect(connection_handle);
break;
}
// register handler for notifications
listener_registered = 1;
gatt_client_listen_for_characteristic_value_updates(¬ification_listener, handle_gatt_client_event, connection_handle, &heart_rate_measurement_characteristic);
// enable notifications
printf("Enable Notify on Heart Rate Measurements characteristic.\n");
state = APP_STATE_W2_ENABLE_NOTIFICATIONS;
gatt_heart_rate_client_request_to_send();
break;
default:
break;
}
break;
case APP_STATE_W4_ENABLE_NOTIFICATIONS_COMPLETE:
switch(hci_event_packet_get_type(packet)){
case GATT_EVENT_QUERY_COMPLETE:
printf("Notifications enabled, ATT status 0x%02x\n", gatt_event_query_complete_get_att_status(packet));
state = APP_STATE_W2_QUERY_SENSOR_LOCATION_CHARACTERISTIC;
gatt_heart_rate_client_request_to_send();
break;
default:
break;
}
break;
case APP_STATE_W4_SENSOR_LOCATION_CHARACTERISTIC:
switch(hci_event_packet_get_type(packet)){
case GATT_EVENT_CHARACTERISTIC_QUERY_RESULT:
gatt_event_characteristic_query_result_get_characteristic(packet, &body_sensor_location_characteristic);
break;
case GATT_EVENT_QUERY_COMPLETE:
if (gatt_event_query_complete_get_att_status(packet) != ATT_ERROR_SUCCESS){
printf("CHARACTERISTIC_QUERY_RESULT - ATT Error 0x%02x.\n", packet[4]);
state = APP_STATE_CONNECTED;
break;
}
if (body_sensor_location_characteristic.value_handle == 0){
printf("Sensor Location characteristic not available.\n");
state = APP_STATE_CONNECTED;
break;
}
state = APP_STATE_W2_QUERY_SENSOR_LOCATION;
gatt_heart_rate_client_request_to_send();
break;
default:
break;
}
break;
case APP_STATE_W4_SENSOR_LOCATION:
switch(hci_event_packet_get_type(packet)){
case GATT_EVENT_CHARACTERISTIC_VALUE_QUERY_RESULT:
body_sensor_location = gatt_event_characteristic_value_query_result_get_value(packet)[0];
printf("Sensor Location: %u\n", body_sensor_location);
break;
case GATT_EVENT_QUERY_COMPLETE:
state = APP_STATE_CONNECTED;
break;
default:
break;
}
break;
case APP_STATE_CONNECTED:
switch(hci_event_packet_get_type(packet)){
case GATT_EVENT_NOTIFICATION:
if (gatt_event_notification_get_value(packet)[0] & 1){
heart_rate = little_endian_read_16(gatt_event_notification_get_value(packet), 1);
} else {
heart_rate = gatt_event_notification_get_value(packet)[1];
}
sensor_contact = (gatt_event_notification_get_value(packet)[0] >> 1) & 3;
printf("Heart Rate: %3u, Sensor Contact: %s\n", heart_rate, sensor_contact_string[sensor_contact]);
break;
case GATT_EVENT_QUERY_COMPLETE:
break;
case GATT_EVENT_CAN_WRITE_WITHOUT_RESPONSE:
break;
default:
break;
}
break;
default:
break;
}
}
// Either connect to remote specified on command line or start scan for device with Hear Rate Service in advertisement
static void gatt_heart_rate_client_start(void){
if (cmdline_addr_found){
printf("Connect to %s\n", bd_addr_to_str(cmdline_addr));
state = APP_STATE_W4_CONNECT;
gap_connect(cmdline_addr, 0);
} else {
printf("Start scanning!\n");
state = APP_STATE_W4_SCAN_RESULT;
gap_set_scan_parameters(0,0x0030, 0x0030);
gap_start_scan();
}
}
static void gatt_heart_rate_client_send_next_query(void * context){
UNUSED(context);
switch (state){
case APP_STATE_W2_QUERY_SERVICE:
state = APP_STATE_W4_SERVICE_RESULT;
printf("Search for Heart Rate MService.\n");
gatt_client_discover_primary_services_by_uuid16(handle_gatt_client_event, connection_handle, ORG_BLUETOOTH_SERVICE_HEART_RATE);
break;
case APP_STATE_W2_QUERY_HEART_RATE_MEASUREMENT_CHARACTERISTIC:
state = APP_STATE_W4_HEART_RATE_MEASUREMENT_CHARACTERISTIC;
printf("Search for Heart Rate Measurement characteristic.\n");
gatt_client_discover_characteristics_for_service_by_uuid16(handle_gatt_client_event, connection_handle, &heart_rate_service, ORG_BLUETOOTH_CHARACTERISTIC_HEART_RATE_MEASUREMENT);
break;
case APP_STATE_W2_ENABLE_NOTIFICATIONS:
printf("Enable Notify on Heart Rate Measurements characteristic.\n");
state = APP_STATE_W4_ENABLE_NOTIFICATIONS_COMPLETE;
gatt_client_write_client_characteristic_configuration(handle_gatt_client_event, connection_handle,
&heart_rate_measurement_characteristic, GATT_CLIENT_CHARACTERISTICS_CONFIGURATION_NOTIFICATION);
break;
case APP_STATE_W2_QUERY_SENSOR_LOCATION_CHARACTERISTIC:
state = APP_STATE_W4_SENSOR_LOCATION_CHARACTERISTIC;
printf("Search for Sensor Location characteristic.\n");
gatt_client_discover_characteristics_for_service_by_uuid16(handle_gatt_client_event, connection_handle, &heart_rate_service, ORG_BLUETOOTH_CHARACTERISTIC_BODY_SENSOR_LOCATION);
break;
case APP_STATE_W2_QUERY_SENSOR_LOCATION:
printf("Read Body Sensor Location.\n");
state = APP_STATE_W4_SENSOR_LOCATION;
gatt_client_read_value_of_characteristic(handle_gatt_client_event, connection_handle, &body_sensor_location_characteristic);
break;
default:
btstack_assert(false);
break;
}
}
static void gatt_heart_rate_client_request_to_send(void){
heart_rate_service_gatt_query_request.callback = &gatt_heart_rate_client_send_next_query;
gatt_client_request_to_send_gatt_query(&heart_rate_service_gatt_query_request, connection_handle);
}
static void hci_event_handler(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){
UNUSED(channel);
UNUSED(size);
if (packet_type != HCI_EVENT_PACKET) return;
uint16_t conn_interval;
uint8_t event = hci_event_packet_get_type(packet);
switch (event) {
case BTSTACK_EVENT_STATE:
// BTstack activated, get started
if (btstack_event_state_get_state(packet) == HCI_STATE_WORKING) {
gatt_heart_rate_client_start();
}
break;
case GAP_EVENT_ADVERTISING_REPORT:
if (state != APP_STATE_W4_SCAN_RESULT) return;
// check name in advertisement
if (!advertisement_report_contains_uuid16(ORG_BLUETOOTH_SERVICE_HEART_RATE, packet)) return;
// store address and type
gap_event_advertising_report_get_address(packet, le_streamer_addr);
le_streamer_addr_type = gap_event_advertising_report_get_address_type(packet);
// stop scanning, and connect to the device
state = APP_STATE_W4_CONNECT;
gap_stop_scan();
printf("Stop scan. Connect to device with addr %s.\n", bd_addr_to_str(le_streamer_addr));
gap_connect(le_streamer_addr,le_streamer_addr_type);
break;
case HCI_EVENT_META_GAP:
// wait for connection complete
if (hci_event_gap_meta_get_subevent_code(packet) != GAP_SUBEVENT_LE_CONNECTION_COMPLETE) break;
if (state != APP_STATE_W4_CONNECT) return;
connection_handle = gap_subevent_le_connection_complete_get_connection_handle(packet);
// print connection parameters (without using float operations)
conn_interval = gap_subevent_le_connection_complete_get_conn_interval(packet);
printf("Connection Interval: %u.%02u ms\n", conn_interval * 125 / 100, 25 * (conn_interval & 3));
printf("Connection Latency: %u\n", gap_subevent_le_connection_complete_get_conn_latency(packet));
// initialize gatt client context with handle, and add it to the list of active clients
// query primary services
printf("Search for Heart Rate service.\n");
state = APP_STATE_W2_QUERY_SERVICE;
gatt_heart_rate_client_request_to_send();
break;
case HCI_EVENT_DISCONNECTION_COMPLETE:
// unregister listener
connection_handle = HCI_CON_HANDLE_INVALID;
if (listener_registered){
listener_registered = 0;
gatt_client_stop_listening_for_characteristic_value_updates(¬ification_listener);
}
if (cmdline_addr_found){
printf("Disconnected %s\n", bd_addr_to_str(cmdline_addr));
return;
}
printf("Disconnected %s\n", bd_addr_to_str(le_streamer_addr));
gatt_heart_rate_client_start();
break;
default:
break;
}
}
#ifdef HAVE_BTSTACK_STDIN
static void usage(const char *name){
fprintf(stderr, "Usage: %s [-a|--address aa:bb:cc:dd:ee:ff]\n", name);
fprintf(stderr, "If no argument is provided, GATT Heart Rate Client will start scanning and connect to a device that advertises the heart rate UUID.\n");
fprintf(stderr, "To connect to a specific device use argument [-a].\n\n");
}
#endif
int btstack_main(int argc, const char * argv[]);
int btstack_main(int argc, const char * argv[]){
#ifdef HAVE_BTSTACK_STDIN
int arg;
cmdline_addr_found = 0;
for (arg = 1; arg < argc; arg++) {
if(!strcmp(argv[arg], "-a") || !strcmp(argv[arg], "--address")){
if (arg + 1 < argc) {
arg++;
cmdline_addr_found = sscanf_bd_addr(argv[arg], cmdline_addr);
}
if (!cmdline_addr_found) {
usage(argv[0]);
return 1;
}
}
}
if (!cmdline_addr_found) {
fprintf(stderr, "No specific address specified or found; start scanning for heart rate UUID advertiser.\n");
}
#else
(void)argc;
(void)argv;
#endif
l2cap_init();
gatt_client_init();
sm_init();
sm_set_io_capabilities(IO_CAPABILITY_NO_INPUT_NO_OUTPUT);
hci_event_callback_registration.callback = &hci_event_handler;
hci_add_event_handler(&hci_event_callback_registration);
// turn on!
hci_power_control(HCI_POWER_ON);
return 0;
}
/* EXAMPLE_END */