Read by UUID for PTS tests (3/5)
Add a hidden api for reading characteristic by UUID for PTS. Bug: 35150313 Test: sl4a GattReadTest.byUuid Change-Id: Ia429895abf38b504975af5d53ec4c5adf5a01a9d
This commit is contained in:
parent
c871add2f9
commit
f6833f45c3
1 changed files with 7 additions and 2 deletions
|
@ -224,8 +224,13 @@ typedef struct {
|
|||
bt_status_t (*search_service)(int conn_id, bt_uuid_t *filter_uuid );
|
||||
|
||||
/** Read a characteristic on a remote device */
|
||||
bt_status_t (*read_characteristic)( int conn_id, uint16_t handle,
|
||||
int auth_req );
|
||||
bt_status_t (*read_characteristic)(int conn_id, uint16_t handle,
|
||||
int auth_req);
|
||||
|
||||
/** Read a characteristic on a remote device */
|
||||
bt_status_t (*read_using_characteristic_uuid)(
|
||||
int conn_id, bt_uuid_t *uuid, uint16_t s_handle,
|
||||
uint16_t e_handle, int auth_req);
|
||||
|
||||
/** Write a remote characteristic */
|
||||
bt_status_t (*write_characteristic)(int conn_id, uint16_t handle,
|
||||
|
|
Loading…
Reference in a new issue