OSDN Git Service

Merge "LE: Add limited advertising duration capability (1/3)" into lmp-dev
authorAndre Eisenbach <eisenbach@google.com>
Fri, 8 Aug 2014 02:29:28 +0000 (02:29 +0000)
committerAndroid (Google) Code Review <android-gerrit@google.com>
Wed, 6 Aug 2014 23:49:20 +0000 (23:49 +0000)
include/hardware/bt_gatt_client.h

index 2f72d3a..8073dd1 100644 (file)
@@ -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);