All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/2] Fix change to numbers GSlist in new missed calls
@ 2011-05-19  8:51 Dmitriy Paliy
  2011-05-19  8:51 ` [PATCH v2 1/2] " Dmitriy Paliy
  2011-05-19  8:51 ` [PATCH v2 2/2] Change append to prepend in pull_newmissedcalls Dmitriy Paliy
  0 siblings, 2 replies; 9+ messages in thread
From: Dmitriy Paliy @ 2011-05-19  8:51 UTC (permalink / raw)
  To: linux-bluetooth

Hi,

This is updated version that takes into account comments of Luiz. Patches
1/3 and 2/3 are merged into a single one.

BR,
Dmitriy


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [PATCH v2 1/2] Fix change to numbers GSlist in new missed calls
  2011-05-19  8:51 [PATCH v2 0/2] Fix change to numbers GSlist in new missed calls Dmitriy Paliy
@ 2011-05-19  8:51 ` Dmitriy Paliy
  2011-05-19  8:51 ` [PATCH v2 2/2] Change append to prepend in pull_newmissedcalls Dmitriy Paliy
  1 sibling, 0 replies; 9+ messages in thread
From: Dmitriy Paliy @ 2011-05-19  8:51 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Dmitriy Paliy

It is possible that phonebook_pull_read is invoked several times
submitting multiple pull requests without closing PBAP object. E.g., when
maxlistcount value is small and size of call history is large enough.

The result is possibility of different data structures (GString and
contact_data) to be mixed in a single GSlist that may lead to undefined
behaviour.
---
 plugins/phonebook-tracker.c |   57 ++++++++++++++++++++++++-------------------
 1 files changed, 32 insertions(+), 25 deletions(-)

diff --git a/plugins/phonebook-tracker.c b/plugins/phonebook-tracker.c
index eec1e5d..95908ba 100644
--- a/plugins/phonebook-tracker.c
+++ b/plugins/phonebook-tracker.c
@@ -465,6 +465,7 @@ struct phonebook_data {
 	gboolean vcardentry;
 	const struct apparam_field *params;
 	GSList *contacts;
+	GSList *numbers;
 	phonebook_cache_ready_cb ready_cb;
 	phonebook_entry_cb entry_cb;
 	int newmissedcalls;
@@ -1422,26 +1423,6 @@ done:
 	return path;
 }
 
-void phonebook_req_finalize(void *request)
-{
-	struct phonebook_data *data = request;
-
-	DBG("");
-
-	if (!data)
-		return;
-
-	/* canceling asynchronous operation on tracker if any is active */
-	if (data->query_canc) {
-		g_cancellable_cancel(data->query_canc);
-		g_object_unref(data->query_canc);
-	}
-
-	free_data_contacts(data);
-	g_free(data->req_name);
-	g_free(data);
-}
-
 static gboolean find_checked_number(GSList *numbers, const char *number)
 {
 	GSList *l;
@@ -1460,6 +1441,13 @@ static void gstring_free_helper(gpointer data, gpointer user_data)
 	g_string_free(data, TRUE);
 }
 
