Skip to content
This repository has been archived by the owner on Nov 8, 2023. It is now read-only.

Commit

Permalink
Merge "Propagate BT5 specific scan result properties up the stack (1/3)"
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Pawlowski authored and Gerrit Code Review committed Feb 7, 2017
2 parents a82ee04 + 701ab73 commit a0ce42c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion include/hardware/ble_scanner.h
Expand Up @@ -47,7 +47,11 @@ typedef void (*scan_parameter_setup_completed_callback)(int client_if,
btgattc_error_t status);

/** Callback for scan results */
typedef void (*scan_result_callback)(bt_bdaddr_t *bda, int rssi,
typedef void (*scan_result_callback)(uint16_t event_type, uint8_t addr_type,
bt_bdaddr_t *bda, uint8_t primary_phy,
uint8_t secondary_phy,
uint8_t advertising_sid, int8_t tx_power,
int8_t rssi, uint16_t periodic_adv_int,
std::vector<uint8_t> adv_data);

/** Callback invoked when a scan filter configuration command has completed */
Expand Down

0 comments on commit a0ce42c

Please sign in to comment.