diff options
author | Priti Aghera <paghera@broadcom.com> | 2012-04-06 14:43:25 -0700 |
---|---|---|
committer | Matthew Xie <mattx@google.com> | 2012-07-14 11:19:15 -0700 |
commit | b110b5ff2dc873c23a2a61e49b189a404d148c50 (patch) | |
tree | f9312ff337a01716b0e8acc212204585834ba6c5 /btif/include | |
parent | 5883f2fb3fff54e3d308e64108b634eb85e43c62 (diff) | |
download | external_bluetooth_bluedroid-b110b5ff2dc873c23a2a61e49b189a404d148c50.zip external_bluetooth_bluedroid-b110b5ff2dc873c23a2a61e49b189a404d148c50.tar.gz external_bluetooth_bluedroid-b110b5ff2dc873c23a2a61e49b189a404d148c50.tar.bz2 |
HID-HOST:Fixed MAX_LINE_LENGTH
Patch to i) store/load/remove hid descriptors for bonded hid devices to the nvram ii)support set report
Change-Id: I47fae85b0f26ec2c4e577550545dc9761a4d1bda
Diffstat (limited to 'btif/include')
-rwxr-xr-x[-rw-r--r--] | btif/include/btif_storage.h | 3 | ||||
-rwxr-xr-x[-rw-r--r--] | btif/include/btif_util.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/btif/include/btif_storage.h b/btif/include/btif_storage.h index 00121e9..6aaa10f 100644..100755 --- a/btif/include/btif_storage.h +++ b/btif/include/btif_storage.h @@ -215,6 +215,9 @@ bt_status_t btif_storage_add_hid_device_info(bt_bdaddr_t *remote_bd_addr, *******************************************************************************/ bt_status_t btif_storage_load_bonded_hid_info(void); +bt_status_t btif_storage_remove_hid_info(bt_bdaddr_t *remote_bd_addr); + + #endif /* BTIF_STORAGE_H */ diff --git a/btif/include/btif_util.h b/btif/include/btif_util.h index 05b7e76..a15d1ca 100644..100755 --- a/btif/include/btif_util.h +++ b/btif/include/btif_util.h @@ -106,6 +106,7 @@ void uuid16_to_uuid128(uint16_t uuid16, bt_uuid_t* uuid128); void uuid_to_string(bt_uuid_t *p_uuid, char *str); void string_to_uuid(char *str, bt_uuid_t *p_uuid); +int ascii_2_hex (char *p_ascii, int len, UINT8 *p_hex); #endif /* BTIF_UTIL_H */ |