diff options
author | 2018-09-07 18:40:34 +0200 | |
---|---|---|
committer | 2018-10-08 15:57:27 +0200 | |
commit | 6b215041cfe7b072344704d820bbe74fe07ab8eb (patch) | |
tree | b2b654e0c5d4fd3e3f073c1b06070ab2f49d28dd /plugins/lib/bluetooth/hal-bt-data.h | |
parent | 624971371bba5ca9a9fa6a862c70b0e928e5649c (diff) |
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 <jonathan.aillet@iot.bzh>
Diffstat (limited to 'plugins/lib/bluetooth/hal-bt-data.h')
-rw-r--r-- | plugins/lib/bluetooth/hal-bt-data.h | 6 |
1 files changed, 4 insertions, 2 deletions
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; |