summaryrefslogtreecommitdiffstats
path: root/include/hardware/bt_gatt_client.h
diff options
context:
space:
mode:
authorAndre Eisenbach <eisenbach@google.com>2014-08-08 02:29:28 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-08-06 23:49:20 +0000
commit005b123e41f3fe91344b475d4a3218d2c0171b3e (patch)
tree0dd589f6b88213ab09863d9d379015609634b8f8 /include/hardware/bt_gatt_client.h
parentb5ac45ff29d10bc31b2edd893125f1594b3f6065 (diff)
parent4789ed595ad1f56b6eda48973a272f8b24bfb406 (diff)
downloadhardware_libhardware-005b123e41f3fe91344b475d4a3218d2c0171b3e.zip
hardware_libhardware-005b123e41f3fe91344b475d4a3218d2c0171b3e.tar.gz
hardware_libhardware-005b123e41f3fe91344b475d4a3218d2c0171b3e.tar.bz2
Merge "LE: Add limited advertising duration capability (1/3)" into lmp-dev
Diffstat (limited to 'include/hardware/bt_gatt_client.h')
-rw-r--r--include/hardware/bt_gatt_client.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/hardware/bt_gatt_client.h b/include/hardware/bt_gatt_client.h
index 2f72d3a..8073dd1 100644
--- a/include/hardware/bt_gatt_client.h
+++ b/include/hardware/bt_gatt_client.h
@@ -378,17 +378,17 @@ typedef struct {
/* Setup the parameters as per spec, user manual specified values and enable multi ADV */
bt_status_t (*multi_adv_enable)(int client_if, int min_interval,int max_interval,int adv_type,
- int chnl_map, int tx_power);
+ int chnl_map, int tx_power, int timeout_s);
/* Update the parameters as per spec, user manual specified values and restart multi ADV */
bt_status_t (*multi_adv_update)(int client_if, int min_interval,int max_interval,int adv_type,
- int chnl_map, int tx_power);
+ int chnl_map, int tx_power, int timeout_s);
/* Setup the data for the specified instance */
bt_status_t (*multi_adv_set_inst_data)(int client_if, bool set_scan_rsp, bool include_name,
- bool incl_txpower, int appearance, uint16_t manufacturer_len,
- char* manufacturer_data, uint16_t service_data_len,
- char* service_data, uint16_t service_uuid_len, char* service_uuid);
+ bool incl_txpower, int appearance, int manufacturer_len,
+ char* manufacturer_data, int service_data_len,
+ char* service_data, int service_uuid_len, char* service_uuid);
/* Disable the multi adv instance */
bt_status_t (*multi_adv_disable)(int client_if);