From 6b215041cfe7b072344704d820bbe74fe07ab8eb Mon Sep 17 00:00:00 2001 From: Jonathan Aillet Date: Fri, 7 Sep 2018 18:40:34 +0200 Subject: Add handling of hci and profile in hal-bt plugin Add handling of bluetoothg hci and bluetooth profile when keep bluetooth connected devices up to date. Change-Id: I49b3e67136168bcae711eb8f7ffb2e1ccdbad3ae Signed-off-by: Jonathan Aillet --- plugins/lib/bluetooth/hal-bt-data.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'plugins/lib/bluetooth/hal-bt-data.h') diff --git a/plugins/lib/bluetooth/hal-bt-data.h b/plugins/lib/bluetooth/hal-bt-data.h index 030c8d1..ea3fe99 100644 --- a/plugins/lib/bluetooth/hal-bt-data.h +++ b/plugins/lib/bluetooth/hal-bt-data.h @@ -27,16 +27,18 @@ // Structure to store bluetooth device data struct HalBtDeviceData { char *uid; + + char *hci; char *name; char *address; - // TODO JAI : Get bluetooth device's profile and store it here + + unsigned int a2dp; struct HalBtDeviceData *next; }; // Structure to store hal bluetooth plugin data struct HalBtPluginData { - // TODO JAI : Get hci device and store it here unsigned int btStreamEnabled; struct HalBtDeviceData *selectedBtDevice; -- cgit 1.2.3-korg