Lines Matching refs:a2dp

4 The :code:`a2dp` command exposes parts of the A2DP API.
9 * Source and Sink sides register a2dp callbacks. using :code:`a2dp register_cb`.
10 …nd Sink sides register stream endpoints. using :code:`a2dp register_ep source sbc` and :code:`a2dp
11 …onnection. It will create the AVDTP Signaling and Media L2CAP channels. using :code:`a2dp connect`.
12 …* Source and Sink side can discover remote device's stream endpoints. using :code:`a2dp discover_p…
13 …re the stream to create the stream after discover remote's endpoints. using :code:`a2dp configure`.
14 * Source or Sink establish the stream. using :code:`a2dp establish`.
15 * Source or Sink start the media. using :code:`a2dp start`.
16 * Source test the media sending. using :code:`a2dp send_media` to send one test packet data.
17 * Source or Sink suspend the media. using :code:`a2dp suspend`.
18 * Source or Sink release the media. using :code:`a2dp release`.
26 uart:~$ a2dp register_cb
28 uart:~$ a2dp register_ep source sbc
30 uart:~$ a2dp connect
33 a2dp connected
34 uart:~$ a2dp discover_peer_eps
51 uart:~$ a2dp configure
54 uart:~$ a2dp establish
57 uart:~$ a2dp start
60 uart:~$ a2dp send_media
63 uart:~$ a2dp suspend
66 uart:~$ a2dp release
74 uart:~$ a2dp register_cb
76 uart:~$ a2dp register_ep sink sbc
78 <after a2dp connect>
82 a2dp connected
83 <after a2dp configure of source side>
87 <after a2dp establish of source side>
90 <after a2dp start of source side>
93 <after a2dp send_media of source side>
96 <after a2dp suspend of source side>
99 <after a2dp release of source side>