diff options
author | Satya Calloji <satyac@broadcom.com> | 2015-03-23 18:18:13 -0700 |
---|---|---|
committer | Prerepa Viswanadham <dham@google.com> | 2015-03-27 09:42:37 -0700 |
commit | 3de70a1d6a1b8c0e7febce5e8fc4f0b3ad400b7d (patch) | |
tree | afb78b8cf25cf194207eb71225d8d95d56fe8e8c /include | |
parent | a8b49d3feed67d6bc03054d466e885140e52ff39 (diff) | |
download | hardware_libhardware-3de70a1d6a1b8c0e7febce5e8fc4f0b3ad400b7d.zip hardware_libhardware-3de70a1d6a1b8c0e7febce5e8fc4f0b3ad400b7d.tar.gz hardware_libhardware-3de70a1d6a1b8c0e7febce5e8fc4f0b3ad400b7d.tar.bz2 |
Incorrect RSSI value in onlost/onfound
Fix for signed value in onlost/onfound
Bug: 19891550
Change-Id: Idee4c566fe0d6f10a87c92f5bf03743fddbe2261
Diffstat (limited to 'include')
-rw-r--r-- | include/hardware/bt_common_types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hardware/bt_common_types.h b/include/hardware/bt_common_types.h index f1e0984..e30ac24 100644 --- a/include/hardware/bt_common_types.h +++ b/include/hardware/bt_common_types.h @@ -32,7 +32,7 @@ typedef struct uint8_t advertiser_info_present; uint8_t addr_type; uint8_t tx_power; - uint8_t rssi_value; + int8_t rssi_value; uint16_t time_stamp; bt_bdaddr_t bd_addr; uint8_t adv_pkt_len; |