diff options
author | Jonathan Aillet <jonathan.aillet@iot.bzh> | 2018-09-11 17:12:54 +0200 |
---|---|---|
committer | Jonathan Aillet <jonathan.aillet@iot.bzh> | 2018-10-08 15:57:27 +0200 |
commit | e185efc0a2ed5b8d295d29a7afadd84342b80549 (patch) | |
tree | 1ef23e05a76c0d009d45b727b0762bdf6ab0b553 /plugins/lib/bluetooth/hal-bt-cb.h | |
parent | 3a7a1127600dd92367609edb02ef74bcb1b55ff8 (diff) |
HalBt plugin keeps list of connected A2DP devices
Hal-Bt plugin only keeps list of connected bluetooth A2DP devices
instead of a list of all connected bluetooth devices.
Change-Id: I6c06be78a927dcac32ed4683d44431514e7daf06
Signed-off-by: Jonathan Aillet <jonathan.aillet@iot.bzh>
Diffstat (limited to 'plugins/lib/bluetooth/hal-bt-cb.h')
-rw-r--r-- | plugins/lib/bluetooth/hal-bt-cb.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/lib/bluetooth/hal-bt-cb.h b/plugins/lib/bluetooth/hal-bt-cb.h index 2d23d26..f0f1052 100644 --- a/plugins/lib/bluetooth/hal-bt-cb.h +++ b/plugins/lib/bluetooth/hal-bt-cb.h @@ -26,15 +26,15 @@ #define HAL_BT_GET_STREAMING_STATUS_VERB "get_bt_streaming_status" #define HAL_BT_SET_STREAMING_STATUS_VERB "set_bt_streaming_status" -#define HAL_BT_GET_CONNECTED_DEVICES_VERB "get_connected_bt_devices" -#define HAL_BT_GET_SELECTED_DEVICE_VERB "get_selected_bt_device" -#define HAL_BT_SET_SELECTED_DEVICE_VERB "set_selected_bt_device" +#define HAL_BT_GET_CONNECTED_A2DP_DEVICES_VERB "get_connected_bt_a2dp_devices" +#define HAL_BT_GET_SELECTED_A2DP_DEVICE_VERB "get_selected_bt_a2dp_device" +#define HAL_BT_SET_SELECTED_A2DP_DEVICE_VERB "set_selected_bt_a2dp_device" // HAL Bluetooth plugin verbs functions void HalBtGetStreamingStatus(AFB_ReqT request); void HalBtSetStreamingStatus(AFB_ReqT request); -void HalBtGetConnectedBluetoothDevices(AFB_ReqT request); -void HalBtGetSelectedBluetoothDevice(AFB_ReqT request); -void HalBtSetSelectedBluetoothDevice(AFB_ReqT request); +void HalBtGetA2DPBluetoothDevices(AFB_ReqT request); +void HalBtGetSelectedA2DPBluetoothDevice(AFB_ReqT request); +void HalBtSetSelectedA2DPBluetoothDevice(AFB_ReqT request); #endif /* _HAL_BT_CB_INCLUDE_ */
\ No newline at end of file |