diff options
author | Li, Xiaoming <lixm.fnst@cn.fujitsu.com> | 2020-08-06 10:23:00 +0800 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2020-08-13 09:29:37 +0000 |
commit | 761a6fcaa5f92b5fb5e702457bf1941f4d0d54b8 (patch) | |
tree | 2f3493287737b06a3edf1cb7b36ccbe7b5b4c650 | |
parent | bcc0c50f2a6b234d760b64ab8841e8f771f97501 (diff) |
docs(README.md): avrcp_controls's adapter and device arg are optionaljellyfish_9.99.4jellyfish_9.99.3jellyfish/9.99.4jellyfish/9.99.39.99.49.99.3
If these two args are not provided, the bluetooth service will use
mediaplayer_path instead of the path generated by function return_bluez_path().
Explanation of function return_bluez_path():
- File:bluetooth-util.c:
- Function: gchar *return_bluez_path(afb_req_t request).
- Description:
read argument of "adapter" and "device", combine them to generate a
bluze path and return this path value. Return NULL if device is not
specified.
Change-Id: I75727e266cd984620cac410ca6e030d2db8514dc
Signed-off-by: Li, Xiaoming <lixm.fnst@cn.fujitsu.com>
-rw-r--r-- | README.md | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -149,11 +149,11 @@ This verb allows an client to get initial paired devices, and discovered unpaire avrcp_controls verb allow controlling the playback of the defined device -| Name | Description | -|-----------------|----------------------------------------------------------------------------------------------| -| adapter | Name of the adapter (i.e. hci0) | -| device | Must be the name of the device (i.e. dev_88_0F_10_96_D3_20) | -| action | Playback control action to take (e.g Play, Pause, Stop, Next, Previous, FastForward, Rewind) | +| Name | Description | +|-----------------|--------------------------------------------------------------------------------------------------------------| +| adapter | Name of the adapter (optional, i.e. hci0) | +| device | Must be the name of the device (optional, i.e. dev_88_0F_10_96_D3_20) | +| action | Playback control action to take (e.g Play, Pause, Stop, Next, Previous, FastForward, Rewind) | ### connect/disconnect verbs |