summaryrefslogtreecommitdiffstats
path: root/include/hardware/bt_gatt_client.h
diff options
context:
space:
mode:
authorAndre Eisenbach <eisenbach@google.com>2014-08-07 15:18:34 -0700
committerAndre Eisenbach <eisenbach@google.com>2014-08-07 15:18:34 -0700
commit4789ed595ad1f56b6eda48973a272f8b24bfb406 (patch)
tree52d4275b2b4e2262819c0004bf2c97e48ed120a1 /include/hardware/bt_gatt_client.h
parent941c928d9d19e3bd9bdd253923fb909dbb08a72e (diff)
downloadhardware_libhardware-4789ed595ad1f56b6eda48973a272f8b24bfb406.zip
hardware_libhardware-4789ed595ad1f56b6eda48973a272f8b24bfb406.tar.gz
hardware_libhardware-4789ed595ad1f56b6eda48973a272f8b24bfb406.tar.bz2
LE: Add limited advertising duration capability (1/3)
Change-Id: I14006aa96758c285a1d88aef12df11cf28598028
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 64c51ab..295f5c8 100644
--- a/include/hardware/bt_gatt_client.h
+++ b/include/hardware/bt_gatt_client.h
@@ -379,17 +379,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);