+static void free_data_numbers(struct phonebook_data *data)
+{
+	g_slist_foreach(data->numbers, gstring_free_helper, NULL);
+	g_slist_free(data->numbers);
+	data->numbers = NULL;
+}
+
 static int pull_newmissedcalls(const char **reply, int num_fields,
 							void *user_data)
 {
@@ -1471,12 +1459,12 @@ static int pull_newmissedcalls(const char **reply, int num_fields,
 	if (num_fields < 0 || reply == NULL)
 		goto done;
 
-	if (!find_checked_number(data->contacts, reply[1])) {
+	if (!find_checked_number(data->numbers, reply[1])) {
 		if (g_strcmp0(reply[2], "false") == 0)
 			data->newmissedcalls++;
 		else {
 			GString *number = g_string_new(reply[1]);
-			data->contacts = g_slist_append(data->contacts,
+			data->numbers = g_slist_append(data->numbers,
 								number);
 		}
 	}
@@ -1484,9 +1472,7 @@ static int pull_newmissedcalls(const char **reply, int num_fields,
 
 done:
 	DBG("newmissedcalls %d", data->newmissedcalls);
-	g_slist_foreach(data->contacts, gstring_free_helper, NULL);
-	g_slist_free(data->contacts);
-	data->contacts = NULL;
+	free_data_numbers(data);
 
 	if (num_fields < 0) {
 		data->cb(NULL, 0, num_fields, 0, TRUE, data->user_data);
@@ -1513,6 +1499,27 @@ done:
 	return 0;
 }
 
+void phonebook_req_finalize(void *request)
+{
+	struct phonebook_data *data = request;
+
+	DBG("");
+
+	if (!data)
+		return;
+
+	/* canceling asynchronous operation on tracker if any is active */
+	if (data->query_canc) {
+		g_cancellable_cancel(data->query_canc);
+		g_object_unref(data->query_canc);
+	}
+
+	free_data_numbers(data);
+	free_data_contacts(data);
+	g_free(data->req_name);
+	g_free(data);
+}
+
 void *phonebook_pull(const char *name, const struct apparam_field *params,
 				phonebook_cb cb, void *user_data, int *err)
 {
-- 
1.7.4.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [PATCH v2 2/2] Change append to prepend in pull_newmissedcalls
  2011-05-19  8:51 [PATCH v2 0/2] Fix change to numbers GSlist in new missed calls Dmitriy Paliy
  2011-05-19  8:51 ` [PATCH v2 1/2] " Dmitriy Paliy
@ 2011-05-19  8:51 ` Dmitriy Paliy
       [not found]   ` <AA5DFB06574FF54BA4A76C3F1040DCBB11C18DE91D@INDXM3131.dir.svc.accenture.com>
  1 sibling, 1 reply; 9+ messages in thread
From: Dmitriy Paliy @ 2011-05-19  8:51 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Dmitriy Paliy

---
 plugins/phonebook-tracker.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/plugins/phonebook-tracker.c b/plugins/phonebook-tracker.c
index 95908ba..0e77ce8 100644
--- a/plugins/phonebook-tracker.c
+++ b/plugins/phonebook-tracker.c
@@ -1464,7 +1464,7 @@ static int pull_newmissedcalls(const char **reply, int num_fields,
 			data->newmissedcalls++;
 		else {
 			GString *number = g_string_new(reply[1]);
-			data->numbers = g_slist_append(data->numbers,
+			data->numbers = g_slist_prepend(data->numbers,
 								number);
 		}
 	}
-- 
1.7.4.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: A2DP Connection problem
       [not found]   ` <AA5DFB06574FF54BA4A76C3F1040DCBB11C18DE91D@INDXM3131.dir.svc.accenture.com>
@ 2011-05-19  9:34     ` Luiz Augusto von Dentz
  2011-06-01 11:12       ` h.patil
  0 siblings, 1 reply; 9+ messages in thread
From: Luiz Augusto von Dentz @ 2011-05-19  9:34 UTC (permalink / raw)
  To: ext h.patil@accenture.com; +Cc: linux-bluetooth

Hi,

On Thu, 2011-05-19 at 14:44 +0530, ext h.patil@accenture.com wrote:
> Hi All,
> 
> I am working on A2DP-bluez, using latest version of bluez which is
> 4.93, I am able to establish A2DP connection using dbus API's, after
> 10 seconds my connection is getting losted .please find the below log
> and please do help me.
> 
>  
> 
> bluetoothd[1509]: audio/a2dp.c:a2dp_config() Configuration match:
> resuming
> 
> bluetoothd[1509]: audio/unix.c:unix_ipc_sendmsg() Audio API:
> BT_RESPONSE -> BT_SET_CONFIGURATION
> 
> bluetoothd[1509]: audio/a2dp.c:setup_unref() 0x54b7d3e0: ref=0
> 
> bluetoothd[1509]: audio/a2dp.c:setup_free() 0x54b7d3e0
> 
> bluetoothd[1509]: audio/avdtp.c:avdtp_unref() 0x54b93370: ref=3
> 
> bluetoothd[1509]: audio/unix.c:client_cb() Audio API: BT_REQUEST <-
> BT_START_STREAM
> 
> bluetoothd[1509]: audio/avdtp.c:avdtp_ref() 0x54b93370: ref=4
> 
> bluetoothd[1509]: audio/a2dp.c:setup_ref() 0x54b7d3e0: ref=1
> 
> bluetoothd[1509]: audio/avdtp.c:session_cb() 
> 
> bluetoothd[1509]: audio/avdtp.c:avdtp_parse_cmd() Received
> DISCOVER_CMD
> 
> bluetoothd[1509]: audio/avdtp.c:session_cb() 
> 
> bluetoothd[1509]: START request rejected: Bad Acceptor SEID (18)

Strange, how come you manage to get a bad seid? I tough you were using
PulseAudio since I saw your messages on its mailing list, but afaik it
should not cause such behavior. Well it could also be that the remote
device is not working properly too, which device is that?

> 
> bluetoothd[1509]: audio/a2dp.c:start_cfm() Sink 0x54b48aa0: Start_Cfm
> 
> bluetoothd[1509]: resume failed
> 
> bluetoothd[1509]: audio/unix.c:unix_ipc_error() sending error
> Input/output error(5)
> 
> bluetoothd[1509]: audio/unix.c:unix_ipc_sendmsg() Audio API: BT_ERROR
> -> BT_START_STREAM
> 
> bluetoothd[1509]: audio/a2dp.c:a2dp_sep_unlock() SEP 0x54b48aa0
> unlocked
> 
> bluetoothd[1509]: audio/avdtp.c:avdtp_unref() 0x54b93370: ref=3
> 
> bluetoothd[1509]: audio/a2dp.c:setup_unref() 0x54b7d3e0: ref=0
> 
> bluetoothd[1509]: audio/a2dp.c:setup_free() 0x54b7d3e0
> 
> bluetoothd[1509]: audio/avdtp.c:avdtp_unref() 0x54b93370: ref=2
> 
> bluetoothd[1509]: audio/unix.c:client_cb() Unix client disconnected
> (fd=26)
> 
> bluetoothd[1509]: audio/unix.c:client_free() client_free(0x54b455d0)
> 
> bluetoothd[1509]: audio/avdtp.c:session_cb() 
> 
> bluetoothd[1509]: audio/avdtp.c:avdtp_parse_cmd() Received START_CMD
> 
> bluetoothd[1509]: audio/a2dp.c:start_ind() Sink 0x54b48aa0: Start_Ind
> 
> bluetoothd[1509]: audio/avdtp.c:avdtp_ref() 0x54b93370: ref=3
> 
> bluetoothd[1509]: audio/avdtp.c:avdtp_sep_set_state() stream state
> changed: OPEN -> STREAMING
> 
> bluetoothd[1509]: audio/avdtp.c:avdtp_unref() 0x54b93370: ref=2
> 
> bluetoothd[1509]: Suspend: Connection timed out (110)
> 
> bluetoothd[1509]: audio/a2dp.c:suspend_cfm() Sink 0x54b48aa0:
> Suspend_Cfm
> 
> bluetoothd[1509]: Abort: Connection timed out (110)
> 
> bluetoothd[1509]: audio/avdtp.c:connection_lost() Disconnected from
> 00:25:CF:03:FE:AE
> 
> bluetoothd[1509]: audio/a2dp.c:abort_cfm() Sink 0x54b48aa0: Abort_Cfm
> 
> bluetoothd[1509]: audio/avdtp.c:avdtp_sep_set_state() stream state
> changed: STREAMING -> IDLE
> 
> bluetoothd[1509]: audio/avdtp.c:avdtp_unref() 0x54b93370: ref=1
> 
> bluetoothd[1509]: audio/avdtp.c:avdtp_unref() 0x54b93370: ref=0
> 
> bluetoothd[1509]: audio/avdtp.c:avdtp_unref() 0x54b93370: freeing
> session and removing from list

If there is no client connected like you can see above the stream will
auto suspend in 5 seconds. Btw this timeout normally indicates that the
remote device either crashed or is in bad state.



^ permalink raw reply	[flat|nested] 9+ messages in thread

* RE: A2DP Connection problem
  2011-05-19  9:34     ` A2DP Connection problem Luiz Augusto von Dentz
@ 2011-06-01 11:12       ` h.patil
  2011-06-01 11:35         ` Luiz Augusto von Dentz
  0 siblings, 1 reply; 9+ messages in thread
From: h.patil @ 2011-06-01 11:12 UTC (permalink / raw)
  To: linux-bluetooth, luiz.dentz-von

Hi Luiz,
          I am using Infineon PBA31308 BT chip with arm board.
          Do you any idea?
          Still I am facing same problem.

Thanks
Patil


-----Original Message-----
From: linux-bluetooth-owner@vger.kernel.org [mailto:linux-bluetooth-owner@vger.kernel.org] On Behalf Of Luiz Augusto von Dentz
Sent: Thursday, May 19, 2011 3:04 PM
To: Patil, H.
Cc: linux-bluetooth@vger.kernel.org
Subject: Re: A2DP Connection problem

Hi,

On Thu, 2011-05-19 at 14:44 +0530, ext h.patil@accenture.com wrote:
> Hi All,
>
> I am working on A2DP-bluez, using latest version of bluez which is
> 4.93, I am able to establish A2DP connection using dbus API's, after
> 10 seconds my connection is getting losted .please find the below log
> and please do help me.
>
>
>
> bluetoothd[1509]: audio/a2dp.c:a2dp_config() Configuration match:
> resuming
>
> bluetoothd[1509]: audio/unix.c:unix_ipc_sendmsg() Audio API:
> BT_RESPONSE -> BT_SET_CONFIGURATION
>
> bluetoothd[1509]: audio/a2dp.c:setup_unref() 0x54b7d3e0: ref=0
>
> bluetoothd[1509]: audio/a2dp.c:setup_free() 0x54b7d3e0
>
> bluetoothd[1509]: audio/avdtp.c:avdtp_unref() 0x54b93370: ref=3
>
> bluetoothd[1509]: audio/unix.c:client_cb() Audio API: BT_REQUEST <-
> BT_START_STREAM
>
> bluetoothd[1509]: audio/avdtp.c:avdtp_ref() 0x54b93370: ref=4
>
> bluetoothd[1509]: audio/a2dp.c:setup_ref() 0x54b7d3e0: ref=1
>
> bluetoothd[1509]: audio/avdtp.c:session_cb()
>
> bluetoothd[1509]: audio/avdtp.c:avdtp_parse_cmd() Received
> DISCOVER_CMD
>
> bluetoothd[1509]: audio/avdtp.c:session_cb()
>
> bluetoothd[1509]: START request rejected: Bad Acceptor SEID (18)

Strange, how come you manage to get a bad seid? I tough you were using
PulseAudio since I saw your messages on its mailing list, but afaik it
should not cause such behavior. Well it could also be that the remote
device is not working properly too, which device is that?

>
> bluetoothd[1509]: audio/a2dp.c:start_cfm() Sink 0x54b48aa0: Start_Cfm
>
> bluetoothd[1509]: resume failed
>
> bluetoothd[1509]: audio/unix.c:unix_ipc_error() sending error
> Input/output error(5)
>
> bluetoothd[1509]: audio/unix.c:unix_ipc_sendmsg() Audio API: BT_ERROR
> -> BT_START_STREAM
>
> bluetoothd[1509]: audio/a2dp.c:a2dp_sep_unlock() SEP 0x54b48aa0
> unlocked
>
> bluetoothd[1509]: audio/avdtp.c:avdtp_unref() 0x54b93370: ref=3
>
> bluetoothd[1509]: audio/a2dp.c:setup_unref() 0x54b7d3e0: ref=0
>
> bluetoothd[1509]: audio/a2dp.c:setup_free() 0x54b7d3e0
>
> bluetoothd[1509]: audio/avdtp.c:avdtp_unref() 0x54b93370: ref=2
>
> bluetoothd[1509]: audio/unix.c:client_cb() Unix client disconnected
> (fd=26)
>
> bluetoothd[1509]: audio/unix.c:client_free() client_free(0x54b455d0)
>
> bluetoothd[1509]: audio/avdtp.c:session_cb()
>
> bluetoothd[1509]: audio/avdtp.c:avdtp_parse_cmd() Received START_CMD
>
> bluetoothd[1509]: audio/a2dp.c:start_ind() Sink 0x54b48aa0: Start_Ind
>
> bluetoothd[1509]: audio/avdtp.c:avdtp_ref() 0x54b93370: ref=3
>
> bluetoothd[1509]: audio/avdtp.c:avdtp_sep_set_state() stream state
> changed: OPEN -> STREAMING
>
> bluetoothd[1509]: audio/avdtp.c:avdtp_unref() 0x54b93370: ref=2
>
> bluetoothd[1509]: Suspend: Connection timed out (110)
>
> bluetoothd[1509]: audio/a2dp.c:suspend_cfm() Sink 0x54b48aa0:
> Suspend_Cfm
>
> bluetoothd[1509]: Abort: Connection timed out (110)
>
> bluetoothd[1509]: audio/avdtp.c:connection_lost() Disconnected from
> 00:25:CF:03:FE:AE
>
> bluetoothd[1509]: audio/a2dp.c:abort_cfm() Sink 0x54b48aa0: Abort_Cfm
>
> bluetoothd[1509]: audio/avdtp.c:avdtp_sep_set_state() stream state
> changed: STREAMING -> IDLE
>
> bluetoothd[1509]: audio/avdtp.c:avdtp_unref() 0x54b93370: ref=1
>
> bluetoothd[1509]: audio/avdtp.c:avdtp_unref() 0x54b93370: ref=0
>
> bluetoothd[1509]: audio/avdtp.c:avdtp_unref() 0x54b93370: freeing
> session and removing from list

If there is no client connected like you can see above the stream will
auto suspend in 5 seconds. Btw this timeout normally indicates that the
remote device either crashed or is in bad state.


--
To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


This message is for the designated recipient only and may contain privileged, proprietary, or otherwise private information.  If you have received it in error, please notify the sender immediately and delete the original.  Any other use of the email by you is prohibited.

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: A2DP Connection problem
  2011-06-01 11:12       ` h.patil
@ 2011-06-01 11:35         ` Luiz Augusto von Dentz
  2011-06-01 11:46           ` h.patil
  0 siblings, 1 reply; 9+ messages in thread
From: Luiz Augusto von Dentz @ 2011-06-01 11:35 UTC (permalink / raw)
  To: h.patil; +Cc: linux-bluetooth

Hi,

On Wed, Jun 1, 2011 at 2:12 PM,  <h.patil@accenture.com> wrote:
> Hi Luiz,
>          I am using Infineon PBA31308 BT chip with arm board.
>          Do you any idea?
>          Still I am facing same problem.
>
> Thanks
> Patil

No top posting please.

What exactly are you trying to do? Is that BlueZ stack running on arm
board simulating a headset or a phone? Can you send us the hcidump
output of Set_Configuration command and the response?


-- 
Luiz Augusto von Dentz
Computer Engineer

^ permalink raw reply	[flat|nested] 9+ messages in thread

* RE: A2DP Connection problem
  2011-06-01 11:35         ` Luiz Augusto von Dentz
@ 2011-06-01 11:46           ` h.patil
  2011-06-01 12:04             ` Luiz Augusto von Dentz
  0 siblings, 1 reply; 9+ messages in thread
From: h.patil @ 2011-06-01 11:46 UTC (permalink / raw)
  To: luiz.dentz; +Cc: linux-bluetooth

[-- Attachment #1: Type: text/plain, Size: 1710 bytes --]

Hello Luiz,

Thanks a lot for your response.
I am trying to stream the audio data from source(Mobile) to my hardaware(sink-BT chip infineon on PBA31308)through A2DP.
I established the A2DP connection  from headset(sink) to mobile(source).
When I start playing the song, it streams for 6 seconds after that a2dp disconnection is happening.

Please find the attached hcidump log from my target.

Thanks,
patil



-----Original Message-----
From: linux-bluetooth-owner@vger.kernel.org [mailto:linux-bluetooth-owner@vger.kernel.org] On Behalf Of Luiz Augusto von Dentz
Sent: Wednesday, June 01, 2011 5:06 PM
To: Patil, H.
Cc: linux-bluetooth@vger.kernel.org
Subject: Re: A2DP Connection problem

Hi,

On Wed, Jun 1, 2011 at 2:12 PM,  <h.patil@accenture.com> wrote:
> Hi Luiz,
>          I am using Infineon PBA31308 BT chip with arm board.
>          Do you any idea?
>          Still I am facing same problem.
>
> Thanks
> Patil

No top posting please.

What exactly are you trying to do? Is that BlueZ stack running on arm
board simulating a headset or a phone? Can you send us the hcidump
output of Set_Configuration command and the response?


--
Luiz Augusto von Dentz
Computer Engineer
--
To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


This message is for the designated recipient only and may contain privileged, proprietary, or otherwise private information.  If you have received it in error, please notify the sender immediately and delete the original.  Any other use of the email by you is prohibited.

[-- Attachment #2: hcidump.txt --]
[-- Type: text/plain, Size: 60372 bytes --]

root@otp-mmes-build:/home/mmes# ssh root@192.168.0.10
root@192.168.0.10's password: 
Last login: Thu Jan  1 00:02:12 2009 from 192.168.0.23
~ # cd /home/
/home # ./hcidump -X
HCI sniffer - Bluetooth packet analyzer ver 2.0
device: hci0 snap_len: 1028 filter: 0xffffffff
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
< HCI Command: Read Local Version Information (0x04|0x0001) plen 0
> HCI Event: Command Complete (0x0e) plen 12
    Read Local Version Information (0x04|0x0001) ncmd 1
    status 0x00
    HCI Version: 2.1 (0x4) HCI Revision: 0x85e9
    LMP Version: 2.1 (0x4) LMP Subversion: 0x85e9
    Manufacturer: Infineon Technologies AG (9)
< HCI Command: Write Page Timeout (0x03|0x0018) plen 2
    timeout 8192
> HCI Event: Command Complete (0x0e) plen 4
    Write Page Timeout (0x03|0x0018) ncmd 2
    status 0x00
< HCI Command: Read Stored Link Key (0x03|0x000d) plen 7
    bdaddr 00:00:00:00:00:00 all 1
> HCI Event: Command Complete (0x0e) plen 8
    Read Stored Link Key (0x03|0x000d) ncmd 1
    status 0x00 max 5 num 0
< HCI Command: Set Event Mask (0x03|0x0001) plen 8
    Mask: 0xfffffbff07f8bf1d
> HCI Event: Command Complete (0x0e) plen 4
    Set Event Mask (0x03|0x0001) ncmd 1
    status 0x00
< HCI Command: Write Simple Pairing Mode (0x03|0x0056) plen 1
    mode 0x01
> HCI Event: Command Complete (0x0e) plen 4
    Write Simple Pairing Mode (0x03|0x0056) ncmd 1
    status 0x0c
    Error: Command Disallowed
< HCI Command: Write Inquiry Mode (0x03|0x0045) plen 1
    mode 2
> HCI Event: Command Complete (0x0e) plen 4
    Write Inquiry Mode (0x03|0x0045) ncmd 2
    status 0x00
< HCI Command: Read Inquiry Response Transmit Power Level (0x03|0x0058) plen 0
> HCI Event: Command Complete (0x0e) plen 5
    Read Inquiry Response Transmit Power Level (0x03|0x0058) ncmd 1
    status 0x00 level 4
< HCI Command: Write Default Link Policy Settings (0x02|0x000f) plen 2
    policy 0x07
    Link policy: RSWITCH HOLD SNIFF 
> HCI Event: Command Complete (0x0e) plen 4
    Write Default Link Policy Settings (0x02|0x000f) ncmd 1
    status 0x00
< HCI Command: Write Local Name (0x03|0x0013) plen 248
    name 'BT_Device'
> HCI Event: Command Complete (0x0e) plen 4
    Write Local Name (0x03|0x0013) ncmd 1
    status 0x00
< HCI Command: Write Class of Device (0x03|0x0024) plen 3
    class 0x4e0100
> HCI Event: Command Complete (0x0e) plen 4
    Write Class of Device (0x03|0x0024) ncmd 2
    status 0x00
< HCI Command: Write Scan Enable (0x03|0x001a) plen 1
    enable 3
> HCI Event: Command Complete (0x0e) plen 4
    Write Scan Enable (0x03|0x001a) ncmd 2
    status 0x00
< HCI Command: Exit Periodic Inquiry Mode (0x01|0x0004) plen 0
> HCI Event: Command Complete (0x0e) plen 4
    Exit Periodic Inquiry Mode (0x01|0x0004) ncmd 1
    status 0x0c
    Error: Command Disallowed
< HCI Command: Read Local Name (0x03|0x0014) plen 0
> HCI Event: Command Complete (0x0e) plen 252
    Read Local Name (0x03|0x0014) ncmd 1
    status 0x00 name 'BT_Device'
< HCI Command: Read Scan Enable (0x03|0x0019) plen 0
> HCI Event: Command Complete (0x0e) plen 5
    Read Scan Enable (0x03|0x0019) ncmd 2
    status 0x00 enable 3
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
< HCI Command: Write Scan Enable (0x03|0x001a) plen 1
    enable 2
> HCI Event: Command Complete (0x0e) plen 4
    Write Scan Enable (0x03|0x001a) ncmd 2
    status 0x00
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
< HCI Command: Read Scan Enable (0x03|0x0019) plen 0
> HCI Event: Command Complete (0x0e) plen 5
    Read Scan Enable (0x03|0x0019) ncmd 2
    status 0x00 enable 2
< HCI Command: Write Scan Enable (0x03|0x001a) plen 1
    enable 2
> HCI Event: Command Complete (0x0e) plen 4
    Write Scan Enable (0x03|0x001a) ncmd 2
    status 0x00
< HCI Command: Read Scan Enable (0x03|0x0019) plen 0
> HCI Event: Command Complete (0x0e) plen 5
    Read Scan Enable (0x03|0x0019) ncmd 2
    status 0x00 enable 2
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
< HCI Command: Write Scan Enable (0x03|0x001a) plen 1
    enable 3
> HCI Event: Command Complete (0x0e) plen 4
    Write Scan Enable (0x03|0x001a) ncmd 2
    status 0x00
< HCI Command: Read Scan Enable (0x03|0x0019) plen 0
> HCI Event: Command Complete (0x0e) plen 5
    Read Scan Enable (0x03|0x0019) ncmd 2
    status 0x00 enable 3
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
> HCI Event: Vendor (0xff) plen 3
  0000: cf 06 f9                                          ...
> HCI Event: Vendor (0xff) plen 3
  0000: cf 07 78                                          ..x
< HCI Command: Create Connection (0x01|0x0005) plen 13
    bdaddr A8:7E:33:AF:23:A4 ptype 0xcc18 rswitch 0x01 clkoffset 0x0000
    Packet type: DM1 DM3 DM5 DH1 DH3 DH5 
> HCI Event: Command Status (0x0f) plen 4
    Create Connection (0x01|0x0005) status 0x00 ncmd 1
> HCI Event: Connect Complete (0x03) plen 11
    status 0x00 handle 256 bdaddr A8:7E:33:AF:23:A4 type ACL encrypt 0x00
> HCI Event: Max Slots Change (0x1b) plen 3
    handle 256 slots 5
< HCI Command: Read Remote Supported Features (0x01|0x001b) plen 2
    handle 256
> HCI Event: Command Status (0x0f) plen 4
    Read Remote Supported Features (0x01|0x001b) status 0x00 ncmd 1
> HCI Event: Read Remote Supported Features (0x0b) plen 11
    status 0x00 handle 256
    Features: 0xbf 0xee 0x0f 0xce 0x98 0x39 0x00 0x00
< ACL data: handle 256 flags 0x00 dlen 10
    0000: 06 00 01 00 0a 01 02 00  02 00                    ..........
> HCI Event: Number of Completed Packets (0x13) plen 5
    handle 256 packets 1
> ACL data: handle 256 flags 0x02 dlen 16
    L2CAP(s): Info rsp: type 2 result 0
      Extended feature mask 0x0000
< HCI Command: Authentication Requested (0x01|0x0011) plen 2
    handle 256
> HCI Event: Command Status (0x0f) plen 4
    Authentication Requested (0x01|0x0011) status 0x00 ncmd 1
> HCI Event: Link Key Request (0x17) plen 6
    bdaddr A8:7E:33:AF:23:A4
< HCI Command: Link Key Request Reply (0x01|0x000b) plen 22
    bdaddr A8:7E:33:AF:23:A4 key 980EE3F268222FE8FB5BD1503F3924BA
> HCI Event: Command Complete (0x0e) plen 10
    Link Key Request Reply (0x01|0x000b) ncmd 1
    status 0x00 bdaddr A8:7E:33:AF:23:A4
> HCI Event: Auth Complete (0x06) plen 3
    status 0x00 handle 256
< HCI Command: Set Connection Encryption (0x01|0x0013) plen 3
    handle 256 encrypt 0x01
> HCI Event: Command Status (0x0f) plen 4
    Set Connection Encryption (0x01|0x0013) status 0x00 ncmd 1
> HCI Event: Encrypt Change (0x08) plen 4
    status 0x00 handle 256 encrypt 0x01
< ACL data: handle 256 flags 0x00 dlen 12
    0000: 08 00 01 00 02 02 04 00  19 00 40 00              ..........@.
> HCI Event: Number of Completed Packets (0x13) plen 5
    handle 256 packets 1
> ACL data: handle 256 flags 0x02 dlen 16
    L2CAP(s): Connect rsp: dcid 0x0040 scid 0x0040 result 1 status 0
      Connection pending - No futher information available
> ACL data: handle 256 flags 0x02 dlen 16
    L2CAP(s): Connect rsp: dcid 0x0040 scid 0x0040 result 0 status 0
      Connection successful
< ACL data: handle 256 flags 0x00 dlen 12
    0000: 08 00 01 00 04 03 04 00  40 00 00 00              ........@...
> ACL data: handle 256 flags 0x02 dlen 12
    L2CAP(s): Config req: dcid 0x0040 flags 0x00 clen 0
> HCI Event: Number of Completed Packets (0x13) plen 5
    handle 256 packets 1
< ACL data: handle 256 flags 0x00 dlen 18
    0000: 0e 00 01 00 05 09 0a 00  40 00 00 00 00 00 01 02  ........@.......
    0010: a0 02                                             ..
> HCI Event: Number of Completed Packets (0x13) plen 5
    handle 256 packets 1
> ACL data: handle 256 flags 0x02 dlen 14
    L2CAP(s): Config rsp: scid 0x0040 flags 0x00 result 0 clen 0
      Success
< ACL data: handle 256 flags 0x00 dlen 6
    0000: 02 00 40 00 00 01                                 ..@...
> HCI Event: Number of Completed Packets (0x13) plen 5
    handle 256 packets 1
> ACL data: handle 256 flags 0x02 dlen 8
    L2CAP(d): cid 0x0040 len 4 [psm 0]
      0000: 02 01 04 00                                       ....
< ACL data: handle 256 flags 0x00 dlen 7
    0000: 03 00 40 00 10 02 04                              ..@....
> HCI Event: Number of Completed Packets (0x13) plen 5
    handle 256 packets 1
> ACL data: handle 256 flags 0x02 dlen 16
    L2CAP(d): cid 0x0040 len 12 [psm 0]
      0000: 12 02 01 00 07 06 00 00  19 f5 08 30              ...........0
< ACL data: handle 256 flags 0x00 dlen 18
    0000: 0e 00 40 00 20 03 04 08  01 00 07 06 00 00 11 15  ..@. ...........
    0010: 08 30                                             .0
> HCI Event: Number of Completed Packets (0x13) plen 5
    handle 256 packets 1
> ACL data: handle 256 flags 0x02 dlen 6
    L2CAP(d): cid 0x0040 len 2 [psm 0]
      0000: 22 03                                             ".
< ACL data: handle 256 flags 0x00 dlen 7
    0000: 03 00 40 00 30 06 04                              ..@.0..
> HCI Event: Number of Completed Packets (0x13) plen 5
    handle 256 packets 1
> ACL data: handle 256 flags 0x02 dlen 6
    L2CAP(d): cid 0x0040 len 2 [psm 0]
      0000: 32 06                                             2.
< ACL data: handle 256 flags 0x00 dlen 12
    0000: 08 00 01 00 02 04 04 00  19 00 41 00              ..........A.
> HCI Event: Number of Completed Packets (0x13) plen 5
    handle 256 packets 1
> ACL data: handle 256 flags 0x02 dlen 16
    L2CAP(s): Connect rsp: dcid 0x0041 scid 0x0041 result 0 status 0
      Connection successful
< ACL data: handle 256 flags 0x00 dlen 12
    0000: 08 00 01 00 04 05 04 00  41 00 00 00              ........A...
> ACL data: handle 256 flags 0x02 dlen 40
    L2CAP(s): Config req: dcid 0x0041 flags 0x00 clen 28
      FlushTO 400 QoS 0x01 (Best effort) 
> HCI Event: Number of Completed Packets (0x13) plen 5
    handle 256 packets 1
< ACL data: handle 256 flags 0x00 dlen 18
    0000: 0e 00 01 00 05 0a 0a 00  41 00 00 00 00 00 01 02  ........A.......
    0010: a0 02                                             ..
> HCI Event: Number of Completed Packets (0x13) plen 5
    handle 256 packets 1
> ACL data: handle 256 flags 0x02 dlen 14
    L2CAP(s): Config rsp: scid 0x0041 flags 0x00 result 0 clen 0
      Success
< ACL data: handle 256 flags 0x00 dlen 7
    0000: 03 00 40 00 40 07 04                              ..@.@..
> HCI Event: Number of Completed Packets (0x13) plen 5
    handle 256 packets 1
> ACL data: handle 256 flags 0x02 dlen 6
    L2CAP(d): cid 0x0040 len 2 [psm 0]
      0000: 42 07                                             B.
> ACL data: handle 256 flags 0x02 dlen 344
> ACL data: handle 256 flags 0x01 dlen 312
    L2CAP(d): cid 0x0041 len 652 [psm 0]
      0000: 80 60 23 ae 7e d7 6a 80  d8 be 27 5c 09 9c fd 1d  .`#.~.j...'\....
      0010: bd f8 b6 63 20 00 76 53  10 00 45 45 ae 99 f3 ab  ...c .vS..EE....
      0020: 2a 5e 29 5e c2 e0 ca db  a9 0a 33 71 5d 72 3b 2e  *^)^......3q]r;.
      0030: d9 14 76 5a 38 d0 4a d7  57 49 95 da 3c 72 ab 2d  ..vZ8.J.WI..<r.-
      0040: a5 75 3c ad 0b b6 82 7c  96 2d 44 bc f5 30 a6 f7  .u<....|.-D..0..
      0050: 86 17 0e cd 9c fd 1d 3d  f8 b9 73 20 00 76 74 20  .......=..s .vt 
      0060: 00 3b 77 1d 69 5b b8 13  50 1d b7 1a 66 ca 96 d3  .;w.i[..P...f...
      0070: d9 2f 54 8e aa cb 15 f7  1d 55 27 eb 35 b2 5e 9b  ./T......U'.5.^.
      0080: a3 ad 0c 4c 25 5b d5 e6  a3 39 4e 46 db e5 73 36  ...L%[...9NF..s6
      0090: db cb 5d bb 09 5a cd b9  d1 0f 4d 9c fd 1d dd fc  ..]..Z....M.....
      00a0: b8 64 31 00 76 63 10 00  d2 48 97 24 dc 28 d6 f0  .d1.vc...H.$.(..
      00b0: 5c a5 33 30 8c 45 a6 8c  aa 0a 50 86 58 79 93 6a  \.30.E....P.Xy.j
      00c0: d1 ad c3 17 cc 7b ba ca  9c 72 d6 65 5e a2 b6 bb  .....{...r.e^...
      00d0: 2f 31 b1 ca 05 6e 09 c7  b4 2f 8e 96 a5 73 73 aa  /1...n.../...ss.
      00e0: db 1b 9c fd 1d f6 fc b9  74 21 00 76 73 20 00 95  ........t!.vs ..
      00f0: 86 cf 1c 4b b6 26 de 5d  ae b6 da ed 5d a6 f8 6a  ...K.&.]....]..j
      0100: 6d af 3c 4f 6d 46 1a 6b  8a ec d2 dc 44 84 95 1a  m.<OmF.k....D...
      0110: d3 a0 b8 cf 18 c6 b4 a3  01 44 92 53 4a c4 9f 45  .........D.SJ..E
      0120: 1d 29 a4 eb 2a 63 31 1b  1b 9c fd 1d 03 fc b8 73  .)..*c1........s
      0130: 11 00 76 63 20 00 8b 8c  cd 5b c9 9e ca 9a 28 f7  ..vc ....[....(.
      0140: 21 8a 69 b3 2a fa 5b e2  60 b2 50 f2 fa 11 f8 9c  !.i.*.[.`.P.....
      0150: 56 6a a3 af 23 45 0d 15  e1 cc f0 93 50 48 c4 ba  Vj..#E......PH..
      0160: ac 57 7c 46 df 41 8d c4  f1 03 06 79 31 09 34 c0  .W|F.A.....y1.4.
      0170: 9c fd 1d 48 fc b8 53 20  00 65 63 10 00 85 68 ca  ...H..S .ec...h.
      0180: 14 3c 4d 12 2c 16 1d 6f  89 62 7c 6a c3 21 23 5e  .<M.,..o.b|j.!#^
      0190: e1 81 23 39 6c 2b 12 71  65 59 9e ab 5a d3 b2 9c  ..#9l+.qeY..Z...
      01a0: 52 97 6c ac 90 9e a3 93  63 57 ad 62 9e 49 e7 14  R.l.....cW.b.I..
      01b0: d1 4f 08 a9 35 56 d6 9c  fd 1d 56 fc b9 83 20 00  .O..5V....V... .
      01c0: 87 64 20 00 4c cf 13 6a  98 78 dc 5b 33 ca e2 86  .d .L..j.x.[3...
      01d0: 5e 86 d3 e8 f5 b6 ab c8  b5 21 80 cd c5 23 76 6d  ^........!...#vm
      01e0: 2d 86 55 48 73 0a b8 c6  5a 25 38 73 52 21 53 4a  -.UHs...Z%8sR!SJ
      01f0: 4a e6 a6 e4 87 21 3b 3a  38 89 3d 21 c4 46 9c fd  J....!;:8.=!.F..
      0200: 1d 89 f8 b8 62 20 00 86  74 10 00 bf 16 39 26 d3  ....b ..t....9&.
      0210: c3 11 2e da 26 9b 20 69  b4 d8 0a 30 b4 49 01 99  ....&. i...0.I..
      0220: a9 36 cd 0d 30 a8 28 89  88 83 34 4b d3 38 a2 6b  .6..0.(...4K.8.k
      0230: e6 3c db 64 cd a6 db 98  8c 36 e3 c4 65 b7 5a 5b  .<.d.....6..e.Z[
      0240: 6d b6 ac df 6d 9c fd 1d  69 f8 b8 74 20 00 86 73  m...m...i..t ..s
      0250: 10 00 ad a6 c6 dc ab 36  76 d9 65 b4 b6 b4 b1 a9  .......6v.e.....
      0260: b4 09 8d 4d 98 44 68 6c  55 e3 2a 67 d5 08 93 23  ...M.DhlU.*g...#
      0270: 58 c2 e1 fc ba 19 53 11  32 5a 99 66 9f 23 a3 2d  X.....S.2Z.f.#.-
      0280: 98 9e da 70 ce 21 53 95  62 94 ac ab              ...p.!S.b...
> ACL data: handle 256 flags 0x02 dlen 344
> ACL data: handle 256 flags 0x01 dlen 312
    L2CAP(d): cid 0x0041 len 652 [psm 0]
      0000: 80 60 23 af 7e d7 6f 00  d8 be 27 5c 09 9c fd 1d  .`#.~.o...'\....
      0010: b8 f8 b9 73 20 00 86 73  10 00 87 8b bf 63 62 95  ...s ..s.....cb.
      0020: 4b 57 2c 62 59 3e f2 c6  28 78 24 0c dc bd 92 46  KW,bY>..(x$....F
      0030: 65 70 52 7b f5 a2 95 b0  3d 22 ed 95 d9 e7 76 d6  epR{....="....v.
      0040: 97 39 17 46 f5 a9 36 c9  4d cc 4e 53 71 d5 d2 ab  .9.F..6.M.NSq...
      0050: 8d f2 94 54 9c fd 1d 45  f8 b8 73 20 00 85 63 10  ...T...E..s ..c.
      0060: 00 9e 8d 8e 6c 43 eb b1  23 eb 17 1b 7a b8 91 6a  ....lC..#...z..j
      0070: ba b3 cf 59 a9 9d 73 3a  2d 12 76 4d 6a 93 a1 7a  ...Y..s:-.vMj..z
      0080: 66 9d 3b d3 d6 df 14 a2  b4 e7 57 2d b7 35 39 ad  f.;.......W-.59.
      0090: a1 51 4d 4d 18 ea 5b 67  d7 52 63 9c fd 1d 46 fc  .QMM..[g.Rc...F.
      00a0: b9 73 21 00 87 63 00 00  41 52 90 d9 ed 5c b8 92  .s!..c..AR...\..
      00b0: 16 e8 c2 63 17 62 23 48  ac 0d 87 29 e6 8d 37 2f  ...c.b#H...)..7/
      00c0: 44 87 63 59 ed 1b d9 c1  65 13 4d 4a 8f 68 e2 d7  D.cY....e.MJ.h..
      00d0: 4b 26 ce 3b 86 34 6d d7  4e 16 73 55 f0 7a b7 0e  K&.;.4m.N.sU.z..
      00e0: 83 d5 9c fd 1d 77 f8 b8  73 10 00 86 63 00 00 d8  .....w..s...c...
      00f0: b3 2a ad 10 99 f5 2d b0  d6 a5 48 76 ed 16 36 48  .*....-...Hv..6H
      0100: e9 bd 3a 50 75 d0 ae a4  cb 54 34 6b 8c 50 95 44  ..:Pu....T4k.P.D
      0110: 7b d3 f8 27 e0 d9 b3 70  c6 a1 bc 88 34 0e 64 31  {..'...p....4.d1
      0120: 9d 8f 22 4c f4 59 2d 69  1a 9c fd 1d 66 f8 b8 73  .."L.Y-i....f..s
      0130: 10 00 85 82 10 00 a3 9b  58 3d 1c 5b 71 dd 1c e0  ........X=.[q...
      0140: 8e cc f7 2d 65 b7 4a 33  20 c6 54 9d 12 2e ad 0a  ...-e.J3 .T.....
      0150: 0f 74 98 52 9b a2 ba eb  e5 15 d9 eb 29 b0 99 19  .t.R........)...
      0160: 65 a5 97 ac 14 9a 40 66  58 68 83 50 6c 75 3a 82  e.....@fXh.Plu:.
      0170: 9c fd 1d 54 f8 c9 74 20  00 86 74 10 00 3e 29 64  ...T..t ..t..>)d
      0180: 43 34 e2 d6 dc 53 32 bc  c5 2d 72 68 c7 02 76 49  C4...S2..-rh..vI
      0190: 30 4b 86 76 12 35 55 ac  d1 2b af a8 8f 25 8b 44  0K.v.5U..+...%.D
      01a0: b9 26 2e 29 27 42 91 69  48 7b 8c 2a 36 ad 66 56  .&.)'B.iH{.*6.fV
      01b0: 02 63 4b ac 70 da 1c 9c  fd 1d e1 f8 b8 63 20 00  .cK.p........c .
      01c0: 86 52 10 00 64 73 96 cb  fd e3 f6 63 88 d9 23 43  .R..ds.....c..#C
      01d0: 34 9d ec c7 23 f1 68 35  9c 77 36 6c f4 bc ae 49  4...#.h5.w6l...I
      01e0: 59 bd 6b 62 f5 7c 9b d8  a4 52 a5 42 dd 65 52 c4  Y.kb.|...R.B.eR.
      01f0: b5 ab 32 1f 45 5c 84 e5  ca c4 a4 ed 34 d8 9c fd  ..2.E\......4...
      0200: 1d f0 fc b9 73 20 00 86  73 20 00 52 7a 9d 1a 33  ....s ..s .Rz..3
      0210: d4 86 d8 60 e3 a4 e2 f9  1d a6 18 d9 6a 3d 4a d2  ...`........j=J.
      0220: 78 b1 96 cc cc f7 78 24  61 52 c7 a0 06 16 1b 28  x.....x$aR.....(
      0230: a6 ad c6 46 d7 3a b6 2b  47 ee 51 26 af 75 e6 8d  ...F.:.+G.Q&.u..
      0240: 03 98 8d 65 d3 9c fd 1d  5e f8 b8 63 20 00 86 73  ...e....^..c ..s
      0250: 10 00 b1 62 26 df 46 11  52 ee 02 90 27 8b d4 b5  ...b&.F.R...'...
      0260: 3c 92 b7 c5 39 bd cd 6a  21 f2 aa 70 cd b6 5c 4c  <...9..j!..p..\L
      0270: 9b a5 6c 13 cc 67 20 e8  5b c6 fe f6 95 ba 97 b3  ..l..g .[.......
      0280: 29 dc 41 91 8f 05 cc 8b  79 51 66 9b              ).A.....yQf.
> ACL data: handle 256 flags 0x02 dlen 344
> ACL data: handle 256 flags 0x01 dlen 312
    L2CAP(d): cid 0x0041 len 652 [psm 0]
      0000: 80 60 23 b0 7e d7 73 80  d8 be 27 5c 09 9c fd 1d  .`#.~.s...'\....
      0010: 52 f8 b8 63 10 00 86 53  10 00 d5 8b 4c cd 8c 1b  R..c...S....L...
      0020: 72 6b 1a e4 33 10 c9 55  96 d8 bc 0c a8 a9 63 85  rk..3..U......c.
      0030: 02 eb 01 87 6c 76 50 32  95 9a 8a ab 6c 34 8f 9f  ....lvP2....l4..
      0040: 5d 44 db 06 dd 65 34 97  6d 32 40 c1 75 72 06 6a  ]D...e4.m2@.ur.j
      0050: 83 e2 56 60 9c fd 1d 02  fc ba 74 20 00 87 73 20  ..V`......t ..s 
      0060: 00 93 66 e0 d9 73 37 37  10 5d d9 49 59 29 b9 b2  ..f..s77.].IY)..
      0070: f5 74 ed 45 6d 5e 52 73  ea b2 b3 21 13 dd b0 f6  .t.Em^Rs...!....
      0080: 96 dd 47 b4 b6 f3 c2 27  27 11 95 50 bb cf ab 8a  ..G....''..P....
      0090: 4e 84 62 71 83 63 43 93  67 1a 9b 9c fd 1d 3d f8  N.bq.cC.g.....=.
      00a0: a8 64 20 00 76 54 10 00  62 08 e4 93 65 d2 c8 2b  .d .vT..b...e..+
      00b0: 52 b0 4d 6c f5 5a 9c 3a  a9 a4 67 ac 46 9b ae 5a  R.Ml.Z.:..g.F..Z
      00c0: 24 bb 6e d2 35 e7 48 9d  2e ac b5 6d 6b 5d af 6b  $.n.5.H....mk].k
      00d0: 38 ee 93 56 db 6d 1a a3  23 66 95 02 13 16 a9 ac  8..V.m..#f......
      00e0: 97 b5 9c fd 1d 79 f8 b8  73 10 00 85 63 10 00 4d  .....y..s...c..M
      00f0: 73 74 9b 1c 9b 54 99 d0  da 24 c3 36 d9 a7 05 b7  st...T...$.6....
      0100: 2d b3 ad c0 4d 7a aa 4d  66 e9 34 6a 42 91 b5 0b  -...Mz.Mf.4jB...
      0110: ac 55 e8 06 14 ef b2 df  67 6d 27 72 3a 41 2c d6  .U......gm'r:A,.
      0120: 47 32 95 b1 cb 98 52 6b  13 9c fd 1d 97 fc b7 62  G2....Rk.......b
      0130: 10 00 85 63 20 00 b9 28  44 9d 9b 39 c8 f6 ad ce  ...c ..(D..9....
      0140: 69 68 cc 8f 59 79 25 f5  5a 49 be c9 76 22 66 6b  ih..Yy%.ZI..v"fk
      0150: 57 36 2b 77 9b bb 62 3e  65 b9 99 a6 ea 3d 1f 51  W6+w..b>e....=.Q
      0160: 21 68 e6 47 72 57 42 2d  ab 21 d9 1c 58 93 07 9b  !h.GrWB-.!..X...
      0170: 9c fd 1d 36 fc b7 62 20  00 84 63 20 00 c3 69 3d  ...6..b ..c ..i=
      0180: 5e 24 d2 5a e9 11 d8 b5  1e ef 00 a8 56 99 cd ad  ^$.Z........V...
      0190: 3c d8 91 1a 1a f2 6a 0a  b7 cb 47 b7 b6 59 f9 cd  <.....j...G..Y..
      01a0: 42 d8 f6 26 96 cc 13 1c  a5 fd c8 65 bf 26 42 51  B..&.......e.&BQ
      01b0: 82 26 33 ab 19 32 ec 9c  fd 1d d2 fc b9 75 20 00  .&3..2.......u .
      01c0: 85 74 10 00 1e b1 a5 6b  9d 8d 6b 4c 85 ac 24 3f  .t.....k..kL..$?
      01d0: ab 5b 49 ab 5a 2c 9c b8  c5 66 44 25 ca 36 19 2a  .[I.Z,...fD%.6.*
      01e0: a9 b1 4d 3d 4e c5 89 62  73 bc 4a 1b e1 e2 58 db  ..M=N..bs.J...X.
      01f0: ab 14 16 de 96 ac b6 32  b5 e1 ad 1d 32 0e 9c fd  .......2....2...
      0200: 1d 75 d8 b8 73 10 00 85  43 10 00 65 71 d4 02 69  .u..s...C..eq..i
      0210: 0e ba 52 68 95 1c be d5  98 d7 58 34 04 41 c1 99  ..Rh......X4.A..
      0220: 96 a9 6e a1 56 d3 94 0a  c8 74 1f 76 b4 1d 23 70  ..n.V....t.v..#p
      0230: 64 eb db 7c f7 78 da 28  44 87 3a 3a 68 b9 89 d3  d..|.x.(D.::h...
      0240: 59 a7 af aa b1 9c fd 1d  84 f8 b9 73 10 00 86 73  Y..........s...s
      0250: 10 00 33 83 9f 19 db 9c  78 cb e2 df 46 96 f6 da  ..3.....x...F...
      0260: 45 27 26 76 2f c5 35 8d  bd e9 ec 6c 12 52 63 64  E'&v/.5....l.Rcd
      0270: 7b aa d2 0b 65 f6 e4 2d  b2 b8 3e ad 95 57 7a cb  {...e..-..>..Wz.
      0280: e6 3f 9d d4 2d 4a 6e 29  56 0d 6c d3              .?..-Jn)V.l.
> ACL data: handle 256 flags 0x02 dlen 344
> ACL data: handle 256 flags 0x01 dlen 312
    L2CAP(d): cid 0x0041 len 652 [psm 0]
      0000: 80 60 23 b1 7e d7 78 00  d8 be 27 5c 09 9c fd 1d  .`#.~.x...'\....
      0010: 69 f8 b8 62 10 00 86 62  20 00 92 2a 46 96 05 59  i..b...b ..*F..Y
      0020: 64 b0 05 08 35 8b 58 45  bd c3 b3 4d cf 49 a8 8f  d...5.XE...M.I..
      0030: 26 0d cd 71 b3 72 ac 77  73 b1 6c 4f 5e 09 56 48  &..q.r.ws.lO^.VH
      0040: 70 b6 c5 c3 75 a7 f3 ca  69 3f 3f 46 52 1e d5 ca  p...u...i??FR...
      0050: b2 e9 8b 94 9c fd 1d 49  f8 a7 52 20 00 75 51 10  .......I..R .uQ.
      0060: 00 e3 dc 8e 26 90 e8 53  36 a6 24 27 e0 d0 42 29  ....&..S6.$'..B)
      0070: e5 83 51 ce 5b 23 96 15  db 5b a8 31 1b d4 28 58  ..Q.[#...[.1..(X
      0080: 5e 99 25 3a c4 c2 89 93  36 09 8d 7d a3 14 8b 2d  ^.%:....6..}...-
      0090: 12 64 17 4c f9 52 c2 67  e6 27 58 9c fd 1d 9e f8  .d.L.R.g.'X.....
      00a0: b9 83 20 00 86 72 10 00  5b 97 8b 11 82 44 f9 1f  .. ..r..[....D..
      00b0: 35 ec ca b2 4b 7d b3 7c  5c 28 d1 ac dc 29 9a 2e  5...K}.|\(...)..
      00c0: 99 91 ab 51 4d b2 68 6a  a6 0b c2 64 ee 59 cd 17  ...QM.hj...d.Y..
      00d0: 82 cc 50 be 57 72 85 52  23 9b 4e 95 dd 3b 76 4c  ..P.Wr.R#.N..;vL
      00e0: cd 5a 9c fd 1d ab f8 a8  63 20 00 75 63 10 00 52  .Z......c .uc..R
      00f0: 6a c6 c3 13 e2 e2 66 89  5a 12 67 2a d4 a9 54 ce  j.....f.Z.g*..T.
      0100: 2e 60 c2 29 96 da 6e fd  97 71 45 2a e7 c2 9b 17  .`.)..n..qE*....
      0110: 82 5c 86 ae 6b 04 c7 9a  da 36 39 b8 62 96 34 ca  .\..k....69.b.4.
      0120: 9d 91 3e 0f 2b 82 4d 7a  d3 9c fd 1d 66 f8 b8 74  ..>.+.Mz....f..t
      0130: 20 00 76 73 20 00 48 76  dc 9a 8b 36 f6 d1 dd b6   .vs .Hv...6....
      0140: b8 a6 e9 a6 37 05 2c ad  2b b1 62 69 c5 8b 0a 2e  ....7.,.+.bi....
      0150: 2a 98 91 57 86 cc 89 99  c6 a4 d1 22 37 16 ee ad  *..W......."7...
      0160: c4 a0 17 96 45 3d bc 70  29 e0 23 52 6b b4 d8 53  ....E=.p).#Rk..S
      0170: 9c fd 1d 32 f8 b8 63 20  00 75 63 10 00 a9 3b 2c  ...2..c .uc...;,
      0180: 95 d3 e0 c6 b5 19 02 b7  70 f9 0a 4e 78 d0 76 e9  ........p..Nx.v.
      0190: 3d c9 b6 4e 06 95 97 f5  47 6b 80 53 4d 1a b5 e6  =..N....Gk.SM...
      01a0: c6 dd 9b 97 a8 e4 ed b9  45 59 65 26 4a 2a a2 2e  ........EYe&J*..
      01b0: 7a 54 c1 74 89 a3 8c 9c  fd 1d b5 f8 b8 62 10 00  zT.t.........b..
      01c0: 85 53 10 00 bd 64 a6 4e  cc e9 1a 72 cf 29 53 6b  .S...d.N...r.)Sk
      01d0: 47 58 5a e6 3b 74 44 36  21 a1 de 73 3d 89 6a 9b  GXZ.;tD6!..s=.j.
      01e0: 2d 30 9b de 69 b2 da fb  4a 62 b6 da 6a d3 a7 04  -0..i...Jb..j...
      01f0: e7 14 9a 2a ac e0 61 9e  46 eb 30 69 37 3a 9c fd  ...*..a.F.0i7:..
      0200: 1d 16 f8 b9 83 10 00 86  72 00 00 68 75 7b 63 3c  ........r..hu{c<
      0210: 24 5a cf 10 e7 55 17 89  5f 12 50 5b 98 9e ec 5d  $Z...U.._.P[...]
      0220: aa 29 26 c4 67 55 13 9c  89 77 80 a4 6b 3b 04 ee  .)&.gU...w..k;..
      0230: 66 11 27 66 d0 61 3c f9  92 85 f2 b4 98 0e a5 e5  f.'f.a<.........
      0240: 00 79 6b 2b 4b 9c fd 1d  9e f8 b9 72 20 00 85 73  .yk+K......r ..s
      0250: 20 00 a6 85 72 1b db 24  42 db 61 26 17 11 3b 34   ...r..$B.a&..;4
      0260: c5 e4 d9 26 ba 62 c0 36  98 f1 a1 b0 f5 6a 13 b0  ...&.b.6.....j..
      0270: 63 3e 9d db d9 b6 f3 27  0e b7 62 b6 95 bb c9 36  c>.....'..b....6
      0280: 11 db 3d be 8e 25 8e 5b  6f d3 75 9b              ..=..%.[o.u.
> ACL data: handle 256 flags 0x02 dlen 344
> ACL data: handle 256 flags 0x01 dlen 312
    L2CAP(d): cid 0x0041 len 652 [psm 0]
      0000: 80 60 23 b2 7e d7 7c 80  d8 be 27 5c 09 9c fd 1d  .`#.~.|...'\....
      0010: e8 f8 b8 63 30 00 85 63  10 00 57 5c b8 da 04 e5  ...c0..c..W\....
      0020: e6 d0 60 ed 48 7c a7 4e  53 0b 29 52 a3 ad 42 95  ..`.H|.NS.)R..B.
      0030: 36 a9 f4 ac 12 4f ec 4a  4a 87 5b 45 14 ba cb 8c  6....O.JJ.[E....
      0040: 2a 44 af 93 75 98 73 4c  49 04 6a 64 2e 72 2a f9  *D..u.sLI.jd.r*.
      0050: 4d 42 95 89 9c fd 1d 18  f8 b8 72 20 00 85 63 10  MB........r ..c.
      0060: 00 68 b5 90 a4 db 2b 85  a7 75 15 2d 78 c8 7d 59  .h....+..u.-x.}Y
      0070: 39 b3 4a 71 41 1c 4e 94  ed 1a 54 54 6b 93 bf 83  9.JqA.N...TTk...
      0080: 76 9b e3 5c 64 9f 2b 27  97 1a 8b 48 d7 29 59 e7  v..\d.+'...H.)Y.
      0090: 3d 2a 46 32 62 8d ca 72  cc 6a da 9c fd 1d 27 f8  =*F2b..r.j....'.
      00a0: b7 52 20 00 84 62 10 00  a3 98 7d bd c3 23 09 ef  .R ..b....}..#..
      00b0: 1c 97 2d 62 68 e9 6b 1d  6a 4b d7 2b 6e 9e 37 1c  ..-bh.k.jK.+n.7.
      00c0: 66 f0 71 29 37 76 a7 69  3a 71 2b 85 57 29 59 08  f.q)7v.i:q+.W)Y.
      00d0: b6 ae 90 53 ea b2 4b ac  ae 84 ad 51 5b e9 ac 32  ...S..K....Q[..2
      00e0: 1f 5b 9c fd 1d f0 f8 ba  83 20 00 86 73 10 00 48  .[....... ..s..H
      00f0: 73 42 da e4 16 46 90 9c  94 b4 14 c4 b5 a7 78 9e  sB...F........x.
      0100: 0c 91 1c b1 60 ae 49 74  12 2c 6a 61 5d 93 c5 5c  ....`.It.,ja]..\
      0110: 4c 19 bb 2c de aa 57 8d  15 3e 3c 07 31 91 e6 c1  L..,..W..><.1...
      0120: cc 8f 52 10 7c 74 af 85  5b 9c fd 1d b9 f8 b7 62  ..R.|t..[......b
      0130: 10 00 85 52 20 00 a4 89  6c 9d 0c d4 32 56 8e a6  ...R ...l...2V..
      0140: 94 e5 31 49 c7 14 5a 36  30 e2 4b cd e8 da 0d 34  ..1I..Z60.K....4
      0150: 50 ed 59 a3 38 52 95 82  b9 f4 f6 5d 0c bb 86 c6  P.Y.8R.....]....
      0160: 66 4b 28 33 d4 e1 ba 28  8a 95 99 a4 6f 52 f0 a3  fK(3...(....oR..
      0170: 9c fd 1d 19 f8 c7 83 10  00 86 73 20 00 7e a7 9d  ..........s .~..
      0180: 13 7a 35 78 98 49 ad 46  d8 6d 66 36 5a 6a 91 b0  .z5x.I.F.mf6Zj..
      0190: 93 4e 8d d0 96 3c 6e 74  b0 eb 75 46 83 5b 6c 2c  .N...<nt..uF.[l,
      01a0: 5a db d1 26 66 b4 07 5b  15 76 5c 34 bb 24 69 84  Z..&f..[.v\4.$i.
      01b0: eb 2b 62 6e 4b 79 cd 9c  fd 1d 2a f8 b8 73 10 00  .+bnKy....*..s..
      01c0: 85 74 20 00 5b 3d 70 c2  6c d9 65 67 9d b7 65 4a  .t .[=p.l.eg..eJ
      01d0: ed 22 db e9 65 96 e6 2b  1c 2b 89 90 e1 3a 88 8b  ."..e..+.+...:..
      01e0: 29 b2 46 91 4e 14 b6 aa  21 09 c5 5c c7 8e 8a d8  ).F.N...!..\....
      01f0: 01 76 06 aa cb ac b9 9d  1c e5 af 90 e0 4d 9c fd  .v...........M..
      0200: 1d 40 f8 b7 53 20 00 85  53 10 00 93 49 63 8c 91  .@..S ..S...Ic..
      0210: ca 2c 70 5a 4c 45 8e 34  52 3b fd b2 d1 ea 15 9f  .,pZLE.4R;......
      0220: 92 f9 2d 5d 75 28 6e ac  8d c4 91 23 fa 1d 39 15  ..-]u(n....#..9.
      0230: 4e ec ba 9f 89 6d d5 6b  ca ef 1a 5d d1 75 52 ee  N....m.k...].uR.
      0240: 5b 8b 75 11 93 9c fd 1d  0e f8 b9 73 10 00 86 74  [.u........s...t
      0250: 10 00 5a 77 12 6b 33 c8  cb 59 62 ca 62 cb 16 95  ..Zw.k3..Yb.b...
      0260: 52 d5 b6 ba bc 64 c2 55  14 96 32 a3 fa 70 92 94  R....d.U..2..p..
      0270: 63 64 61 e4 a9 5b 5b 21  bc 93 20 91 64 9a 28 67  cda..[[!.. .d.(g
      0280: a4 d3 23 2d 26 d6 21 29  dc 0d 0b 70              ..#-&.!)...p
> ACL data: handle 256 flags 0x02 dlen 344
> ACL data: handle 256 flags 0x01 dlen 312
    L2CAP(d): cid 0x0041 len 652 [psm 0]
      0000: 80 60 23 b3 7e d7 81 00  d8 be 27 5c 09 9c fd 1d  .`#.~.....'\....
      0010: 02 f8 b8 63 20 00 76 64  10 00 a5 76 04 ad cb a3  ...c .vd...v....
      0020: 6d 6e e4 b5 98 eb 06 6c  d8 9b 57 54 bd c3 c6 31  mn.....l..WT...1
      0030: be ad cd cd 8d 66 51 98  98 da 8c 2b 34 13 63 a1  .....fQ....+4.c.
      0040: 8c a3 7e cc 17 1a 86 80  38 dd 44 15 c7 05 61 cd  ..~.....8.D...a.
      0050: b6 d2 da 6c 9c fd 1d 1a  f8 b9 73 20 00 85 63 10  ...l......s ..c.
      0060: 00 97 63 8c d4 5c 5d 04  62 5a ab 24 a6 f7 5d 36  ..c..\].bZ.$..]6
      0070: a7 ba 8d aa 39 cf 71 16  12 54 ab d0 71 6e 5c 82  ....9.q..T..qn\.
      0080: 87 aa cc 14 4d 15 9c 64  e6 db 13 46 a3 d7 1b 2c  ....M..d...F...,
      0090: 16 ad 60 46 3e af 1a 23  e5 78 52 9c fd 1d 61 f8  ..`F>..#.xR...a.
      00a0: b8 63 20 00 84 63 10 00  58 ed b2 94 79 6c d7 14  .c ..c..X...yl..
      00b0: b9 1f 4b 3a d6 ba 59 86  a4 32 5e 50 97 b2 75 24  ..K:..Y..2^P..u$
      00c0: 95 78 35 24 ea c8 73 30  d4 6b a2 32 ae 5b 18 15  .x5$..s0.k.2.[..
      00d0: 16 9a f9 36 1a d9 52 41  c6 52 91 91 d2 a3 ad 35  ...6..RA.R.....5
      00e0: 74 54 9c fd 1d cc f8 b8  53 20 00 75 53 10 00 7b  tT......S .uS..{
      00f0: 21 52 a4 ba 65 f4 e3 4a  4a 37 5c 9b 29 3c 3c 68  !R..e..JJ7\.)<<h
      0100: 69 d6 97 41 33 05 78 21  b7 23 b2 dd a5 4a 2b 2c  i..A3.x!.#...J+,
      0110: 79 c9 f9 9f f0 74 4a cd  7d b9 c5 3c 6e 2d ae 1f  y....tJ.}..<n-..
      0120: 30 65 29 09 6b 49 27 ba  1a 9c fd 1d bb fc b9 73  0e).kI'........s
      0130: 20 00 85 53 10 00 5f 8b  44 42 db 5e 10 18 60 f0   ..S.._.DB.^..`.
      0140: 82 bc c7 8a 16 78 54 c0  9d 3b 29 89 21 d9 68 50  .....xT..;).!.hP
      0150: 31 bb a6 12 74 5d 54 25  9a cb 9b cc b4 24 bd 65  1...t]T%.....$.e
      0160: 89 5a 46 33 78 d2 c1 d5  b6 f5 ee 85 95 af 73 88  .ZF3x.........s.
      0170: 9c fd 1d 06 f8 b8 62 20  00 85 52 10 00 e2 b4 9d  ......b ..R.....
      0180: 45 7a ad 22 69 b1 4b cd  84 d7 78 66 05 b4 94 c3  Ez."i.K...xf....
      0190: 65 a9 b5 ac 4d 62 2b 3a  5b 11 67 23 d3 63 c5 9e  e...Mb+:[.g#.c..
      01a0: 4a 61 52 cf 51 0b 25 60  8b 67 2a 54 54 35 8f 26  JaR.Q.%`.g*TT5.&
      01b0: f2 4e 71 37 2b 63 ed 9c  fd 1d ec f0 b8 52 10 00  .Nq7+c.......R..
      01c0: 75 52 20 00 b3 44 8d 15  49 a9 0a 62 d0 6d d3 03  uR ..D..I..b.m..
      01d0: 8b 96 26 13 9d ad ae 65  31 71 30 a9 9b 88 e9 cc  ..&....e1q0.....
      01e0: 64 52 2d dd 22 62 26 a9  19 2e 13 c6 a3 68 9e 36  dR-."b&......h.6
      01f0: 5b cd 11 31 9e ec a8 da  cb 7d 6d bd ec a5 9c fd  [..1.....}m.....
      0200: 1d af f8 b8 63 20 00 74  63 10 00 68 35 64 e9 67  ....c .tc..h5d.g
      0210: aa f5 a7 1f 14 2a a7 05  7e 58 4a 12 b2 4b a8 4b  .....*..~XJ..K.K
      0220: 8e a3 26 23 75 c6 30 12  b8 99 82 96 93 14 78 a9  ..&#u.0.......x.
      0230: 97 08 e5 7f 5a 77 3a a5  4d 15 bf dd b1 92 6d 8b  ....Zw:.M.....m.
      0240: b5 8c f2 3d ab 9c fd 1d  a7 f8 a7 62 20 00 75 52  ...=.......b .uR
      0250: 00 00 7f 49 e3 12 d5 52  86 a6 16 ce b4 dc 27 48  ...I...R......'H
      0260: ab 56 41 29 df 06 03 4e  eb d2 0a 7e 20 a1 13 c0  .VA)...N...~ ...
      0270: f5 14 ae d4 a1 35 6b 74  ed cb 1a 47 8d b6 2b bd  .....5kt...G..+.
      0280: 31 20 d5 eb a8 8c ed 64  41 96 6a a2              1 .....dA.j.
> ACL data: handle 256 flags 0x02 dlen 344
> ACL data: handle 256 flags 0x01 dlen 312
    L2CAP(d): cid 0x0041 len 652 [psm 0]
      0000: 80 60 23 b4 7e d7 85 80  d8 be 27 5c 09 9c fd 1d  .`#.~.....'\....
      0010: f3 f8 b8 63 20 00 75 63  20 00 42 7b 51 12 5c 1e  ...c .uc .B{Q.\.
      0020: 6a 91 5a f2 b2 ab 28 99  25 55 3d 2d 2b cd 6e 29  j.Z...(.%U=-+.n)
      0030: 41 29 99 28 ab 4d 89 82  99 ee 89 a8 47 68 5e 34  A).(.M......Gh^4
      0040: 58 b5 00 05 aa a6 6f 44  19 4d aa 56 8a 86 30 6c  X.....oD.M.V..0l
      0050: 75 b1 81 ab 9c fd 1d 25  f8 b8 52 20 00 75 53 00  u......%..R .uS.
      0060: 00 a8 3e 09 26 7e 98 45  2d 2e a5 1b 64 a5 45 3c  ..>.&~.E-...d.E<
      0070: 23 23 41 c5 57 24 0a 8c  fb 53 2f d4 5b 99 81 56  ##A.W$...S/.[..V
      0080: df 1b dc ee b6 a1 35 72  a3 04 3b 71 98 94 da 6d  ......5r..;q...m
      0090: 4f d6 8c 8e 3d 24 3d 76  18 21 9c 9c fd 1d 4c f8  O...=$=v.!....L.
      00a0: b7 42 20 00 76 63 00 00  9f 62 42 c5 25 03 99 e7  .B .vc...bB.%...
      00b0: cc a8 ed 29 89 c7 87 b1  71 c4 3a 63 a1 dd 7c dd  ...)....q.:c..|.
      00c0: 90 ea d6 ac 87 4e 65 5b  3a 7c 4a a2 13 6e d1 36  .....Ne[:|J..n.6
      00d0: a0 d2 89 c5 9c 35 65 a9  d4 b2 e9 76 1e 13 87 52  .....5e....v...R
      00e0: 34 ad 9c fd 1d 3c f8 b8  63 20 00 76 63 00 00 6d  4....<..c .vc..m
      00f0: 99 da eb 1a 8e d9 0e 78  34 a7 1e d3 7b a5 98 29  .......x4...{..)
      0100: d9 c0 39 3e ae 15 8d 58  74 d4 66 3a 98 4c 18 d5  ..9>...Xt.f:.L..
      0110: 94 e8 4a f0 dd 41 49 54  98 2b 4b f9 b2 e5 d8 b1  ..J..AIT.+K.....
      0120: a4 ee 76 6d b8 73 8d 50  c4 9c fd 1d 71 f8 a7 52  ..vm.s.P....q..R
      0130: 20 00 75 52 00 00 a5 92  4a a4 32 96 6c e1 65 12   .uR....J.2.l.e.
      0140: 55 3a f0 81 36 67 b3 52  52 5d 94 32 64 a8 80 92  U:..6g.RR].2d...
      0150: f3 63 9c c5 4a 9c 5c e4  c1 3b 2c e1 ab db 48 cd  .c..J.\..;,...H.
      0160: 78 b9 d9 64 ad 2f b4 a9  06 0d 29 72 49 d1 1b d9  x..d./....)rI...
      0170: 9c fd 1d cd f8 a9 63 20  00 67 62 00 00 4f 6b f9  ......c .gb..Ok.
      0180: 09 ab 67 8e cf 21 33 88  7a c9 8b d3 69 db aa b1  ..g..!3.z...i...
      0190: e2 d8 d4 b5 93 23 ab ce  9a 2d 28 63 e5 62 c4 9f  .....#...-(c.b..
      01a0: ce d3 d4 fc 66 3b 49 ec  37 96 cd 62 1a d2 d8 b1  ....f;I.7..b....
      01b0: 8d 92 27 8f 50 69 44 9c  fd 1d 80 f8 b7 53 20 00  ..'.PiD......S .
      01c0: 76 53 00 00 89 cc 55 24  5d ea 0f 27 e8 cd 47 5c  vS....U$]..'..G\
      01d0: b2 7b c9 b1 93 a1 e0 99  24 6a a2 cd 69 55 15 6c  .{......$j..iU.l
      01e0: cb a8 32 76 5d 16 8b d4  a3 6c 5f 57 25 96 f4 58  ..2v]....l_W%..X
      01f0: 62 c6 a2 3c 21 30 8a 1c  e5 56 4f 96 29 ab 9c fd  b..<!0...VO.)...
      0200: 1d 48 f8 9a 54 20 00 68  73 20 00 8e f5 19 9c 77  .H..T .hs .....w
      0210: 28 cc e9 bd 4f 97 16 8a  9b 39 2b 57 d9 c9 84 d9  (...O....9+W....
      0220: 4d bd 66 e5 6a 0e bd 9b  68 f5 fa 99 19 8e ce cf  M.f.j...h.......
      0230: a9 7e 76 5e d3 a5 c0 d4  8a ce 9c 3a e6 d0 8d d6  .~v^.......:....
      0240: 7a 68 58 b4 1b 9c fd 1d  84 f8 a9 53 20 00 78 53  zhX........S .xS
      0250: 20 00 63 24 a2 2a ff ac  b7 52 d3 69 4c ba d7 5b   .c$.*...R.iL..[
      0260: a6 b8 a9 e2 9c 31 d0 e5  8d f2 38 2b 12 6f 39 5a  .....1....8+.o9Z
      0270: 53 6d f2 f4 da 91 65 21  10 6b 16 a6 73 d8 f9 32  Sm....e!.k..s..2
      0280: e0 e5 3a 9a da f9 ac f8  38 71 29 45              ..:.....8q)E
> ACL data: handle 256 flags 0x02 dlen 344
> ACL data: handle 256 flags 0x01 dlen 241
    L2CAP(d): cid 0x0041 len 581 [psm 0]
      0000: 80 60 23 b5 7e d7 8a 00  d8 be 27 5c 08 9c fd 1d  .`#.~.....'\....
      0010: 54 f8 a9 63 20 00 67 54  10 00 e1 83 2d ae eb 92  T..c .gT....-...
      0020: 51 70 62 97 6b 8f 06 ca  9b d6 37 1a c8 c1 b6 c6  Qpb.k.....7.....
      0030: b6 0d 84 33 4d 8c b1 88  8d 51 ac 64 2a 86 61 55  ...3M....Q.d*.aU
      0040: 19 93 0b 68 c5 87 a9 47  cc c6 b5 cc 95 e2 0e 94  ...h...G........
      0050: 2e 67 78 b0 9c fd 1d 96  f8 99 53 20 00 67 63 10  .gx.......S .gc.
      0060: 00 6f 05 b6 c2 7c 1d ae  56 31 f6 f4 9a f3 87 93  .o...|..V1......
      0070: ac 7a 22 a8 5c d1 54 fd  1d d0 a6 95 2b 57 48 db  .z".\.T.....+WH.
      0080: 64 d2 2d 4a 2b 0e 26 d2  70 9d 96 c7 74 74 75 4b  d.-J+.&.p...ttuK
      0090: 19 52 b5 1c ac 55 ce c9  a2 ea 96 9c fd 1d b4 f8  .R...U..........
      00a0: a7 53 10 00 66 53 10 00  52 8c a6 52 f3 ac 96 d5  .S..fS..R..R....
      00b0: e3 5d 88 df 8a c2 d5 b5  b4 59 bd 26 1a ee 32 f0  .].......Y.&..2.
      00c0: aa 90 c9 84 3b a3 2b 29  95 92 19 8e 6e f4 ce 35  ....;.+)....n..5
      00d0: 6f 56 92 bc d4 c5 30 d9  1e 2b 26 96 d1 66 77 86  oV....0..+&..fw.
      00e0: aa c4 9c fd 1d d0 fc 98  63 21 00 67 63 10 00 cc  ........c!.gc...
      00f0: e9 4d e6 6a ba 2d 34 35  50 65 56 f0 7b 2a e3 74  .M.j.-45PeV.{*.t
      0100: 15 55 82 a6 c2 74 a5 54  10 4b 8d a1 94 ab 7d db  .U...t.T.K....}.
      0110: 85 34 70 a0 c5 27 60 e5  2b 41 86 60 5b 1c b2 d2  .4p..'`.+A.`[...
      0120: 57 69 92 8e c8 4b 12 95  b1 9c fd 1d b8 fc 99 53  Wi...K.........S
      0130: 21 00 56 52 00 00 5f 34  e9 82 e7 17 2c 94 18 3a  !.VR.._4....,..:
      0140: 92 82 82 d6 85 4c 26 a5  18 80 7b 85 14 8b bb 48  .....L&...{....H
      0150: 20 5e 98 46 c6 69 02 47  5a f0 8e c6 b5 a8 c1 f1   ^.F.i.GZ.......
      0160: 73 44 ee ab 1a af 6b 4d  4d a4 92 47 6c 1a 91 bb  sD....kMM..Gl...
      0170: 9c fd 1d 67 f8 a8 63 10  00 56 63 10 00 7a 7b 82  ...g..c..Vc..z{.
      0180: 1b bd 20 72 e2 55 01 67  0d 18 2a b9 28 41 ad ce  .. r.U.g..*.(A..
      0190: 32 08 8a 59 f2 95 74 2e  82 33 a4 74 18 dd 1b e0  2..Y..t..3.t....
      01a0: d7 2b e2 e3 77 4a c6 38  ab 88 99 11 4a 88 d1 26  .+..wJ.8....J..&
      01b0: ff cc 79 11 e2 85 21 9c  fd 1d 29 f8 99 82 10 00  ..y...!...).....
      01c0: 67 73 10 00 de d8 79 95  17 cb a8 ea be 64 57 32  gs....y......dW2
      01d0: 73 0a 28 0f aa 09 ca 5d  ce 95 ad ea 71 ce 55 36  s.(....]....q.U6
      01e0: 1d 7d 27 98 e2 f5 b5 ca  dd 21 a9 b4 b2 ed 64 95  .}'......!....d.
      01f0: ce 6b a0 a8 63 da c8 ec  1f 48 67 1b 17 b3 9c fd  .k..c....Hg.....
      0200: 1d e0 f8 98 52 20 00 66  53 20 00 1f 4e e2 1a 37  ....R .fS ..N..7
      0210: ae 7c 86 5f 71 24 a0 9b  a3 a4 29 69 8c a3 b7 58  .|._q$....)i...X
      0220: 49 a2 75 f9 6b ce 8e 03  77 54 73 1b 7e aa 54 df  I.u.k...wTs.~.T.
      0230: 9f 5a 39 02 ac ab 37 58  66 09 b6 3e b7 0d cd 8d  .Z9...7Xf..>....
      0240: 97 ab 99 4e 36                                    ...N6
> ACL data: handle 256 flags 0x02 dlen 344
> ACL data: handle 256 flags 0x01 dlen 312
    L2CAP(d): cid 0x0041 len 652 [psm 0]
      0000: 80 60 23 b6 7e d7 8e 00  d8 be 27 5c 09 9c fd 1d  .`#.~.....'\....
      0010: 34 f8 99 72 10 00 67 73  00 00 7a c7 62 63 d9 3b  4..r..gs..z.bc.;
      0020: 31 23 c2 13 59 41 ae a3  3b 2f 64 29 df 8b 1c ef  1#..YA..;/d)....
      0030: 1b 59 4a 7c 5e e6 cb c0  f7 6a 66 e9 3a d5 31 d1  .YJ|^....jf.:.1.
      0040: 98 19 8c ef 14 bc 7a 96  1d 4f 45 c6 2f 54 31 f7  ......z..OE./T1.
      0050: 8e 21 4d 9d 9c fd 1d 2a  f8 9a 72 10 00 67 74 20  .!M....*..r..gt 
      0060: 00 c6 b7 44 8c 5a a6 a3  60 20 d0 8b 5e 66 6c 46  ...D.Z..` ..^flF
      0070: 72 51 a2 ca 3b cd 15 74  dc 6d 2d 98 f9 69 4a e7  rQ..;..t.m-..iJ.
      0080: 4c 4a c8 3d 89 4c ba 5a  d2 91 b3 16 c3 d2 76 a9  LJ.=.L.Z......v.
      0090: 1a 5a b1 45 3b d5 75 a7  e0 a4 8d 9c fd 1d 55 f8  .Z.E;.u.......U.
      00a0: 89 81 10 00 67 84 10 00  4a ed 4a e8 9a 67 35 5a  ....g...J.J..g5Z
      00b0: ac 4d b4 b6 ad 92 17 b9  8f 36 b5 1b 59 cb 0e cb  .M.......6..Y...
      00c0: a5 29 dd d0 e5 aa aa f8  e3 ba 63 c7 5e 1b b0 bb  .)........c.^...
      00d0: 02 21 51 d5 f1 06 2e c8  48 64 86 0c c1 74 30 e2  .!Q.....Hd...t0.
      00e0: 12 a1 9c fd 1d 4a f8 99  73 20 00 68 84 20 00 a7  .....J..s .h. ..
      00f0: 2d 0f 0c 68 87 78 6a 1c  54 43 8a a2 22 1a 11 14  -..h.xj.TC.."...
      0100: d0 ea 58 a8 76 ed 54 3b  d8 96 29 a1 cb 4c eb 0d  ..X.v.T;..)..L..
      0110: d6 8c 78 b4 ac 19 b1 61  64 9d 6c d3 44 ee cb 3b  ..x....ad.l.D..;
      0120: 58 c2 e7 35 de 4d d4 48  9c 9c fd 1d af f8 9a 83  X..5.M.H........
      0130: 20 00 78 74 20 00 91 89  4b 32 d8 67 b8 60 3c 59   .xt ...K2.g.`<Y
      0140: 08 65 ea 2e 98 db 73 18  96 ba 99 e1 c9 3d 26 c7  .e....s......=&.
      0150: b9 5e 8d 61 29 7c 6a 94  46 5b 15 69 dd 94 cc d1  .^.a)|j.F[.i....
      0160: d6 83 5c f3 54 bd 17 94  b8 85 bc 15 93 45 e9 2d  ..\.T........E.-
      0170: 9c fd 1d 32 fc 8a 74 20  00 68 75 20 00 0f 16 a9  ...2..t .hu ....
      0180: 6c 94 27 93 55 65 a5 86  a9 2d b3 bb b5 89 ee 27  l.'.Ue...-.....'
      0190: a3 1c 57 82 52 a3 69 1c  85 bb dd 26 a9 d1 47 c5  ..W.R.i....&..G.
      01a0: cc e6 ba ac 68 e2 39 72  44 ab 8c 1e 34 84 58 d1  ....h.9rD...4.X.
      01b0: fc 1b 16 94 5a d5 43 9c  fd 1d 75 fc 99 73 20 00  ....Z.C...u..s .
      01c0: 68 73 30 00 79 46 ec 9e  28 b4 1e e9 31 ae b5 76  hs0.yF..(...1..v
      01d0: 0c e5 bc 89 8b 3e 63 43  42 d6 d6 d3 b9 76 1a da  .....>cCB....v..
      01e0: b5 bd 43 34 5c c8 88 dc  e2 9c d6 b3 46 4a a9 16  ..C4\.......FJ..
      01f0: 96 75 3d 48 4b 95 2d db  de 13 91 a4 9b d5 9c fd  .u=HK.-.........
      0200: 1d d2 fc ab 74 30 00 79  85 30 00 6a 7a 9c dc d5  ....t0.y.0.jz...
      0210: cb 9e 51 ce a0 8d 65 19  3d 92 fb c5 3d dd aa 5d  ..Q...e.=...=..]
      0220: b1 16 8d 55 cf ce 75 8b  78 9a 7c 6a 7b cb ce a2  ...U..u.x.|j{...
      0230: d4 65 12 ad 30 ec 79 17  87 b3 b4 c0 45 de 45 e1  .e..0.y.....E.E.
      0240: 90 cf ae 2e 66 9c fd 1d  02 fc 8a 83 20 00 68 85  ....f....... .h.
      0250: 40 00 ce e5 85 b3 98 38  c9 b0 a6 af 33 37 56 1c  @......8....37V.
      0260: a3 ed ba 1f 66 6c 29 b4  cc d9 eb 30 1c 8f 88 55  ....fl)....0...U
      0270: 04 63 b3 38 23 15 a7 2d  96 ec ce 32 c9 7b d1 94  .c.8#..-...2.{..
      0280: 0c 4b 74 b8 e2 93 21 51  19 a4 ee 68              .Kt...!Q...h
< ACL data: handle 256 flags 0x00 dlen 7
    0000: 03 00 40 00 50 09 04                              ..@.P..
< ACL data: handle 256 flags 0x00 dlen 7
    0000: 03 00 40 00 60 0a 04                              ..@.`..
< ACL data: handle 256 flags 0x00 dlen 12
    0000: 08 00 01 00 06 06 04 00  41 00 41 00              ........A.A.
< ACL data: handle 256 flags 0x00 dlen 12
    0000: 08 00 01 00 06 07 04 00  40 00 40 00              ........@.@.
< HCI Command: Disconnect (0x01|0x0006) plen 3
    handle 256 reason 0x13
    Reason: Remote User Terminated Connection


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: A2DP Connection problem
  2011-06-01 11:46           ` h.patil
@ 2011-06-01 12:04             ` Luiz Augusto von Dentz
  2011-06-02  8:43               ` h.patil
  0 siblings, 1 reply; 9+ messages in thread
From: Luiz Augusto von Dentz @ 2011-06-01 12:04 UTC (permalink / raw)
  To: h.patil; +Cc: linux-bluetooth

Hi,

On Wed, Jun 1, 2011 at 2:46 PM,  <h.patil@accenture.com> wrote:
> Hello Luiz,
>
> Thanks a lot for your response.
> I am trying to stream the audio data from source(Mobile) to my hardaware(sink-BT chip infineon on PBA31308)through A2DP.
> I established the A2DP connection  from headset(sink) to mobile(source).
> When I start playing the song, it streams for 6 seconds after that a2dp disconnection is happening.
>
> Please find the attached hcidump log from my target.

Please take a look at http://en.wikipedia.org/wiki/Posting_style while
I take a look at your hcidump.

-- 
Luiz Augusto von Dentz
Computer Engineer

^ permalink raw reply	[flat|nested] 9+ messages in thread

* RE: A2DP Connection problem
  2011-06-01 12:04             ` Luiz Augusto von Dentz
@ 2011-06-02  8:43               ` h.patil
  0 siblings, 0 replies; 9+ messages in thread
From: h.patil @ 2011-06-02  8:43 UTC (permalink / raw)
  To: luiz.dentz; +Cc: linux-bluetooth


Hi,

On Wed, Jun 1, 2011 at 2:46 PM,  <h.patil@accenture.com> wrote:
> Hello Luiz,
>
> Thanks a lot for your response.
> I am trying to stream the audio data from source(Mobile) to my hardaware(sink-BT chip infineon on PBA31308)through A2DP.
> I established the A2DP connection  from headset(sink) to mobile(source).
> When I start playing the song, it streams for 6 seconds after that a2dp disconnection is happening.
>
> Please find the attached hcidump log from my target.

Please take a look at http://en.wikipedia.org/wiki/Posting_style while
I take a look at your hcidump.

> Any updates?

--
Luiz Augusto von Dentz
Computer Engineer


This message is for the designated recipient only and may contain privileged, proprietary, or otherwise private information.  If you have received it in error, please notify the sender immediately and delete the original.  Any other use of the email by you is prohibited.

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2011-06-02  8:43 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-19  8:51 [PATCH v2 0/2] Fix change to numbers GSlist in new missed calls Dmitriy Paliy
2011-05-19  8:51 ` [PATCH v2 1/2] " Dmitriy Paliy
2011-05-19  8:51 ` [PATCH v2 2/2] Change append to prepend in pull_newmissedcalls Dmitriy Paliy
     [not found]   ` <AA5DFB06574FF54BA4A76C3F1040DCBB11C18DE91D@INDXM3131.dir.svc.accenture.com>
2011-05-19  9:34     ` A2DP Connection problem Luiz Augusto von Dentz
2011-06-01 11:12       ` h.patil
2011-06-01 11:35         ` Luiz Augusto von Dentz
2011-06-01 11:46           ` h.patil
2011-06-01 12:04             ` Luiz Augusto von Dentz
2011-06-02  8:43               ` h.patil

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.