Merge "Separate LE scanner from GATT client (3/4)" am: 1f4fc31367
am: 7fd804c526
Change-Id: Id319acb96d70749c5abc78b7279a4542145fbdad
This commit is contained in:
commit
a20012f9a6
1 changed files with 11 additions and 0 deletions
|
@ -121,6 +121,10 @@ typedef enum
|
|||
typedef void (*register_client_callback)(int status, int client_if,
|
||||
bt_uuid_t *app_uuid);
|
||||
|
||||
/** Callback invoked in response to register_scanner */
|
||||
typedef void (*register_scanner_callback)(int status, int scanner_id,
|
||||
bt_uuid_t *app_uuid);
|
||||
|
||||
/** Callback for scan results */
|
||||
typedef void (*scan_result_callback)(bt_bdaddr_t* bda, int rssi, vector<uint8_t> adv_data);
|
||||
|
||||
|
@ -224,6 +228,7 @@ typedef void (*services_added_callback)(int conn_id, btgatt_db_element_t *added,
|
|||
|
||||
typedef struct {
|
||||
register_client_callback register_client_cb;
|
||||
register_scanner_callback register_scanner_cb;
|
||||
scan_result_callback scan_result_cb;
|
||||
connect_callback open_cb;
|
||||
disconnect_callback close_cb;
|
||||
|
@ -262,6 +267,12 @@ typedef struct {
|
|||
/** Unregister a client application from the stack */
|
||||
bt_status_t (*unregister_client)(int client_if );
|
||||
|
||||
/** Registers a scanner with the stack */
|
||||
bt_status_t (*register_scanner)( bt_uuid_t *uuid );
|
||||
|
||||
/** Unregister a scanner from the stack */
|
||||
bt_status_t (*unregister_scanner)(int scanner_id );
|
||||
|
||||
/** Start or stop LE device scanning */
|
||||
bt_status_t (*scan)( bool start );
|
||||
|
||||
|
|
Loading…
Reference in a new issue