blob: 86991b1d9a4774b56a85a1e319ab20675aa76579 [file] [log] [blame]
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -08001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17
18#ifndef ANDROID_INCLUDE_BT_GATT_CLIENT_H
19#define ANDROID_INCLUDE_BT_GATT_CLIENT_H
20
21#include <stdint.h>
Jakub Pawlowski620fd712016-05-27 16:36:24 -070022#include <vector>
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -080023#include "bt_gatt_types.h"
Satya Callojia8b49d32015-02-10 09:20:07 -080024#include "bt_common_types.h"
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -080025
Jakub Pawlowski620fd712016-05-27 16:36:24 -070026using std::vector;
27
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -080028__BEGIN_DECLS
29
30/**
31 * Buffer sizes for maximum attribute length and maximum read/write
32 * operation buffer size.
33 */
34#define BTGATT_MAX_ATTR_LEN 600
35
36/** Buffer type for unformatted reads/writes */
37typedef struct
38{
39 uint8_t value[BTGATT_MAX_ATTR_LEN];
40 uint16_t len;
41} btgatt_unformatted_value_t;
42
43/** Parameters for GATT read operations */
44typedef struct
45{
Jakub Pawlowski1d02bde2016-03-17 15:57:03 -070046 uint16_t handle;
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -080047 btgatt_unformatted_value_t value;
48 uint16_t value_type;
49 uint8_t status;
50} btgatt_read_params_t;
51
52/** Parameters for GATT write operations */
53typedef struct
54{
55 btgatt_srvc_id_t srvc_id;
Andre Eisenbach02223d12013-07-09 00:02:48 -070056 btgatt_gatt_id_t char_id;
57 btgatt_gatt_id_t descr_id;
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -080058 uint8_t status;
59} btgatt_write_params_t;
60
61/** Attribute change notification parameters */
62typedef struct
63{
64 uint8_t value[BTGATT_MAX_ATTR_LEN];
65 bt_bdaddr_t bda;
Jakub Pawlowski1d02bde2016-03-17 15:57:03 -070066 uint16_t handle;
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -080067 uint16_t len;
68 uint8_t is_notify;
69} btgatt_notify_params_t;
70
71typedef struct
72{
Satya Callojia8b49d32015-02-10 09:20:07 -080073 uint8_t client_if;
74 uint8_t action;
75 uint8_t filt_index;
76 uint16_t feat_seln;
77 uint16_t list_logic_type;
78 uint8_t filt_logic_type;
79 uint8_t rssi_high_thres;
80 uint8_t rssi_low_thres;
81 uint8_t dely_mode;
82 uint16_t found_timeout;
83 uint16_t lost_timeout;
84 uint8_t found_timeout_cnt;
85 uint16_t num_of_tracking_entries;
86} btgatt_filt_param_setup_t;
87
88typedef struct
89{
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -080090 bt_bdaddr_t *bda1;
91 bt_uuid_t *uuid1;
92 uint16_t u1;
93 uint16_t u2;
94 uint16_t u3;
95 uint16_t u4;
96 uint16_t u5;
97} btgatt_test_params_t;
98
Satya Calloji51225022015-03-31 13:58:21 -070099/* BT GATT client error codes */
100typedef enum
101{
102 BT_GATTC_COMMAND_SUCCESS = 0, /* 0 Command succeeded */
103 BT_GATTC_COMMAND_STARTED, /* 1 Command started OK. */
104 BT_GATTC_COMMAND_BUSY, /* 2 Device busy with another command */
105 BT_GATTC_COMMAND_STORED, /* 3 request is stored in control block */
106 BT_GATTC_NO_RESOURCES, /* 4 No resources to issue command */
107 BT_GATTC_MODE_UNSUPPORTED, /* 5 Request for 1 or more unsupported modes */
108 BT_GATTC_ILLEGAL_VALUE, /* 6 Illegal command /parameter value */
109 BT_GATTC_INCORRECT_STATE, /* 7 Device in wrong state for request */
110 BT_GATTC_UNKNOWN_ADDR, /* 8 Unknown remote BD address */
111 BT_GATTC_DEVICE_TIMEOUT, /* 9 Device timeout */
112 BT_GATTC_INVALID_CONTROLLER_OUTPUT,/* 10 An incorrect value was received from HCI */
113 BT_GATTC_SECURITY_ERROR, /* 11 Authorization or security failure or not authorized */
114 BT_GATTC_DELAYED_ENCRYPTION_CHECK, /*12 Delayed encryption check */
115 BT_GATTC_ERR_PROCESSING /* 12 Generic error */
116} btgattc_error_t;
117
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -0800118/** BT-GATT Client callback structure. */
119
120/** Callback invoked in response to register_client */
121typedef void (*register_client_callback)(int status, int client_if,
122 bt_uuid_t *app_uuid);
123
124/** Callback for scan results */
125typedef void (*scan_result_callback)(bt_bdaddr_t* bda, int rssi, uint8_t* adv_data);
126
127/** GATT open callback invoked in response to open */
128typedef void (*connect_callback)(int conn_id, int status, int client_if, bt_bdaddr_t* bda);
129
130/** Callback invoked in response to close */
131typedef void (*disconnect_callback)(int conn_id, int status,
132 int client_if, bt_bdaddr_t* bda);
133
134/**
135 * Invoked in response to search_service when the GATT service search
136 * has been completed.
137 */
138typedef void (*search_complete_callback)(int conn_id, int status);
139
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -0800140/** Callback invoked in response to [de]register_for_notification */
141typedef void (*register_for_notification_callback)(int conn_id,
Jakub Pawlowski1d02bde2016-03-17 15:57:03 -0700142 int registered, int status, uint16_t handle);
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -0800143
144/**
145 * Remote device notification callback, invoked when a remote device sends
146 * a notification or indication that a client has registered for.
147 */
148typedef void (*notify_callback)(int conn_id, btgatt_notify_params_t *p_data);
149
150/** Reports result of a GATT read operation */
151typedef void (*read_characteristic_callback)(int conn_id, int status,
152 btgatt_read_params_t *p_data);
153
154/** GATT write characteristic operation callback */
Jakub Pawlowski1d02bde2016-03-17 15:57:03 -0700155typedef void (*write_characteristic_callback)(int conn_id, int status, uint16_t handle);
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -0800156
157/** GATT execute prepared write callback */
158typedef void (*execute_write_callback)(int conn_id, int status);
159
160/** Callback invoked in response to read_descriptor */
161typedef void (*read_descriptor_callback)(int conn_id, int status,
162 btgatt_read_params_t *p_data);
163
164/** Callback invoked in response to write_descriptor */
Jakub Pawlowski1d02bde2016-03-17 15:57:03 -0700165typedef void (*write_descriptor_callback)(int conn_id, int status, uint16_t handle);
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -0800166
167/** Callback triggered in response to read_remote_rssi */
168typedef void (*read_remote_rssi_callback)(int client_if, bt_bdaddr_t* bda,
169 int rssi, int status);
170
Andre Eisenbach299e43c2013-08-06 19:54:25 -0700171/**
Satya Calloji20a1a052014-05-10 23:37:11 -0700172 * Callback indicating the status of a listen() operation
Andre Eisenbach299e43c2013-08-06 19:54:25 -0700173 */
174typedef void (*listen_callback)(int status, int server_if);
175
Andre Eisenbach8a4b61a2014-03-25 06:30:05 -0700176/** Callback invoked when the MTU for a given connection changes */
177typedef void (*configure_mtu_callback)(int conn_id, int status, int mtu);
178
Andre Eisenbach709f2392013-12-16 16:16:54 -0800179/** Callback invoked when a scan filter configuration command has completed */
Satya Callojia28f92a2014-06-11 22:53:12 -0700180typedef void (*scan_filter_cfg_callback)(int action, int client_if, int status, int filt_type,
181 int avbl_space);
182
183/** Callback invoked when scan param has been added, cleared, or deleted */
184typedef void (*scan_filter_param_callback)(int action, int client_if, int status,
185 int avbl_space);
186
187/** Callback invoked when a scan filter configuration command has completed */
188typedef void (*scan_filter_status_callback)(int enable, int client_if, int status);
Andre Eisenbach709f2392013-12-16 16:16:54 -0800189
Wei Wang6c2e2d32014-05-20 06:30:05 +0000190/** Callback invoked when multi-adv enable operation has completed */
191typedef void (*multi_adv_enable_callback)(int client_if, int status);
192
193/** Callback invoked when multi-adv param update operation has completed */
194typedef void (*multi_adv_update_callback)(int client_if, int status);
195
196/** Callback invoked when multi-adv instance data set operation has completed */
197typedef void (*multi_adv_data_callback)(int client_if, int status);
198
199/** Callback invoked when multi-adv disable operation has completed */
200typedef void (*multi_adv_disable_callback)(int client_if, int status);
201
Andre Eisenbach9ef3c722014-03-28 14:53:33 -0700202/**
203 * Callback notifying an application that a remote device connection is currently congested
204 * and cannot receive any more data. An application should avoid sending more data until
205 * a further callback is received indicating the congestion status has been cleared.
206 */
207typedef void (*congestion_callback)(int conn_id, bool congested);
Satya Calloji20a1a052014-05-10 23:37:11 -0700208/** Callback invoked when batchscan storage config operation has completed */
209typedef void (*batchscan_cfg_storage_callback)(int client_if, int status);
210
211/** Callback invoked when batchscan enable / disable operation has completed */
212typedef void (*batchscan_enable_disable_callback)(int action, int client_if, int status);
213
214/** Callback invoked when batchscan reports are obtained */
215typedef void (*batchscan_reports_callback)(int client_if, int status, int report_format,
216 int num_records, int data_len, uint8_t* rep_data);
217
218/** Callback invoked when batchscan storage threshold limit is crossed */
219typedef void (*batchscan_threshold_callback)(int client_if);
220
Satya Callojibe7f0442014-07-03 10:59:16 -0700221/** Track ADV VSE callback invoked when tracked device is found or lost */
Satya Callojia8b49d32015-02-10 09:20:07 -0800222typedef void (*track_adv_event_callback)(btgatt_track_adv_info_t *p_track_adv_info);
Andre Eisenbach9ef3c722014-03-28 14:53:33 -0700223
Satya Calloji51225022015-03-31 13:58:21 -0700224/** Callback invoked when scan parameter setup has completed */
225typedef void (*scan_parameter_setup_completed_callback)(int client_if,
226 btgattc_error_t status);
227
Jakub Pawlowskif2e13522016-01-21 23:40:51 -0800228/** GATT get database callback */
229typedef void (*get_gatt_db_callback)(int conn_id, btgatt_db_element_t *db, int count);
230
Jakub Pawlowski83e598f2016-02-10 15:31:14 -0800231/** GATT services between start_handle and end_handle were removed */
232typedef void (*services_removed_callback)(int conn_id, uint16_t start_handle, uint16_t end_handle);
233
234/** GATT services were added */
235typedef void (*services_added_callback)(int conn_id, btgatt_db_element_t *added, int added_count);
236
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -0800237typedef struct {
238 register_client_callback register_client_cb;
239 scan_result_callback scan_result_cb;
240 connect_callback open_cb;
241 disconnect_callback close_cb;
242 search_complete_callback search_complete_cb;
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -0800243 register_for_notification_callback register_for_notification_cb;
244 notify_callback notify_cb;
245 read_characteristic_callback read_characteristic_cb;
246 write_characteristic_callback write_characteristic_cb;
247 read_descriptor_callback read_descriptor_cb;
248 write_descriptor_callback write_descriptor_cb;
249 execute_write_callback execute_write_cb;
250 read_remote_rssi_callback read_remote_rssi_cb;
Andre Eisenbach299e43c2013-08-06 19:54:25 -0700251 listen_callback listen_cb;
Andre Eisenbach8a4b61a2014-03-25 06:30:05 -0700252 configure_mtu_callback configure_mtu_cb;
Satya Callojia28f92a2014-06-11 22:53:12 -0700253 scan_filter_cfg_callback scan_filter_cfg_cb;
254 scan_filter_param_callback scan_filter_param_cb;
255 scan_filter_status_callback scan_filter_status_cb;
Wei Wang6c2e2d32014-05-20 06:30:05 +0000256 multi_adv_enable_callback multi_adv_enable_cb;
257 multi_adv_update_callback multi_adv_update_cb;
258 multi_adv_data_callback multi_adv_data_cb;
259 multi_adv_disable_callback multi_adv_disable_cb;
Andre Eisenbach9ef3c722014-03-28 14:53:33 -0700260 congestion_callback congestion_cb;
Satya Calloji20a1a052014-05-10 23:37:11 -0700261 batchscan_cfg_storage_callback batchscan_cfg_storage_cb;
262 batchscan_enable_disable_callback batchscan_enb_disable_cb;
263 batchscan_reports_callback batchscan_reports_cb;
264 batchscan_threshold_callback batchscan_threshold_cb;
Satya Calloji3154bab2014-06-15 11:51:38 -0700265 track_adv_event_callback track_adv_event_cb;
Satya Calloji51225022015-03-31 13:58:21 -0700266 scan_parameter_setup_completed_callback scan_parameter_setup_completed_cb;
Jakub Pawlowskif2e13522016-01-21 23:40:51 -0800267 get_gatt_db_callback get_gatt_db_cb;
Jakub Pawlowski83e598f2016-02-10 15:31:14 -0800268 services_removed_callback services_removed_cb;
269 services_added_callback services_added_cb;
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -0800270} btgatt_client_callbacks_t;
271
272/** Represents the standard BT-GATT client interface. */
273
274typedef struct {
275 /** Registers a GATT client application with the stack */
276 bt_status_t (*register_client)( bt_uuid_t *uuid );
277
278 /** Unregister a client application from the stack */
279 bt_status_t (*unregister_client)(int client_if );
280
281 /** Start or stop LE device scanning */
Prerepa Viswanadham45edab92014-05-09 16:09:52 -0700282 bt_status_t (*scan)( bool start );
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -0800283
284 /** Create a connection to a remote LE or dual-mode device */
285 bt_status_t (*connect)( int client_if, const bt_bdaddr_t *bd_addr,
Ganesh Ganapathi Battaf9f4d102014-04-18 10:02:49 -0700286 bool is_direct, int transport );
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -0800287
288 /** Disconnect a remote device or cancel a pending connection */
289 bt_status_t (*disconnect)( int client_if, const bt_bdaddr_t *bd_addr,
290 int conn_id);
291
Andre Eisenbach299e43c2013-08-06 19:54:25 -0700292 /** Start or stop advertisements to listen for incoming connections */
293 bt_status_t (*listen)(int client_if, bool start);
294
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -0800295 /** Clear the attribute cache for a given device */
296 bt_status_t (*refresh)( int client_if, const bt_bdaddr_t *bd_addr );
297
298 /**
299 * Enumerate all GATT services on a connected device.
300 * Optionally, the results can be filtered for a given UUID.
301 */
302 bt_status_t (*search_service)(int conn_id, bt_uuid_t *filter_uuid );
303
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -0800304 /** Read a characteristic on a remote device */
Jakub Pawlowski1d02bde2016-03-17 15:57:03 -0700305 bt_status_t (*read_characteristic)( int conn_id, uint16_t handle,
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -0800306 int auth_req );
307
308 /** Write a remote characteristic */
Jakub Pawlowski1d02bde2016-03-17 15:57:03 -0700309 bt_status_t (*write_characteristic)(int conn_id, uint16_t handle,
Jakub Pawlowski620fd712016-05-27 16:36:24 -0700310 int write_type, int auth_req,
311 vector<uint8_t> value);
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -0800312
313 /** Read the descriptor for a given characteristic */
Jakub Pawlowski1d02bde2016-03-17 15:57:03 -0700314 bt_status_t (*read_descriptor)(int conn_id, uint16_t handle, int auth_req);
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -0800315
316 /** Write a remote descriptor for a given characteristic */
Jakub Pawlowski1d02bde2016-03-17 15:57:03 -0700317 bt_status_t (*write_descriptor)( int conn_id, uint16_t handle,
Jakub Pawlowski620fd712016-05-27 16:36:24 -0700318 int write_type, int auth_req,
319 vector<uint8_t> value);
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -0800320
321 /** Execute a prepared write operation */
322 bt_status_t (*execute_write)(int conn_id, int execute);
323
324 /**
325 * Register to receive notifications or indications for a given
326 * characteristic
327 */
328 bt_status_t (*register_for_notification)( int client_if,
Jakub Pawlowski1d02bde2016-03-17 15:57:03 -0700329 const bt_bdaddr_t *bd_addr, uint16_t handle);
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -0800330
331 /** Deregister a previous request for notifications/indications */
332 bt_status_t (*deregister_for_notification)( int client_if,
Jakub Pawlowski1d02bde2016-03-17 15:57:03 -0700333 const bt_bdaddr_t *bd_addr, uint16_t handle);
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -0800334
335 /** Request RSSI for a given remote device */
336 bt_status_t (*read_remote_rssi)( int client_if, const bt_bdaddr_t *bd_addr);
337
Satya Callojia28f92a2014-06-11 22:53:12 -0700338 /** Setup scan filter params */
Satya Callojia8b49d32015-02-10 09:20:07 -0800339 bt_status_t (*scan_filter_param_setup)(btgatt_filt_param_setup_t filt_param);
Satya Callojia28f92a2014-06-11 22:53:12 -0700340
Andre Eisenbach709f2392013-12-16 16:16:54 -0800341
342 /** Configure a scan filter condition */
Satya Callojia28f92a2014-06-11 22:53:12 -0700343 bt_status_t (*scan_filter_add_remove)(int client_if, int action, int filt_type,
344 int filt_index, int company_id,
345 int company_id_mask, const bt_uuid_t *p_uuid,
346 const bt_uuid_t *p_uuid_mask, const bt_bdaddr_t *bd_addr,
347 char addr_type, int data_len, char* p_data, int mask_len,
348 char* p_mask);
Andre Eisenbach709f2392013-12-16 16:16:54 -0800349
Satya Callojia28f92a2014-06-11 22:53:12 -0700350 /** Clear all scan filter conditions for specific filter index*/
351 bt_status_t (*scan_filter_clear)(int client_if, int filt_index);
352
353 /** Enable / disable scan filter feature*/
354 bt_status_t (*scan_filter_enable)(int client_if, bool enable);
Andre Eisenbach709f2392013-12-16 16:16:54 -0800355
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -0800356 /** Determine the type of the remote device (LE, BR/EDR, Dual-mode) */
357 int (*get_device_type)( const bt_bdaddr_t *bd_addr );
358
Andre Eisenbach299e43c2013-08-06 19:54:25 -0700359 /** Set the advertising data or scan response data */
Wei Wang6c2e2d32014-05-20 06:30:05 +0000360 bt_status_t (*set_adv_data)(int client_if, bool set_scan_rsp, bool include_name,
Andre Eisenbach299e43c2013-08-06 19:54:25 -0700361 bool include_txpower, int min_interval, int max_interval, int appearance,
Wei Wanga16d11d2013-11-05 16:09:51 -0800362 uint16_t manufacturer_len, char* manufacturer_data,
363 uint16_t service_data_len, char* service_data,
364 uint16_t service_uuid_len, char* service_uuid);
Andre Eisenbach299e43c2013-08-06 19:54:25 -0700365
Andre Eisenbach8a4b61a2014-03-25 06:30:05 -0700366 /** Configure the MTU for a given connection */
367 bt_status_t (*configure_mtu)(int conn_id, int mtu);
368
Andre Eisenbachda4eaca2014-07-16 22:58:36 -0700369 /** Request a connection parameter update */
370 bt_status_t (*conn_parameter_update)(const bt_bdaddr_t *bd_addr, int min_interval,
371 int max_interval, int latency, int timeout);
372
Prerepa Viswanadham45edab92014-05-09 16:09:52 -0700373 /** Sets the LE scan interval and window in units of N*0.625 msec */
Satya Calloji51225022015-03-31 13:58:21 -0700374 bt_status_t (*set_scan_parameters)(int client_if, int scan_interval, int scan_window);
Prerepa Viswanadham45edab92014-05-09 16:09:52 -0700375
Wei Wang6c2e2d32014-05-20 06:30:05 +0000376 /* Setup the parameters as per spec, user manual specified values and enable multi ADV */
377 bt_status_t (*multi_adv_enable)(int client_if, int min_interval,int max_interval,int adv_type,
Andre Eisenbach4789ed52014-08-07 15:18:34 -0700378 int chnl_map, int tx_power, int timeout_s);
Wei Wang6c2e2d32014-05-20 06:30:05 +0000379
380 /* Update the parameters as per spec, user manual specified values and restart multi ADV */
381 bt_status_t (*multi_adv_update)(int client_if, int min_interval,int max_interval,int adv_type,
Andre Eisenbach4789ed52014-08-07 15:18:34 -0700382 int chnl_map, int tx_power, int timeout_s);
Wei Wang6c2e2d32014-05-20 06:30:05 +0000383
384 /* Setup the data for the specified instance */
385 bt_status_t (*multi_adv_set_inst_data)(int client_if, bool set_scan_rsp, bool include_name,
Andre Eisenbach4789ed52014-08-07 15:18:34 -0700386 bool incl_txpower, int appearance, int manufacturer_len,
387 char* manufacturer_data, int service_data_len,
388 char* service_data, int service_uuid_len, char* service_uuid);
Wei Wang6c2e2d32014-05-20 06:30:05 +0000389
390 /* Disable the multi adv instance */
391 bt_status_t (*multi_adv_disable)(int client_if);
392
Satya Calloji20a1a052014-05-10 23:37:11 -0700393 /* Configure the batchscan storage */
394 bt_status_t (*batchscan_cfg_storage)(int client_if, int batch_scan_full_max,
395 int batch_scan_trunc_max, int batch_scan_notify_threshold);
396
397 /* Enable batchscan */
398 bt_status_t (*batchscan_enb_batch_scan)(int client_if, int scan_mode,
399 int scan_interval, int scan_window, int addr_type, int discard_rule);
400
401 /* Disable batchscan */
402 bt_status_t (*batchscan_dis_batch_scan)(int client_if);
403
404 /* Read out batchscan reports */
405 bt_status_t (*batchscan_read_reports)(int client_if, int scan_mode);
406
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -0800407 /** Test mode interface */
408 bt_status_t (*test_command)( int command, btgatt_test_params_t* params);
Ganesh Ganapathi Battaf9f4d102014-04-18 10:02:49 -0700409
Jakub Pawlowskif2e13522016-01-21 23:40:51 -0800410 /** Get gatt db content */
411 bt_status_t (*get_gatt_db)( int conn_id);
412
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -0800413} btgatt_client_interface_t;
414
415__END_DECLS
416
417#endif /* ANDROID_INCLUDE_BT_GATT_CLIENT_H */