Hi
Btmon outputs attached, one with 6.8 which works fine connecting to an LG monitor and Logitech Mouse. The other with 6.11, which fails to pair with the LG monitor, and can't see the Logtech Mouse.
Thanks
Sean
On Fri, 20 Jun 2025 at 17:00, Luiz Augusto von Dentz <luiz.dentz@xxxxxxxxx> wrote:
Hi Kiran,
On Thu, Jun 19, 2025 at 4:33 PM Sean Rhodes <sean@starlabs.systems> wrote:
>
> Multiple users confirmed the revert fixed the issue (https://github.com/StarLabsLtd/firmware/issues/180#issuecomment-2784770614) and that 6.9 works as it doesn't have this patch and we've got a DKMS module with that patch reverted that makes things works.
>
> I'll grab a trace on Monday
>
> On Thu, 19 Jun 2025 at 21:13, Luiz Augusto von Dentz <luiz.dentz@xxxxxxxxx> wrote:
>>
>> Hi Sean,
>>
>> On Thu, Jun 19, 2025 at 4:03 PM Sean Rhodes <sean@starlabs.systems> wrote:
>> >
>> > Hi Luiz
>> >
>> > It breaks pairing - some details can be found here - https://bugzilla.kernel.org/show_bug.cgi?id=219553
>>
>> Yeah, and Ive commented:
>>
>> https://bugzilla.kernel.org/show_bug.cgi?id=219553#c4
>>
>> There seems to be a mixup of issues, something with pairing, which has
>> absolutely nothing to do with reclassifying packets, it is very likely
>> the following bug:
>>
>> https://github.com/bluez/bluez/issues/1138
>>
>> If you have evidence that there is something that these changes
>> actually cause a problem I'd like to see the HCI trace of that (use
>> btmon to collect it).
>>
>> > Thanks
>> >
>> >
>> > On Thu, 19 Jun 2025 at 21:00, Luiz Augusto von Dentz <luiz.dentz@xxxxxxxxx> wrote:
>> >>
>> >> Hi Sean,
>> >>
>> >> On Thu, Jun 19, 2025 at 3:12 PM Sean Rhodes <sean@starlabs.systems> wrote:
>> >> >
>> >> > From 3b5497d0154a58d948ee95900e4c62704399de0a Mon Sep 17 00:00:00 2001
>> >> > From: Sean Rhodes <sean@starlabs.systems>
>> >> > Date: Wed, 2 Apr 2025 09:05:17 +0100
>> >> > Subject: [PATCH] Bluetooth: Revert vendor-specific ISO classification for
>> >> > non-offload cards
>> >> >
>> >> > This reverts commit f25b7fd36cc3a850e006aed686f5bbecd200de1b.
>> >> >
>> >> > The commit introduces vendor-specific classification of ISO data,
>> >> > but breaks Bluetooth functionality on certain Intel cards that do
>> >> > not support audio offload, such as the 9462. Affected devices are
>> >> > unable to discover new Bluetooth peripherals, and previously paired
>> >> > devices fail to reconnect.
>> >>
>> >> How it breaks? It doesn't seem there is anything regarding the
>> >> reclassification of the packets that could affect something that
>> >> doesn't support ISO packets, well except if it happens that older
>> >> controllers use the handle range of ISO but btintel_classify_pkt_type
>> >> shouldn't be set for them.
>> >>
>> >> > This issue does not affect newer cards (e.g., AX201+) that support
>> >> > audio offload. A conditional check using AOLD() could be used in
>> >> > the future to reintroduce this behavior only on supported hardware.
>> >> >
>> >> > Cc: Marcel Holtmann <marcel@xxxxxxxxxxxx>
>> >> > Cc: Luiz Augusto von Dentz <luiz.dentz@xxxxxxxxx>
>> >> > Cc: Ying Hsu <yinghsu@xxxxxxxxxxxx>
>> >> > Cc: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx>
>> >> > Cc: Marcel Holtmann <marcel@xxxxxxxxxxxx>
>> >> > Cc: Luiz Augusto von Dentz <luiz.dentz@xxxxxxxxx>
>> >> > Cc: Johan Hedberg <johan.hedberg@xxxxxxxxx>
>> >> > Cc: linux-bluetooth@xxxxxxxxxxxxxxx
>> >> > Signed-off-by: Sean Rhodes <sean@starlabs.systems>
>> >> > ---
>> >> > drivers/bluetooth/btintel.c | 7 ++-----
>> >> > include/net/bluetooth/hci_core.h | 1 -
>> >> > net/bluetooth/hci_core.c | 16 ----------------
>> >> > 3 files changed, 2 insertions(+), 22 deletions(-)
>> >> >
>> >> > diff --git a/drivers/bluetooth/btintel.c b/drivers/bluetooth/btintel.c
>> >> > index 55cc1652bfe4..1a5108cf6517 100644
>> >> > --- a/drivers/bluetooth/btintel.c
>> >> > +++ b/drivers/bluetooth/btintel.c
>> >> > @@ -3582,15 +3582,12 @@ static int btintel_setup_combined(struct hci_dev *hdev)
>> >> > err = btintel_bootloader_setup(hdev, &ver);
>> >> > btintel_register_devcoredump_support(hdev);
>> >> > break;
>> >> > - case 0x18: /* GfP2 */
>> >> > - case 0x1c: /* GaP */
>> >> > - /* Re-classify packet type for controllers with LE audio */
>> >> > - hdev->classify_pkt_type = btintel_classify_pkt_type;
>> >> > - fallthrough;
>> >>
>> >> 9462 seem to be JfP (0x11), so the above code shouldn't even be used for it.
I'm starting to suspect that JfP may not be responding with the expect
id here, which means we will need to use another field to confirm what
is the real model.
>> >>
>> >> > case 0x17:
>> >> > + case 0x18:
>> >> > case 0x19:
>> >> > case 0x1b:
>> >> > case 0x1d:
>> >> > + case 0x1c:
>> >> > case 0x1e:
>> >> > case 0x1f:
>> >> > /* Display version information of TLV type */
>> >> > diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h
>> >> > index 2b261e74e2c4..648ee7e2403f 100644
>> >> > --- a/include/net/bluetooth/hci_core.h
>> >> > +++ b/include/net/bluetooth/hci_core.h
>> >> > @@ -649,7 +649,6 @@ struct hci_dev {
>> >> > int (*get_codec_config_data)(struct hci_dev *hdev, __u8 type,
>> >> > struct bt_codec *codec, __u8 *vnd_len,
>> >> > __u8 **vnd_data);
>> >> > - u8 (*classify_pkt_type)(struct hci_dev *hdev, struct sk_buff *skb);
>> >> > };
>> >> >
>> >> > #define HCI_PHY_HANDLE(handle) (handle & 0xff)
>> >> > diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c
>> >> > index 3b49828160b7..64ab7702be81 100644
>> >> > --- a/net/bluetooth/hci_core.c
>> >> > +++ b/net/bluetooth/hci_core.c
>> >> > @@ -2868,31 +2868,15 @@ int hci_reset_dev(struct hci_dev *hdev)
>> >> > }
>> >> > EXPORT_SYMBOL(hci_reset_dev);
>> >> >
>> >> > -static u8 hci_dev_classify_pkt_type(struct hci_dev *hdev, struct sk_buff *skb)
>> >> > -{
>> >> > - if (hdev->classify_pkt_type)
>> >> > - return hdev->classify_pkt_type(hdev, skb);
>> >> > -
>> >> > - return hci_skb_pkt_type(skb);
>> >> > -}
>> >> > -
>> >> > /* Receive frame from HCI drivers */
>> >> > int hci_recv_frame(struct hci_dev *hdev, struct sk_buff *skb)
>> >> > {
>> >> > - u8 dev_pkt_type;
>> >> > -
>> >> > if (!hdev || (!test_bit(HCI_UP, &hdev->flags)
>> >> > && !test_bit(HCI_INIT, &hdev->flags))) {
>> >> > kfree_skb(skb);
>> >> > return -ENXIO;
>> >> > }
>> >> >
>> >> > - /* Check if the driver agree with packet type classification */
>> >> > - dev_pkt_type = hci_dev_classify_pkt_type(hdev, skb);
>> >> > - if (hci_skb_pkt_type(skb) != dev_pkt_type) {
>> >> > - hci_skb_pkt_type(skb) = dev_pkt_type;
>> >> > - }
>> >>
>> >> This will affect all cards, not just the one you are claiming.
>> >>
>> >>
>> >> > switch (hci_skb_pkt_type(skb)) {
>> >> > case HCI_EVENT_PKT:
>> >> > break;
>> >> > --
>> >> > 2.48.1
>> >> >
>> >>
>> >>
>> >> --
>> >> Luiz Augusto von Dentz
>>
>>
>>
>> --
>> Luiz Augusto von Dentz
--
Luiz Augusto von Dentz
Bluetooth monitor ver 5.72 btmon[2080]: = Note: Linux version 6.11.0-28-generic (x86_64) 0.232078 btmon[2080]: = Note: Bluetooth subsystem version 2.22 0.232080 = New Index: DC:45:46:FD:14:15 (Primary,USB,hci0) 0.232081 = Open Index: DC:45:46:FD:14:15 0.232081 = Index Info: DC:45:46:FD:14:15 (Intel Corp.) 0.232081 bluetoothd[677]: @ MGMT Open: bl.. (privileged) version 1.23 {0x0001} 0.232082 bluetoothd[677]: @ MGMT Command: Start Di.. (0x0023) plen 1 {0x0001} 10.357344 Address type: 0x07 BR/EDR LE Public LE Random < HCI Command: LE Set Random Address (0x08|0x0005) plen 6 #1 10.357437 Address: 1A:9F:F6:07:D1:67 (Non-Resolvable) > HCI Event: Command Complete (0x0e) plen 4 #2 10.455795 LE Set Random Address (0x08|0x0005) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Extended Scan Param.. (0x08|0x0041) plen 13 #3 10.456023 Own address type: Random (0x01) Filter policy: Accept all advertisement (0x00) PHYs: 0x05 Entry 0: LE 1M Type: Active (0x01) Interval: 22.500 msec (0x0024) Window: 11.250 msec (0x0012) Entry 1: LE Coded Type: Active (0x01) Interval: 67.500 msec (0x006c) Window: 33.750 msec (0x0036) > HCI Event: Command Complete (0x0e) plen 4 #4 10.457620 LE Set Extended Scan Parameters (0x08|0x0041) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Extended Scan Enable (0x08|0x0042) plen 6 #5 10.457769 Extended scan: Enabled (0x01) Filter duplicates: Enabled (0x01) Duration: 0 msec (0x0000) Period: 0.00 sec (0x0000) > HCI Event: Command Complete (0x0e) plen 4 #6 10.459574 LE Set Extended Scan Enable (0x08|0x0042) ncmd 2 Status: Success (0x00) @ MGMT Event: Discovering (0x0013) plen 2 {0x0001} 10.459613 Address type: 0x07 BR/EDR LE Public LE Random Discovery: Enabled (0x01) < HCI Command: Inquiry (0x01|0x0001) plen 5 #7 10.459777 Access code: 0x9e8b33 (General Inquiry) Length: 10.24s (0x08) Num responses: 0 > HCI Event: Command Status (0x0f) plen 4 #8 10.470545 Inquiry (0x01|0x0001) ncmd 2 Status: Success (0x00) @ MGMT Event: Command Complete (0x0001) plen 4 {0x0001} 10.470633 Start Discovery (0x0023) plen 1 Status: Success (0x00) Address type: 0x07 BR/EDR LE Public LE Random > HCI Event: Extended Inquiry Result (0x2f) plen 255 #9 13.520886 Num responses: 1 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Page scan repetition mode: R1 (0x01) Page period mode: P0 (0x00) Class: 0x240404 Major class: Audio/Video (headset, speaker, stereo, video, vcr) Minor class: Wearable Headset Device Rendering (Printing, Speaker) Audio (Speaker, Microphone, Headset) Clock offset: 0x0a76 RSSI: -78 dBm (0xb2) Device ID: Bluetooth SIG assigned (0x0001) Vendor: Cambridge Silicon Radio (10) Product: 0xffff Version: 255.15.15 (0xffff) TX power: 8 dBm 16-bit Service UUIDs (partial): 6 entries Advanced Audio Distribution (0x110d) Audio Sink (0x110b) Audio Source (0x110a) A/V Remote Control (0x110e) A/V Remote Control Controller (0x110f) Serial Port (0x1101) Name (complete): LG Monitor(01) @ MGMT Event: Device Found (0x0012) plen 65 {0x0001} 13.520973 BR/EDR Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -78 dBm (0xb2) Flags: 0x00000000 Data length: 51 Device ID: Bluetooth SIG assigned (0x0001) Vendor: Cambridge Silicon Radio (10) Product: 0xffff Version: 255.15.15 (0xffff) TX power: 8 dBm 16-bit Service UUIDs (partial): 6 entries Advanced Audio Distribution (0x110d) Audio Sink (0x110b) Audio Source (0x110a) A/V Remote Control (0x110e) A/V Remote Control Controller (0x110f) Serial Port (0x1101) Name (complete): LG Monitor(01) Class: 0x240404 Major class: Audio/Video (headset, speaker, stereo, video, vcr) Minor class: Wearable Headset Device Rendering (Printing, Speaker) Audio (Speaker, Microphone, Headset) > HCI Event: LE Meta Event (0x3e) plen 57 #10 13.521849 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0010 Props: 0x0010 Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_NONCONN_IND (0x0010) Address type: Random (0x01) Address: 16:E7:B4:9C:AE:6A (Non-Resolvable) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -82 dBm (0xae) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x1f 1e 16 f3 fe 4a 17 23 42 37 58 53 11 32 77 90 09 ....J.#B7XS.2w.. b1 8f 50 f7 a9 f0 4d 05 07 df 6e 9d d7 d6 78 ..P...M...n...x Service Data: Google (0xfef3) Data: 4a1723423758531132779009b18f50f7a9f04d0507df6e9dd7d678 @ MGMT Event: Device Found (0x0012) plen 45 {0x0001} 13.521882 LE Address: 16:E7:B4:9C:AE:6A (Non-Resolvable) RSSI: -82 dBm (0xae) Flags: 0x00000004 Not Connectable Data length: 31 Service Data: Google (0xfef3) Data: 4a1723423758531132779009b18f50f7a9f04d0507df6e9dd7d678 > HCI Event: LE Meta Event (0x3e) plen 34 #11 18.438475 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0010 Props: 0x0010 Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_NONCONN_IND (0x0010) Address type: Random (0x01) Address: E3:B6:9A:A8:69:6D (Static) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -44 dBm (0xd4) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x08 07 ff 4c 00 12 02 00 03 ..L..... Company: Apple, Inc. (76) Type: Unknown (18) Data: 0003 @ MGMT Event: Device Found (0x0012) plen 22 {0x0001} 18.438591 LE Address: E3:B6:9A:A8:69:6D (Static) RSSI: -44 dBm (0xd4) Flags: 0x00000004 Not Connectable Data length: 8 Company: Apple, Inc. (76) Type: Unknown (18) Data: 0003 bluetoothd[677]: @ MGMT Command: Add Device (0x0033) plen 8 {0x0001} 18.778845 BR/EDR Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Action: Allow incoming connection (0x01) @ MGMT Event: Device Flags Changed (0x002a) plen 15 {0x0001} 18.778855 BR/EDR Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Supported Flags: 0x00000001 Remote Wakeup Current Flags: 0x00000000 @ MGMT Event: Command Complete (0x0001) plen 10 {0x0001} 18.778856 Add Device (0x0033) plen 7 Status: Success (0x00) BR/EDR Address: C4:30:18:62:E2:01 (MCS Logic Inc.) < HCI Command: Inquiry Cancel (0x01|0x0002) plen 0 #12 18.778867 > HCI Event: Command Complete (0x0e) plen 4 #13 18.791072 Inquiry Cancel (0x01|0x0002) ncmd 2 Status: Success (0x00) < HCI Command: Create Connection (0x01|0x0005) plen 13 #14 18.791195 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Packet type: 0xcc18 DM1 may be used DH1 may be used DM3 may be used DH3 may be used DM5 may be used DH5 may be used Page scan repetition mode: R1 (0x01) Page scan mode: Mandatory (0x00) Clock offset: 0x8a76 Role switch: Allow peripheral (0x01) > HCI Event: Command Status (0x0f) plen 4 #15 18.791965 Create Connection (0x01|0x0005) ncmd 1 Status: Success (0x00) > HCI Event: Vendor (0xff) plen 4 #16 19.731516 Intel PTT Switch Notification (0x26) Handle: 256 Packet type table: Enhanced data rate (0x01) > HCI Event: Connect Complete (0x03) plen 11 #17 19.734462 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Link type: ACL (0x01) Encryption: Disabled (0x00) < HCI Command: Read Remote Supported Feat.. (0x01|0x001b) plen 2 #18 19.734741 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Status (0x0f) plen 4 #19 19.735484 Read Remote Supported Features (0x01|0x001b) ncmd 1 Status: Success (0x00) > HCI Event: Max Slots Change (0x1b) plen 3 #20 19.742484 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Max slots: 5 > HCI Event: Read Remote Supported Features (0x0b) plen 11 #21 19.743418 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Features: 0xff 0xff 0x8f 0xfe 0xdb 0xff 0x5b 0x87 3 slot packets 5 slot packets Encryption Slot offset Timing accuracy Role switch Hold mode Sniff mode Park state Power control requests Channel quality driven data rate (CQDDR) SCO link HV2 packets HV3 packets u-law log synchronous data A-law log synchronous data CVSD synchronous data Paging parameter negotiation Power control Transparent synchronous data Broadcast Encryption Enhanced Data Rate ACL 2 Mbps mode Enhanced Data Rate ACL 3 Mbps mode Enhanced inquiry scan Interlaced inquiry scan Interlaced page scan RSSI with inquiry results Extended SCO link (EV3 packets) EV4 packets EV5 packets AFH capable peripheral AFH classification peripheral LE Supported (Controller) 3-slot Enhanced Data Rate ACL packets 5-slot Enhanced Data Rate ACL packets Sniff subrating Pause encryption AFH capable central AFH classification central Enhanced Data Rate eSCO 2 Mbps mode Enhanced Data Rate eSCO 3 Mbps mode 3-slot Enhanced Data Rate eSCO packets Extended Inquiry Response Simultaneous LE and BR/EDR (Controller) Secure Simple Pairing Encapsulated PDU Non-flushable Packet Boundary Flag Link Supervision Timeout Changed Event Inquiry TX Power Level Enhanced Power Control Extended features < HCI Command: Read Remote Extended Featu.. (0x01|0x001c) plen 3 #22 19.743470 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Page: 1 > HCI Event: Command Status (0x0f) plen 4 #23 19.744396 Read Remote Extended Features (0x01|0x001c) ncmd 1 Status: Success (0x00) > HCI Event: Read Remote Extended Features (0x23) plen 13 #24 19.749484 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Page: 1/1 Features: 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x00 Secure Simple Pairing (Host Support) LE Supported (Host) < HCI Command: Remote Name Request (0x01|0x0019) plen 10 #25 19.749562 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Page scan repetition mode: R2 (0x02) Page scan mode: Mandatory (0x00) Clock offset: 0x0000 < ACL Data TX: Handle 256 flags 0x00 dlen 10 #26 19.749598 L2CAP: Information Request (0x0a) ident 1 len 2 Type: Extended features supported (0x0002) > HCI Event: Command Status (0x0f) plen 4 #27 19.750483 Remote Name Request (0x01|0x0019) ncmd 1 Status: Success (0x00) > HCI Event: Number of Completed Packets (0x13) plen 5 #28 19.755490 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #26: len 10 (16 Kb/s) Latency: 5 msec (5-5 msec ~5 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 16 #29 19.758880 L2CAP: Information Response (0x0b) ident 1 len 8 Type: Extended features supported (0x0002) Result: Success (0x0000) Features: 0x000000b8 Enhanced Retransmission Mode Streaming Mode FCS Option Fixed Channels < ACL Data TX: Handle 256 flags 0x00 dlen 10 #30 19.758962 L2CAP: Information Request (0x0a) ident 2 len 2 Type: Fixed channels supported (0x0003) > HCI Event: Remote Name Req Complete (0x07) plen 255 #31 19.760460 Status: Success (0x00) Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Name: LG Monitor(01) @ MGMT Event: Device Connected (0x000b) plen 34 {0x0001} 19.760522 BR/EDR Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Flags: 0x00000008 Connection Locally Initiated Data length: 21 Name (complete): LG Monitor(01) Class: 0x240404 Major class: Audio/Video (headset, speaker, stereo, video, vcr) Minor class: Wearable Headset Device Rendering (Printing, Speaker) Audio (Speaker, Microphone, Headset) blueman-manager[2141]: @ RAW Open: blueman-m.. version 2.22 {0x0002} 19.777254 blueman-manager[2141]: < HCI Command: Rea.. (0x05|0x0005) plen 2 #32 19.777409 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #33 19.778378 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -14 dBm (0xf2) blueman-manager[2141]: < HCI Command: Rea.. (0x03|0x002d) plen 3 #34 19.778578 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #35 19.779367 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) > HCI Event: Number of Completed Packets (0x13) plen 5 #36 19.793387 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #30: len 10 (2 Kb/s) Latency: 34 msec (5-34 msec ~20 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 20 #37 19.797856 L2CAP: Information Response (0x0b) ident 2 len 12 Type: Fixed channels supported (0x0003) Result: Success (0x0000) Channels: 0x0000000000000076 L2CAP Signaling (BR/EDR) Connectionless reception Attribute Protocol L2CAP Signaling (LE) Security Manager (LE) < ACL Data TX: Handle 256 flags 0x00 dlen 12 #38 19.797903 L2CAP: Connection Request (0x02) ident 3 len 4 PSM: 1 (0x0001) Source CID: 64 > HCI Event: Number of Completed Packets (0x13) plen 5 #39 19.801382 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #38: len 12 (32 Kb/s) Latency: 3 msec (3-34 msec ~11 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 16 #40 19.835853 L2CAP: Connection Response (0x03) ident 3 len 8 Destination CID: 576 Source CID: 64 Result: Connection pending (0x0001) Status: Authorization pending (0x0002) > ACL Data RX: Handle 256 flags 0x02 dlen 16 #41 19.858962 L2CAP: Connection Response (0x03) ident 3 len 8 Destination CID: 576 Source CID: 64 Result: Connection successful (0x0000) Status: No further information available (0x0000) < ACL Data TX: Handle 256 flags 0x00 dlen 23 #42 19.859037 L2CAP: Configure Request (0x04) ident 4 len 15 Destination CID: 576 Flags: 0x0000 Option: Retransmission and Flow Control (0x04) [mandatory] Mode: Basic (0x00) TX window size: 0 Max transmit: 0 Retransmission timeout: 0 Monitor timeout: 0 Maximum PDU size: 0 > ACL Data RX: Handle 256 flags 0x02 dlen 16 #43 19.872830 L2CAP: Configure Request (0x04) ident 1 len 8 Destination CID: 64 Flags: 0x0000 Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 48 < ACL Data TX: Handle 256 flags 0x00 dlen 18 #44 19.872905 L2CAP: Configure Response (0x05) ident 1 len 10 Source CID: 576 Flags: 0x0000 Result: Success (0x0000) Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 48 > HCI Event: Number of Completed Packets (0x13) plen 5 #45 19.880363 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #42: len 23 (8 Kb/s) Latency: 21 msec (3-34 msec ~16 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #46 19.881365 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #44: len 18 (18 Kb/s) Latency: 8 msec (3-34 msec ~12 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 14 #47 19.910901 L2CAP: Configure Response (0x05) ident 4 len 6 Source CID: 64 Flags: 0x0000 Result: Success (0x0000) bluetoothd[677]: < ACL Data TX: Handle 256 flags 0x00 dlen 24 #48 19.911288 Channel: 576 len 20 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Request (0x06) tid 0 len 15 Search pattern: [len 5] Sequence (6) with 3 bytes [8 extra bits] len 5 UUID (3) with 2 bytes [0 extra bits] len 3 L2CAP (0x0100) Max record count: 65535 Attribute list: [len 7] Sequence (6) with 5 bytes [8 extra bits] len 7 Unsigned Integer (1) with 4 bytes [0 extra bits] len 5 0x0000ffff Continuation state: 0 > HCI Event: Number of Completed Packets (0x13) plen 5 #49 19.995391 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #48: len 24 (2 Kb/s) Latency: 84 msec (3-84 msec ~48 msec) Channel: 576 [PSM 1 mode Basic (0x00)] {chan 0} Channel Latency: 84 msec (84-84 msec ~84 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 52 #50 20.029840 Channel: 64 len 48 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Response (0x07) tid 0 len 43 Attribute bytes: 38 Continuation state: 2 00 fa .. bluetoothd[677]: < ACL Data TX: Handle 256 flags 0x00 dlen 26 #51 20.030344 Channel: 576 len 22 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Request (0x06) tid 1 len 17 Search pattern: [len 5] Sequence (6) with 3 bytes [8 extra bits] len 5 UUID (3) with 2 bytes [0 extra bits] len 3 L2CAP (0x0100) Max record count: 65535 Attribute list: [len 7] Sequence (6) with 5 bytes [8 extra bits] len 7 Unsigned Integer (1) with 4 bytes [0 extra bits] len 5 0x0000ffff Continuation state: 2 00 fa .. > HCI Event: Number of Completed Packets (0x13) plen 5 #52 20.065332 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #51: len 26 (6 Kb/s) Latency: 34 msec (3-84 msec ~41 msec) Channel: 576 [PSM 1 mode Basic (0x00)] {chan 0} Channel Latency: 34 msec (34-84 msec ~59 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 52 #53 20.094884 Channel: 64 len 48 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Response (0x07) tid 1 len 43 Attribute bytes: 38 Continuation state: 2 00 d4 .. bluetoothd[677]: < ACL Data TX: Handle 256 flags 0x00 dlen 26 #54 20.095152 Channel: 576 len 22 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Request (0x06) tid 2 len 17 Search pattern: [len 5] Sequence (6) with 3 bytes [8 extra bits] len 5 UUID (3) with 2 bytes [0 extra bits] len 3 L2CAP (0x0100) Max record count: 65535 Attribute list: [len 7] Sequence (6) with 5 bytes [8 extra bits] len 7 Unsigned Integer (1) with 4 bytes [0 extra bits] len 5 0x0000ffff Continuation state: 2 00 d4 .. > HCI Event: Number of Completed Packets (0x13) plen 5 #55 20.098293 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #54: len 26 (69 Kb/s) Latency: 3 msec (3-84 msec ~22 msec) Channel: 576 [PSM 1 mode Basic (0x00)] {chan 0} Channel Latency: 3 msec (3-84 msec ~31 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 52 #56 20.102835 Channel: 64 len 48 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Response (0x07) tid 2 len 43 Attribute bytes: 38 Continuation state: 2 00 ae .. bluetoothd[677]: < ACL Data TX: Handle 256 flags 0x00 dlen 26 #57 20.103037 Channel: 576 len 22 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Request (0x06) tid 3 len 17 Search pattern: [len 5] Sequence (6) with 3 bytes [8 extra bits] len 5 UUID (3) with 2 bytes [0 extra bits] len 3 L2CAP (0x0100) Max record count: 65535 Attribute list: [len 7] Sequence (6) with 5 bytes [8 extra bits] len 7 Unsigned Integer (1) with 4 bytes [0 extra bits] len 5 0x0000ffff Continuation state: 2 00 ae .. > HCI Event: Number of Completed Packets (0x13) plen 5 #58 20.141288 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #57: len 26 (5 Kb/s) Latency: 38 msec (3-84 msec ~30 msec) Channel: 576 [PSM 1 mode Basic (0x00)] {chan 0} Channel Latency: 38 msec (3-84 msec ~34 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 52 #59 20.155874 Channel: 64 len 48 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Response (0x07) tid 3 len 43 Attribute bytes: 38 Continuation state: 2 00 88 .. bluetoothd[677]: < ACL Data TX: Handle 256 flags 0x00 dlen 26 #60 20.156084 Channel: 576 len 22 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Request (0x06) tid 4 len 17 Search pattern: [len 5] Sequence (6) with 3 bytes [8 extra bits] len 5 UUID (3) with 2 bytes [0 extra bits] len 3 L2CAP (0x0100) Max record count: 65535 Attribute list: [len 7] Sequence (6) with 5 bytes [8 extra bits] len 7 Unsigned Integer (1) with 4 bytes [0 extra bits] len 5 0x0000ffff Continuation state: 2 00 88 .. > HCI Event: Number of Completed Packets (0x13) plen 5 #61 20.160415 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #60: len 26 (52 Kb/s) Latency: 4 msec (3-84 msec ~17 msec) Channel: 576 [PSM 1 mode Basic (0x00)] {chan 0} Channel Latency: 4 msec (3-84 msec ~19 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 52 #62 20.163834 Channel: 64 len 48 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Response (0x07) tid 4 len 43 Attribute bytes: 38 Continuation state: 2 00 62 .b bluetoothd[677]: < ACL Data TX: Handle 256 flags 0x00 dlen 26 #63 20.164095 Channel: 576 len 22 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Request (0x06) tid 5 len 17 Search pattern: [len 5] Sequence (6) with 3 bytes [8 extra bits] len 5 UUID (3) with 2 bytes [0 extra bits] len 3 L2CAP (0x0100) Max record count: 65535 Attribute list: [len 7] Sequence (6) with 5 bytes [8 extra bits] len 7 Unsigned Integer (1) with 4 bytes [0 extra bits] len 5 0x0000ffff Continuation state: 2 00 62 .b > HCI Event: Number of Completed Packets (0x13) plen 5 #64 20.198241 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #63: len 26 (6 Kb/s) Latency: 34 msec (3-84 msec ~25 msec) Channel: 576 [PSM 1 mode Basic (0x00)] {chan 0} Channel Latency: 34 msec (3-84 msec ~26 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 50 #65 20.203864 Channel: 64 len 46 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Response (0x07) tid 5 len 41 Attribute bytes: 36 Continuation state: 2 00 3e .> bluetoothd[677]: < ACL Data TX: Handle 256 flags 0x00 dlen 26 #66 20.204133 Channel: 576 len 22 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Request (0x06) tid 6 len 17 Search pattern: [len 5] Sequence (6) with 3 bytes [8 extra bits] len 5 UUID (3) with 2 bytes [0 extra bits] len 3 L2CAP (0x0100) Max record count: 65535 Attribute list: [len 7] Sequence (6) with 5 bytes [8 extra bits] len 7 Unsigned Integer (1) with 4 bytes [0 extra bits] len 5 0x0000ffff Continuation state: 2 00 3e .> > HCI Event: Number of Completed Packets (0x13) plen 5 #67 20.207178 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #66: len 26 (69 Kb/s) Latency: 3 msec (3-84 msec ~14 msec) Channel: 576 [PSM 1 mode Basic (0x00)] {chan 0} Channel Latency: 3 msec (3-84 msec ~14 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 52 #68 20.243835 Channel: 64 len 48 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Response (0x07) tid 6 len 43 Attribute bytes: 38 Continuation state: 2 00 18 .. bluetoothd[677]: < ACL Data TX: Handle 256 flags 0x00 dlen 26 #69 20.244190 Channel: 576 len 22 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Request (0x06) tid 7 len 17 Search pattern: [len 5] Sequence (6) with 3 bytes [8 extra bits] len 5 UUID (3) with 2 bytes [0 extra bits] len 3 L2CAP (0x0100) Max record count: 65535 Attribute list: [len 7] Sequence (6) with 5 bytes [8 extra bits] len 7 Unsigned Integer (1) with 4 bytes [0 extra bits] len 5 0x0000ffff Continuation state: 2 00 18 .. > HCI Event: Number of Completed Packets (0x13) plen 5 #70 20.256201 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #69: len 26 (17 Kb/s) Latency: 12 msec (3-84 msec ~13 msec) Channel: 576 [PSM 1 mode Basic (0x00)] {chan 0} Channel Latency: 12 msec (3-84 msec ~13 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 36 #71 20.262818 Channel: 64 len 32 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Response (0x07) tid 7 len 27 Attribute bytes: 24 Continuation state: 0 Combined attribute bytes: 288 Attribute list: [len 56] {position 0} Attribute: Service Record Handle (0x0000) [len 2] 0x00010000 Attribute: Service Class ID List (0x0001) [len 2] UUID (3) with 2 bytes [0 extra bits] len 3 Audio Sink (0x110b) Attribute: Protocol Descriptor List (0x0004) [len 2] Sequence (6) with 6 bytes [8 extra bits] len 8 UUID (3) with 2 bytes [0 extra bits] len 3 L2CAP (0x0100) Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0019 Sequence (6) with 6 bytes [8 extra bits] len 8 UUID (3) with 2 bytes [0 extra bits] len 3 AVDTP (0x0019) Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0103 Attribute: Bluetooth Profile Descriptor List (0x0009) [len 2] Sequence (6) with 6 bytes [8 extra bits] len 8 UUID (3) with 2 bytes [0 extra bits] len 3 Advanced Audio Distribution (0x110d) Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0103 Attribute: Unknown (0x0311) [len 2] 0x0001 Attribute list: [len 79] {position 1} Attribute: Service Record Handle (0x0000) [len 2] 0x00010001 Attribute: Service Class ID List (0x0001) [len 2] UUID (3) with 2 bytes [0 extra bits] len 3 Serial Port (0x1101) Attribute: Protocol Descriptor List (0x0004) [len 2] Sequence (6) with 3 bytes [8 extra bits] len 5 UUID (3) with 2 bytes [0 extra bits] len 3 L2CAP (0x0100) Sequence (6) with 5 bytes [8 extra bits] len 7 UUID (3) with 2 bytes [0 extra bits] len 3 RFCOMM (0x0003) Unsigned Integer (1) with 1 byte [0 extra bits] len 2 0x01 Attribute: Browse Group List (0x0005) [len 2] UUID (3) with 2 bytes [0 extra bits] len 3 Public Browse Root (0x1002) Attribute: Language Base Attribute ID List (0x0006) [len 2] Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x656e Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x006a Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0100 Attribute: Bluetooth Profile Descriptor List (0x0009) [len 2] UUID (3) with 2 bytes [0 extra bits] len 3 Serial Port (0x1101) Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0102 Attribute: Unknown (0x0100) [len 2] SPP Dev1 [len 8] Attribute list: [len 79] {position 2} Attribute: Service Record Handle (0x0000) [len 2] 0x00010002 Attribute: Service Class ID List (0x0001) [len 2] UUID (3) with 2 bytes [0 extra bits] len 3 Serial Port (0x1101) Attribute: Protocol Descriptor List (0x0004) [len 2] Sequence (6) with 3 bytes [8 extra bits] len 5 UUID (3) with 2 bytes [0 extra bits] len 3 L2CAP (0x0100) Sequence (6) with 5 bytes [8 extra bits] len 7 UUID (3) with 2 bytes [0 extra bits] len 3 RFCOMM (0x0003) Unsigned Integer (1) with 1 byte [0 extra bits] len 2 0x02 Attribute: Browse Group List (0x0005) [len 2] UUID (3) with 2 bytes [0 extra bits] len 3 Public Browse Root (0x1002) Attribute: Language Base Attribute ID List (0x0006) [len 2] Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x656e Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x006a Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0100 Attribute: Bluetooth Profile Descriptor List (0x0009) [len 2] UUID (3) with 2 bytes [0 extra bits] len 3 Serial Port (0x1101) Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0102 Attribute: Unknown (0x0100) [len 2] SPP Dev2 [len 8] Attribute list: [len 59] {position 3} Attribute: Service Record Handle (0x0000) [len 2] 0x00010005 Attribute: Service Class ID List (0x0001) [len 2] UUID (3) with 2 bytes [0 extra bits] len 3 A/V Remote Control (0x110e) UUID (3) with 2 bytes [0 extra bits] len 3 A/V Remote Control Controller (0x110f) Attribute: Protocol Descriptor List (0x0004) [len 2] Sequence (6) with 6 bytes [8 extra bits] len 8 UUID (3) with 2 bytes [0 extra bits] len 3 L2CAP (0x0100) Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0017 Sequence (6) with 6 bytes [8 extra bits] len 8 UUID (3) with 2 bytes [0 extra bits] len 3 AVCTP (0x0017) Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0104 Attribute: Bluetooth Profile Descriptor List (0x0009) [len 2] Sequence (6) with 6 bytes [8 extra bits] len 8 UUID (3) with 2 bytes [0 extra bits] len 3 A/V Remote Control (0x110e) Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0106 Attribute: Unknown (0x0311) [len 2] 0x0001 bluetoothd[677]: < ACL Data TX: Handle 256 flags 0x00 dlen 24 #72 20.273704 Channel: 576 len 20 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Request (0x06) tid 8 len 15 Search pattern: [len 5] Sequence (6) with 3 bytes [8 extra bits] len 5 UUID (3) with 2 bytes [0 extra bits] len 3 PnP Information (0x1200) Max record count: 65535 Attribute list: [len 7] Sequence (6) with 5 bytes [8 extra bits] len 7 Unsigned Integer (1) with 4 bytes [0 extra bits] len 5 0x0000ffff Continuation state: 0 > HCI Event: Number of Completed Packets (0x13) plen 5 #73 20.280122 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #72: len 24 (32 Kb/s) Latency: 6 msec (3-84 msec ~9 msec) Channel: 576 [PSM 1 mode Basic (0x00)] {chan 0} Channel Latency: 6 msec (3-84 msec ~9 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 52 #74 20.286923 Channel: 64 len 48 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Response (0x07) tid 8 len 43 Attribute bytes: 38 Continuation state: 2 00 13 .. bluetoothd[677]: < ACL Data TX: Handle 256 flags 0x00 dlen 26 #75 20.287229 Channel: 576 len 22 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Request (0x06) tid 9 len 17 Search pattern: [len 5] Sequence (6) with 3 bytes [8 extra bits] len 5 UUID (3) with 2 bytes [0 extra bits] len 3 PnP Information (0x1200) Max record count: 65535 Attribute list: [len 7] Sequence (6) with 5 bytes [8 extra bits] len 7 Unsigned Integer (1) with 4 bytes [0 extra bits] len 5 0x0000ffff Continuation state: 2 00 13 .. > HCI Event: Number of Completed Packets (0x13) plen 5 #76 20.327082 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #75: len 26 (5 Kb/s) Latency: 39 msec (3-84 msec ~24 msec) Channel: 576 [PSM 1 mode Basic (0x00)] {chan 0} Channel Latency: 39 msec (3-84 msec ~24 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 31 #77 20.344891 Channel: 64 len 27 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Response (0x07) tid 9 len 22 Attribute bytes: 19 Continuation state: 0 Combined attribute bytes: 57 Attribute list: [len 51] {position 0} Attribute: Service Record Handle (0x0000) [len 2] 0x00010003 Attribute: Service Class ID List (0x0001) [len 2] UUID (3) with 2 bytes [0 extra bits] len 3 PnP Information (0x1200) Attribute: Unknown (0x0200) [len 2] 0x0103 Attribute: Unknown (0x0201) [len 2] 0x000a Attribute: Unknown (0x0202) [len 2] 0xffff Attribute: Unknown (0x0203) [len 2] 0xffff Attribute: Unknown (0x0204) [len 2] true Attribute: Unknown (0x0205) [len 2] 0x0001 < HCI Command: Authentication Requested (0x01|0x0011) plen 2 #78 20.348308 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Status (0x0f) plen 4 #79 20.349119 Authentication Requested (0x01|0x0011) ncmd 1 Status: Success (0x00) > HCI Event: Link Key Request (0x17) plen 6 #80 20.350071 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) < HCI Command: Link Key Request Negative... (0x01|0x000c) plen 6 #81 20.350588 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 10 #82 20.351065 Link Key Request Negative Reply (0x01|0x000c) ncmd 1 Status: Success (0x00) Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: IO Capability Request (0x31) plen 6 #83 20.352069 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) < HCI Command: IO Capability Request Reply (0x01|0x002b) plen 9 #84 20.352125 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) IO capability: DisplayYesNo (0x01) OOB data: Authentication data not present (0x00) Authentication: General Bonding - MITM required (0x05) > HCI Event: Command Complete (0x0e) plen 10 #85 20.353111 IO Capability Request Reply (0x01|0x002b) ncmd 1 Status: Success (0x00) Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: IO Capability Response (0x32) plen 9 #86 20.367107 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) IO capability: NoInputNoOutput (0x03) OOB data: Authentication data not present (0x00) Authentication: General Bonding - MITM not required (0x04) @ MGMT Event: Discovering (0x0013) plen 2 {0x0001} 20.723933 Address type: 0x07 BR/EDR LE Public LE Random Discovery: Disabled (0x00) < HCI Command: LE Set Extended Scan Enable (0x08|0x0042) plen 6 #87 20.724020 Extended scan: Disabled (0x00) Filter duplicates: Disabled (0x00) Duration: 0 msec (0x0000) Period: 0.00 sec (0x0000) > HCI Event: Command Complete (0x0e) plen 4 #88 20.724942 LE Set Extended Scan Enable (0x08|0x0042) ncmd 2 Status: Success (0x00) > HCI Event: User Confirmation Request (0x33) plen 10 #89 20.756927 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Passkey: 958528 < HCI Command: User Confirmation Request... (0x01|0x002c) plen 6 #90 20.756966 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 10 #91 20.757921 User Confirmation Request Reply (0x01|0x002c) ncmd 1 Status: Success (0x00) Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Simple Pairing Complete (0x36) plen 7 #92 20.772961 Status: Success (0x00) Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Link Key Notification (0x18) plen 23 #93 20.786937 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Link key: 3961d6d582c484264341d4a1bb6daa0d Key type: Unauthenticated Combination key from P-192 (0x04) @ MGMT Event: New Link Key (0x0009) plen 26 {0x0001} 20.787022 Store hint: Yes (0x01) BR/EDR Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Key type: Unauthenticated Combination key from P-192 (0x04) Link key: 3961d6d582c484264341d4a1bb6daa0d PIN length: 0 > HCI Event: Auth Complete (0x06) plen 3 #94 20.787869 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) < HCI Command: Set Connection Encryption (0x01|0x0013) plen 3 #95 20.788252 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Encryption: Enabled (0x01) > HCI Event: Command Status (0x0f) plen 4 #96 20.788841 Set Connection Encryption (0x01|0x0013) ncmd 1 Status: Success (0x00) blueman-manager[2141]: < HCI Command: Rea.. (0x05|0x0005) plen 2 #97 20.791107 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #98 20.791846 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -14 dBm (0xf2) blueman-manager[2141]: < HCI Command: Rea.. (0x03|0x002d) plen 3 #99 20.792032 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #100 20.792843 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) > HCI Event: Encryption Change (0x08) plen 4 #101 20.896861 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Encryption: Enabled with E0 (0x01) < HCI Command: Read Encryption Key Size (0x05|0x0008) plen 2 #102 20.896957 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #103 20.897800 Read Encryption Key Size (0x05|0x0008) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Key size: 16 < ACL Data TX: Handle 256 flags 0x00 dlen 12 #104 20.897897 L2CAP: Connection Request (0x02) ident 5 len 4 PSM: 25 (0x0019) Source CID: 65 > HCI Event: Number of Completed Packets (0x13) plen 5 #105 20.901794 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #104: len 12 (32 Kb/s) Latency: 3 msec (3-84 msec ~14 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 16 #106 20.905893 L2CAP: Connection Response (0x03) ident 5 len 8 Destination CID: 641 Source CID: 65 Result: Connection pending (0x0001) Status: Authorization pending (0x0002) > ACL Data RX: Handle 256 flags 0x02 dlen 12 #107 20.907889 L2CAP: Connection Request (0x02) ident 2 len 4 PSM: 1 (0x0001) Source CID: 706 < ACL Data TX: Handle 256 flags 0x00 dlen 16 #108 20.907972 L2CAP: Connection Response (0x03) ident 2 len 8 Destination CID: 66 Source CID: 706 Result: Connection successful (0x0000) Status: No further information available (0x0000) < ACL Data TX: Handle 256 flags 0x00 dlen 23 #109 20.907988 L2CAP: Configure Request (0x04) ident 6 len 15 Destination CID: 706 Flags: 0x0000 Option: Retransmission and Flow Control (0x04) [mandatory] Mode: Basic (0x00) TX window size: 0 Max transmit: 0 Retransmission timeout: 0 Monitor timeout: 0 Maximum PDU size: 0 > HCI Event: Number of Completed Packets (0x13) plen 5 #110 20.912867 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #108: len 16 (32 Kb/s) Latency: 4 msec (3-84 msec ~9 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #111 20.915781 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #109: len 23 (26 Kb/s) Latency: 7 msec (3-84 msec ~8 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 16 #112 20.917871 L2CAP: Configure Request (0x04) ident 3 len 8 Destination CID: 66 Flags: 0x0000 Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 48 < ACL Data TX: Handle 256 flags 0x00 dlen 18 #113 20.917954 L2CAP: Configure Response (0x05) ident 3 len 10 Source CID: 706 Flags: 0x0000 Result: Success (0x0000) Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 48 > ACL Data RX: Handle 256 flags 0x02 dlen 14 #114 20.920871 L2CAP: Configure Response (0x05) ident 6 len 6 Source CID: 66 Flags: 0x0000 Result: Success (0x0000) > HCI Event: Number of Completed Packets (0x13) plen 5 #115 20.921812 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #113: len 18 (48 Kb/s) Latency: 3 msec (3-84 msec ~6 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 28 #116 20.926833 Channel: 66 len 24 [PSM 1 mode Basic (0x00)] {chan 2} SDP: Service Search Attribute Request (0x06) tid 1 len 19 Search pattern: [len 5] Sequence (6) with 3 bytes [8 extra bits] len 5 UUID (3) with 2 bytes [0 extra bits] len 3 PnP Information (0x1200) Max record count: 32 Attribute list: [len 11] Sequence (6) with 9 bytes [8 extra bits] len 11 Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0201 Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0202 Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0205 Continuation state: 0 bluetoothd[677]: < ACL Data TX: Handle 256 flags 0x00 dlen 34 #117 20.927260 Channel: 706 len 30 [PSM 1 mode Basic (0x00)] {chan 2} SDP: Service Search Attribute Response (0x07) tid 1 len 25 Attribute bytes: 22 Attribute list: [len 18] {position 0} Attribute: Unknown (0x0201) [len 2] 0x1d6b Attribute: Unknown (0x0202) [len 2] 0x0246 Attribute: Unknown (0x0205) [len 2] 0x0002 Continuation state: 0 > HCI Event: Number of Completed Packets (0x13) plen 5 #118 20.930850 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #117: len 34 (90 Kb/s) Latency: 3 msec (3-84 msec ~4 msec) Channel: 706 [PSM 1 mode Basic (0x00)] {chan 2} Channel Latency: 3 msec (3-3 msec ~3 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 12 #119 20.934888 L2CAP: Disconnection Request (0x06) ident 4 len 4 Destination CID: 66 Source CID: 706 < ACL Data TX: Handle 256 flags 0x00 dlen 12 #120 20.934990 L2CAP: Disconnection Response (0x07) ident 4 len 4 Destination CID: 66 Source CID: 706 > HCI Event: Number of Completed Packets (0x13) plen 5 #121 20.937796 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #120: len 12 (48 Kb/s) Latency: 2 msec (2-84 msec ~3 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 16 #122 20.951850 L2CAP: Connection Response (0x03) ident 5 len 8 Destination CID: 641 Source CID: 65 Result: Connection successful (0x0000) Status: No further information available (0x0000) > ACL Data RX: Handle 256 flags 0x02 dlen 20 #123 20.951857 L2CAP: Configure Request (0x04) ident 5 len 12 Destination CID: 65 Flags: 0x0000 Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 672 Option: Flush Timeout (0x02) [mandatory] Flush timeout: 65535 < ACL Data TX: Handle 256 flags 0x00 dlen 23 #124 20.951901 L2CAP: Configure Request (0x04) ident 7 len 15 Destination CID: 641 Flags: 0x0000 Option: Retransmission and Flow Control (0x04) [mandatory] Mode: Basic (0x00) TX window size: 0 Max transmit: 0 Retransmission timeout: 0 Monitor timeout: 0 Maximum PDU size: 0 < ACL Data TX: Handle 256 flags 0x00 dlen 18 #125 20.951921 L2CAP: Configure Response (0x05) ident 5 len 10 Source CID: 641 Flags: 0x0000 Result: Success (0x0000) Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 672 > ACL Data RX: Handle 256 flags 0x02 dlen 12 #126 20.954829 L2CAP: Connection Request (0x02) ident 6 len 4 PSM: 1 (0x0001) Source CID: 770 < ACL Data TX: Handle 256 flags 0x00 dlen 16 #127 20.954875 L2CAP: Connection Response (0x03) ident 6 len 8 Destination CID: 66 Source CID: 770 Result: Connection successful (0x0000) Status: No further information available (0x0000) < ACL Data TX: Handle 256 flags 0x00 dlen 23 #128 20.954896 L2CAP: Configure Request (0x04) ident 8 len 15 Destination CID: 770 Flags: 0x0000 Option: Retransmission and Flow Control (0x04) [mandatory] Mode: Basic (0x00) TX window size: 0 Max transmit: 0 Retransmission timeout: 0 Monitor timeout: 0 Maximum PDU size: 0 > HCI Event: Number of Completed Packets (0x13) plen 5 #129 20.955818 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #124: len 23 (61 Kb/s) Latency: 3 msec (2-84 msec ~3 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #130 20.956823 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #125: len 18 (36 Kb/s) Latency: 4 msec (2-84 msec ~4 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #131 20.957814 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #127: len 16 (64 Kb/s) Latency: 2 msec (2-84 msec ~3 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #132 20.959818 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #128: len 23 (46 Kb/s) Latency: 4 msec (2-84 msec ~4 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 22 #133 20.960831 L2CAP: Configure Response (0x05) ident 7 len 14 Source CID: 65 Flags: 0x0000 Result: Success (0x0000) Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 672 Option: Flush Timeout (0x02) [mandatory] Flush timeout: 65535 > ACL Data RX: Handle 256 flags 0x02 dlen 16 #134 20.960833 L2CAP: Configure Request (0x04) ident 7 len 8 Destination CID: 66 Flags: 0x0000 Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 48 < ACL Data TX: Handle 256 flags 0x00 dlen 18 #135 20.960902 L2CAP: Configure Response (0x05) ident 7 len 10 Source CID: 770 Flags: 0x0000 Result: Success (0x0000) Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 48 bluetoothd[677]: < ACL Data TX: Handle 256 flags 0x00 dlen 6 #136 20.961330 Channel: 641 len 2 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Discover (0x01) Command (0x00) type 0x00 label 0 nosp 0 > ACL Data RX: Handle 256 flags 0x02 dlen 14 #137 20.962856 L2CAP: Configure Response (0x05) ident 8 len 6 Source CID: 66 Flags: 0x0000 Result: Success (0x0000) > HCI Event: Number of Completed Packets (0x13) plen 5 #138 20.964765 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #135: len 18 (48 Kb/s) Latency: 3 msec (2-84 msec ~4 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #139 20.965758 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #136: len 6 (12 Kb/s) Latency: 4 msec (2-84 msec ~4 msec) Channel: 641 [PSM 25 mode Basic (0x00)] {chan 1} Channel Latency: 4 msec (4-4 msec ~4 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 22 #140 20.972233 Channel: 66 len 18 [PSM 1 mode Basic (0x00)] {chan 2} SDP: Service Search Attribute Request (0x06) tid 1 len 13 Search pattern: [len 5] Sequence (6) with 3 bytes [8 extra bits] len 5 UUID (3) with 2 bytes [0 extra bits] len 3 Audio Source (0x110a) Max record count: 32 Attribute list: [len 5] Sequence (6) with 3 bytes [8 extra bits] len 5 Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0009 Continuation state: 0 bluetoothd[677]: < ACL Data TX: Handle 256 flags 0x00 dlen 29 #141 20.972508 Channel: 770 len 25 [PSM 1 mode Basic (0x00)] {chan 2} SDP: Service Search Attribute Response (0x07) tid 1 len 20 Attribute bytes: 17 Attribute list: [len 13] {position 0} Attribute: Bluetooth Profile Descriptor List (0x0009) [len 2] Sequence (6) with 6 bytes [8 extra bits] len 8 UUID (3) with 2 bytes [0 extra bits] len 3 Advanced Audio Distribution (0x110d) Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0103 Continuation state: 0 > HCI Event: Number of Completed Packets (0x13) plen 5 #142 20.975966 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #141: len 29 (77 Kb/s) Latency: 3 msec (2-84 msec ~3 msec) Channel: 770 [PSM 1 mode Basic (0x00)] {chan 2} Channel Latency: 3 msec (3-3 msec ~3 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 12 #143 20.979818 L2CAP: Disconnection Request (0x06) ident 8 len 4 Destination CID: 66 Source CID: 770 < ACL Data TX: Handle 256 flags 0x00 dlen 12 #144 20.979912 L2CAP: Disconnection Response (0x07) ident 8 len 4 Destination CID: 66 Source CID: 770 > HCI Event: Number of Completed Packets (0x13) plen 5 #145 20.982802 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #144: len 12 (48 Kb/s) Latency: 2 msec (2-84 msec ~3 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 14 #146 20.991877 Channel: 65 len 10 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Discover (0x01) Response Accept (0x02) type 0x00 label 0 nosp 0 ACP SEID: 49 Media Type: Audio (0x00) SEP Type: SRC (0x00) In use: No ACP SEID: 17 Media Type: Audio (0x00) SEP Type: SNK (0x01) In use: No ACP SEID: 33 Media Type: Audio (0x00) SEP Type: SRC (0x00) In use: No ACP SEID: 1 Media Type: Audio (0x00) SEP Type: SNK (0x01) In use: No bluetoothd[677]: < ACL Data TX: Handle 256 flags 0x00 dlen 20 #147 20.995520 Channel: 641 len 16 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Set Configuration (0x03) Command (0x00) type 0x00 label 1 nosp 0 ACP SEID: 1 INT SEID: 7 Service Category: Media Transport (0x01) Service Category: Media Codec (0x07) Media Type: Audio (0x00) Media Codec: SBC (0x00) Frequency: 48000 (0x10) Channel Mode: Joint Stereo (0x01) Block Length: 16 (0x10) Subbands: 8 (0x04) Allocation Method: Loudness (0x01) Minimum Bitpool: 2 Maximum Bitpool: 53 Service Category: Delay Reporting (0x08) > HCI Event: Number of Completed Packets (0x13) plen 5 #148 21.001788 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #147: len 20 (26 Kb/s) Latency: 6 msec (2-84 msec ~4 msec) Channel: 641 [PSM 25 mode Basic (0x00)] {chan 1} Channel Latency: 6 msec (4-6 msec ~5 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 6 #149 21.011882 Channel: 65 len 2 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Set Configuration (0x03) Response Accept (0x02) type 0x00 label 1 nosp 0 > ACL Data RX: Handle 256 flags 0x02 dlen 9 #150 21.011890 Channel: 65 len 5 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Delay Report (0x0d) Command (0x00) type 0x00 label 2 nosp 0 ACP SEID: 7 Delay: 150.0ms bluetoothd[677]: < ACL Data TX: Handle 256 flags 0x00 dlen 6 #151 21.012847 Channel: 641 len 2 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Delay Report (0x0d) Response Accept (0x02) type 0x00 label 2 nosp 0 > HCI Event: Number of Completed Packets (0x13) plen 5 #152 21.019745 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #151: len 6 (8 Kb/s) Latency: 6 msec (2-84 msec ~5 msec) Channel: 641 [PSM 25 mode Basic (0x00)] {chan 1} Channel Latency: 6 msec (4-6 msec ~6 msec) bluetoothd[677]: < ACL Data TX: Handle 256 flags 0x00 dlen 7 #153 21.020904 Channel: 641 len 3 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Open (0x06) Command (0x00) type 0x00 label 2 nosp 0 ACP SEID: 1 > HCI Event: Number of Completed Packets (0x13) plen 5 #154 21.024774 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #153: len 7 (18 Kb/s) Latency: 3 msec (2-84 msec ~4 msec) Channel: 641 [PSM 25 mode Basic (0x00)] {chan 1} Channel Latency: 3 msec (3-6 msec ~4 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 6 #155 21.031825 Channel: 65 len 2 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Open (0x06) Response Accept (0x02) type 0x00 label 2 nosp 0 < ACL Data TX: Handle 256 flags 0x00 dlen 12 #156 21.034057 L2CAP: Connection Request (0x02) ident 9 len 4 PSM: 25 (0x0019) Source CID: 66 > HCI Event: Number of Completed Packets (0x13) plen 5 #157 21.039754 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #156: len 12 (19 Kb/s) Latency: 5 msec (2-84 msec ~5 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 16 #158 21.042825 L2CAP: Connection Response (0x03) ident 9 len 8 Destination CID: 834 Source CID: 66 Result: Connection pending (0x0001) Status: Authorization pending (0x0002) > ACL Data RX: Handle 256 flags 0x02 dlen 16 #159 21.042830 L2CAP: Connection Response (0x03) ident 9 len 8 Destination CID: 834 Source CID: 66 Result: Connection successful (0x0000) Status: No further information available (0x0000) < ACL Data TX: Handle 256 flags 0x00 dlen 23 #160 21.042896 L2CAP: Configure Request (0x04) ident 10 len 15 Destination CID: 834 Flags: 0x0000 Option: Retransmission and Flow Control (0x04) [mandatory] Mode: Basic (0x00) TX window size: 0 Max transmit: 0 Retransmission timeout: 0 Monitor timeout: 0 Maximum PDU size: 0 > ACL Data RX: Handle 256 flags 0x02 dlen 20 #161 21.045818 L2CAP: Configure Request (0x04) ident 9 len 12 Destination CID: 66 Flags: 0x0000 Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 672 Option: Flush Timeout (0x02) [mandatory] Flush timeout: 65535 < ACL Data TX: Handle 256 flags 0x00 dlen 18 #162 21.045855 L2CAP: Configure Response (0x05) ident 9 len 10 Source CID: 834 Flags: 0x0000 Result: Success (0x0000) Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 672 > HCI Event: Number of Completed Packets (0x13) plen 5 #163 21.046723 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #160: len 23 (61 Kb/s) Latency: 3 msec (2-84 msec ~4 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #164 21.049736 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #162: len 18 (48 Kb/s) Latency: 3 msec (2-84 msec ~4 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 22 #165 21.053821 L2CAP: Configure Response (0x05) ident 10 len 14 Source CID: 66 Flags: 0x0000 Result: Success (0x0000) Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 672 Option: Flush Timeout (0x02) [mandatory] Flush timeout: 65535 < ACL Data TX: Handle 256 flags 0x00 dlen 12 #166 21.055074 L2CAP: Connection Request (0x02) ident 11 len 4 PSM: 23 (0x0017) Source CID: 67 > HCI Event: Number of Completed Packets (0x13) plen 5 #167 21.057719 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #166: len 12 (48 Kb/s) Latency: 2 msec (2-84 msec ~3 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 16 #168 21.061831 L2CAP: Connection Response (0x03) ident 11 len 8 Destination CID: 899 Source CID: 67 Result: Connection pending (0x0001) Status: Authorization pending (0x0002) > ACL Data RX: Handle 256 flags 0x02 dlen 16 #169 21.063819 L2CAP: Connection Response (0x03) ident 11 len 8 Destination CID: 899 Source CID: 67 Result: Connection successful (0x0000) Status: No further information available (0x0000) < ACL Data TX: Handle 256 flags 0x00 dlen 23 #170 21.064726 L2CAP: Configure Request (0x04) ident 12 len 15 Destination CID: 899 Flags: 0x0000 Option: Retransmission and Flow Control (0x04) [mandatory] Mode: Basic (0x00) TX window size: 0 Max transmit: 0 Retransmission timeout: 0 Monitor timeout: 0 Maximum PDU size: 0 > ACL Data RX: Handle 256 flags 0x02 dlen 10 #171 21.066815 L2CAP: Information Request (0x0a) ident 10 len 2 Type: Extended features supported (0x0002) < ACL Data TX: Handle 256 flags 0x00 dlen 16 #172 21.067079 L2CAP: Information Response (0x0b) ident 10 len 8 Type: Extended features supported (0x0002) Result: Success (0x0000) Features: 0x000002b8 Enhanced Retransmission Mode Streaming Mode FCS Option Fixed Channels Unicast Connectionless Data Reception > HCI Event: Number of Completed Packets (0x13) plen 5 #173 21.067713 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #170: len 23 (92 Kb/s) Latency: 2 msec (2-84 msec ~3 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #174 21.070719 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #172: len 16 (42 Kb/s) Latency: 3 msec (2-84 msec ~3 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 18 #175 21.070816 L2CAP: Configure Response (0x05) ident 12 len 10 Source CID: 67 Flags: 0x0000 Result: Success (0x0000) Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 672 > ACL Data RX: Handle 256 flags 0x02 dlen 34 #176 21.076817 L2CAP: Configure Request (0x04) ident 11 len 26 Destination CID: 67 Flags: 0x0000 Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 672 Option: Flush Timeout (0x02) [mandatory] Flush timeout: 65535 Option: Retransmission and Flow Control (0x04) [mandatory] Mode: Enhanced Retransmission (0x03) TX window size: 5 Max transmit: 10 Retransmission timeout: 0 Monitor timeout: 0 Maximum PDU size: 960 Option: Frame Check Sequence (0x05) [mandatory] FCS: 16-bit FCS (0x01) < ACL Data TX: Handle 256 flags 0x00 dlen 25 #177 21.076848 L2CAP: Configure Response (0x05) ident 11 len 17 Source CID: 899 Flags: 0x0000 Result: Failure - unacceptable parameters (0x0001) Option: Retransmission and Flow Control (0x04) [mandatory] Mode: Basic (0x00) TX window size: 5 Max transmit: 10 Retransmission timeout: 0 Monitor timeout: 0 Maximum PDU size: 960 > HCI Event: Number of Completed Packets (0x13) plen 5 #178 21.080706 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #177: len 25 (66 Kb/s) Latency: 3 msec (2-84 msec ~3 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 20 #179 21.086856 L2CAP: Configure Request (0x04) ident 12 len 12 Destination CID: 67 Flags: 0x0000 Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 672 Option: Flush Timeout (0x02) [mandatory] Flush timeout: 65535 < ACL Data TX: Handle 256 flags 0x00 dlen 18 #180 21.086892 L2CAP: Configure Response (0x05) ident 12 len 10 Source CID: 899 Flags: 0x0000 Result: Success (0x0000) Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 672 bluetoothd[677]: < ACL Data TX: Handle 256 flags 0x00 dlen 18 #181 21.087979 Channel: 899 len 14 [PSM 23 mode Basic (0x00)] {chan 3} AVCTP Control: Command: type 0x00 label 0 PID 0x110e AV/C: Status: address 0x48 opcode 0x00 Subunit: Panel Opcode: Vendor Dependent Company ID: 0x001958 AVRCP: GetCapabilities pt Single len 0x0001 CapabilityID: 0x03 (EventsID) > HCI Event: Number of Completed Packets (0x13) plen 5 #182 21.090705 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #180: len 18 (48 Kb/s) Latency: 3 msec (2-84 msec ~3 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #183 21.092714 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #181: len 18 (36 Kb/s) Latency: 4 msec (2-84 msec ~4 msec) Channel: 899 [PSM 23 mode Basic (0x00)] {chan 3} Channel Latency: 4 msec (4-4 msec ~4 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 12 #184 21.099807 L2CAP: Connection Request (0x02) ident 13 len 4 PSM: 1 (0x0001) Source CID: 964 > ACL Data RX: Handle 256 flags 0x02 dlen 21 #185 21.099811 Channel: 67 len 17 [PSM 23 mode Basic (0x00)] {chan 3} AVCTP Control: Response: type 0x00 label 0 PID 0x110e AV/C: Stable: address 0x48 opcode 0x00 Subunit: Panel Opcode: Vendor Dependent Company ID: 0x001958 AVRCP: GetCapabilities pt Single len 0x0004 CapabilityID: 0x03 (EventsID) CapabilityCount: 0x02 EventsID: 0x01 (EVENT_PLAYBACK_STATUS_CHANGED) EventsID: 0x02 (EVENT_TRACK_CHANGED) < ACL Data TX: Handle 256 flags 0x00 dlen 16 #186 21.099940 L2CAP: Connection Response (0x03) ident 13 len 8 Destination CID: 68 Source CID: 964 Result: Connection successful (0x0000) Status: No further information available (0x0000) < ACL Data TX: Handle 256 flags 0x00 dlen 23 #187 21.099955 L2CAP: Configure Request (0x04) ident 13 len 15 Destination CID: 964 Flags: 0x0000 Option: Retransmission and Flow Control (0x04) [mandatory] Mode: Basic (0x00) TX window size: 0 Max transmit: 0 Retransmission timeout: 0 Monitor timeout: 0 Maximum PDU size: 0 > HCI Event: Number of Completed Packets (0x13) plen 5 #188 21.102695 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #186: len 16 (64 Kb/s) Latency: 2 msec (2-84 msec ~3 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #189 21.104709 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #187: len 23 (46 Kb/s) Latency: 4 msec (2-84 msec ~4 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 16 #190 21.109234 L2CAP: Configure Request (0x04) ident 14 len 8 Destination CID: 68 Flags: 0x0000 Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 48 > ACL Data RX: Handle 256 flags 0x02 dlen 14 #191 21.109235 L2CAP: Configure Response (0x05) ident 13 len 6 Source CID: 68 Flags: 0x0000 Result: Success (0x0000) < ACL Data TX: Handle 256 flags 0x00 dlen 18 #192 21.109253 L2CAP: Configure Response (0x05) ident 14 len 10 Source CID: 964 Flags: 0x0000 Result: Success (0x0000) Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 48 > HCI Event: Number of Completed Packets (0x13) plen 5 #193 21.112715 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #192: len 18 (48 Kb/s) Latency: 3 msec (2-84 msec ~3 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 25 #194 21.118943 Channel: 68 len 21 [PSM 1 mode Basic (0x00)] {chan 4} SDP: Service Search Attribute Request (0x06) tid 1 len 16 Search pattern: [len 5] Sequence (6) with 3 bytes [8 extra bits] len 5 UUID (3) with 2 bytes [0 extra bits] len 3 A/V Remote Control Target (0x110c) Max record count: 38 Attribute list: [len 8] Sequence (6) with 6 bytes [8 extra bits] len 8 Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0009 Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0311 Continuation state: 0 bluetoothd[677]: < ACL Data TX: Handle 256 flags 0x00 dlen 35 #195 21.119272 Channel: 964 len 31 [PSM 1 mode Basic (0x00)] {chan 4} SDP: Service Search Attribute Response (0x07) tid 1 len 26 Attribute bytes: 23 Attribute list: [len 19] {position 0} Attribute: Bluetooth Profile Descriptor List (0x0009) [len 2] Sequence (6) with 6 bytes [8 extra bits] len 8 UUID (3) with 2 bytes [0 extra bits] len 3 A/V Remote Control (0x110e) Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0105 Attribute: Unknown (0x0311) [len 2] 0x005f Continuation state: 0 > HCI Event: Number of Completed Packets (0x13) plen 5 #196 21.122715 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #195: len 35 (93 Kb/s) Latency: 3 msec (2-84 msec ~3 msec) Channel: 964 [PSM 1 mode Basic (0x00)] {chan 4} Channel Latency: 3 msec (3-3 msec ~3 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 12 #197 21.127812 L2CAP: Disconnection Request (0x06) ident 15 len 4 Destination CID: 68 Source CID: 964 < ACL Data TX: Handle 256 flags 0x00 dlen 12 #198 21.127850 L2CAP: Disconnection Response (0x07) ident 15 len 4 Destination CID: 68 Source CID: 964 > HCI Event: Number of Completed Packets (0x13) plen 5 #199 21.131677 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #198: len 12 (32 Kb/s) Latency: 3 msec (2-84 msec ~3 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 18 #200 21.137804 Channel: 67 len 14 [PSM 23 mode Basic (0x00)] {chan 3} AVCTP Control: Command: type 0x00 label 1 PID 0x110e AV/C: Status: address 0x48 opcode 0x00 Subunit: Panel Opcode: Vendor Dependent Company ID: 0x001958 AVRCP: GetCapabilities pt Single len 0x0001 CapabilityID: 0x03 (EventsID) bluetoothd[677]: < ACL Data TX: Handle 256 flags 0x00 dlen 27 #201 21.137866 Channel: 899 len 23 [PSM 23 mode Basic (0x00)] {chan 3} AVCTP Control: Response: type 0x00 label 1 PID 0x110e AV/C: Stable: address 0x48 opcode 0x00 Subunit: Panel Opcode: Vendor Dependent Company ID: 0x001958 AVRCP: GetCapabilities pt Single len 0x000a CapabilityID: 0x03 (EventsID) CapabilityCount: 0x08 EventsID: 0x01 (EVENT_PLAYBACK_STATUS_CHANGED) EventsID: 0x02 (EVENT_TRACK_CHANGED) EventsID: 0x03 (EVENT_TRACK_REACHED_END) EventsID: 0x04 (EVENT_TRACK_REACHED_START) EventsID: 0x08 (EVENT_PLAYER_APPLICATION_SETTING_CHANGED) EventsID: 0x0a (EVENT_AVAILABLE_PLAYERS_CHANGED) EventsID: 0x0b (EVENT_ADDRESSED_PLAYER_CHANGED) EventsID: 0x0d (EVENT_VOLUME_CHANGED) > HCI Event: Number of Completed Packets (0x13) plen 5 #202 21.141681 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #201: len 27 (72 Kb/s) Latency: 3 msec (2-84 msec ~3 msec) Channel: 899 [PSM 23 mode Basic (0x00)] {chan 3} Channel Latency: 3 msec (3-4 msec ~4 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 22 #203 21.150806 Channel: 67 len 18 [PSM 23 mode Basic (0x00)] {chan 3} AVCTP Control: Command: type 0x00 label 2 PID 0x110e AV/C: Notify: address 0x48 opcode 0x00 Subunit: Panel Opcode: Vendor Dependent Company ID: 0x001958 AVRCP: RegisterNotification pt Single len 0x0005 EventID: 0x01 (EVENT_PLAYBACK_STATUS_CHANGED) Interval: 0x00000000 (0 seconds) bluetoothd[677]: < ACL Data TX: Handle 256 flags 0x00 dlen 19 #204 21.150873 Channel: 899 len 15 [PSM 23 mode Basic (0x00)] {chan 3} AVCTP Control: Response: type 0x00 label 2 PID 0x110e AV/C: Interim: address 0x48 opcode 0x00 Subunit: Panel Opcode: Vendor Dependent Company ID: 0x001958 AVRCP: RegisterNotification pt Single len 0x0002 EventID: 0x01 (EVENT_PLAYBACK_STATUS_CHANGED) PlayStatus: 0x00 (STOPPED) > HCI Event: Number of Completed Packets (0x13) plen 5 #205 21.154666 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #204: len 19 (50 Kb/s) Latency: 3 msec (2-84 msec ~3 msec) Channel: 899 [PSM 23 mode Basic (0x00)] {chan 3} Channel Latency: 3 msec (3-4 msec ~4 msec) blueman-manager[2141]: < HCI Command: Re.. (0x05|0x0005) plen 2 #206 21.791339 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #207 21.793468 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -13 dBm (0xf3) blueman-manager[2141]: < HCI Command: Re.. (0x03|0x002d) plen 3 #208 21.793685 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #209 21.795439 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) < ACL Data TX: Handle 256 flags 0x00 dlen 12 #210 22.517900 L2CAP: Disconnection Request (0x06) ident 14 len 4 Destination CID: 576 Source CID: 64 > HCI Event: Number of Completed Packets (0x13) plen 5 #211 22.521155 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #210: len 12 (32 Kb/s) Latency: 3 msec (2-84 msec ~3 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 12 #212 22.524874 L2CAP: Disconnection Response (0x07) ident 14 len 4 Destination CID: 576 Source CID: 64 blueman-manager[2141]: < HCI Command: Re.. (0x05|0x0005) plen 2 #213 22.792116 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #214 22.794117 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -14 dBm (0xf2) blueman-manager[2141]: < HCI Command: Re.. (0x03|0x002d) plen 3 #215 22.794315 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #216 22.796086 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) blueman-manager[2141]: < HCI Command: Re.. (0x05|0x0005) plen 2 #217 23.793137 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #218 23.794755 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -15 dBm (0xf1) blueman-manager[2141]: < HCI Command: Re.. (0x03|0x002d) plen 3 #219 23.794978 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #220 23.796714 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) blueman-manager[2141]: < HCI Command: Re.. (0x05|0x0005) plen 2 #221 24.793397 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #222 24.795466 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -16 dBm (0xf0) blueman-manager[2141]: < HCI Command: Re.. (0x03|0x002d) plen 3 #223 24.795628 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #224 24.797444 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) blueman-manager[2141]: < HCI Command: Re.. (0x05|0x0005) plen 2 #225 25.793582 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #226 25.795200 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -14 dBm (0xf2) blueman-manager[2141]: < HCI Command: Re.. (0x03|0x002d) plen 3 #227 25.795389 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #228 25.797186 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) bluetoothd[677]: @ MGMT Command: Start Di.. (0x0023) plen 1 {0x0001} 26.518215 Address type: 0x07 BR/EDR LE Public LE Random < HCI Command: LE Set Random Address (0x08|0x0005) plen 6 #229 26.518401 Address: 3D:16:F4:E4:C8:FE (Non-Resolvable) > HCI Event: Command Complete (0x0e) plen 4 #230 26.520196 LE Set Random Address (0x08|0x0005) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Extended Scan Par.. (0x08|0x0041) plen 13 #231 26.520456 Own address type: Random (0x01) Filter policy: Accept all advertisement (0x00) PHYs: 0x05 Entry 0: LE 1M Type: Active (0x01) Interval: 22.500 msec (0x0024) Window: 11.250 msec (0x0012) Entry 1: LE Coded Type: Active (0x01) Interval: 67.500 msec (0x006c) Window: 33.750 msec (0x0036) > HCI Event: Command Complete (0x0e) plen 4 #232 26.522197 LE Set Extended Scan Parameters (0x08|0x0041) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Extended Scan Enable (0x08|0x0042) plen 6 #233 26.522461 Extended scan: Enabled (0x01) Filter duplicates: Enabled (0x01) Duration: 0 msec (0x0000) Period: 0.00 sec (0x0000) > HCI Event: Command Complete (0x0e) plen 4 #234 26.525192 LE Set Extended Scan Enable (0x08|0x0042) ncmd 2 Status: Success (0x00) @ MGMT Event: Discovering (0x0013) plen 2 {0x0001} 26.525302 Address type: 0x07 BR/EDR LE Public LE Random Discovery: Enabled (0x01) < HCI Command: Inquiry (0x01|0x0001) plen 5 #235 26.525456 Access code: 0x9e8b33 (General Inquiry) Length: 10.24s (0x08) Num responses: 0 > HCI Event: Command Status (0x0f) plen 4 #236 26.538129 Inquiry (0x01|0x0001) ncmd 2 Status: Success (0x00) @ MGMT Event: Command Complete (0x0001) plen 4 {0x0001} 26.538294 Start Discovery (0x0023) plen 1 Status: Success (0x00) Address type: 0x07 BR/EDR LE Public LE Random blueman-manager[2141]: < HCI Command: Re.. (0x05|0x0005) plen 2 #237 26.794232 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #238 26.794957 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -14 dBm (0xf2) blueman-manager[2141]: < HCI Command: Re.. (0x03|0x002d) plen 3 #239 26.795200 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #240 26.795950 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) > HCI Event: LE Meta Event (0x3e) plen 57 #241 26.932060 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0010 Props: 0x0010 Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_NONCONN_IND (0x0010) Address type: Random (0x01) Address: 16:E7:B4:9C:AE:6A (Non-Resolvable) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -88 dBm (0xa8) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x1f 1e 16 f3 fe 4a 17 23 42 37 58 53 11 32 77 90 09 ....J.#B7XS.2w.. b1 8f 50 f7 a9 f0 4d 05 07 df 6e 9d d7 d6 78 ..P...M...n...x Service Data: Google (0xfef3) Data: 4a1723423758531132779009b18f50f7a9f04d0507df6e9dd7d678 @ MGMT Event: Device Found (0x0012) plen 45 {0x0001} 26.932169 LE Address: 16:E7:B4:9C:AE:6A (Non-Resolvable) RSSI: -88 dBm (0xa8) Flags: 0x00000004 Not Connectable Data length: 31 Service Data: Google (0xfef3) Data: 4a1723423758531132779009b18f50f7a9f04d0507df6e9dd7d678 blueman-manager[2141]: < HCI Command: Re.. (0x05|0x0005) plen 2 #242 27.795273 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #243 27.795764 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -13 dBm (0xf3) blueman-manager[2141]: < HCI Command: Re.. (0x03|0x002d) plen 3 #244 27.795976 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #245 27.796742 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) blueman-manager[2141]: < HCI Command: Re.. (0x05|0x0005) plen 2 #246 28.796162 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #247 28.796590 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -16 dBm (0xf0) blueman-manager[2141]: < HCI Command: Re.. (0x03|0x002d) plen 3 #248 28.796818 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #249 28.797565 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) > HCI Event: LE Meta Event (0x3e) plen 34 #250 29.436532 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0010 Props: 0x0010 Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_NONCONN_IND (0x0010) Address type: Random (0x01) Address: DF:3F:12:A6:09:11 (Static) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -57 dBm (0xc7) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x08 07 ff 4c 00 12 02 00 01 ..L..... Company: Apple, Inc. (76) Type: Unknown (18) Data: 0001 @ MGMT Event: Device Found (0x0012) plen 22 {0x0001} 29.436614 LE Address: DF:3F:12:A6:09:11 (Static) RSSI: -57 dBm (0xc7) Flags: 0x00000004 Not Connectable Data length: 8 Company: Apple, Inc. (76) Type: Unknown (18) Data: 0001 blueman-manager[2141]: < HCI Command: Re.. (0x05|0x0005) plen 2 #251 29.797014 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #252 29.798443 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -16 dBm (0xf0) blueman-manager[2141]: < HCI Command: Re.. (0x03|0x002d) plen 3 #253 29.798660 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #254 29.799416 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) blueman-manager[2141]: < HCI Command: Re.. (0x05|0x0005) plen 2 #255 30.797847 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #256 30.798305 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -15 dBm (0xf1) blueman-manager[2141]: < HCI Command: Re.. (0x03|0x002d) plen 3 #257 30.798532 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #258 30.799296 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) > HCI Event: LE Meta Event (0x3e) plen 34 #259 30.931479 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0010 Props: 0x0010 Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_NONCONN_IND (0x0010) Address type: Random (0x01) Address: CE:A5:13:88:FC:11 (Static) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -78 dBm (0xb2) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x08 07 ff 4c 00 12 02 00 00 ..L..... Company: Apple, Inc. (76) Type: Unknown (18) Data: 0000 @ MGMT Event: Device Found (0x0012) plen 22 {0x0001} 30.931588 LE Address: CE:A5:13:88:FC:11 (Static) RSSI: -78 dBm (0xb2) Flags: 0x00000004 Not Connectable Data length: 8 Company: Apple, Inc. (76) Type: Unknown (18) Data: 0000 blueman-manager[2141]: < HCI Command: Re.. (0x05|0x0005) plen 2 #260 31.798779 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #261 31.799111 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -15 dBm (0xf1) blueman-manager[2141]: < HCI Command: Re.. (0x03|0x002d) plen 3 #262 31.799332 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #263 31.800141 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) blueman-manager[2141]: < HCI Command: Re.. (0x05|0x0005) plen 2 #264 32.799724 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #265 32.801090 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -17 dBm (0xef) blueman-manager[2141]: < HCI Command: Re.. (0x03|0x002d) plen 3 #266 32.801381 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #267 32.802076 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) blueman-manager[2141]: < HCI Command: Re.. (0x05|0x0005) plen 2 #268 33.800723 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #269 33.801957 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -16 dBm (0xf0) blueman-manager[2141]: < HCI Command: Re.. (0x03|0x002d) plen 3 #270 33.802190 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #271 33.802915 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) blueman-manager[2141]: < HCI Command: Re.. (0x05|0x0005) plen 2 #272 34.801404 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #273 34.802802 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -15 dBm (0xf1) blueman-manager[2141]: < HCI Command: Re.. (0x03|0x002d) plen 3 #274 34.803064 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #275 34.803727 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) > HCI Event: LE Meta Event (0x3e) plen 43 #276 34.983968 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0010 Props: 0x0010 Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_NONCONN_IND (0x0010) Address type: Random (0x01) Address: 41:AB:07:D0:BF:26 (Resolvable) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -78 dBm (0xb2) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x11 02 01 1a 0d ff 4c 00 16 08 00 09 25 ec 0a 87 d4 .....L.....%.... aa . Flags: 0x1a LE General Discoverable Mode Simultaneous LE and BR/EDR (Controller) Simultaneous LE and BR/EDR (Host) Company: Apple, Inc. (76) Type: Unknown (22) Data: 000925ec0a87d4aa @ MGMT Event: Device Found (0x0012) plen 31 {0x0001} 34.984088 LE Address: 41:AB:07:D0:BF:26 (Resolvable) RSSI: -78 dBm (0xb2) Flags: 0x00000004 Not Connectable Data length: 17 Flags: 0x1a LE General Discoverable Mode Simultaneous LE and BR/EDR (Controller) Simultaneous LE and BR/EDR (Host) Company: Apple, Inc. (76) Type: Unknown (22) Data: 000925ec0a87d4aa > HCI Event: LE Meta Event (0x3e) plen 47 #277 34.987774 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0013 Props: 0x0013 Connectable Scannable Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_IND (0x0013) Address type: Public (0x00) Address: 44:6F:F8:78:48:F0 (Dyson Limited) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -80 dBm (0xb0) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x15 02 01 06 11 06 a4 d0 87 a7 b4 d1 79 89 2d 45 37 ...........y.-E7 1c 10 00 d1 2d ....- Flags: 0x06 LE General Discoverable Mode BR/EDR Not Supported 128-bit Service UUIDs (partial): 1 entry Vendor specific > HCI Event: LE Meta Event (0x3e) plen 44 #278 35.093699 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0013 Props: 0x0013 Connectable Scannable Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_IND (0x0013) Address type: Random (0x01) Address: 74:1D:F8:4A:1B:43 (Resolvable) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -70 dBm (0xba) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x12 02 01 1a 02 0a 0c 0b ff 4c 00 10 06 34 1e 59 01 ........L...4.Y. e9 91 .. Flags: 0x1a LE General Discoverable Mode Simultaneous LE and BR/EDR (Controller) Simultaneous LE and BR/EDR (Host) TX power: 12 dBm Company: Apple, Inc. (76) Type: Unknown (16) Data: 341e5901e991 @ MGMT Event: Device Found (0x0012) plen 35 {0x0001} 35.093768 LE Address: 44:6F:F8:78:48:F0 (Dyson Limited) RSSI: -80 dBm (0xb0) Flags: 0x00000000 Data length: 21 Flags: 0x06 LE General Discoverable Mode BR/EDR Not Supported 128-bit Service UUIDs (partial): 1 entry Vendor specific blueman-manager[2141]: < HCI Command: Re.. (0x05|0x0005) plen 2 #279 35.801948 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #280 35.802674 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -15 dBm (0xf1) blueman-manager[2141]: < HCI Command: Re.. (0x03|0x002d) plen 3 #281 35.802914 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #282 35.803657 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) > HCI Event: Inquiry Complete (0x01) plen 1 #283 36.793713 Status: Success (0x00) blueman-manager[2141]: < HCI Command: Re.. (0x05|0x0005) plen 2 #284 36.802335 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #285 36.803564 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -16 dBm (0xf0) blueman-manager[2141]: < HCI Command: Re.. (0x03|0x002d) plen 3 #286 36.803776 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #287 36.804541 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) @ MGMT Event: Discovering (0x0013) plen 2 {0x0001} 37.108036 Address type: 0x07 BR/EDR LE Public LE Random Discovery: Disabled (0x00) < HCI Command: LE Set Extended Scan Enable (0x08|0x0042) plen 6 #288 37.108138 Extended scan: Disabled (0x00) Filter duplicates: Disabled (0x00) Duration: 0 msec (0x0000) Period: 0.00 sec (0x0000) > HCI Event: Command Complete (0x0e) plen 4 #289 37.113517 LE Set Extended Scan Enable (0x08|0x0042) ncmd 2 Status: Success (0x00) blueman-manager[2141]: < HCI Command: Re.. (0x05|0x0005) plen 2 #290 37.802853 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #291 37.804447 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -16 dBm (0xf0) blueman-manager[2141]: < HCI Command: Re.. (0x03|0x002d) plen 3 #292 37.804669 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #293 37.805369 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) blueman-manager[2141]: < HCI Command: Re.. (0x05|0x0005) plen 2 #294 38.803840 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #295 38.805336 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -16 dBm (0xf0) blueman-manager[2141]: < HCI Command: Re.. (0x03|0x002d) plen 3 #296 38.805596 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #297 38.807259 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) blueman-manager[2141]: < HCI Command: Re.. (0x05|0x0005) plen 2 #298 39.804729 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #299 39.806234 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -13 dBm (0xf3) blueman-manager[2141]: < HCI Command: Re.. (0x03|0x002d) plen 3 #300 39.806494 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #301 39.808216 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) blueman-manager[2141]: < HCI Command: Re.. (0x05|0x0005) plen 2 #302 40.805521 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #303 40.807134 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -13 dBm (0xf3) blueman-manager[2141]: < HCI Command: Re.. (0x03|0x002d) plen 3 #304 40.807392 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #305 40.809117 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) > ACL Data RX: Handle 256 flags 0x02 dlen 7 #306 41.166828 Channel: 65 len 3 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Close (0x08) Command (0x00) type 0x00 label 3 nosp 0 ACP SEID: 7 > ACL Data RX: Handle 256 flags 0x02 dlen 12 #307 41.166836 L2CAP: Disconnection Request (0x06) ident 16 len 4 Destination CID: 67 Source CID: 899 < ACL Data TX: Handle 256 flags 0x00 dlen 12 #308 41.166890 L2CAP: Disconnection Response (0x07) ident 16 len 4 Destination CID: 67 Source CID: 899 bluetoothd[677]: < ACL Data TX: Handle 256 flags 0x00 dlen 6 #309 41.167106 Channel: 641 len 2 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Close (0x08) Response Accept (0x02) type 0x00 label 3 nosp 0 > HCI Event: Number of Completed Packets (0x13) plen 5 #310 41.170093 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #308: len 12 (32 Kb/s) Latency: 3 msec (2-84 msec ~3 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #311 41.172053 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #309: len 6 (12 Kb/s) Latency: 4 msec (2-84 msec ~4 msec) Channel: 641 [PSM 25 mode Basic (0x00)] {chan 1} Channel Latency: 4 msec (3-6 msec ~4 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 12 #312 41.178839 L2CAP: Disconnection Request (0x06) ident 17 len 4 Destination CID: 66 Source CID: 834 < ACL Data TX: Handle 256 flags 0x00 dlen 12 #313 41.178890 L2CAP: Disconnection Response (0x07) ident 17 len 4 Destination CID: 66 Source CID: 834 > HCI Event: Number of Completed Packets (0x13) plen 5 #314 41.183051 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #313: len 12 (24 Kb/s) Latency: 4 msec (2-84 msec ~4 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 12 #315 41.188838 L2CAP: Disconnection Request (0x06) ident 18 len 4 Destination CID: 65 Source CID: 641 < ACL Data TX: Handle 256 flags 0x00 dlen 12 #316 41.188915 L2CAP: Disconnection Response (0x07) ident 18 len 4 Destination CID: 65 Source CID: 641 > HCI Event: Number of Completed Packets (0x13) plen 5 #317 41.193088 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #316: len 12 (24 Kb/s) Latency: 4 msec (2-84 msec ~4 msec) > HCI Event: Disconnect Complete (0x05) plen 4 #318 41.607070 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Reason: Remote User Terminated Connection (0x13) @ MGMT Event: Device Disconnected (0x000c) plen 8 {0x0001} 41.607177 BR/EDR Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Reason: Connection terminated by remote host (0x03) < HCI Command: Write Scan Enable (0x03|0x001a) plen 1 #319 41.621934 Scan enable: Page Scan (0x02) > HCI Event: Command Complete (0x0e) plen 4 #320 41.623964 Write Scan Enable (0x03|0x001a) ncmd 2 Status: Success (0x00) blueman-manager[2141]: @ RAW Close: blueman-manager {0x0002} 41.809469 bluetoothd[677]: @ MGMT Command: Start Di.. (0x0023) plen 1 {0x0001} 46.522414 Address type: 0x07 BR/EDR LE Public LE Random < HCI Command: LE Set Random Address (0x08|0x0005) plen 6 #321 46.522585 Address: 0B:55:35:AC:FE:47 (Non-Resolvable) > HCI Event: Command Complete (0x0e) plen 4 #322 46.620633 LE Set Random Address (0x08|0x0005) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Extended Scan Par.. (0x08|0x0041) plen 13 #323 46.620839 Own address type: Random (0x01) Filter policy: Accept all advertisement (0x00) PHYs: 0x05 Entry 0: LE 1M Type: Active (0x01) Interval: 22.500 msec (0x0024) Window: 11.250 msec (0x0012) Entry 1: LE Coded Type: Active (0x01) Interval: 67.500 msec (0x006c) Window: 33.750 msec (0x0036) > HCI Event: Command Complete (0x0e) plen 4 #324 46.622698 LE Set Extended Scan Parameters (0x08|0x0041) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Extended Scan Enable (0x08|0x0042) plen 6 #325 46.622934 Extended scan: Enabled (0x01) Filter duplicates: Enabled (0x01) Duration: 0 msec (0x0000) Period: 0.00 sec (0x0000) > HCI Event: Command Complete (0x0e) plen 4 #326 46.624804 LE Set Extended Scan Enable (0x08|0x0042) ncmd 2 Status: Success (0x00) @ MGMT Event: Discovering (0x0013) plen 2 {0x0001} 46.624905 Address type: 0x07 BR/EDR LE Public LE Random Discovery: Enabled (0x01) < HCI Command: Inquiry (0x01|0x0001) plen 5 #327 46.624957 Access code: 0x9e8b33 (General Inquiry) Length: 10.24s (0x08) Num responses: 0 > HCI Event: Command Status (0x0f) plen 4 #328 46.634802 Inquiry (0x01|0x0001) ncmd 2 Status: Success (0x00) @ MGMT Event: Command Complete (0x0001) plen 4 {0x0001} 46.634964 Start Discovery (0x0023) plen 1 Status: Success (0x00) Address type: 0x07 BR/EDR LE Public LE Random > HCI Event: Extended Inquiry Result (0x2f) plen 255 #329 47.638734 Num responses: 1 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Page scan repetition mode: R1 (0x01) Page period mode: P0 (0x00) Class: 0x240404 Major class: Audio/Video (headset, speaker, stereo, video, vcr) Minor class: Wearable Headset Device Rendering (Printing, Speaker) Audio (Speaker, Microphone, Headset) Clock offset: 0x0a76 RSSI: -77 dBm (0xb3) Device ID: Bluetooth SIG assigned (0x0001) Vendor: Cambridge Silicon Radio (10) Product: 0xffff Version: 255.15.15 (0xffff) TX power: 8 dBm 16-bit Service UUIDs (partial): 6 entries Advanced Audio Distribution (0x110d) Audio Sink (0x110b) Audio Source (0x110a) A/V Remote Control (0x110e) A/V Remote Control Controller (0x110f) Serial Port (0x1101) Name (complete): LG Monitor(01) @ MGMT Event: Device Found (0x0012) plen 65 {0x0001} 47.638862 BR/EDR Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -77 dBm (0xb3) Flags: 0x00000000 Data length: 51 Device ID: Bluetooth SIG assigned (0x0001) Vendor: Cambridge Silicon Radio (10) Product: 0xffff Version: 255.15.15 (0xffff) TX power: 8 dBm 16-bit Service UUIDs (partial): 6 entries Advanced Audio Distribution (0x110d) Audio Sink (0x110b) Audio Source (0x110a) A/V Remote Control (0x110e) A/V Remote Control Controller (0x110f) Serial Port (0x1101) Name (complete): LG Monitor(01) Class: 0x240404 Major class: Audio/Video (headset, speaker, stereo, video, vcr) Minor class: Wearable Headset Device Rendering (Printing, Speaker) Audio (Speaker, Microphone, Headset) > HCI Event: LE Meta Event (0x3e) plen 57 #330 48.917502 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0010 Props: 0x0010 Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_NONCONN_IND (0x0010) Address type: Random (0x01) Address: 16:E7:B4:9C:AE:6A (Non-Resolvable) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -72 dBm (0xb8) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x1f 1e 16 f3 fe 4a 17 23 42 37 58 53 11 32 77 90 09 ....J.#B7XS.2w.. b1 8f 50 f7 a9 f0 4d 05 07 df 6e 9d d7 d6 78 ..P...M...n...x Service Data: Google (0xfef3) Data: 4a1723423758531132779009b18f50f7a9f04d0507df6e9dd7d678 @ MGMT Event: Device Found (0x0012) plen 45 {0x0001} 48.917586 LE Address: 16:E7:B4:9C:AE:6A (Non-Resolvable) RSSI: -72 dBm (0xb8) Flags: 0x00000004 Not Connectable Data length: 31 Service Data: Google (0xfef3) Data: 4a1723423758531132779009b18f50f7a9f04d0507df6e9dd7d678 > HCI Event: LE Meta Event (0x3e) plen 34 #331 51.040519 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0010 Props: 0x0010 Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_NONCONN_IND (0x0010) Address type: Random (0x01) Address: CE:A5:13:88:FC:11 (Static) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -77 dBm (0xb3) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x08 07 ff 4c 00 12 02 00 00 ..L..... Company: Apple, Inc. (76) Type: Unknown (18) Data: 0000 @ MGMT Event: Device Found (0x0012) plen 22 {0x0001} 51.040630 LE Address: CE:A5:13:88:FC:11 (Static) RSSI: -77 dBm (0xb3) Flags: 0x00000004 Not Connectable Data length: 8 Company: Apple, Inc. (76) Type: Unknown (18) Data: 0000 > HCI Event: LE Meta Event (0x3e) plen 43 #332 55.301295 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0013 Props: 0x0013 Connectable Scannable Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_IND (0x0013) Address type: Random (0x01) Address: 63:A7:94:5E:18:A1 (Resolvable) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -80 dBm (0xb0) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x11 02 01 1a 0a ff 4c 00 10 05 2e 18 72 54 b2 02 0a .....L.....rT... 00 . Flags: 0x1a LE General Discoverable Mode Simultaneous LE and BR/EDR (Controller) Simultaneous LE and BR/EDR (Host) Company: Apple, Inc. (76) Type: Unknown (16) Data: 2e187254b2 TX power: 0 dBm > HCI Event: Inquiry Complete (0x01) plen 1 #333 56.875065 Status: Success (0x00) > HCI Event: LE Meta Event (0x3e) plen 34 #334 57.056225 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0010 Props: 0x0010 Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_NONCONN_IND (0x0010) Address type: Random (0x01) Address: CC:87:C3:19:35:01 (Static) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -79 dBm (0xb1) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x08 07 ff 4c 00 12 02 00 00 ..L..... Company: Apple, Inc. (76) Type: Unknown (18) Data: 0000 @ MGMT Event: Device Found (0x0012) plen 31 {0x0001} 57.056332 LE Address: 63:A7:94:5E:18:A1 (Resolvable) RSSI: -80 dBm (0xb0) Flags: 0x00000000 Data length: 17 Flags: 0x1a LE General Discoverable Mode Simultaneous LE and BR/EDR (Controller) Simultaneous LE and BR/EDR (Host) Company: Apple, Inc. (76) Type: Unknown (16) Data: 2e187254b2 TX power: 0 dBm @ MGMT Event: Device Found (0x0012) plen 22 {0x0001} 57.056343 LE Address: CC:87:C3:19:35:01 (Static) RSSI: -79 dBm (0xb1) Flags: 0x00000004 Not Connectable Data length: 8 Company: Apple, Inc. (76) Type: Unknown (18) Data: 0000 @ MGMT Event: Discovering (0x0013) plen 2 {0x0001} 57.075827 Address type: 0x07 BR/EDR LE Public LE Random Discovery: Disabled (0x00) < HCI Command: LE Set Extended Scan Enable (0x08|0x0042) plen 6 #335 57.075949 Extended scan: Disabled (0x00) Filter duplicates: Disabled (0x00) Duration: 0 msec (0x0000) Period: 0.00 sec (0x0000) > HCI Event: Command Complete (0x0e) plen 4 #336 57.089037 LE Set Extended Scan Enable (0x08|0x0042) ncmd 2 Status: Success (0x00) bluetoothd[677]: @ MGMT Command: Start Di.. (0x0023) plen 1 {0x0001} 62.522913 Address type: 0x07 BR/EDR LE Public LE Random < HCI Command: LE Set Random Address (0x08|0x0005) plen 6 #337 62.523095 Address: 19:4A:C7:D9:4A:45 (Non-Resolvable) > HCI Event: Command Complete (0x0e) plen 4 #338 62.622002 LE Set Random Address (0x08|0x0005) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Extended Scan Par.. (0x08|0x0041) plen 13 #339 62.622252 Own address type: Random (0x01) Filter policy: Accept all advertisement (0x00) PHYs: 0x05 Entry 0: LE 1M Type: Active (0x01) Interval: 22.500 msec (0x0024) Window: 11.250 msec (0x0012) Entry 1: LE Coded Type: Active (0x01) Interval: 67.500 msec (0x006c) Window: 33.750 msec (0x0036) > HCI Event: Command Complete (0x0e) plen 4 #340 62.623828 LE Set Extended Scan Parameters (0x08|0x0041) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Extended Scan Enable (0x08|0x0042) plen 6 #341 62.624024 Extended scan: Enabled (0x01) Filter duplicates: Enabled (0x01) Duration: 0 msec (0x0000) Period: 0.00 sec (0x0000) > HCI Event: Command Complete (0x0e) plen 4 #342 62.625832 LE Set Extended Scan Enable (0x08|0x0042) ncmd 2 Status: Success (0x00) @ MGMT Event: Discovering (0x0013) plen 2 {0x0001} 62.625902 Address type: 0x07 BR/EDR LE Public LE Random Discovery: Enabled (0x01) < HCI Command: Inquiry (0x01|0x0001) plen 5 #343 62.626050 Access code: 0x9e8b33 (General Inquiry) Length: 10.24s (0x08) Num responses: 0 > HCI Event: Command Status (0x0f) plen 4 #344 62.639003 Inquiry (0x01|0x0001) ncmd 2 Status: Success (0x00) @ MGMT Event: Command Complete (0x0001) plen 4 {0x0001} 62.639133 Start Discovery (0x0023) plen 1 Status: Success (0x00) Address type: 0x07 BR/EDR LE Public LE Random > HCI Event: Extended Inquiry Result (0x2f) plen 255 #345 63.688817 Num responses: 1 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Page scan repetition mode: R1 (0x01) Page period mode: P0 (0x00) Class: 0x240404 Major class: Audio/Video (headset, speaker, stereo, video, vcr) Minor class: Wearable Headset Device Rendering (Printing, Speaker) Audio (Speaker, Microphone, Headset) Clock offset: 0x0a77 RSSI: -75 dBm (0xb5) Device ID: Bluetooth SIG assigned (0x0001) Vendor: Cambridge Silicon Radio (10) Product: 0xffff Version: 255.15.15 (0xffff) TX power: 8 dBm 16-bit Service UUIDs (partial): 6 entries Advanced Audio Distribution (0x110d) Audio Sink (0x110b) Audio Source (0x110a) A/V Remote Control (0x110e) A/V Remote Control Controller (0x110f) Serial Port (0x1101) Name (complete): LG Monitor(01) @ MGMT Event: Device Found (0x0012) plen 65 {0x0001} 63.688907 BR/EDR Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -75 dBm (0xb5) Flags: 0x00000000 Data length: 51 Device ID: Bluetooth SIG assigned (0x0001) Vendor: Cambridge Silicon Radio (10) Product: 0xffff Version: 255.15.15 (0xffff) TX power: 8 dBm 16-bit Service UUIDs (partial): 6 entries Advanced Audio Distribution (0x110d) Audio Sink (0x110b) Audio Source (0x110a) A/V Remote Control (0x110e) A/V Remote Control Controller (0x110f) Serial Port (0x1101) Name (complete): LG Monitor(01) Class: 0x240404 Major class: Audio/Video (headset, speaker, stereo, video, vcr) Minor class: Wearable Headset Device Rendering (Printing, Speaker) Audio (Speaker, Microphone, Headset) > HCI Event: LE Meta Event (0x3e) plen 57 #346 64.371977 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0010 Props: 0x0010 Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_NONCONN_IND (0x0010) Address type: Random (0x01) Address: 16:E7:B4:9C:AE:6A (Non-Resolvable) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -74 dBm (0xb6) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x1f 1e 16 f3 fe 4a 17 23 42 37 58 53 11 32 77 90 09 ....J.#B7XS.2w.. b1 8f 50 f7 a9 f0 4d 05 07 df 6e 9d d7 d6 78 ..P...M...n...x Service Data: Google (0xfef3) Data: 4a1723423758531132779009b18f50f7a9f04d0507df6e9dd7d678 @ MGMT Event: Device Found (0x0012) plen 45 {0x0001} 64.372089 LE Address: 16:E7:B4:9C:AE:6A (Non-Resolvable) RSSI: -74 dBm (0xb6) Flags: 0x00000004 Not Connectable Data length: 31 Service Data: Google (0xfef3) Data: 4a1723423758531132779009b18f50f7a9f04d0507df6e9dd7d678 bluetoothd[677]: @ MGMT Command: Stop Dis.. (0x0024) plen 1 {0x0001} 70.591909 Address type: 0x07 BR/EDR LE Public LE Random < HCI Command: Inquiry Cancel (0x01|0x0002) plen 0 #347 70.592073 > HCI Event: Command Complete (0x0e) plen 4 #348 70.690748 Inquiry Cancel (0x01|0x0002) ncmd 2 Status: Success (0x00) < HCI Command: LE Set Extended Scan Enable (0x08|0x0042) plen 6 #349 70.691013 Extended scan: Disabled (0x00) Filter duplicates: Disabled (0x00) Duration: 0 msec (0x0000) Period: 0.00 sec (0x0000) > HCI Event: Command Complete (0x0e) plen 4 #350 70.719767 LE Set Extended Scan Enable (0x08|0x0042) ncmd 2 Status: Success (0x00) @ MGMT Event: Command Complete (0x0001) plen 4 {0x0001} 70.719982 Stop Discovery (0x0024) plen 1 Status: Success (0x00) Address type: 0x07 BR/EDR LE Public LE Random @ MGMT Event: Discovering (0x0013) plen 2 {0x0001} 70.720002 Address type: 0x07 BR/EDR LE Public LE Random Discovery: Disabled (0x00) bluetoothd[677]: @ MGMT Command: Start Di.. (0x0023) plen 1 {0x0001} 82.904181 Address type: 0x07 BR/EDR LE Public LE Random < HCI Command: LE Set Random Address (0x08|0x0005) plen 6 #351 82.904319 Address: 31:1F:E6:5C:3D:FB (Non-Resolvable) > HCI Event: Command Complete (0x0e) plen 4 #352 83.003290 LE Set Random Address (0x08|0x0005) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Extended Scan Par.. (0x08|0x0041) plen 13 #353 83.003475 Own address type: Random (0x01) Filter policy: Accept all advertisement (0x00) PHYs: 0x05 Entry 0: LE 1M Type: Active (0x01) Interval: 22.500 msec (0x0024) Window: 11.250 msec (0x0012) Entry 1: LE Coded Type: Active (0x01) Interval: 67.500 msec (0x006c) Window: 33.750 msec (0x0036) > HCI Event: Command Complete (0x0e) plen 4 #354 83.005447 LE Set Extended Scan Parameters (0x08|0x0041) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Extended Scan Enable (0x08|0x0042) plen 6 #355 83.005648 Extended scan: Enabled (0x01) Filter duplicates: Enabled (0x01) Duration: 0 msec (0x0000) Period: 0.00 sec (0x0000) > HCI Event: Command Complete (0x0e) plen 4 #356 83.008478 LE Set Extended Scan Enable (0x08|0x0042) ncmd 2 Status: Success (0x00) @ MGMT Event: Discovering (0x0013) plen 2 {0x0001} 83.008595 Address type: 0x07 BR/EDR LE Public LE Random Discovery: Enabled (0x01) < HCI Command: Inquiry (0x01|0x0001) plen 5 #357 83.008703 Access code: 0x9e8b33 (General Inquiry) Length: 10.24s (0x08) Num responses: 0 > HCI Event: Command Status (0x0f) plen 4 #358 83.014279 Inquiry (0x01|0x0001) ncmd 2 Status: Success (0x00) @ MGMT Event: Command Complete (0x0001) plen 4 {0x0001} 83.014441 Start Discovery (0x0023) plen 1 Status: Success (0x00) Address type: 0x07 BR/EDR LE Public LE Random > HCI Event: LE Meta Event (0x3e) plen 43 #359 83.122433 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0010 Props: 0x0010 Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_NONCONN_IND (0x0010) Address type: Random (0x01) Address: 41:AB:07:D0:BF:26 (Resolvable) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -76 dBm (0xb4) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x11 02 01 1a 0d ff 4c 00 16 08 00 09 25 ec 0a 87 d4 .....L.....%.... aa . Flags: 0x1a LE General Discoverable Mode Simultaneous LE and BR/EDR (Controller) Simultaneous LE and BR/EDR (Host) Company: Apple, Inc. (76) Type: Unknown (22) Data: 000925ec0a87d4aa @ MGMT Event: Device Found (0x0012) plen 31 {0x0001} 83.122554 LE Address: 41:AB:07:D0:BF:26 (Resolvable) RSSI: -76 dBm (0xb4) Flags: 0x00000004 Not Connectable Data length: 17 Flags: 0x1a LE General Discoverable Mode Simultaneous LE and BR/EDR (Controller) Simultaneous LE and BR/EDR (Host) Company: Apple, Inc. (76) Type: Unknown (22) Data: 000925ec0a87d4aa > HCI Event: LE Meta Event (0x3e) plen 57 #360 83.244346 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0010 Props: 0x0010 Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_NONCONN_IND (0x0010) Address type: Random (0x01) Address: 16:E7:B4:9C:AE:6A (Non-Resolvable) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -75 dBm (0xb5) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x1f 1e 16 f3 fe 4a 17 23 42 37 58 53 11 32 77 90 09 ....J.#B7XS.2w.. b1 8f 50 f7 a9 f0 4d 05 07 df 6e 9d d7 d6 78 ..P...M...n...x Service Data: Google (0xfef3) Data: 4a1723423758531132779009b18f50f7a9f04d0507df6e9dd7d678 @ MGMT Event: Device Found (0x0012) plen 45 {0x0001} 83.244442 LE Address: 16:E7:B4:9C:AE:6A (Non-Resolvable) RSSI: -75 dBm (0xb5) Flags: 0x00000004 Not Connectable Data length: 31 Service Data: Google (0xfef3) Data: 4a1723423758531132779009b18f50f7a9f04d0507df6e9dd7d678 > HCI Event: LE Meta Event (0x3e) plen 34 #361 85.125312 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0010 Props: 0x0010 Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_NONCONN_IND (0x0010) Address type: Random (0x01) Address: CC:87:C3:19:35:01 (Static) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -74 dBm (0xb6) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x08 07 ff 4c 00 12 02 00 00 ..L..... Company: Apple, Inc. (76) Type: Unknown (18) Data: 0000 @ MGMT Event: Device Found (0x0012) plen 22 {0x0001} 85.125425 LE Address: CC:87:C3:19:35:01 (Static) RSSI: -74 dBm (0xb6) Flags: 0x00000004 Not Connectable Data length: 8 Company: Apple, Inc. (76) Type: Unknown (18) Data: 0000 > HCI Event: Extended Inquiry Result (0x2f) plen 255 #362 86.151241 Num responses: 1 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Page scan repetition mode: R1 (0x01) Page period mode: P0 (0x00) Class: 0x240404 Major class: Audio/Video (headset, speaker, stereo, video, vcr) Minor class: Wearable Headset Device Rendering (Printing, Speaker) Audio (Speaker, Microphone, Headset) Clock offset: 0x0a77 RSSI: -74 dBm (0xb6) Device ID: Bluetooth SIG assigned (0x0001) Vendor: Cambridge Silicon Radio (10) Product: 0xffff Version: 255.15.15 (0xffff) TX power: 8 dBm 16-bit Service UUIDs (partial): 6 entries Advanced Audio Distribution (0x110d) Audio Sink (0x110b) Audio Source (0x110a) A/V Remote Control (0x110e) A/V Remote Control Controller (0x110f) Serial Port (0x1101) Name (complete): LG Monitor(01) @ MGMT Event: Device Found (0x0012) plen 65 {0x0001} 86.151328 BR/EDR Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -74 dBm (0xb6) Flags: 0x00000000 Data length: 51 Device ID: Bluetooth SIG assigned (0x0001) Vendor: Cambridge Silicon Radio (10) Product: 0xffff Version: 255.15.15 (0xffff) TX power: 8 dBm 16-bit Service UUIDs (partial): 6 entries Advanced Audio Distribution (0x110d) Audio Sink (0x110b) Audio Source (0x110a) A/V Remote Control (0x110e) A/V Remote Control Controller (0x110f) Serial Port (0x1101) Name (complete): LG Monitor(01) Class: 0x240404 Major class: Audio/Video (headset, speaker, stereo, video, vcr) Minor class: Wearable Headset Device Rendering (Printing, Speaker) Audio (Speaker, Microphone, Headset) > HCI Event: Inquiry Complete (0x01) plen 1 #363 93.320116 Status: Success (0x00) @ MGMT Event: Discovering (0x0013) plen 2 {0x0001} 93.427901 Address type: 0x07 BR/EDR LE Public LE Random Discovery: Disabled (0x00) < HCI Command: LE Set Extended Scan Enable (0x08|0x0042) plen 6 #364 93.427993 Extended scan: Disabled (0x00) Filter duplicates: Disabled (0x00) Duration: 0 msec (0x0000) Period: 0.00 sec (0x0000) > HCI Event: Command Complete (0x0e) plen 4 #365 93.429031 LE Set Extended Scan Enable (0x08|0x0042) ncmd 2 Status: Success (0x00) bluetoothd[677]: @ MGMT Command: Start Di.. (0x0023) plen 1 {0x0001} 98.517913 Address type: 0x07 BR/EDR LE Public LE Random < HCI Command: LE Set Random Address (0x08|0x0005) plen 6 #366 98.518051 Address: 2C:B9:8A:E1:03:88 (Non-Resolvable) > HCI Event: Command Complete (0x0e) plen 4 #367 98.617166 LE Set Random Address (0x08|0x0005) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Extended Scan Par.. (0x08|0x0041) plen 13 #368 98.617404 Own address type: Random (0x01) Filter policy: Accept all advertisement (0x00) PHYs: 0x05 Entry 0: LE 1M Type: Active (0x01) Interval: 22.500 msec (0x0024) Window: 11.250 msec (0x0012) Entry 1: LE Coded Type: Active (0x01) Interval: 67.500 msec (0x006c) Window: 33.750 msec (0x0036) > HCI Event: Command Complete (0x0e) plen 4 #369 98.619167 LE Set Extended Scan Parameters (0x08|0x0041) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Extended Scan Enable (0x08|0x0042) plen 6 #370 98.619421 Extended scan: Enabled (0x01) Filter duplicates: Enabled (0x01) Duration: 0 msec (0x0000) Period: 0.00 sec (0x0000) > HCI Event: Command Complete (0x0e) plen 4 #371 98.621164 LE Set Extended Scan Enable (0x08|0x0042) ncmd 2 Status: Success (0x00) @ MGMT Event: Discovering (0x0013) plen 2 {0x0001} 98.621271 Address type: 0x07 BR/EDR LE Public LE Random Discovery: Enabled (0x01) < HCI Command: Inquiry (0x01|0x0001) plen 5 #372 98.621423 Access code: 0x9e8b33 (General Inquiry) Length: 10.24s (0x08) Num responses: 0 > HCI Event: Command Status (0x0f) plen 4 #373 98.634168 Inquiry (0x01|0x0001) ncmd 2 Status: Success (0x00) @ MGMT Event: Command Complete (0x0001) plen 4 {0x0001} 98.634343 Start Discovery (0x0023) plen 1 Status: Success (0x00) Address type: 0x07 BR/EDR LE Public LE Random > HCI Event: LE Meta Event (0x3e) plen 57 #374 100.702384 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0010 Props: 0x0010 Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_NONCONN_IND (0x0010) Address type: Random (0x01) Address: 16:E7:B4:9C:AE:6A (Non-Resolvable) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -74 dBm (0xb6) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x1f 1e 16 f3 fe 4a 17 23 42 37 58 53 11 32 77 90 09 ....J.#B7XS.2w.. b1 8f 50 f7 a9 f0 4d 05 07 df 6e 9d d7 d6 78 ..P...M...n...x Service Data: Google (0xfef3) Data: 4a1723423758531132779009b18f50f7a9f04d0507df6e9dd7d678 @ MGMT Event: Device Found (0x0012) plen 45 {0x0001} 100.702494 LE Address: 16:E7:B4:9C:AE:6A (Non-Resolvable) RSSI: -74 dBm (0xb6) Flags: 0x00000004 Not Connectable Data length: 31 Service Data: Google (0xfef3) Data: 4a1723423758531132779009b18f50f7a9f04d0507df6e9dd7d678 > HCI Event: LE Meta Event (0x3e) plen 34 #375 101.102394 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0010 Props: 0x0010 Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_NONCONN_IND (0x0010) Address type: Random (0x01) Address: CE:A5:13:88:FC:11 (Static) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -73 dBm (0xb7) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x08 07 ff 4c 00 12 02 00 00 ..L..... Company: Apple, Inc. (76) Type: Unknown (18) Data: 0000 @ MGMT Event: Device Found (0x0012) plen 22 {0x0001} 101.102505 LE Address: CE:A5:13:88:FC:11 (Static) RSSI: -73 dBm (0xb7) Flags: 0x00000004 Not Connectable Data length: 8 Company: Apple, Inc. (76) Type: Unknown (18) Data: 0000 > HCI Event: Extended Inquiry Result (0x2f) plen 255 #376 102.394450 Num responses: 1 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Page scan repetition mode: R1 (0x01) Page period mode: P0 (0x00) Class: 0x240404 Major class: Audio/Video (headset, speaker, stereo, video, vcr) Minor class: Wearable Headset Device Rendering (Printing, Speaker) Audio (Speaker, Microphone, Headset) Clock offset: 0x0a77 RSSI: -77 dBm (0xb3) Device ID: Bluetooth SIG assigned (0x0001) Vendor: Cambridge Silicon Radio (10) Product: 0xffff Version: 255.15.15 (0xffff) TX power: 8 dBm 16-bit Service UUIDs (partial): 6 entries Advanced Audio Distribution (0x110d) Audio Sink (0x110b) Audio Source (0x110a) A/V Remote Control (0x110e) A/V Remote Control Controller (0x110f) Serial Port (0x1101) Name (complete): LG Monitor(01) @ MGMT Event: Device Found (0x0012) plen 65 {0x0001} 102.394559 BR/EDR Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -77 dBm (0xb3) Flags: 0x00000000 Data length: 51 Device ID: Bluetooth SIG assigned (0x0001) Vendor: Cambridge Silicon Radio (10) Product: 0xffff Version: 255.15.15 (0xffff) TX power: 8 dBm 16-bit Service UUIDs (partial): 6 entries Advanced Audio Distribution (0x110d) Audio Sink (0x110b) Audio Source (0x110a) A/V Remote Control (0x110e) A/V Remote Control Controller (0x110f) Serial Port (0x1101) Name (complete): LG Monitor(01) Class: 0x240404 Major class: Audio/Video (headset, speaker, stereo, video, vcr) Minor class: Wearable Headset Device Rendering (Printing, Speaker) Audio (Speaker, Microphone, Headset) > HCI Event: LE Meta Event (0x3e) plen 43 #377 103.166520 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0010 Props: 0x0010 Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_NONCONN_IND (0x0010) Address type: Random (0x01) Address: 41:AB:07:D0:BF:26 (Resolvable) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -73 dBm (0xb7) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x11 02 01 1a 0d ff 4c 00 16 08 00 09 25 ec 0a 87 d4 .....L.....%.... aa . Flags: 0x1a LE General Discoverable Mode Simultaneous LE and BR/EDR (Controller) Simultaneous LE and BR/EDR (Host) Company: Apple, Inc. (76) Type: Unknown (22) Data: 000925ec0a87d4aa @ MGMT Event: Device Found (0x0012) plen 31 {0x0001} 103.166631 LE Address: 41:AB:07:D0:BF:26 (Resolvable) RSSI: -73 dBm (0xb7) Flags: 0x00000004 Not Connectable Data length: 17 Flags: 0x1a LE General Discoverable Mode Simultaneous LE and BR/EDR (Controller) Simultaneous LE and BR/EDR (Host) Company: Apple, Inc. (76) Type: Unknown (22) Data: 000925ec0a87d4aa > HCI Event: Inquiry Complete (0x01) plen 1 #378 108.940772 Status: Success (0x00) @ MGMT Event: Discovering (0x0013) plen 2 {0x0001} 109.300009 Address type: 0x07 BR/EDR LE Public LE Random Discovery: Disabled (0x00) < HCI Command: LE Set Extended Scan Ena.. (0x08|0x0042) plen 6 #379 109.300134 Extended scan: Disabled (0x00) Filter duplicates: Disabled (0x00) Duration: 0 msec (0x0000) Period: 0.00 sec (0x0000) > HCI Event: Command Complete (0x0e) plen 4 #380 109.304811 LE Set Extended Scan Enable (0x08|0x0042) ncmd 2 Status: Success (0x00) bluetoothd[677]: @ MGMT Command: Start D.. (0x0023) plen 1 {0x0001} 114.522887 Address type: 0x07 BR/EDR LE Public LE Random < HCI Command: LE Set Random Address (0x08|0x0005) plen 6 #381 114.523126 Address: 1C:4E:09:FC:94:2D (Non-Resolvable) > HCI Event: Command Complete (0x0e) plen 4 #382 114.622029 LE Set Random Address (0x08|0x0005) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Extended Scan Pa.. (0x08|0x0041) plen 13 #383 114.622275 Own address type: Random (0x01) Filter policy: Accept all advertisement (0x00) PHYs: 0x05 Entry 0: LE 1M Type: Active (0x01) Interval: 22.500 msec (0x0024) Window: 11.250 msec (0x0012) Entry 1: LE Coded Type: Active (0x01) Interval: 67.500 msec (0x006c) Window: 33.750 msec (0x0036) > HCI Event: Command Complete (0x0e) plen 4 #384 114.624032 LE Set Extended Scan Parameters (0x08|0x0041) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Extended Scan Ena.. (0x08|0x0042) plen 6 #385 114.624292 Extended scan: Enabled (0x01) Filter duplicates: Enabled (0x01) Duration: 0 msec (0x0000) Period: 0.00 sec (0x0000) > HCI Event: Command Complete (0x0e) plen 4 #386 114.626976 LE Set Extended Scan Enable (0x08|0x0042) ncmd 2 Status: Success (0x00) @ MGMT Event: Discovering (0x0013) plen 2 {0x0001} 114.627073 Address type: 0x07 BR/EDR LE Public LE Random Discovery: Enabled (0x01) < HCI Command: Inquiry (0x01|0x0001) plen 5 #387 114.627132 Access code: 0x9e8b33 (General Inquiry) Length: 10.24s (0x08) Num responses: 0 > HCI Event: Command Status (0x0f) plen 4 #388 114.638867 Inquiry (0x01|0x0001) ncmd 2 Status: Success (0x00) @ MGMT Event: Command Complete (0x0001) plen 4 {0x0001} 114.639029 Start Discovery (0x0023) plen 1 Status: Success (0x00) Address type: 0x07 BR/EDR LE Public LE Random > HCI Event: LE Meta Event (0x3e) plen 57 #389 115.848985 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0010 Props: 0x0010 Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_NONCONN_IND (0x0010) Address type: Random (0x01) Address: 16:E7:B4:9C:AE:6A (Non-Resolvable) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -80 dBm (0xb0) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x1f 1e 16 f3 fe 4a 17 23 42 37 58 53 11 32 77 90 09 ....J.#B7XS.2w.. b1 8f 50 f7 a9 f0 4d 05 07 df 6e 9d d7 d6 78 ..P...M...n...x Service Data: Google (0xfef3) Data: 4a1723423758531132779009b18f50f7a9f04d0507df6e9dd7d678 @ MGMT Event: Device Found (0x0012) plen 45 {0x0001} 115.849093 LE Address: 16:E7:B4:9C:AE:6A (Non-Resolvable) RSSI: -80 dBm (0xb0) Flags: 0x00000004 Not Connectable Data length: 31 Service Data: Google (0xfef3) Data: 4a1723423758531132779009b18f50f7a9f04d0507df6e9dd7d678 > HCI Event: LE Meta Event (0x3e) plen 34 #390 117.205010 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0010 Props: 0x0010 Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_NONCONN_IND (0x0010) Address type: Random (0x01) Address: CC:87:C3:19:35:01 (Static) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -82 dBm (0xae) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x08 07 ff 4c 00 12 02 00 00 ..L..... Company: Apple, Inc. (76) Type: Unknown (18) Data: 0000 @ MGMT Event: Device Found (0x0012) plen 22 {0x0001} 117.205102 LE Address: CC:87:C3:19:35:01 (Static) RSSI: -82 dBm (0xae) Flags: 0x00000004 Not Connectable Data length: 8 Company: Apple, Inc. (76) Type: Unknown (18) Data: 0000 > HCI Event: Extended Inquiry Result (0x2f) plen 255 #391 117.844995 Num responses: 1 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Page scan repetition mode: R1 (0x01) Page period mode: P0 (0x00) Class: 0x240404 Major class: Audio/Video (headset, speaker, stereo, video, vcr) Minor class: Wearable Headset Device Rendering (Printing, Speaker) Audio (Speaker, Microphone, Headset) Clock offset: 0x0a77 RSSI: -76 dBm (0xb4) Device ID: Bluetooth SIG assigned (0x0001) Vendor: Cambridge Silicon Radio (10) Product: 0xffff Version: 255.15.15 (0xffff) TX power: 8 dBm 16-bit Service UUIDs (partial): 6 entries Advanced Audio Distribution (0x110d) Audio Sink (0x110b) Audio Source (0x110a) A/V Remote Control (0x110e) A/V Remote Control Controller (0x110f) Serial Port (0x1101) Name (complete): LG Monitor(01) @ MGMT Event: Device Found (0x0012) plen 65 {0x0001} 117.845089 BR/EDR Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -76 dBm (0xb4) Flags: 0x00000000 Data length: 51 Device ID: Bluetooth SIG assigned (0x0001) Vendor: Cambridge Silicon Radio (10) Product: 0xffff Version: 255.15.15 (0xffff) TX power: 8 dBm 16-bit Service UUIDs (partial): 6 entries Advanced Audio Distribution (0x110d) Audio Sink (0x110b) Audio Source (0x110a) A/V Remote Control (0x110e) A/V Remote Control Controller (0x110f) Serial Port (0x1101) Name (complete): LG Monitor(01) Class: 0x240404 Major class: Audio/Video (headset, speaker, stereo, video, vcr) Minor class: Wearable Headset Device Rendering (Printing, Speaker) Audio (Speaker, Microphone, Headset) > HCI Event: LE Meta Event (0x3e) plen 34 #392 123.232129 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0010 Props: 0x0010 Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_NONCONN_IND (0x0010) Address type: Random (0x01) Address: CE:A5:13:88:FC:11 (Static) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -73 dBm (0xb7) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x08 07 ff 4c 00 12 02 00 00 ..L..... Company: Apple, Inc. (76) Type: Unknown (18) Data: 0000 @ MGMT Event: Device Found (0x0012) plen 22 {0x0001} 123.232216 LE Address: CE:A5:13:88:FC:11 (Static) RSSI: -73 dBm (0xb7) Flags: 0x00000004 Not Connectable Data length: 8 Company: Apple, Inc. (76) Type: Unknown (18) Data: 0000 > HCI Event: Inquiry Complete (0x01) plen 1 #393 124.895156 Status: Success (0x00) @ MGMT Event: Discovering (0x0013) plen 2 {0x0001} 125.171893 Address type: 0x07 BR/EDR LE Public LE Random Discovery: Disabled (0x00) < HCI Command: LE Set Extended Scan Ena.. (0x08|0x0042) plen 6 #394 125.171965 Extended scan: Disabled (0x00) Filter duplicates: Disabled (0x00) Duration: 0 msec (0x0000) Period: 0.00 sec (0x0000) > HCI Event: Command Complete (0x0e) plen 4 #395 125.181321 LE Set Extended Scan Enable (0x08|0x0042) ncmd 2 Status: Success (0x00) bluetoothd[677]: @ MGMT Command: Start D.. (0x0023) plen 1 {0x0001} 130.522882 Address type: 0x07 BR/EDR LE Public LE Random < HCI Command: LE Set Random Address (0x08|0x0005) plen 6 #396 130.523075 Address: 30:C3:9A:84:81:29 (Non-Resolvable) > HCI Event: Command Complete (0x0e) plen 4 #397 130.621290 LE Set Random Address (0x08|0x0005) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Extended Scan Pa.. (0x08|0x0041) plen 13 #398 130.621518 Own address type: Random (0x01) Filter policy: Accept all advertisement (0x00) PHYs: 0x05 Entry 0: LE 1M Type: Active (0x01) Interval: 22.500 msec (0x0024) Window: 11.250 msec (0x0012) Entry 1: LE Coded Type: Active (0x01) Interval: 67.500 msec (0x006c) Window: 33.750 msec (0x0036) > HCI Event: Command Complete (0x0e) plen 4 #399 130.623483 LE Set Extended Scan Parameters (0x08|0x0041) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Extended Scan Ena.. (0x08|0x0042) plen 6 #400 130.623731 Extended scan: Enabled (0x01) Filter duplicates: Enabled (0x01) Duration: 0 msec (0x0000) Period: 0.00 sec (0x0000) > HCI Event: Command Complete (0x0e) plen 4 #401 130.626494 LE Set Extended Scan Enable (0x08|0x0042) ncmd 2 Status: Success (0x00) @ MGMT Event: Discovering (0x0013) plen 2 {0x0001} 130.626602 Address type: 0x07 BR/EDR LE Public LE Random Discovery: Enabled (0x01) < HCI Command: Inquiry (0x01|0x0001) plen 5 #402 130.626754 Access code: 0x9e8b33 (General Inquiry) Length: 10.24s (0x08) Num responses: 0 > HCI Event: Command Status (0x0f) plen 4 #403 130.629491 Inquiry (0x01|0x0001) ncmd 2 Status: Success (0x00) @ MGMT Event: Command Complete (0x0001) plen 4 {0x0001} 130.629681 Start Discovery (0x0023) plen 1 Status: Success (0x00) Address type: 0x07 BR/EDR LE Public LE Random > HCI Event: Extended Inquiry Result (0x2f) plen 255 #404 130.765343 Num responses: 1 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Page scan repetition mode: R1 (0x01) Page period mode: P0 (0x00) Class: 0x240404 Major class: Audio/Video (headset, speaker, stereo, video, vcr) Minor class: Wearable Headset Device Rendering (Printing, Speaker) Audio (Speaker, Microphone, Headset) Clock offset: 0x0a77 RSSI: -76 dBm (0xb4) Device ID: Bluetooth SIG assigned (0x0001) Vendor: Cambridge Silicon Radio (10) Product: 0xffff Version: 255.15.15 (0xffff) TX power: 8 dBm 16-bit Service UUIDs (partial): 6 entries Advanced Audio Distribution (0x110d) Audio Sink (0x110b) Audio Source (0x110a) A/V Remote Control (0x110e) A/V Remote Control Controller (0x110f) Serial Port (0x1101) Name (complete): LG Monitor(01) @ MGMT Event: Device Found (0x0012) plen 65 {0x0001} 130.765441 BR/EDR Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -76 dBm (0xb4) Flags: 0x00000000 Data length: 51 Device ID: Bluetooth SIG assigned (0x0001) Vendor: Cambridge Silicon Radio (10) Product: 0xffff Version: 255.15.15 (0xffff) TX power: 8 dBm 16-bit Service UUIDs (partial): 6 entries Advanced Audio Distribution (0x110d) Audio Sink (0x110b) Audio Source (0x110a) A/V Remote Control (0x110e) A/V Remote Control Controller (0x110f) Serial Port (0x1101) Name (complete): LG Monitor(01) Class: 0x240404 Major class: Audio/Video (headset, speaker, stereo, video, vcr) Minor class: Wearable Headset Device Rendering (Printing, Speaker) Audio (Speaker, Microphone, Headset) > HCI Event: LE Meta Event (0x3e) plen 34 #405 133.384407 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0010 Props: 0x0010 Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_NONCONN_IND (0x0010) Address type: Random (0x01) Address: E3:B6:9A:A8:69:6D (Static) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -63 dBm (0xc1) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x08 07 ff 4c 00 12 02 00 03 ..L..... Company: Apple, Inc. (76) Type: Unknown (18) Data: 0003 @ MGMT Event: Device Found (0x0012) plen 22 {0x0001} 133.384503 LE Address: E3:B6:9A:A8:69:6D (Static) RSSI: -63 dBm (0xc1) Flags: 0x00000004 Not Connectable Data length: 8 Company: Apple, Inc. (76) Type: Unknown (18) Data: 0003 > HCI Event: LE Meta Event (0x3e) plen 34 #406 133.687476 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0010 Props: 0x0010 Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_NONCONN_IND (0x0010) Address type: Random (0x01) Address: DF:3F:12:A6:09:11 (Static) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -65 dBm (0xbf) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x08 07 ff 4c 00 12 02 00 01 ..L..... Company: Apple, Inc. (76) Type: Unknown (18) Data: 0001 @ MGMT Event: Device Found (0x0012) plen 22 {0x0001} 133.687582 LE Address: DF:3F:12:A6:09:11 (Static) RSSI: -65 dBm (0xbf) Flags: 0x00000004 Not Connectable Data length: 8 Company: Apple, Inc. (76) Type: Unknown (18) Data: 0001
Bluetooth monitor ver 5.72 btmon[13678]: = Note: Linux version 6.8.0-60-generic (x86_64) 0.195242 btmon[13678]: = Note: Bluetooth subsystem version 2.22 0.195246 = New Index: DC:45:46:FD:14:15 (Primary,USB,hci0) 0.195248 = Open Index: DC:45:46:FD:14:15 0.195249 = Index Info: DC:45:46:FD:14:15 (Intel Corp.) 0.195249 bluetoothd[13648]: @ MGMT Open:... (privileged) version 1.22 {0x0001} 0.195251 bluetoothd[13648]: @ MGMT Command: Start D.. (0x0023) plen 1 {0x0001} 3.192555 Address type: 0x07 BR/EDR LE Public LE Random < HCI Command: LE Set Random Address (0x08|0x0005) plen 6 #1 3.192692 Address: 2D:31:C7:D4:E4:18 (Non-Resolvable) > HCI Event: Command Complete (0x0e) plen 4 #2 3.291174 LE Set Random Address (0x08|0x0005) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Extended Scan Parame.. (0x08|0x0041) plen 13 #3 3.291373 Own address type: Random (0x01) Filter policy: Accept all advertisement (0x00) PHYs: 0x05 Entry 0: LE 1M Type: Active (0x01) Interval: 22.500 msec (0x0024) Window: 11.250 msec (0x0012) Entry 1: LE Coded Type: Active (0x01) Interval: 67.500 msec (0x006c) Window: 33.750 msec (0x0036) > HCI Event: Command Complete (0x0e) plen 4 #4 3.293043 LE Set Extended Scan Parameters (0x08|0x0041) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Extended Scan Enable (0x08|0x0042) plen 6 #5 3.293138 Extended scan: Enabled (0x01) Filter duplicates: Enabled (0x01) Duration: 0 msec (0x0000) Period: 0.00 sec (0x0000) > HCI Event: Command Complete (0x0e) plen 4 #6 3.295060 LE Set Extended Scan Enable (0x08|0x0042) ncmd 2 Status: Success (0x00) < HCI Command: Inquiry (0x01|0x0001) plen 5 #7 3.295150 Access code: 0x9e8b33 (General Inquiry) Length: 10.24s (0x08) Num responses: 0 > HCI Event: Command Status (0x0f) plen 4 #8 3.307114 Inquiry (0x01|0x0001) ncmd 2 Status: Success (0x00) @ MGMT Event: Command Complete (0x0001) plen 4 {0x0001} 3.307266 Start Discovery (0x0023) plen 1 Status: Success (0x00) Address type: 0x07 BR/EDR LE Public LE Random @ MGMT Event: Discovering (0x0013) plen 2 {0x0001} 3.307284 Address type: 0x07 BR/EDR LE Public LE Random Discovery: Enabled (0x01) > HCI Event: Extended Inquiry Result (0x2f) plen 255 #9 4.157300 Num responses: 1 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Page scan repetition mode: R1 (0x01) Page period mode: P0 (0x00) Class: 0x240404 Major class: Audio/Video (headset, speaker, stereo, video, vcr) Minor class: Wearable Headset Device Rendering (Printing, Speaker) Audio (Speaker, Microphone, Headset) Clock offset: 0x172c RSSI: -84 dBm (0xac) Device ID: Bluetooth SIG assigned (0x0001) Vendor: Cambridge Silicon Radio (10) Product: 0xffff Version: 255.15.15 (0xffff) TX power: 8 dBm 16-bit Service UUIDs (partial): 6 entries Advanced Audio Distribution (0x110d) Audio Sink (0x110b) Audio Source (0x110a) A/V Remote Control (0x110e) A/V Remote Control Controller (0x110f) Serial Port (0x1101) Name (complete): LG Monitor(01) @ MGMT Event: Device Found (0x0012) plen 65 {0x0001} 4.157457 BR/EDR Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -84 dBm (0xac) Flags: 0x00000000 Data length: 51 Device ID: Bluetooth SIG assigned (0x0001) Vendor: Cambridge Silicon Radio (10) Product: 0xffff Version: 255.15.15 (0xffff) TX power: 8 dBm 16-bit Service UUIDs (partial): 6 entries Advanced Audio Distribution (0x110d) Audio Sink (0x110b) Audio Source (0x110a) A/V Remote Control (0x110e) A/V Remote Control Controller (0x110f) Serial Port (0x1101) Name (complete): LG Monitor(01) Class: 0x240404 Major class: Audio/Video (headset, speaker, stereo, video, vcr) Minor class: Wearable Headset Device Rendering (Printing, Speaker) Audio (Speaker, Microphone, Headset) > HCI Event: LE Meta Event (0x3e) plen 34 #10 7.384250 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0010 Props: 0x0010 Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_NONCONN_IND (0x0010) Address type: Random (0x01) Address: CE:A5:13:88:FC:11 (Static) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -68 dBm (0xbc) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x08 07 ff 4c 00 12 02 00 00 ..L..... Company: Apple, Inc. (76) Type: Unknown (18) Data: 0000 @ MGMT Event: Device Found (0x0012) plen 22 {0x0001} 7.384348 LE Address: CE:A5:13:88:FC:11 (Static) RSSI: -68 dBm (0xbc) Flags: 0x00000004 Not Connectable Data length: 8 Company: Apple, Inc. (76) Type: Unknown (18) Data: 0000 > HCI Event: Inquiry Complete (0x01) plen 1 #11 13.613708 Status: Success (0x00) @ MGMT Event: Discovering (0x0013) plen 2 {0x0001} 13.756454 Address type: 0x07 BR/EDR LE Public LE Random Discovery: Disabled (0x00) < HCI Command: LE Set Extended Scan Enable (0x08|0x0042) plen 6 #12 13.756525 Extended scan: Disabled (0x00) Filter duplicates: Disabled (0x00) Duration: 0 msec (0x0000) Period: 0.00 sec (0x0000) > HCI Event: Command Complete (0x0e) plen 4 #13 13.764710 LE Set Extended Scan Enable (0x08|0x0042) ncmd 2 Status: Success (0x00) bluetoothd[13648]: @ MGMT Command: Start... (0x0023) plen 1 {0x0001} 19.309452 Address type: 0x07 BR/EDR LE Public LE Random < HCI Command: LE Set Random Address (0x08|0x0005) plen 6 #14 19.309613 Address: 39:CB:4D:F5:5E:B1 (Non-Resolvable) > HCI Event: Command Complete (0x0e) plen 4 #15 19.407709 LE Set Random Address (0x08|0x0005) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Extended Scan Para.. (0x08|0x0041) plen 13 #16 19.407846 Own address type: Random (0x01) Filter policy: Accept all advertisement (0x00) PHYs: 0x05 Entry 0: LE 1M Type: Active (0x01) Interval: 22.500 msec (0x0024) Window: 11.250 msec (0x0012) Entry 1: LE Coded Type: Active (0x01) Interval: 67.500 msec (0x006c) Window: 33.750 msec (0x0036) > HCI Event: Command Complete (0x0e) plen 4 #17 19.409706 LE Set Extended Scan Parameters (0x08|0x0041) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Extended Scan Enable (0x08|0x0042) plen 6 #18 19.409921 Extended scan: Enabled (0x01) Filter duplicates: Enabled (0x01) Duration: 0 msec (0x0000) Period: 0.00 sec (0x0000) > HCI Event: Command Complete (0x0e) plen 4 #19 19.411712 LE Set Extended Scan Enable (0x08|0x0042) ncmd 2 Status: Success (0x00) < HCI Command: Inquiry (0x01|0x0001) plen 5 #20 19.411833 Access code: 0x9e8b33 (General Inquiry) Length: 10.24s (0x08) Num responses: 0 > HCI Event: Command Status (0x0f) plen 4 #21 19.416707 Inquiry (0x01|0x0001) ncmd 2 Status: Success (0x00) @ MGMT Event: Command Complete (0x0001) plen 4 {0x0001} 19.416790 Start Discovery (0x0023) plen 1 Status: Success (0x00) Address type: 0x07 BR/EDR LE Public LE Random @ MGMT Event: Discovering (0x0013) plen 2 {0x0001} 19.416802 Address type: 0x07 BR/EDR LE Public LE Random Discovery: Enabled (0x01) > HCI Event: Extended Inquiry Result (0x2f) plen 255 #22 20.568011 Num responses: 1 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Page scan repetition mode: R1 (0x01) Page period mode: P0 (0x00) Class: 0x240404 Major class: Audio/Video (headset, speaker, stereo, video, vcr) Minor class: Wearable Headset Device Rendering (Printing, Speaker) Audio (Speaker, Microphone, Headset) Clock offset: 0x172c RSSI: -74 dBm (0xb6) Device ID: Bluetooth SIG assigned (0x0001) Vendor: Cambridge Silicon Radio (10) Product: 0xffff Version: 255.15.15 (0xffff) TX power: 8 dBm 16-bit Service UUIDs (partial): 6 entries Advanced Audio Distribution (0x110d) Audio Sink (0x110b) Audio Source (0x110a) A/V Remote Control (0x110e) A/V Remote Control Controller (0x110f) Serial Port (0x1101) Name (complete): LG Monitor(01) @ MGMT Event: Device Found (0x0012) plen 65 {0x0001} 20.568124 BR/EDR Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -74 dBm (0xb6) Flags: 0x00000000 Data length: 51 Device ID: Bluetooth SIG assigned (0x0001) Vendor: Cambridge Silicon Radio (10) Product: 0xffff Version: 255.15.15 (0xffff) TX power: 8 dBm 16-bit Service UUIDs (partial): 6 entries Advanced Audio Distribution (0x110d) Audio Sink (0x110b) Audio Source (0x110a) A/V Remote Control (0x110e) A/V Remote Control Controller (0x110f) Serial Port (0x1101) Name (complete): LG Monitor(01) Class: 0x240404 Major class: Audio/Video (headset, speaker, stereo, video, vcr) Minor class: Wearable Headset Device Rendering (Printing, Speaker) Audio (Speaker, Microphone, Headset) bluetoothd[13648]: @ MGMT Command: Add De.. (0x0033) plen 8 {0x0001} 20.804909 BR/EDR Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Action: Allow incoming connection (0x01) @ MGMT Event: Device Flags Changed (0x002a) plen 15 {0x0001} 20.804920 BR/EDR Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Supported Flags: 0x00000001 Remote Wakeup Current Flags: 0x00000000 @ MGMT Event: Command Complete (0x0001) plen 10 {0x0001} 20.804922 Add Device (0x0033) plen 7 Status: Success (0x00) BR/EDR Address: C4:30:18:62:E2:01 (MCS Logic Inc.) < HCI Command: Inquiry Cancel (0x01|0x0002) plen 0 #23 20.804928 > HCI Event: Command Complete (0x0e) plen 4 #24 20.806759 Inquiry Cancel (0x01|0x0002) ncmd 2 Status: Success (0x00) < HCI Command: Create Connection (0x01|0x0005) plen 13 #25 20.806826 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Packet type: 0xcc18 DM1 may be used DH1 may be used DM3 may be used DH3 may be used DM5 may be used DH5 may be used Page scan repetition mode: R2 (0x02) Page scan mode: Mandatory (0x00) Clock offset: 0x0000 Role switch: Allow peripheral (0x01) > HCI Event: Command Status (0x0f) plen 4 #26 20.807776 Create Connection (0x01|0x0005) ncmd 1 Status: Success (0x00) > HCI Event: LE Meta Event (0x3e) plen 34 #27 22.318911 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0010 Props: 0x0010 Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_NONCONN_IND (0x0010) Address type: Random (0x01) Address: DF:3F:12:A6:09:11 (Static) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -53 dBm (0xcb) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x08 07 ff 4c 00 12 02 00 01 ..L..... Company: Apple, Inc. (76) Type: Unknown (18) Data: 0001 @ MGMT Event: Device Found (0x0012) plen 22 {0x0001} 22.318960 LE Address: DF:3F:12:A6:09:11 (Static) RSSI: -53 dBm (0xcb) Flags: 0x00000004 Not Connectable Data length: 8 Company: Apple, Inc. (76) Type: Unknown (18) Data: 0001 > HCI Event: Vendor (0xff) plen 4 #28 22.546067 Intel PTT Switch Notification (0x26) Handle: 256 Packet type table: Enhanced data rate (0x01) > HCI Event: Connect Complete (0x03) plen 11 #29 22.559920 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Link type: ACL (0x01) Encryption: Disabled (0x00) < HCI Command: Read Remote Supported Feat.. (0x01|0x001b) plen 2 #30 22.560105 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Status (0x0f) plen 4 #31 22.560818 Read Remote Supported Features (0x01|0x001b) ncmd 1 Status: Success (0x00) > HCI Event: Page Scan Repetition Mode Change (0x20) plen 7 #32 22.561808 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Page scan repetition mode: R1 (0x01) > HCI Event: Max Slots Change (0x1b) plen 3 #33 22.566864 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Max slots: 5 > HCI Event: Read Remote Supported Features (0x0b) plen 11 #34 22.568840 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Features: 0xff 0xff 0x8f 0xfe 0xdb 0xff 0x5b 0x87 3 slot packets 5 slot packets Encryption Slot offset Timing accuracy Role switch Hold mode Sniff mode Park state Power control requests Channel quality driven data rate (CQDDR) SCO link HV2 packets HV3 packets u-law log synchronous data A-law log synchronous data CVSD synchronous data Paging parameter negotiation Power control Transparent synchronous data Broadcast Encryption Enhanced Data Rate ACL 2 Mbps mode Enhanced Data Rate ACL 3 Mbps mode Enhanced inquiry scan Interlaced inquiry scan Interlaced page scan RSSI with inquiry results Extended SCO link (EV3 packets) EV4 packets EV5 packets AFH capable peripheral AFH classification peripheral LE Supported (Controller) 3-slot Enhanced Data Rate ACL packets 5-slot Enhanced Data Rate ACL packets Sniff subrating Pause encryption AFH capable central AFH classification central Enhanced Data Rate eSCO 2 Mbps mode Enhanced Data Rate eSCO 3 Mbps mode 3-slot Enhanced Data Rate eSCO packets Extended Inquiry Response Simultaneous LE and BR/EDR (Controller) Secure Simple Pairing Encapsulated PDU Non-flushable Packet Boundary Flag Link Supervision Timeout Changed Event Inquiry TX Power Level Enhanced Power Control Extended features < HCI Command: Read Remote Extended Featu.. (0x01|0x001c) plen 3 #35 22.568869 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Page: 1 > HCI Event: Command Status (0x0f) plen 4 #36 22.569817 Read Remote Extended Features (0x01|0x001c) ncmd 1 Status: Success (0x00) > HCI Event: Read Remote Extended Features (0x23) plen 13 #37 22.575901 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Page: 1/1 Features: 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x00 Secure Simple Pairing (Host Support) LE Supported (Host) < HCI Command: Remote Name Request (0x01|0x0019) plen 10 #38 22.575982 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Page scan repetition mode: R2 (0x02) Page scan mode: Mandatory (0x00) Clock offset: 0x0000 < ACL Data TX: Handle 256 flags 0x00 dlen 10 #39 22.576019 L2CAP: Information Request (0x0a) ident 1 len 2 Type: Extended features supported (0x0002) > HCI Event: Command Status (0x0f) plen 4 #40 22.576885 Remote Name Request (0x01|0x0019) ncmd 1 Status: Success (0x00) > HCI Event: Remote Name Req Complete (0x07) plen 255 #41 22.597081 Status: Success (0x00) Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Name: LG Monitor(01) @ MGMT Event: Device Connected (0x000b) plen 34 {0x0001} 22.597186 BR/EDR Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Flags: 0x00000008 Connection Locally Initiated Data length: 21 Name (complete): LG Monitor(01) Class: 0x240404 Major class: Audio/Video (headset, speaker, stereo, video, vcr) Minor class: Wearable Headset Device Rendering (Printing, Speaker) Audio (Speaker, Microphone, Headset) > HCI Event: Number of Completed Packets (0x13) plen 5 #42 22.597845 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #39: len 10 (3 Kb/s) Latency: 21 msec (21-21 msec ~21 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 16 #43 22.619375 L2CAP: Information Response (0x0b) ident 1 len 8 Type: Extended features supported (0x0002) Result: Success (0x0000) Features: 0x000000b8 Enhanced Retransmission Mode Streaming Mode FCS Option Fixed Channels < ACL Data TX: Handle 256 flags 0x00 dlen 10 #44 22.619406 L2CAP: Information Request (0x0a) ident 2 len 2 Type: Fixed channels supported (0x0003) blueman-manager[13665]: @ RAW Open: blueman-.. version 2.22 {0x0002} 22.621228 blueman-manager[13665]: < HCI Command: Re.. (0x05|0x0005) plen 2 #45 22.621409 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #46 22.621800 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -12 dBm (0xf4) blueman-manager[13665]: < HCI Command: Re.. (0x03|0x002d) plen 3 #47 22.622032 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #48 22.622802 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) > HCI Event: Number of Completed Packets (0x13) plen 5 #49 22.633827 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #44: len 10 (5 Kb/s) Latency: 14 msec (14-21 msec ~18 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 20 #50 22.636387 L2CAP: Information Response (0x0b) ident 2 len 12 Type: Fixed channels supported (0x0003) Result: Success (0x0000) Channels: 0x0000000000000076 L2CAP Signaling (BR/EDR) Connectionless reception Attribute Protocol L2CAP Signaling (LE) Security Manager (LE) < ACL Data TX: Handle 256 flags 0x00 dlen 12 #51 22.636436 L2CAP: Connection Request (0x02) ident 3 len 4 PSM: 1 (0x0001) Source CID: 64 > HCI Event: Number of Completed Packets (0x13) plen 5 #52 22.639810 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #51: len 12 (32 Kb/s) Latency: 3 msec (3-21 msec ~10 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 16 #53 22.643375 L2CAP: Connection Response (0x03) ident 3 len 8 Destination CID: 128 Source CID: 64 Result: Connection pending (0x0001) Status: Authorization pending (0x0002) > ACL Data RX: Handle 256 flags 0x02 dlen 16 #54 22.677374 L2CAP: Connection Response (0x03) ident 3 len 8 Destination CID: 128 Source CID: 64 Result: Connection successful (0x0000) Status: No further information available (0x0000) > ACL Data RX: Handle 256 flags 0x02 dlen 16 #55 22.677378 L2CAP: Configure Request (0x04) ident 1 len 8 Destination CID: 64 Flags: 0x0000 Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 48 < ACL Data TX: Handle 256 flags 0x00 dlen 23 #56 22.677413 L2CAP: Configure Request (0x04) ident 4 len 15 Destination CID: 128 Flags: 0x0000 Option: Retransmission and Flow Control (0x04) [mandatory] Mode: Basic (0x00) TX window size: 0 Max transmit: 0 Retransmission timeout: 0 Monitor timeout: 0 Maximum PDU size: 0 < ACL Data TX: Handle 256 flags 0x00 dlen 18 #57 22.677427 L2CAP: Configure Response (0x05) ident 1 len 10 Source CID: 128 Flags: 0x0000 Result: Success (0x0000) Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 48 > HCI Event: Number of Completed Packets (0x13) plen 5 #58 22.691811 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #56: len 23 (13 Kb/s) Latency: 14 msec (3-21 msec ~12 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #59 22.693793 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #57: len 18 (9 Kb/s) Latency: 16 msec (3-21 msec ~14 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 14 #60 22.697360 L2CAP: Configure Response (0x05) ident 4 len 6 Source CID: 64 Flags: 0x0000 Result: Success (0x0000) bluetoothd[13648]: < ACL Data TX: Handle 256 flags 0x00 dlen 24 #61 22.697477 Channel: 128 len 20 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Request (0x06) tid 0 len 15 Search pattern: [len 5] Sequence (6) with 3 bytes [8 extra bits] len 5 UUID (3) with 2 bytes [0 extra bits] len 3 L2CAP (0x0100) Max record count: 65535 Attribute list: [len 7] Sequence (6) with 5 bytes [8 extra bits] len 7 Unsigned Integer (1) with 4 bytes [0 extra bits] len 5 0x0000ffff Continuation state: 0 > HCI Event: Number of Completed Packets (0x13) plen 5 #62 22.701828 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #61: len 24 (48 Kb/s) Latency: 4 msec (3-21 msec ~9 msec) Channel: 128 [PSM 1 mode Basic (0x00)] {chan 0} Channel Latency: 4 msec (4-4 msec ~4 msec) > HCI Event: LE Meta Event (0x3e) plen 34 #63 22.707823 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0010 Props: 0x0010 Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_NONCONN_IND (0x0010) Address type: Random (0x01) Address: E3:B6:9A:A8:69:6D (Static) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -44 dBm (0xd4) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x08 07 ff 4c 00 12 02 00 03 ..L..... Company: Apple, Inc. (76) Type: Unknown (18) Data: 0003 @ MGMT Event: Device Found (0x0012) plen 22 {0x0001} 22.707843 LE Address: E3:B6:9A:A8:69:6D (Static) RSSI: -44 dBm (0xd4) Flags: 0x00000004 Not Connectable Data length: 8 Company: Apple, Inc. (76) Type: Unknown (18) Data: 0003 > ACL Data RX: Handle 256 flags 0x02 dlen 52 #64 22.721355 Channel: 64 len 48 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Response (0x07) tid 0 len 43 Attribute bytes: 38 Continuation state: 2 00 fa .. bluetoothd[13648]: < ACL Data TX: Handle 256 flags 0x00 dlen 26 #65 22.721466 Channel: 128 len 22 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Request (0x06) tid 1 len 17 Search pattern: [len 5] Sequence (6) with 3 bytes [8 extra bits] len 5 UUID (3) with 2 bytes [0 extra bits] len 3 L2CAP (0x0100) Max record count: 65535 Attribute list: [len 7] Sequence (6) with 5 bytes [8 extra bits] len 7 Unsigned Integer (1) with 4 bytes [0 extra bits] len 5 0x0000ffff Continuation state: 2 00 fa .. > HCI Event: Number of Completed Packets (0x13) plen 5 #66 22.750792 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #65: len 26 (7 Kb/s) Latency: 29 msec (3-29 msec ~19 msec) Channel: 128 [PSM 1 mode Basic (0x00)] {chan 0} Channel Latency: 29 msec (4-29 msec ~16 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 52 #67 22.783355 Channel: 64 len 48 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Response (0x07) tid 1 len 43 Attribute bytes: 38 Continuation state: 2 00 d4 .. bluetoothd[13648]: < ACL Data TX: Handle 256 flags 0x00 dlen 26 #68 22.783534 Channel: 128 len 22 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Request (0x06) tid 2 len 17 Search pattern: [len 5] Sequence (6) with 3 bytes [8 extra bits] len 5 UUID (3) with 2 bytes [0 extra bits] len 3 L2CAP (0x0100) Max record count: 65535 Attribute list: [len 7] Sequence (6) with 5 bytes [8 extra bits] len 7 Unsigned Integer (1) with 4 bytes [0 extra bits] len 5 0x0000ffff Continuation state: 2 00 d4 .. > HCI Event: Number of Completed Packets (0x13) plen 5 #69 22.812812 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #68: len 26 (7 Kb/s) Latency: 29 msec (3-29 msec ~24 msec) Channel: 128 [PSM 1 mode Basic (0x00)] {chan 0} Channel Latency: 29 msec (4-29 msec ~23 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 52 #70 22.827548 Channel: 64 len 48 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Response (0x07) tid 2 len 43 Attribute bytes: 38 Continuation state: 2 00 ae .. bluetoothd[13648]: < ACL Data TX: Handle 256 flags 0x00 dlen 26 #71 22.827743 Channel: 128 len 22 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Request (0x06) tid 3 len 17 Search pattern: [len 5] Sequence (6) with 3 bytes [8 extra bits] len 5 UUID (3) with 2 bytes [0 extra bits] len 3 L2CAP (0x0100) Max record count: 65535 Attribute list: [len 7] Sequence (6) with 5 bytes [8 extra bits] len 7 Unsigned Integer (1) with 4 bytes [0 extra bits] len 5 0x0000ffff Continuation state: 2 00 ae .. > HCI Event: Number of Completed Packets (0x13) plen 5 #72 22.834912 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #71: len 26 (29 Kb/s) Latency: 7 msec (3-29 msec ~15 msec) Channel: 128 [PSM 1 mode Basic (0x00)] {chan 0} Channel Latency: 7 msec (4-29 msec ~15 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 52 #73 22.854372 Channel: 64 len 48 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Response (0x07) tid 3 len 43 Attribute bytes: 38 Continuation state: 2 00 88 .. bluetoothd[13648]: < ACL Data TX: Handle 256 flags 0x00 dlen 26 #74 22.854655 Channel: 128 len 22 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Request (0x06) tid 4 len 17 Search pattern: [len 5] Sequence (6) with 3 bytes [8 extra bits] len 5 UUID (3) with 2 bytes [0 extra bits] len 3 L2CAP (0x0100) Max record count: 65535 Attribute list: [len 7] Sequence (6) with 5 bytes [8 extra bits] len 7 Unsigned Integer (1) with 4 bytes [0 extra bits] len 5 0x0000ffff Continuation state: 2 00 88 .. > HCI Event: Number of Completed Packets (0x13) plen 5 #75 22.857828 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #74: len 26 (69 Kb/s) Latency: 3 msec (3-29 msec ~9 msec) Channel: 128 [PSM 1 mode Basic (0x00)] {chan 0} Channel Latency: 3 msec (3-29 msec ~9 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 52 #76 22.877468 Channel: 64 len 48 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Response (0x07) tid 4 len 43 Attribute bytes: 38 Continuation state: 2 00 62 .b bluetoothd[13648]: < ACL Data TX: Handle 256 flags 0x00 dlen 26 #77 22.877704 Channel: 128 len 22 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Request (0x06) tid 5 len 17 Search pattern: [len 5] Sequence (6) with 3 bytes [8 extra bits] len 5 UUID (3) with 2 bytes [0 extra bits] len 3 L2CAP (0x0100) Max record count: 65535 Attribute list: [len 7] Sequence (6) with 5 bytes [8 extra bits] len 7 Unsigned Integer (1) with 4 bytes [0 extra bits] len 5 0x0000ffff Continuation state: 2 00 62 .b > HCI Event: Number of Completed Packets (0x13) plen 5 #78 22.914938 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #77: len 26 (5 Kb/s) Latency: 37 msec (3-37 msec ~23 msec) Channel: 128 [PSM 1 mode Basic (0x00)] {chan 0} Channel Latency: 37 msec (3-37 msec ~23 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 50 #79 22.919432 Channel: 64 len 46 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Response (0x07) tid 5 len 41 Attribute bytes: 36 Continuation state: 2 00 3e .> bluetoothd[13648]: < ACL Data TX: Handle 256 flags 0x00 dlen 26 #80 22.919738 Channel: 128 len 22 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Request (0x06) tid 6 len 17 Search pattern: [len 5] Sequence (6) with 3 bytes [8 extra bits] len 5 UUID (3) with 2 bytes [0 extra bits] len 3 L2CAP (0x0100) Max record count: 65535 Attribute list: [len 7] Sequence (6) with 5 bytes [8 extra bits] len 7 Unsigned Integer (1) with 4 bytes [0 extra bits] len 5 0x0000ffff Continuation state: 2 00 3e .> > HCI Event: Number of Completed Packets (0x13) plen 5 #81 22.982933 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #80: len 26 (3 Kb/s) Latency: 63 msec (3-63 msec ~43 msec) Channel: 128 [PSM 1 mode Basic (0x00)] {chan 0} Channel Latency: 63 msec (3-63 msec ~43 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 52 #82 23.012442 Channel: 64 len 48 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Response (0x07) tid 6 len 43 Attribute bytes: 38 Continuation state: 2 00 18 .. bluetoothd[13648]: < ACL Data TX: Handle 256 flags 0x00 dlen 26 #83 23.012699 Channel: 128 len 22 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Request (0x06) tid 7 len 17 Search pattern: [len 5] Sequence (6) with 3 bytes [8 extra bits] len 5 UUID (3) with 2 bytes [0 extra bits] len 3 L2CAP (0x0100) Max record count: 65535 Attribute list: [len 7] Sequence (6) with 5 bytes [8 extra bits] len 7 Unsigned Integer (1) with 4 bytes [0 extra bits] len 5 0x0000ffff Continuation state: 2 00 18 .. > HCI Event: Number of Completed Packets (0x13) plen 5 #84 23.051939 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #83: len 26 (5 Kb/s) Latency: 39 msec (3-63 msec ~41 msec) Channel: 128 [PSM 1 mode Basic (0x00)] {chan 0} Channel Latency: 39 msec (3-63 msec ~41 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 36 #85 23.068434 Channel: 64 len 32 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Response (0x07) tid 7 len 27 Attribute bytes: 24 Continuation state: 0 Combined attribute bytes: 288 Attribute list: [len 56] {position 0} Attribute: Service Record Handle (0x0000) [len 2] 0x00010000 Attribute: Service Class ID List (0x0001) [len 2] UUID (3) with 2 bytes [0 extra bits] len 3 Audio Sink (0x110b) Attribute: Protocol Descriptor List (0x0004) [len 2] Sequence (6) with 6 bytes [8 extra bits] len 8 UUID (3) with 2 bytes [0 extra bits] len 3 L2CAP (0x0100) Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0019 Sequence (6) with 6 bytes [8 extra bits] len 8 UUID (3) with 2 bytes [0 extra bits] len 3 AVDTP (0x0019) Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0103 Attribute: Bluetooth Profile Descriptor List (0x0009) [len 2] Sequence (6) with 6 bytes [8 extra bits] len 8 UUID (3) with 2 bytes [0 extra bits] len 3 Advanced Audio Distribution (0x110d) Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0103 Attribute: Unknown (0x0311) [len 2] 0x0001 Attribute list: [len 79] {position 1} Attribute: Service Record Handle (0x0000) [len 2] 0x00010001 Attribute: Service Class ID List (0x0001) [len 2] UUID (3) with 2 bytes [0 extra bits] len 3 Serial Port (0x1101) Attribute: Protocol Descriptor List (0x0004) [len 2] Sequence (6) with 3 bytes [8 extra bits] len 5 UUID (3) with 2 bytes [0 extra bits] len 3 L2CAP (0x0100) Sequence (6) with 5 bytes [8 extra bits] len 7 UUID (3) with 2 bytes [0 extra bits] len 3 RFCOMM (0x0003) Unsigned Integer (1) with 1 byte [0 extra bits] len 2 0x01 Attribute: Browse Group List (0x0005) [len 2] UUID (3) with 2 bytes [0 extra bits] len 3 Public Browse Root (0x1002) Attribute: Language Base Attribute ID List (0x0006) [len 2] Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x656e Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x006a Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0100 Attribute: Bluetooth Profile Descriptor List (0x0009) [len 2] UUID (3) with 2 bytes [0 extra bits] len 3 Serial Port (0x1101) Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0102 Attribute: Unknown (0x0100) [len 2] SPP Dev1 [len 8] Attribute list: [len 79] {position 2} Attribute: Service Record Handle (0x0000) [len 2] 0x00010002 Attribute: Service Class ID List (0x0001) [len 2] UUID (3) with 2 bytes [0 extra bits] len 3 Serial Port (0x1101) Attribute: Protocol Descriptor List (0x0004) [len 2] Sequence (6) with 3 bytes [8 extra bits] len 5 UUID (3) with 2 bytes [0 extra bits] len 3 L2CAP (0x0100) Sequence (6) with 5 bytes [8 extra bits] len 7 UUID (3) with 2 bytes [0 extra bits] len 3 RFCOMM (0x0003) Unsigned Integer (1) with 1 byte [0 extra bits] len 2 0x02 Attribute: Browse Group List (0x0005) [len 2] UUID (3) with 2 bytes [0 extra bits] len 3 Public Browse Root (0x1002) Attribute: Language Base Attribute ID List (0x0006) [len 2] Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x656e Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x006a Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0100 Attribute: Bluetooth Profile Descriptor List (0x0009) [len 2] UUID (3) with 2 bytes [0 extra bits] len 3 Serial Port (0x1101) Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0102 Attribute: Unknown (0x0100) [len 2] SPP Dev2 [len 8] Attribute list: [len 59] {position 3} Attribute: Service Record Handle (0x0000) [len 2] 0x00010005 Attribute: Service Class ID List (0x0001) [len 2] UUID (3) with 2 bytes [0 extra bits] len 3 A/V Remote Control (0x110e) UUID (3) with 2 bytes [0 extra bits] len 3 A/V Remote Control Controller (0x110f) Attribute: Protocol Descriptor List (0x0004) [len 2] Sequence (6) with 6 bytes [8 extra bits] len 8 UUID (3) with 2 bytes [0 extra bits] len 3 L2CAP (0x0100) Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0017 Sequence (6) with 6 bytes [8 extra bits] len 8 UUID (3) with 2 bytes [0 extra bits] len 3 AVCTP (0x0017) Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0104 Attribute: Bluetooth Profile Descriptor List (0x0009) [len 2] Sequence (6) with 6 bytes [8 extra bits] len 8 UUID (3) with 2 bytes [0 extra bits] len 3 A/V Remote Control (0x110e) Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0106 Attribute: Unknown (0x0311) [len 2] 0x0001 bluetoothd[13648]: < ACL Data TX: Handle 256 flags 0x00 dlen 24 #86 23.072265 Channel: 128 len 20 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Request (0x06) tid 8 len 15 Search pattern: [len 5] Sequence (6) with 3 bytes [8 extra bits] len 5 UUID (3) with 2 bytes [0 extra bits] len 3 PnP Information (0x1200) Max record count: 65535 Attribute list: [len 7] Sequence (6) with 5 bytes [8 extra bits] len 7 Unsigned Integer (1) with 4 bytes [0 extra bits] len 5 0x0000ffff Continuation state: 0 > HCI Event: Number of Completed Packets (0x13) plen 5 #87 23.119882 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #86: len 24 (4 Kb/s) Latency: 47 msec (3-63 msec ~44 msec) Channel: 128 [PSM 1 mode Basic (0x00)] {chan 0} Channel Latency: 47 msec (3-63 msec ~44 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 52 #88 23.153472 Channel: 64 len 48 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Response (0x07) tid 8 len 43 Attribute bytes: 38 Continuation state: 2 00 13 .. bluetoothd[13648]: < ACL Data TX: Handle 256 flags 0x00 dlen 26 #89 23.153752 Channel: 128 len 22 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Request (0x06) tid 9 len 17 Search pattern: [len 5] Sequence (6) with 3 bytes [8 extra bits] len 5 UUID (3) with 2 bytes [0 extra bits] len 3 PnP Information (0x1200) Max record count: 65535 Attribute list: [len 7] Sequence (6) with 5 bytes [8 extra bits] len 7 Unsigned Integer (1) with 4 bytes [0 extra bits] len 5 0x0000ffff Continuation state: 2 00 13 .. > HCI Event: Number of Completed Packets (0x13) plen 5 #90 23.166895 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #89: len 26 (16 Kb/s) Latency: 13 msec (3-63 msec ~28 msec) Channel: 128 [PSM 1 mode Basic (0x00)] {chan 0} Channel Latency: 13 msec (3-63 msec ~28 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 31 #91 23.170409 Channel: 64 len 27 [PSM 1 mode Basic (0x00)] {chan 0} SDP: Service Search Attribute Response (0x07) tid 9 len 22 Attribute bytes: 19 Continuation state: 0 Combined attribute bytes: 57 Attribute list: [len 51] {position 0} Attribute: Service Record Handle (0x0000) [len 2] 0x00010003 Attribute: Service Class ID List (0x0001) [len 2] UUID (3) with 2 bytes [0 extra bits] len 3 PnP Information (0x1200) Attribute: Unknown (0x0200) [len 2] 0x0103 Attribute: Unknown (0x0201) [len 2] 0x000a Attribute: Unknown (0x0202) [len 2] 0xffff Attribute: Unknown (0x0203) [len 2] 0xffff Attribute: Unknown (0x0204) [len 2] true Attribute: Unknown (0x0205) [len 2] 0x0001 < HCI Command: Authentication Requested (0x01|0x0011) plen 2 #92 23.173552 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Status (0x0f) plen 4 #93 23.174830 Authentication Requested (0x01|0x0011) ncmd 1 Status: Success (0x00) > HCI Event: Link Key Request (0x17) plen 6 #94 23.175826 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) < HCI Command: Link Key Request Negative... (0x01|0x000c) plen 6 #95 23.175892 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 10 #96 23.176830 Link Key Request Negative Reply (0x01|0x000c) ncmd 1 Status: Success (0x00) Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: IO Capability Request (0x31) plen 6 #97 23.177826 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) < HCI Command: IO Capability Request Reply (0x01|0x002b) plen 9 #98 23.177882 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) IO capability: DisplayYesNo (0x01) OOB data: Authentication data not present (0x00) Authentication: General Bonding - MITM required (0x05) > HCI Event: Command Complete (0x0e) plen 10 #99 23.178829 IO Capability Request Reply (0x01|0x002b) ncmd 1 Status: Success (0x00) Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: IO Capability Response (0x32) plen 9 #100 23.234895 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) IO capability: NoInputNoOutput (0x03) OOB data: Authentication data not present (0x00) Authentication: General Bonding - MITM not required (0x04) > HCI Event: LE Meta Event (0x3e) plen 34 #101 23.341052 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0010 Props: 0x0010 Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_NONCONN_IND (0x0010) Address type: Random (0x01) Address: CE:A5:13:88:FC:11 (Static) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -70 dBm (0xba) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x08 07 ff 4c 00 12 02 00 00 ..L..... Company: Apple, Inc. (76) Type: Unknown (18) Data: 0000 @ MGMT Event: Device Found (0x0012) plen 22 {0x0001} 23.341137 LE Address: CE:A5:13:88:FC:11 (Static) RSSI: -70 dBm (0xba) Flags: 0x00000004 Not Connectable Data length: 8 Company: Apple, Inc. (76) Type: Unknown (18) Data: 0000 > HCI Event: LE Meta Event (0x3e) plen 52 #102 23.408057 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0013 Props: 0x0013 Connectable Scannable Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_IND (0x0013) Address type: Random (0x01) Address: EF:36:6F:77:29:0D (Static) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -36 dBm (0xdc) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x1a 02 01 05 03 19 c2 03 03 03 12 18 0e 09 4d 58 20 .............MX 41 6e 79 77 68 65 72 65 20 33 Anywhere 3 Flags: 0x05 LE Limited Discoverable Mode BR/EDR Not Supported Appearance: Mouse (0x03c2) 16-bit Service UUIDs (complete): 1 entry Human Interface Device (0x1812) Name (complete): MX Anywhere 3 > HCI Event: LE Meta Event (0x3e) plen 51 #103 23.409947 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0013 Props: 0x0013 Connectable Scannable Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_IND (0x0013) Address type: Random (0x01) Address: 7A:C2:46:89:57:60 (Resolvable) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -83 dBm (0xad) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x19 02 0a f6 15 16 2c fe 10 40 a4 10 88 08 21 dc d1 .....,..@....!.. 33 5a 7f 50 46 bf 4b 6b 9b 3Z.PF.Kk. TX power: -10 dBm Service Data: Google (0xfe2c) Data: 1040a410880821dcd1335a7f5046bf4b6b9b @ MGMT Event: Device Found (0x0012) plen 40 {0x0001} 23.410007 LE Address: EF:36:6F:77:29:0D (Static) RSSI: -36 dBm (0xdc) Flags: 0x00000000 Data length: 26 Flags: 0x05 LE Limited Discoverable Mode BR/EDR Not Supported Appearance: Mouse (0x03c2) 16-bit Service UUIDs (complete): 1 entry Human Interface Device (0x1812) Name (complete): MX Anywhere 3 blueman-manager[13665]: < HCI Command: R.. (0x05|0x0005) plen 2 #104 23.636189 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #105 23.636950 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -14 dBm (0xf2) blueman-manager[13665]: < HCI Command: R.. (0x03|0x002d) plen 3 #106 23.637264 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #107 23.637887 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) > HCI Event: User Confirmation Request (0x33) plen 10 #108 23.783925 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Passkey: 362714 < HCI Command: User Confirmation Request.. (0x01|0x002c) plen 6 #109 23.784001 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 10 #110 23.784903 User Confirmation Request Reply (0x01|0x002c) ncmd 1 Status: Success (0x00) Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Simple Pairing Complete (0x36) plen 7 #111 23.811893 Status: Success (0x00) Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Link Key Notification (0x18) plen 23 #112 23.985976 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Link key: d1b11f037b86e825e7e6ebc54657b36d Key type: Unauthenticated Combination key from P-192 (0x04) @ MGMT Event: New Link Key (0x0009) plen 26 {0x0001} 23.986070 Store hint: Yes (0x01) BR/EDR Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Key type: Unauthenticated Combination key from P-192 (0x04) Link key: d1b11f037b86e825e7e6ebc54657b36d PIN length: 0 > HCI Event: Auth Complete (0x06) plen 3 #113 23.986941 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) < HCI Command: Set Connection Encryption (0x01|0x0013) plen 3 #114 23.987000 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Encryption: Enabled (0x01) > HCI Event: Command Status (0x0f) plen 4 #115 23.987917 Set Connection Encryption (0x01|0x0013) ncmd 1 Status: Success (0x00) > HCI Event: LE Meta Event (0x3e) plen 43 #116 24.044064 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0010 Props: 0x0010 Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_NONCONN_IND (0x0010) Address type: Random (0x01) Address: 41:AB:07:D0:BF:26 (Resolvable) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -84 dBm (0xac) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x11 02 01 1a 0d ff 4c 00 16 08 00 09 25 ec 0a 87 d4 .....L.....%.... aa . Flags: 0x1a LE General Discoverable Mode Simultaneous LE and BR/EDR (Controller) Simultaneous LE and BR/EDR (Host) Company: Apple, Inc. (76) Type: Unknown (22) Data: 000925ec0a87d4aa @ MGMT Event: Device Found (0x0012) plen 39 {0x0001} 24.044152 LE Address: 7A:C2:46:89:57:60 (Resolvable) RSSI: -83 dBm (0xad) Flags: 0x00000000 Data length: 25 TX power: -10 dBm Service Data: Google (0xfe2c) Data: 1040a410880821dcd1335a7f5046bf4b6b9b @ MGMT Event: Device Found (0x0012) plen 31 {0x0001} 24.044161 LE Address: 41:AB:07:D0:BF:26 (Resolvable) RSSI: -84 dBm (0xac) Flags: 0x00000004 Not Connectable Data length: 17 Flags: 0x1a LE General Discoverable Mode Simultaneous LE and BR/EDR (Controller) Simultaneous LE and BR/EDR (Host) Company: Apple, Inc. (76) Type: Unknown (22) Data: 000925ec0a87d4aa > HCI Event: Encryption Change (0x08) plen 4 #117 24.070872 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Encryption: Enabled with E0 (0x01) < HCI Command: Read Encryption Key Size (0x05|0x0008) plen 2 #118 24.070931 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #119 24.071864 Read Encryption Key Size (0x05|0x0008) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Key size: 16 < ACL Data TX: Handle 256 flags 0x00 dlen 12 #120 24.071902 L2CAP: Connection Request (0x02) ident 5 len 4 PSM: 25 (0x0019) Source CID: 65 > HCI Event: Number of Completed Packets (0x13) plen 5 #121 24.075869 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #120: len 12 (32 Kb/s) Latency: 3 msec (3-63 msec ~16 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 16 #122 24.081371 L2CAP: Connection Response (0x03) ident 5 len 8 Destination CID: 193 Source CID: 65 Result: Connection pending (0x0001) Status: Authorization pending (0x0002) > ACL Data RX: Handle 256 flags 0x02 dlen 12 #123 24.081376 L2CAP: Connection Request (0x02) ident 2 len 4 PSM: 1 (0x0001) Source CID: 258 < ACL Data TX: Handle 256 flags 0x00 dlen 16 #124 24.081431 L2CAP: Connection Response (0x03) ident 2 len 8 Destination CID: 66 Source CID: 258 Result: Connection successful (0x0000) Status: No further information available (0x0000) < ACL Data TX: Handle 256 flags 0x00 dlen 23 #125 24.081450 L2CAP: Configure Request (0x04) ident 6 len 15 Destination CID: 258 Flags: 0x0000 Option: Retransmission and Flow Control (0x04) [mandatory] Mode: Basic (0x00) TX window size: 0 Max transmit: 0 Retransmission timeout: 0 Monitor timeout: 0 Maximum PDU size: 0 > HCI Event: LE Meta Event (0x3e) plen 47 #126 24.081887 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0013 Props: 0x0013 Connectable Scannable Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_IND (0x0013) Address type: Public (0x00) Address: 28:3C:90:4E:C5:E7 (Texas Instruments) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -95 dBm (0xa1) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x15 02 01 06 11 06 ea b4 6c 04 cf 81 99 c1 0e f6 b8 .......l........ 2a 2d 55 1b 0e *-U.. Flags: 0x06 LE General Discoverable Mode BR/EDR Not Supported 128-bit Service UUIDs (partial): 1 entry Vendor specific > HCI Event: Number of Completed Packets (0x13) plen 5 #127 24.095893 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #124: len 16 (9 Kb/s) Latency: 14 msec (3-63 msec ~15 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #128 24.096863 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #125: len 23 (12 Kb/s) Latency: 15 msec (3-63 msec ~15 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 16 #129 24.100791 L2CAP: Configure Request (0x04) ident 3 len 8 Destination CID: 66 Flags: 0x0000 Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 48 > ACL Data RX: Handle 256 flags 0x02 dlen 14 #130 24.100794 L2CAP: Configure Response (0x05) ident 6 len 6 Source CID: 66 Flags: 0x0000 Result: Success (0x0000) < ACL Data TX: Handle 256 flags 0x00 dlen 18 #131 24.100816 L2CAP: Configure Response (0x05) ident 3 len 10 Source CID: 258 Flags: 0x0000 Result: Success (0x0000) Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 48 > HCI Event: Number of Completed Packets (0x13) plen 5 #132 24.116924 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #131: len 18 (9 Kb/s) Latency: 16 msec (3-63 msec ~15 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 28 #133 24.122685 Channel: 66 len 24 [PSM 1 mode Basic (0x00)] {chan 2} SDP: Service Search Attribute Request (0x06) tid 1 len 19 Search pattern: [len 5] Sequence (6) with 3 bytes [8 extra bits] len 5 UUID (3) with 2 bytes [0 extra bits] len 3 PnP Information (0x1200) Max record count: 32 Attribute list: [len 11] Sequence (6) with 9 bytes [8 extra bits] len 11 Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0201 Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0202 Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0205 Continuation state: 0 bluetoothd[13648]: < ACL Data TX: Handle 256 flags 0x00 dlen 34 #134 24.123169 Channel: 258 len 30 [PSM 1 mode Basic (0x00)] {chan 2} SDP: Service Search Attribute Response (0x07) tid 1 len 25 Attribute bytes: 22 Attribute list: [len 18] {position 0} Attribute: Unknown (0x0201) [len 2] 0x1d6b Attribute: Unknown (0x0202) [len 2] 0x0246 Attribute: Unknown (0x0205) [len 2] 0x0002 Continuation state: 0 > HCI Event: Number of Completed Packets (0x13) plen 5 #135 24.147097 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #134: len 34 (11 Kb/s) Latency: 23 msec (3-63 msec ~19 msec) Channel: 258 [PSM 1 mode Basic (0x00)] {chan 2} Channel Latency: 23 msec (23-23 msec ~23 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 12 #136 24.162547 L2CAP: Disconnection Request (0x06) ident 4 len 4 Destination CID: 66 Source CID: 258 < ACL Data TX: Handle 256 flags 0x00 dlen 12 #137 24.162656 L2CAP: Disconnection Response (0x07) ident 4 len 4 Destination CID: 66 Source CID: 258 > HCI Event: Number of Completed Packets (0x13) plen 5 #138 24.166903 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #137: len 12 (24 Kb/s) Latency: 4 msec (3-63 msec ~12 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 16 #139 24.192427 L2CAP: Connection Response (0x03) ident 5 len 8 Destination CID: 193 Source CID: 65 Result: Connection successful (0x0000) Status: No further information available (0x0000) > ACL Data RX: Handle 256 flags 0x02 dlen 20 #140 24.192431 L2CAP: Configure Request (0x04) ident 5 len 12 Destination CID: 65 Flags: 0x0000 Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 672 Option: Flush Timeout (0x02) [mandatory] Flush timeout: 65535 < ACL Data TX: Handle 256 flags 0x00 dlen 23 #141 24.192513 L2CAP: Configure Request (0x04) ident 7 len 15 Destination CID: 193 Flags: 0x0000 Option: Retransmission and Flow Control (0x04) [mandatory] Mode: Basic (0x00) TX window size: 0 Max transmit: 0 Retransmission timeout: 0 Monitor timeout: 0 Maximum PDU size: 0 < ACL Data TX: Handle 256 flags 0x00 dlen 18 #142 24.192532 L2CAP: Configure Response (0x05) ident 5 len 10 Source CID: 193 Flags: 0x0000 Result: Success (0x0000) Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 672 > ACL Data RX: Handle 256 flags 0x02 dlen 12 #143 24.194560 L2CAP: Connection Request (0x02) ident 6 len 4 PSM: 1 (0x0001) Source CID: 322 < ACL Data TX: Handle 256 flags 0x00 dlen 16 #144 24.194700 L2CAP: Connection Response (0x03) ident 6 len 8 Destination CID: 66 Source CID: 322 Result: Connection successful (0x0000) Status: No further information available (0x0000) < ACL Data TX: Handle 256 flags 0x00 dlen 23 #145 24.194757 L2CAP: Configure Request (0x04) ident 8 len 15 Destination CID: 322 Flags: 0x0000 Option: Retransmission and Flow Control (0x04) [mandatory] Mode: Basic (0x00) TX window size: 0 Max transmit: 0 Retransmission timeout: 0 Monitor timeout: 0 Maximum PDU size: 0 > HCI Event: Number of Completed Packets (0x13) plen 5 #146 24.217943 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #141: len 23 (7 Kb/s) Latency: 25 msec (3-63 msec ~18 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #147 24.219926 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #142: len 18 (5 Kb/s) Latency: 27 msec (3-63 msec ~23 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #148 24.232973 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #144: len 16 (3 Kb/s) Latency: 38 msec (3-63 msec ~30 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 22 #149 24.233050 L2CAP: Configure Response (0x05) ident 7 len 14 Source CID: 65 Flags: 0x0000 Result: Success (0x0000) Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 672 Option: Flush Timeout (0x02) [mandatory] Flush timeout: 65535 bluetoothd[13648]: < ACL Data TX: Handle 256 flags 0x00 dlen 6 #150 24.233443 Channel: 193 len 2 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Discover (0x01) Command (0x00) type 0x00 label 0 nosp 0 > HCI Event: Number of Completed Packets (0x13) plen 5 #151 24.235904 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #145: len 23 (4 Kb/s) Latency: 41 msec (3-63 msec ~35 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #152 24.236872 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #150: len 6 (16 Kb/s) Latency: 3 msec (3-63 msec ~19 msec) Channel: 193 [PSM 25 mode Basic (0x00)] {chan 1} Channel Latency: 3 msec (3-3 msec ~3 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 16 #153 24.239375 L2CAP: Configure Request (0x04) ident 7 len 8 Destination CID: 66 Flags: 0x0000 Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 48 > ACL Data RX: Handle 256 flags 0x02 dlen 14 #154 24.239382 L2CAP: Configure Response (0x05) ident 8 len 6 Source CID: 66 Flags: 0x0000 Result: Success (0x0000) < ACL Data TX: Handle 256 flags 0x00 dlen 18 #155 24.239484 L2CAP: Configure Response (0x05) ident 7 len 10 Source CID: 322 Flags: 0x0000 Result: Success (0x0000) Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 48 > HCI Event: Number of Completed Packets (0x13) plen 5 #156 24.242976 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #155: len 18 (48 Kb/s) Latency: 3 msec (3-63 msec ~11 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 22 #157 24.278565 Channel: 66 len 18 [PSM 1 mode Basic (0x00)] {chan 2} SDP: Service Search Attribute Request (0x06) tid 1 len 13 Search pattern: [len 5] Sequence (6) with 3 bytes [8 extra bits] len 5 UUID (3) with 2 bytes [0 extra bits] len 3 Audio Source (0x110a) Max record count: 32 Attribute list: [len 5] Sequence (6) with 3 bytes [8 extra bits] len 5 Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0009 Continuation state: 0 bluetoothd[13648]: < ACL Data TX: Handle 256 flags 0x00 dlen 29 #158 24.278967 Channel: 322 len 25 [PSM 1 mode Basic (0x00)] {chan 2} SDP: Service Search Attribute Response (0x07) tid 1 len 20 Attribute bytes: 17 Attribute list: [len 13] {position 0} Attribute: Bluetooth Profile Descriptor List (0x0009) [len 2] Sequence (6) with 6 bytes [8 extra bits] len 8 UUID (3) with 2 bytes [0 extra bits] len 3 Advanced Audio Distribution (0x110d) Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0103 Continuation state: 0 > HCI Event: Number of Completed Packets (0x13) plen 5 #159 24.293083 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #158: len 29 (16 Kb/s) Latency: 14 msec (3-63 msec ~12 msec) Channel: 322 [PSM 1 mode Basic (0x00)] {chan 2} Channel Latency: 14 msec (14-14 msec ~14 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 12 #160 24.297448 L2CAP: Disconnection Request (0x06) ident 8 len 4 Destination CID: 66 Source CID: 322 < ACL Data TX: Handle 256 flags 0x00 dlen 12 #161 24.297544 L2CAP: Disconnection Response (0x07) ident 8 len 4 Destination CID: 66 Source CID: 322 > HCI Event: Number of Completed Packets (0x13) plen 5 #162 24.300920 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #161: len 12 (32 Kb/s) Latency: 3 msec (3-63 msec ~8 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 14 #163 24.334428 Channel: 65 len 10 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Discover (0x01) Response Accept (0x02) type 0x00 label 0 nosp 0 ACP SEID: 49 Media Type: Audio (0x00) SEP Type: SRC (0x00) In use: No ACP SEID: 17 Media Type: Audio (0x00) SEP Type: SNK (0x01) In use: No ACP SEID: 33 Media Type: Audio (0x00) SEP Type: SRC (0x00) In use: No ACP SEID: 1 Media Type: Audio (0x00) SEP Type: SNK (0x01) In use: No bluetoothd[13648]: < ACL Data TX: Handle 256 flags 0x00 dlen 7 #164 24.334759 Channel: 193 len 3 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Get All Capabilities (0x0c) Command (0x00) type 0x00 label 1 nosp 0 ACP SEID: 49 > HCI Event: Number of Completed Packets (0x13) plen 5 #165 24.365932 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #164: len 7 (1 Kb/s) Latency: 31 msec (3-63 msec ~19 msec) Channel: 193 [PSM 25 mode Basic (0x00)] {chan 1} Channel Latency: 31 msec (3-31 msec ~17 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 32 #166 24.374364 Channel: 65 len 28 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Get All Capabilities (0x0c) Response Accept (0x02) type 0x00 label 1 nosp 0 Service Category: Media Transport (0x01) Service Category: Media Codec (0x07) Media Type: Audio (0x00) Media Codec: Non-A2DP (0xff) Vendor ID: Cambridge Silicon Radio (0x0000000a) Vendor Specific Codec ID: Unknown (0x0103) 07 06 00 00 ff ff 02 35 .......5 Service Category: Content Protection (0x04) Content Protection Type: SCMS-T (0x0002) Service Category: Delay Reporting (0x08) bluetoothd[13648]: < ACL Data TX: Handle 256 flags 0x00 dlen 7 #167 24.374573 Channel: 193 len 3 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Get All Capabilities (0x0c) Command (0x00) type 0x00 label 2 nosp 0 ACP SEID: 17 > HCI Event: Number of Completed Packets (0x13) plen 5 #168 24.409977 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #167: len 7 (1 Kb/s) Latency: 35 msec (3-63 msec ~27 msec) Channel: 193 [PSM 25 mode Basic (0x00)] {chan 1} Channel Latency: 35 msec (3-35 msec ~26 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 32 #169 24.418444 Channel: 65 len 28 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Get All Capabilities (0x0c) Response Accept (0x02) type 0x00 label 2 nosp 0 Service Category: Media Transport (0x01) Service Category: Media Codec (0x07) Media Type: Audio (0x00) Media Codec: Non-A2DP (0xff) Vendor ID: Cambridge Silicon Radio (0x0000000a) Vendor Specific Codec ID: Unknown (0x0103) 07 06 00 00 ff ff 02 35 .......5 Service Category: Content Protection (0x04) Content Protection Type: SCMS-T (0x0002) Service Category: Delay Reporting (0x08) bluetoothd[13648]: < ACL Data TX: Handle 256 flags 0x00 dlen 7 #170 24.418722 Channel: 193 len 3 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Get All Capabilities (0x0c) Command (0x00) type 0x00 label 3 nosp 0 ACP SEID: 33 > HCI Event: Number of Completed Packets (0x13) plen 5 #171 24.432974 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #170: len 7 (4 Kb/s) Latency: 14 msec (3-63 msec ~20 msec) Channel: 193 [PSM 25 mode Basic (0x00)] {chan 1} Channel Latency: 14 msec (3-35 msec ~20 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 22 #172 24.439372 Channel: 65 len 18 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Get All Capabilities (0x0c) Response Accept (0x02) type 0x00 label 3 nosp 0 Service Category: Media Transport (0x01) Service Category: Media Codec (0x07) Media Type: Audio (0x00) Media Codec: SBC (0x00) Frequency: 0xf0 16000 32000 44100 48000 Channel Mode: 0x0f Mono Dual Channel Stereo Joint Stereo Block Length: 0xf0 4 8 12 16 Subbands: 0x0c 4 8 Allocation Method: 0x03 SNR Loudness Minimum Bitpool: 2 Maximum Bitpool: 53 Service Category: Content Protection (0x04) Content Protection Type: SCMS-T (0x0002) Service Category: Delay Reporting (0x08) bluetoothd[13648]: < ACL Data TX: Handle 256 flags 0x00 dlen 7 #173 24.439594 Channel: 193 len 3 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Get All Capabilities (0x0c) Command (0x00) type 0x00 label 4 nosp 0 ACP SEID: 1 > HCI Event: Number of Completed Packets (0x13) plen 5 #174 24.466982 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #173: len 7 (2 Kb/s) Latency: 27 msec (3-63 msec ~24 msec) Channel: 193 [PSM 25 mode Basic (0x00)] {chan 1} Channel Latency: 27 msec (3-35 msec ~23 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 22 #175 24.482488 Channel: 65 len 18 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Get All Capabilities (0x0c) Response Accept (0x02) type 0x00 label 4 nosp 0 Service Category: Media Transport (0x01) Service Category: Media Codec (0x07) Media Type: Audio (0x00) Media Codec: SBC (0x00) Frequency: 0xf0 16000 32000 44100 48000 Channel Mode: 0x0f Mono Dual Channel Stereo Joint Stereo Block Length: 0xf0 4 8 12 16 Subbands: 0x0c 4 8 Allocation Method: 0x03 SNR Loudness Minimum Bitpool: 2 Maximum Bitpool: 53 Service Category: Content Protection (0x04) Content Protection Type: SCMS-T (0x0002) Service Category: Delay Reporting (0x08) bluetoothd[13648]: < ACL Data TX: Handle 256 flags 0x00 dlen 20 #176 24.496539 Channel: 193 len 16 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Set Configuration (0x03) Command (0x00) type 0x00 label 5 nosp 0 ACP SEID: 1 INT SEID: 7 Service Category: Media Transport (0x01) Service Category: Media Codec (0x07) Media Type: Audio (0x00) Media Codec: SBC (0x00) Frequency: 48000 (0x10) Channel Mode: Joint Stereo (0x01) Block Length: 16 (0x10) Subbands: 8 (0x04) Allocation Method: Loudness (0x01) Minimum Bitpool: 2 Maximum Bitpool: 53 Service Category: Delay Reporting (0x08) > HCI Event: Number of Completed Packets (0x13) plen 5 #177 24.504886 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #176: len 20 (20 Kb/s) Latency: 8 msec (3-63 msec ~16 msec) Channel: 193 [PSM 25 mode Basic (0x00)] {chan 1} Channel Latency: 8 msec (3-35 msec ~16 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 6 #178 24.513447 Channel: 65 len 2 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Set Configuration (0x03) Response Accept (0x02) type 0x00 label 5 nosp 0 bluetoothd[13648]: < ACL Data TX: Handle 256 flags 0x00 dlen 7 #179 24.520330 Channel: 193 len 3 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Open (0x06) Command (0x00) type 0x00 label 6 nosp 0 ACP SEID: 1 > HCI Event: Number of Completed Packets (0x13) plen 5 #180 24.537902 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #179: len 7 (3 Kb/s) Latency: 17 msec (3-63 msec ~16 msec) Channel: 193 [PSM 25 mode Basic (0x00)] {chan 1} Channel Latency: 17 msec (3-35 msec ~16 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 9 #181 24.538235 Channel: 65 len 5 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Delay Report (0x0d) Command (0x00) type 0x00 label 2 nosp 0 ACP SEID: 7 Delay: 150.0ms bluetoothd[13648]: < ACL Data TX: Handle 256 flags 0x00 dlen 6 #182 24.538372 Channel: 193 len 2 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Delay Report (0x0d) Response Accept (0x02) type 0x00 label 2 nosp 0 > HCI Event: Number of Completed Packets (0x13) plen 5 #183 24.551875 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #182: len 6 (3 Kb/s) Latency: 13 msec (3-63 msec ~15 msec) Channel: 193 [PSM 25 mode Basic (0x00)] {chan 1} Channel Latency: 13 msec (3-35 msec ~15 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 6 #184 24.555372 Channel: 65 len 2 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Open (0x06) Response Accept (0x02) type 0x00 label 6 nosp 0 < ACL Data TX: Handle 256 flags 0x00 dlen 12 #185 24.556406 L2CAP: Connection Request (0x02) ident 9 len 4 PSM: 25 (0x0019) Source CID: 66 > HCI Event: Number of Completed Packets (0x13) plen 5 #186 24.560886 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #185: len 12 (24 Kb/s) Latency: 4 msec (3-63 msec ~9 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 16 #187 24.578366 L2CAP: Connection Response (0x03) ident 9 len 8 Destination CID: 386 Source CID: 66 Result: Connection pending (0x0001) Status: Authorization pending (0x0002) > ACL Data RX: Handle 256 flags 0x02 dlen 16 #188 24.578370 L2CAP: Connection Response (0x03) ident 9 len 8 Destination CID: 386 Source CID: 66 Result: Connection successful (0x0000) Status: No further information available (0x0000) < ACL Data TX: Handle 256 flags 0x00 dlen 23 #189 24.578390 L2CAP: Configure Request (0x04) ident 10 len 15 Destination CID: 386 Flags: 0x0000 Option: Retransmission and Flow Control (0x04) [mandatory] Mode: Basic (0x00) TX window size: 0 Max transmit: 0 Retransmission timeout: 0 Monitor timeout: 0 Maximum PDU size: 0 > ACL Data RX: Handle 256 flags 0x02 dlen 20 #190 24.581359 L2CAP: Configure Request (0x04) ident 9 len 12 Destination CID: 66 Flags: 0x0000 Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 672 Option: Flush Timeout (0x02) [mandatory] Flush timeout: 65535 < ACL Data TX: Handle 256 flags 0x00 dlen 18 #191 24.581374 L2CAP: Configure Response (0x05) ident 9 len 10 Source CID: 386 Flags: 0x0000 Result: Success (0x0000) Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 672 > HCI Event: Number of Completed Packets (0x13) plen 5 #192 24.581989 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #189: len 23 (61 Kb/s) Latency: 3 msec (3-63 msec ~6 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #193 24.584904 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #191: len 18 (48 Kb/s) Latency: 3 msec (3-63 msec ~5 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 22 #194 24.614548 L2CAP: Configure Response (0x05) ident 10 len 14 Source CID: 66 Flags: 0x0000 Result: Success (0x0000) Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 672 Option: Flush Timeout (0x02) [mandatory] Flush timeout: 65535 < ACL Data TX: Handle 256 flags 0x00 dlen 12 #195 24.616955 L2CAP: Connection Request (0x02) ident 11 len 4 PSM: 23 (0x0017) Source CID: 67 blueman-manager[13665]: < HCI Command: R.. (0x05|0x0005) plen 2 #196 24.634554 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #197 24.634873 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -16 dBm (0xf0) blueman-manager[13665]: < HCI Command: R.. (0x03|0x002d) plen 3 #198 24.634913 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #199 24.635875 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) > HCI Event: Number of Completed Packets (0x13) plen 5 #200 24.650939 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #195: len 12 (2 Kb/s) Latency: 33 msec (3-63 msec ~19 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 16 #201 24.685450 L2CAP: Connection Response (0x03) ident 11 len 8 Destination CID: 451 Source CID: 67 Result: Connection pending (0x0001) Status: Authorization pending (0x0002) > ACL Data RX: Handle 256 flags 0x02 dlen 16 #202 24.685454 L2CAP: Connection Response (0x03) ident 11 len 8 Destination CID: 451 Source CID: 67 Result: Connection successful (0x0000) Status: No further information available (0x0000) > ACL Data RX: Handle 256 flags 0x02 dlen 10 #203 24.685454 L2CAP: Information Request (0x0a) ident 10 len 2 Type: Extended features supported (0x0002) < ACL Data TX: Handle 256 flags 0x00 dlen 23 #204 24.685571 L2CAP: Configure Request (0x04) ident 12 len 15 Destination CID: 451 Flags: 0x0000 Option: Retransmission and Flow Control (0x04) [mandatory] Mode: Basic (0x00) TX window size: 0 Max transmit: 0 Retransmission timeout: 0 Monitor timeout: 0 Maximum PDU size: 0 < ACL Data TX: Handle 256 flags 0x00 dlen 16 #205 24.685593 L2CAP: Information Response (0x0b) ident 10 len 8 Type: Extended features supported (0x0002) Result: Success (0x0000) Features: 0x000002b8 Enhanced Retransmission Mode Streaming Mode FCS Option Fixed Channels Unicast Connectionless Data Reception > HCI Event: Number of Completed Packets (0x13) plen 5 #206 24.689899 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #204: len 23 (46 Kb/s) Latency: 4 msec (3-63 msec ~11 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #207 24.690894 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #205: len 16 (25 Kb/s) Latency: 5 msec (3-63 msec ~8 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 18 #208 24.694373 L2CAP: Configure Response (0x05) ident 12 len 10 Source CID: 67 Flags: 0x0000 Result: Success (0x0000) Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 672 > ACL Data RX: Handle 256 flags 0x02 dlen 34 #209 24.708404 L2CAP: Configure Request (0x04) ident 11 len 26 Destination CID: 67 Flags: 0x0000 Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 672 Option: Flush Timeout (0x02) [mandatory] Flush timeout: 65535 Option: Retransmission and Flow Control (0x04) [mandatory] Mode: Enhanced Retransmission (0x03) TX window size: 5 Max transmit: 10 Retransmission timeout: 0 Monitor timeout: 0 Maximum PDU size: 960 Option: Frame Check Sequence (0x05) [mandatory] FCS: 16-bit FCS (0x01) < ACL Data TX: Handle 256 flags 0x00 dlen 25 #210 24.708480 L2CAP: Configure Response (0x05) ident 11 len 17 Source CID: 451 Flags: 0x0000 Result: Failure - unacceptable parameters (0x0001) Option: Retransmission and Flow Control (0x04) [mandatory] Mode: Basic (0x00) TX window size: 5 Max transmit: 10 Retransmission timeout: 0 Monitor timeout: 0 Maximum PDU size: 960 > HCI Event: Number of Completed Packets (0x13) plen 5 #211 24.714884 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #210: len 25 (33 Kb/s) Latency: 6 msec (3-63 msec ~7 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 20 #212 24.730431 L2CAP: Configure Request (0x04) ident 12 len 12 Destination CID: 67 Flags: 0x0000 Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 672 Option: Flush Timeout (0x02) [mandatory] Flush timeout: 65535 < ACL Data TX: Handle 256 flags 0x00 dlen 18 #213 24.730517 L2CAP: Configure Response (0x05) ident 12 len 10 Source CID: 451 Flags: 0x0000 Result: Success (0x0000) Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 672 bluetoothd[13648]: < ACL Data TX: Handle 256 flags 0x00 dlen 18 #214 24.731030 Channel: 451 len 14 [PSM 23 mode Basic (0x00)] {chan 3} AVCTP Control: Command: type 0x00 label 0 PID 0x110e AV/C: Status: address 0x48 opcode 0x00 Subunit: Panel Opcode: Vendor Dependent Company ID: 0x001958 AVRCP: GetCapabilities pt Single len 0x0001 CapabilityID: 0x03 (EventsID) > HCI Event: Number of Completed Packets (0x13) plen 5 #215 24.734986 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #213: len 18 (36 Kb/s) Latency: 4 msec (3-63 msec ~5 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #216 24.735937 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #214: len 18 (36 Kb/s) Latency: 4 msec (3-63 msec ~5 msec) Channel: 451 [PSM 23 mode Basic (0x00)] {chan 3} Channel Latency: 4 msec (4-4 msec ~4 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 12 #217 24.755390 L2CAP: Connection Request (0x02) ident 13 len 4 PSM: 1 (0x0001) Source CID: 516 > ACL Data RX: Handle 256 flags 0x02 dlen 21 #218 24.755401 Channel: 67 len 17 [PSM 23 mode Basic (0x00)] {chan 3} AVCTP Control: Response: type 0x00 label 0 PID 0x110e AV/C: Stable: address 0x48 opcode 0x00 Subunit: Panel Opcode: Vendor Dependent Company ID: 0x001958 AVRCP: GetCapabilities pt Single len 0x0004 CapabilityID: 0x03 (EventsID) CapabilityCount: 0x02 EventsID: 0x01 (EVENT_PLAYBACK_STATUS_CHANGED) EventsID: 0x02 (EVENT_TRACK_CHANGED) < ACL Data TX: Handle 256 flags 0x00 dlen 16 #219 24.755532 L2CAP: Connection Response (0x03) ident 13 len 8 Destination CID: 68 Source CID: 516 Result: Connection successful (0x0000) Status: No further information available (0x0000) < ACL Data TX: Handle 256 flags 0x00 dlen 23 #220 24.755558 L2CAP: Configure Request (0x04) ident 13 len 15 Destination CID: 516 Flags: 0x0000 Option: Retransmission and Flow Control (0x04) [mandatory] Mode: Basic (0x00) TX window size: 0 Max transmit: 0 Retransmission timeout: 0 Monitor timeout: 0 Maximum PDU size: 0 > HCI Event: Number of Completed Packets (0x13) plen 5 #221 24.759949 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #219: len 16 (32 Kb/s) Latency: 4 msec (3-63 msec ~4 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #222 24.760955 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #220: len 23 (36 Kb/s) Latency: 5 msec (3-63 msec ~5 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 16 #223 24.793363 L2CAP: Configure Request (0x04) ident 14 len 8 Destination CID: 68 Flags: 0x0000 Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 48 > ACL Data RX: Handle 256 flags 0x02 dlen 14 #224 24.793365 L2CAP: Configure Response (0x05) ident 13 len 6 Source CID: 68 Flags: 0x0000 Result: Success (0x0000) < ACL Data TX: Handle 256 flags 0x00 dlen 18 #225 24.793476 L2CAP: Configure Response (0x05) ident 14 len 10 Source CID: 516 Flags: 0x0000 Result: Success (0x0000) Option: Maximum Transmission Unit (0x01) [mandatory] MTU: 48 > HCI Event: Number of Completed Packets (0x13) plen 5 #226 24.796891 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #225: len 18 (48 Kb/s) Latency: 3 msec (3-63 msec ~4 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 25 #227 24.802381 Channel: 68 len 21 [PSM 1 mode Basic (0x00)] {chan 4} SDP: Service Search Attribute Request (0x06) tid 1 len 16 Search pattern: [len 5] Sequence (6) with 3 bytes [8 extra bits] len 5 UUID (3) with 2 bytes [0 extra bits] len 3 A/V Remote Control Target (0x110c) Max record count: 38 Attribute list: [len 8] Sequence (6) with 6 bytes [8 extra bits] len 8 Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0009 Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0311 Continuation state: 0 bluetoothd[13648]: < ACL Data TX: Handle 256 flags 0x00 dlen 35 #228 24.802621 Channel: 516 len 31 [PSM 1 mode Basic (0x00)] {chan 4} SDP: Service Search Attribute Response (0x07) tid 1 len 26 Attribute bytes: 23 Attribute list: [len 19] {position 0} Attribute: Bluetooth Profile Descriptor List (0x0009) [len 2] Sequence (6) with 6 bytes [8 extra bits] len 8 UUID (3) with 2 bytes [0 extra bits] len 3 A/V Remote Control (0x110e) Unsigned Integer (1) with 2 bytes [0 extra bits] len 3 0x0105 Attribute: Unknown (0x0311) [len 2] 0x005f Continuation state: 0 > HCI Event: Number of Completed Packets (0x13) plen 5 #229 24.814922 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #228: len 35 (23 Kb/s) Latency: 12 msec (3-63 msec ~8 msec) Channel: 516 [PSM 1 mode Basic (0x00)] {chan 4} Channel Latency: 12 msec (12-12 msec ~12 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 12 #230 24.819356 L2CAP: Disconnection Request (0x06) ident 15 len 4 Destination CID: 68 Source CID: 516 < ACL Data TX: Handle 256 flags 0x00 dlen 12 #231 24.819377 L2CAP: Disconnection Response (0x07) ident 15 len 4 Destination CID: 68 Source CID: 516 > HCI Event: Number of Completed Packets (0x13) plen 5 #232 24.822888 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #231: len 12 (32 Kb/s) Latency: 3 msec (3-63 msec ~5 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 18 #233 24.885361 Channel: 67 len 14 [PSM 23 mode Basic (0x00)] {chan 3} AVCTP Control: Command: type 0x00 label 1 PID 0x110e AV/C: Status: address 0x48 opcode 0x00 Subunit: Panel Opcode: Vendor Dependent Company ID: 0x001958 AVRCP: GetCapabilities pt Single len 0x0001 CapabilityID: 0x03 (EventsID) bluetoothd[13648]: < ACL Data TX: Handle 256 flags 0x00 dlen 27 #234 24.885461 Channel: 451 len 23 [PSM 23 mode Basic (0x00)] {chan 3} AVCTP Control: Response: type 0x00 label 1 PID 0x110e AV/C: Stable: address 0x48 opcode 0x00 Subunit: Panel Opcode: Vendor Dependent Company ID: 0x001958 AVRCP: GetCapabilities pt Single len 0x000a CapabilityID: 0x03 (EventsID) CapabilityCount: 0x08 EventsID: 0x01 (EVENT_PLAYBACK_STATUS_CHANGED) EventsID: 0x02 (EVENT_TRACK_CHANGED) EventsID: 0x03 (EVENT_TRACK_REACHED_END) EventsID: 0x04 (EVENT_TRACK_REACHED_START) EventsID: 0x08 (EVENT_PLAYER_APPLICATION_SETTING_CHANGED) EventsID: 0x0a (EVENT_AVAILABLE_PLAYERS_CHANGED) EventsID: 0x0b (EVENT_ADDRESSED_PLAYER_CHANGED) EventsID: 0x0d (EVENT_VOLUME_CHANGED) > HCI Event: Number of Completed Packets (0x13) plen 5 #235 24.890892 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #234: len 27 (43 Kb/s) Latency: 5 msec (3-63 msec ~5 msec) Channel: 451 [PSM 23 mode Basic (0x00)] {chan 3} Channel Latency: 5 msec (4-5 msec ~5 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 22 #236 24.923404 Channel: 67 len 18 [PSM 23 mode Basic (0x00)] {chan 3} AVCTP Control: Command: type 0x00 label 2 PID 0x110e AV/C: Notify: address 0x48 opcode 0x00 Subunit: Panel Opcode: Vendor Dependent Company ID: 0x001958 AVRCP: RegisterNotification pt Single len 0x0005 EventID: 0x01 (EVENT_PLAYBACK_STATUS_CHANGED) Interval: 0x00000000 (0 seconds) bluetoothd[13648]: < ACL Data TX: Handle 256 flags 0x00 dlen 19 #237 24.923576 Channel: 451 len 15 [PSM 23 mode Basic (0x00)] {chan 3} AVCTP Control: Response: type 0x00 label 2 PID 0x110e AV/C: Interim: address 0x48 opcode 0x00 Subunit: Panel Opcode: Vendor Dependent Company ID: 0x001958 AVRCP: RegisterNotification pt Single len 0x0002 EventID: 0x01 (EVENT_PLAYBACK_STATUS_CHANGED) PlayStatus: 0x00 (STOPPED) > HCI Event: Number of Completed Packets (0x13) plen 5 #238 24.926975 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #237: len 19 (50 Kb/s) Latency: 3 msec (3-63 msec ~4 msec) Channel: 451 [PSM 23 mode Basic (0x00)] {chan 3} Channel Latency: 3 msec (3-5 msec ~4 msec) < ACL Data TX: Handle 256 flags 0x00 dlen 12 #239 25.308969 L2CAP: Disconnection Request (0x06) ident 14 len 4 Destination CID: 128 Source CID: 64 > HCI Event: Number of Completed Packets (0x13) plen 5 #240 25.312009 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #239: len 12 (32 Kb/s) Latency: 3 msec (3-63 msec ~3 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 12 #241 25.316426 L2CAP: Disconnection Response (0x07) ident 14 len 4 Destination CID: 128 Source CID: 64 > HCI Event: LE Meta Event (0x3e) plen 54 #242 25.355069 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0012 Props: 0x0012 Scannable Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_SCAN_IND (0x0012) Address type: Random (0x01) Address: 53:DC:BB:AE:74:63 (Resolvable) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -89 dBm (0xa7) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x1c 03 03 9f fe 17 16 9f fe 00 00 00 00 00 00 00 00 ................ 00 00 00 00 00 00 00 00 00 00 00 00 ............ 16-bit Service UUIDs (complete): 1 entry Google (0xfe9f) Service Data: Google (0xfe9f) Data: 0000000000000000000000000000000000000000 @ MGMT Event: Device Found (0x0012) plen 35 {0x0001} 25.355145 LE Address: 28:3C:90:4E:C5:E7 (Texas Instruments) RSSI: -95 dBm (0xa1) Flags: 0x00000000 Data length: 21 Flags: 0x06 LE General Discoverable Mode BR/EDR Not Supported 128-bit Service UUIDs (partial): 1 entry Vendor specific > HCI Event: LE Meta Event (0x3e) plen 56 #243 25.370002 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0013 Props: 0x0013 Connectable Scannable Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_IND (0x0013) Address type: Public (0x00) Address: 68:23:B0:3F:70:CF (Texas Instruments) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -93 dBm (0xa3) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x1e 02 01 06 1a ff 4c 00 02 15 e2 0a 39 f4 73 f5 4b .....L.....9.s.K c4 18 64 17 d1 ad 07 a9 62 a3 40 9c d1 00 ..d.....b.@... Flags: 0x06 LE General Discoverable Mode BR/EDR Not Supported Company: Apple, Inc. (76) Type: iBeacon (2) UUID: 62a907ad-d117-6418-c44b-f573f4390ae2 Version: 16547.53660 TX power: 0 dB @ MGMT Event: Device Found (0x0012) plen 42 {0x0001} 25.370046 LE Address: 53:DC:BB:AE:74:63 (Resolvable) RSSI: -89 dBm (0xa7) Flags: 0x00000004 Not Connectable Data length: 28 16-bit Service UUIDs (complete): 1 entry Google (0xfe9f) Service Data: Google (0xfe9f) Data: 0000000000000000000000000000000000000000 > HCI Event: LE Meta Event (0x3e) plen 45 #244 25.394004 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0013 Props: 0x0013 Connectable Scannable Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_IND (0x0013) Address type: Random (0x01) Address: 55:AE:31:B8:29:78 (Resolvable) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -45 dBm (0xd3) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x13 02 01 1a 02 0a 08 0c ff 4c 00 10 07 3f 1f 2c bb ........L...?.,. 1e 8c 18 ... Flags: 0x1a LE General Discoverable Mode Simultaneous LE and BR/EDR (Controller) Simultaneous LE and BR/EDR (Host) TX power: 8 dBm Company: Apple, Inc. (76) Type: Unknown (16) Data: 3f1f2cbb1e8c18 @ MGMT Event: Device Found (0x0012) plen 44 {0x0001} 25.394099 LE Address: 68:23:B0:3F:70:CF (Texas Instruments) RSSI: -93 dBm (0xa3) Flags: 0x00000000 Data length: 30 Flags: 0x06 LE General Discoverable Mode BR/EDR Not Supported Company: Apple, Inc. (76) Type: iBeacon (2) UUID: 62a907ad-d117-6418-c44b-f573f4390ae2 Version: 16547.53660 TX power: 0 dB blueman-manager[13665]: < HCI Command: R.. (0x05|0x0005) plen 2 #245 25.637577 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #246 25.638037 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -15 dBm (0xf1) blueman-manager[13665]: < HCI Command: R.. (0x03|0x002d) plen 3 #247 25.638234 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #248 25.638949 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) blueman-manager[13665]: < HCI Command: R.. (0x05|0x0005) plen 2 #249 26.637553 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #250 26.637992 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -15 dBm (0xf1) blueman-manager[13665]: < HCI Command: R.. (0x03|0x002d) plen 3 #251 26.638176 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #252 26.638962 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) > HCI Event: LE Meta Event (0x3e) plen 56 #253 26.808277 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0013 Props: 0x0013 Connectable Scannable Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_IND (0x0013) Address type: Public (0x00) Address: F0:10:A5:FB:17:FA (Texas Instruments) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -99 dBm (0x9d) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x1e 02 01 06 1a ff 4c 00 02 15 74 27 8b da b6 44 45 .....L...t'...DE 20 8f 0c 72 0e af 05 99 35 00 00 6b cb c5 ..r....5..k.. Flags: 0x06 LE General Discoverable Mode BR/EDR Not Supported Company: Apple, Inc. (76) Type: iBeacon (2) UUID: 359905af-0e72-0c8f-2045-44b6da8b2774 Version: 0.52075 TX power: -59 dB @ MGMT Event: Device Found (0x0012) plen 33 {0x0001} 26.808456 LE Address: 55:AE:31:B8:29:78 (Resolvable) RSSI: -45 dBm (0xd3) Flags: 0x00000000 Data length: 19 Flags: 0x1a LE General Discoverable Mode Simultaneous LE and BR/EDR (Controller) Simultaneous LE and BR/EDR (Host) TX power: 8 dBm Company: Apple, Inc. (76) Type: Unknown (16) Data: 3f1f2cbb1e8c18 > HCI Event: LE Meta Event (0x3e) plen 57 #254 26.856027 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0013 Props: 0x0013 Connectable Scannable Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_IND (0x0013) Address type: Random (0x01) Address: 56:47:52:8C:5C:49 (Resolvable) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -95 dBm (0xa1) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x1f 02 01 02 1b ff 75 00 02 18 61 a1 70 5b 28 e6 db .....u...a.p[(.. ac 48 c2 a3 d0 b3 0c 7d 4d 59 07 34 4f 79 1d .H.....}MY.4Oy. Flags: 0x02 LE General Discoverable Mode Company: Samsung Electronics Co. Ltd. (117) Data: 021861a1705b28e6dbac48c2a3d0b30c7d4d5907344f791d @ MGMT Event: Device Found (0x0012) plen 44 {0x0001} 26.856047 LE Address: F0:10:A5:FB:17:FA (Texas Instruments) RSSI: -99 dBm (0x9d) Flags: 0x00000000 Data length: 30 Flags: 0x06 LE General Discoverable Mode BR/EDR Not Supported Company: Apple, Inc. (76) Type: iBeacon (2) UUID: 359905af-0e72-0c8f-2045-44b6da8b2774 Version: 0.52075 TX power: -59 dB blueman-manager[13665]: < HCI Command: R.. (0x05|0x0005) plen 2 #255 27.638872 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #256 27.640068 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -16 dBm (0xf0) blueman-manager[13665]: < HCI Command: R.. (0x03|0x002d) plen 3 #257 27.640343 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #258 27.641058 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) > HCI Event: LE Meta Event (0x3e) plen 34 #259 28.029314 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0010 Props: 0x0010 Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_NONCONN_IND (0x0010) Address type: Random (0x01) Address: CC:87:C3:19:35:01 (Static) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -86 dBm (0xaa) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x08 07 ff 4c 00 12 02 00 00 ..L..... Company: Apple, Inc. (76) Type: Unknown (18) Data: 0000 @ MGMT Event: Device Found (0x0012) plen 45 {0x0001} 28.029436 LE Address: 56:47:52:8C:5C:49 (Resolvable) RSSI: -95 dBm (0xa1) Flags: 0x00000000 Data length: 31 Flags: 0x02 LE General Discoverable Mode Company: Samsung Electronics Co. Ltd. (117) Data: 021861a1705b28e6dbac48c2a3d0b30c7d4d5907344f791d @ MGMT Event: Device Found (0x0012) plen 22 {0x0001} 28.029445 LE Address: CC:87:C3:19:35:01 (Static) RSSI: -86 dBm (0xaa) Flags: 0x00000004 Not Connectable Data length: 8 Company: Apple, Inc. (76) Type: Unknown (18) Data: 0000 blueman-manager[13665]: < HCI Command: R.. (0x05|0x0005) plen 2 #260 28.639748 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #261 28.640091 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -15 dBm (0xf1) blueman-manager[13665]: < HCI Command: R.. (0x03|0x002d) plen 3 #262 28.640315 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #263 28.641119 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) blueman-manager[13665]: < HCI Command: R.. (0x05|0x0005) plen 2 #264 29.640940 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #265 29.642191 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -13 dBm (0xf3) blueman-manager[13665]: < HCI Command: R.. (0x03|0x002d) plen 3 #266 29.642460 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #267 29.643161 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) bluetoothd[13648]: @ MGMT Command: Add De.. (0x0033) plen 8 {0x0001} 29.781469 LE Address: EF:36:6F:77:29:0D (Static) Action: Auto-connect remote device (0x02) @ MGMT Event: Device Flags Changed (0x002a) plen 15 {0x0001} 29.791511 LE Address: EF:36:6F:77:29:0D (Static) Supported Flags: 0x00000001 Remote Wakeup Current Flags: 0x00000000 @ MGMT Event: Command Complete (0x0001) plen 10 {0x0001} 29.791517 Add Device (0x0033) plen 7 Status: Success (0x00) LE Address: EF:36:6F:77:29:0D (Static) bluetoothd[13648]: @ MGMT Command: Set D.. (0x0050) plen 11 {0x0001} 29.791754 LE Address: EF:36:6F:77:29:0D (Static) Current Flags: 0x00000001 Remote Wakeup @ MGMT Event: Command Complete (0x0001) plen 10 {0x0001} 29.791758 Set Device Flags (0x0050) plen 7 Status: Success (0x00) LE Address: EF:36:6F:77:29:0D (Static) > HCI Event: LE Meta Event (0x3e) plen 57 #268 29.919252 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0010 Props: 0x0010 Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_NONCONN_IND (0x0010) Address type: Random (0x01) Address: 26:FD:71:21:4E:11 (Non-Resolvable) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -96 dBm (0xa0) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x1f 1e 16 f3 fe 4a 17 23 4f 58 33 46 11 32 88 4d 1d ....J.#OX3F.2.M. 7e 1c 14 42 02 c1 57 a3 ce cf 68 ed b9 8c b1 ~..B..W...h.... Service Data: Google (0xfef3) Data: 4a17234f5833461132884d1d7e1c144202c157a3cecf68edb98cb1 @ MGMT Event: Device Found (0x0012) plen 45 {0x0001} 29.919375 LE Address: 26:FD:71:21:4E:11 (Non-Resolvable) RSSI: -96 dBm (0xa0) Flags: 0x00000004 Not Connectable Data length: 31 Service Data: Google (0xfef3) Data: 4a17234f5833461132884d1d7e1c144202c157a3cecf68edb98cb1 > HCI Event: LE Meta Event (0x3e) plen 43 #269 29.933203 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0013 Props: 0x0013 Connectable Scannable Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_IND (0x0013) Address type: Random (0x01) Address: 63:A7:94:5E:18:A1 (Resolvable) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -68 dBm (0xbc) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x11 02 01 1a 0a ff 4c 00 10 05 2e 18 72 54 b2 02 0a .....L.....rT... 00 . Flags: 0x1a LE General Discoverable Mode Simultaneous LE and BR/EDR (Controller) Simultaneous LE and BR/EDR (Host) Company: Apple, Inc. (76) Type: Unknown (16) Data: 2e187254b2 TX power: 0 dBm > HCI Event: LE Meta Event (0x3e) plen 43 #270 30.010247 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0013 Props: 0x0013 Connectable Scannable Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_IND (0x0013) Address type: Random (0x01) Address: 4A:7F:9C:4B:24:32 (Resolvable) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -51 dBm (0xcd) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x11 02 01 1a 0a ff 4c 00 10 05 20 18 23 00 41 02 0a .....L... .#.A.. 00 . Flags: 0x1a LE General Discoverable Mode Simultaneous LE and BR/EDR (Controller) Simultaneous LE and BR/EDR (Host) Company: Apple, Inc. (76) Type: Unknown (16) Data: 2018230041 TX power: 0 dBm @ MGMT Event: Device Found (0x0012) plen 31 {0x0001} 30.010325 LE Address: 63:A7:94:5E:18:A1 (Resolvable) RSSI: -68 dBm (0xbc) Flags: 0x00000000 Data length: 17 Flags: 0x1a LE General Discoverable Mode Simultaneous LE and BR/EDR (Controller) Simultaneous LE and BR/EDR (Host) Company: Apple, Inc. (76) Type: Unknown (16) Data: 2e187254b2 TX power: 0 dBm @ MGMT Event: Discovering (0x0013) plen 2 {0x0001} 30.140422 Address type: 0x07 BR/EDR LE Public LE Random Discovery: Disabled (0x00) < HCI Command: LE Set Extended Scan Enable (0x08|0x0042) plen 6 #271 30.140447 Extended scan: Disabled (0x00) Filter duplicates: Disabled (0x00) Duration: 0 msec (0x0000) Period: 0.00 sec (0x0000) > HCI Event: Command Complete (0x0e) plen 4 #272 30.152189 LE Set Extended Scan Enable (0x08|0x0042) ncmd 2 Status: Success (0x00) < HCI Command: LE Add Device To Accept L.. (0x08|0x0011) plen 7 #273 30.152317 Address type: Random (0x01) Address: EF:36:6F:77:29:0D (Static) > HCI Event: Command Complete (0x0e) plen 4 #274 30.153103 LE Add Device To Accept List (0x08|0x0011) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Extended Scan Par.. (0x08|0x0041) plen 13 #275 30.153192 Own address type: Public (0x00) Filter policy: Ignore not in accept list (0x01) PHYs: 0x05 Entry 0: LE 1M Type: Passive (0x00) Interval: 60.000 msec (0x0060) Window: 60.000 msec (0x0060) Entry 1: LE Coded Type: Passive (0x00) Interval: 180.000 msec (0x0120) Window: 180.000 msec (0x0120) > HCI Event: Command Complete (0x0e) plen 4 #276 30.155162 LE Set Extended Scan Parameters (0x08|0x0041) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Extended Scan Enable (0x08|0x0042) plen 6 #277 30.155317 Extended scan: Enabled (0x01) Filter duplicates: Enabled (0x01) Duration: 0 msec (0x0000) Period: 0.00 sec (0x0000) > HCI Event: Command Complete (0x0e) plen 4 #278 30.157171 LE Set Extended Scan Enable (0x08|0x0042) ncmd 2 Status: Success (0x00) > HCI Event: LE Meta Event (0x3e) plen 52 #279 30.185172 LE Extended Advertising Report (0x0d) Num reports: 1 Entry 0 Event type: 0x0013 Props: 0x0013 Connectable Scannable Use legacy advertising PDUs Data status: [0;32mComplete[0m Legacy PDU Type: ADV_IND (0x0013) Address type: Random (0x01) Address: EF:36:6F:77:29:0D (Static) Primary PHY: LE 1M Secondary PHY: No packets SID: no ADI field (0xff) TX power: 127 dBm RSSI: -50 dBm (0xce) Periodic advertising interval: 0.00 msec (0x0000) Direct address type: Public (0x00) Direct address: 00:00:00:00:00:00 (OUI 00-00-00) Data length: 0x1a 02 01 05 03 19 c2 03 03 03 12 18 0e 09 4d 58 20 .............MX 41 6e 79 77 68 65 72 65 20 33 Anywhere 3 Flags: 0x05 LE Limited Discoverable Mode BR/EDR Not Supported Appearance: Mouse (0x03c2) 16-bit Service UUIDs (complete): 1 entry Human Interface Device (0x1812) Name (complete): MX Anywhere 3 < HCI Command: LE Set Extended Scan Enable (0x08|0x0042) plen 6 #280 30.185287 Extended scan: Disabled (0x00) Filter duplicates: Disabled (0x00) Duration: 0 msec (0x0000) Period: 0.00 sec (0x0000) > HCI Event: Command Complete (0x0e) plen 4 #281 30.190167 LE Set Extended Scan Enable (0x08|0x0042) ncmd 2 Status: Success (0x00) < HCI Command: LE Extended Create Conne.. (0x08|0x0043) plen 26 #282 30.190376 Filter policy: Accept list is not used (0x00) Own address type: Public (0x00) Peer address type: Random (0x01) Peer address: EF:36:6F:77:29:0D (Static) Initiating PHYs: 0x01 Entry 0: LE 1M Scan interval: 60.000 msec (0x0060) Scan window: 60.000 msec (0x0060) Min connection interval: 30.00 msec (0x0018) Max connection interval: 50.00 msec (0x0028) Connection latency: 0 (0x0000) Supervision timeout: 420 msec (0x002a) Min connection length: 0.000 msec (0x0000) Max connection length: 0.000 msec (0x0000) > HCI Event: Command Status (0x0f) plen 4 #283 30.192116 LE Extended Create Connection (0x08|0x0043) ncmd 2 Status: Success (0x00) > HCI Event: LE Meta Event (0x3e) plen 31 #284 30.505225 LE Enhanced Connection Complete (0x0a) Status: Success (0x00) Handle: 3585 Role: Central (0x00) Peer address type: Random (0x01) Peer address: EF:36:6F:77:29:0D (Static) Local resolvable private address: 00:00:00:00:00:00 (Non-Resolvable) Peer resolvable private address: 00:00:00:00:00:00 (Non-Resolvable) Connection interval: 45.00 msec (0x0024) Connection latency: 0 (0x0000) Supervision timeout: 420 msec (0x002a) Central clock accuracy: 0x00 @ MGMT Event: Device Connected (0x000b) plen 39 {0x0001} 30.505332 LE Address: EF:36:6F:77:29:0D (Static) Flags: 0x00000008 Connection Locally Initiated Data length: 26 Flags: 0x05 LE Limited Discoverable Mode BR/EDR Not Supported Appearance: Mouse (0x03c2) 16-bit Service UUIDs (complete): 1 entry Human Interface Device (0x1812) Name (complete): MX Anywhere 3 > HCI Event: LE Meta Event (0x3e) plen 4 #285 30.506194 LE Channel Selection Algorithm (0x14) Handle: 3585 Address: EF:36:6F:77:29:0D (Static) Algorithm: #2 (0x01) < HCI Command: LE Read Remote Used Featu.. (0x08|0x0016) plen 2 #286 30.512437 Handle: 3585 Address: EF:36:6F:77:29:0D (Static) > HCI Event: Command Status (0x0f) plen 4 #287 30.514239 LE Read Remote Used Features (0x08|0x0016) ncmd 1 Status: Success (0x00) blueman-manager[13665]: @ RAW Open: blueman-.. version 2.22 {0x0003} 30.524843 bluetoothd[13648]: < ACL Data TX: Handle 256 flags 0x00 dlen 7 #288 30.575123 Channel: 193 len 3 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Start (0x07) Command (0x00) type 0x00 label 7 nosp 0 ACP SEID: 1 > HCI Event: Number of Completed Packets (0x13) plen 5 #289 30.578127 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #288: len 7 (18 Kb/s) Latency: 3 msec (3-63 msec ~3 msec) Channel: 193 [PSM 25 mode Basic (0x00)] {chan 1} Channel Latency: 3 msec (3-35 msec ~9 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 6 #290 30.587367 Channel: 65 len 2 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Start (0x07) Response Accept (0x02) type 0x00 label 7 nosp 0 > HCI Event: LE Meta Event (0x3e) plen 12 #291 30.596134 LE Read Remote Used Features (0x04) Status: Success (0x00) Handle: 3585 Address: EF:36:6F:77:29:0D (Static) Features: 0x05 0x41 0x00 0x00 0x00 0x00 0x00 0x00 LE Encryption Extended Reject Indication LE 2M PHY Channel Selection Algorithm #2 bluetoothd[13648]: < ACL Data TX: Handle 3585 flags 0x00 dlen 7 #292 30.596578 ATT: Exchange MTU Request (0x02) len 2 Client RX MTU: 517 bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #293 30.615686 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #294 30.622152 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #293: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~4 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-6 msec ~6 msec) blueman-manager[13665]: < HCI Command: R.. (0x05|0x0005) plen 2 #295 30.640437 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) > HCI Event: Command Complete (0x0e) plen 7 #296 30.641145 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -12 dBm (0xf4) blueman-manager[13665]: < HCI Command: R.. (0x03|0x002d) plen 3 #297 30.641382 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #298 30.642048 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Command Complete (0x0e) plen 7 #299 30.642138 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) > HCI Event: Number of Completed Packets (0x13) plen 5 #300 30.648191 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #298: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~5 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-6 msec ~6 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #301 30.655434 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #302 30.666198 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #301: len 612 (489 Kb/s) Latency: 10 msec (3-63 msec ~8 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 10 msec (6-10 msec ~8 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #303 30.668699 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #304 30.682105 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #305 30.686242 Num handles: 1 Handle: 3585 Address: EF:36:6F:77:29:0D (Static) Count: 1 #292: len 7 (0 Kb/s) Latency: 89 msec (89-89 msec ~89 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #306 30.693247 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #303: len 612 (204 Kb/s) Latency: 24 msec (3-63 msec ~16 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 24 msec (6-24 msec ~16 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #307 30.695486 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #308 30.697219 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #304: len 612 (326 Kb/s) Latency: 15 msec (3-63 msec ~15 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 15 msec (6-24 msec ~15 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #309 30.702206 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #307: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~11 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-24 msec ~11 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #310 30.708740 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #311 30.716220 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #310: len 612 (699 Kb/s) Latency: 7 msec (3-63 msec ~9 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 7 msec (6-24 msec ~9 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #312 30.722023 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #313 30.728243 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #312: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~7 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-24 msec ~7 msec) > ACL Data RX: Handle 3585 flags 0x02 dlen 7 #314 30.732418 ATT: Exchange MTU Response (0x03) len 2 Server RX MTU: 23 bluetoothd[13648]: < ACL Data TX: Handle 3.. flags 0x00 dlen 11 #315 30.732819 ATT: Read By Type Request (0x08) len 6 Handle range: 0x0001-0xffff Attribute type: Server Supported Features (0x2b3a) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #316 30.735454 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #317 30.748715 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #318 30.762077 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #319 30.772216 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #316: len 612 (136 Kb/s) Latency: 36 msec (3-63 msec ~22 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 36 msec (6-36 msec ~22 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #320 30.775397 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #321 30.776156 Num handles: 1 Handle: 3585 Address: EF:36:6F:77:29:0D (Static) Count: 1 #315: len 11 (2 Kb/s) Latency: 43 msec (43-89 msec ~66 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #322 30.778215 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #317: len 612 (168 Kb/s) Latency: 29 msec (3-63 msec ~25 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 29 msec (6-36 msec ~25 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #323 30.782219 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #318: len 612 (244 Kb/s) Latency: 20 msec (3-63 msec ~23 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 20 msec (6-36 msec ~23 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #324 30.786205 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #320: len 612 (489 Kb/s) Latency: 10 msec (3-63 msec ~16 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 10 msec (6-36 msec ~16 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #325 30.788751 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #326 30.802016 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #327 30.811205 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #325: len 612 (222 Kb/s) Latency: 22 msec (3-63 msec ~19 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 22 msec (6-36 msec ~19 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #328 30.815419 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #329 30.819158 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #326: len 612 (288 Kb/s) Latency: 17 msec (3-63 msec ~18 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 17 msec (6-36 msec ~18 msec) > ACL Data RX: Handle 3585 flags 0x02 dlen 9 #330 30.822396 ATT: Error Response (0x01) len 4 Read By Type Request (0x08) Handle: 0x0001 Error: Attribute Not Found (0x0a) bluetoothd[13648]: < ACL Data TX: Handle 3.. flags 0x00 dlen 11 #331 30.822703 ATT: Read By Group Type Request (0x10) len 6 Handle range: 0x0001-0xffff Attribute group type: Primary Service (0x2800) > HCI Event: Number of Completed Packets (0x13) plen 5 #332 30.825244 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #328: len 612 (544 Kb/s) Latency: 9 msec (3-63 msec ~14 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 9 msec (6-36 msec ~14 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #333 30.828757 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #334 30.840182 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #333: len 612 (445 Kb/s) Latency: 11 msec (3-63 msec ~12 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 11 msec (6-36 msec ~12 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #335 30.842018 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #336 30.848237 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #335: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~9 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-36 msec ~9 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #337 30.855409 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #338 30.865362 Num handles: 1 Handle: 3585 Address: EF:36:6F:77:29:0D (Static) Count: 1 #331: len 11 (2 Kb/s) Latency: 42 msec (42-89 msec ~54 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #339 30.868753 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #340 30.874236 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #337: len 612 (272 Kb/s) Latency: 18 msec (3-63 msec ~14 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 18 msec (6-36 msec ~14 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #341 30.878168 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #339: len 612 (544 Kb/s) Latency: 9 msec (3-63 msec ~11 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 9 msec (6-36 msec ~11 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #342 30.882042 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #343 30.888177 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #342: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~8 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-36 msec ~8 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #344 30.895488 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #345 30.902246 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #344: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~7 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-36 msec ~7 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #346 30.908743 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > ACL Data RX: Handle 3585 flags 0x02 dlen 24 #347 30.911376 ATT: Read By Group Type Response (0x11) len 19 Attribute data length: 6 Attribute group list: 3 entries Handle range: 0x0001-0x0009 UUID: Generic Access Profile (0x1800) Handle range: 0x000a-0x000d UUID: Generic Attribute Profile (0x1801) Handle range: 0x000e-0x001c UUID: Device Information (0x180a) bluetoothd[13648]: < ACL Data TX: Handle 3.. flags 0x00 dlen 11 #348 30.911662 ATT: Read By Group Type Request (0x10) len 6 Handle range: 0x001d-0xffff Attribute group type: Primary Service (0x2800) > HCI Event: Number of Completed Packets (0x13) plen 5 #349 30.915216 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #346: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~7 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-36 msec ~7 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #350 30.922047 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #351 30.932264 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #350: len 612 (489 Kb/s) Latency: 10 msec (3-63 msec ~8 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 10 msec (6-36 msec ~8 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #352 30.935435 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #353 30.946436 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #352: len 612 (445 Kb/s) Latency: 11 msec (3-63 msec ~9 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 11 msec (6-36 msec ~9 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #354 30.948776 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #355 30.955259 Num handles: 1 Handle: 3585 Address: EF:36:6F:77:29:0D (Static) Count: 1 #348: len 11 (2 Kb/s) Latency: 43 msec (42-89 msec ~49 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #356 30.961223 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #354: len 612 (408 Kb/s) Latency: 12 msec (3-63 msec ~11 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 12 msec (6-36 msec ~11 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #357 30.962012 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #358 30.968213 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #357: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~8 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-36 msec ~8 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #359 30.975422 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #360 30.982232 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #359: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~7 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-36 msec ~7 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #361 30.988774 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #362 30.996421 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #361: len 612 (699 Kb/s) Latency: 7 msec (3-63 msec ~7 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 7 msec (6-36 msec ~7 msec) > ACL Data RX: Handle 3585 flags 0x02 dlen 18 #363 31.001440 ATT: Read By Group Type Response (0x11) len 13 Attribute data length: 6 Attribute group list: 2 entries Handle range: 0x001d-0x0020 UUID: Battery Service (0x180f) Handle range: 0x0021-0x0037 UUID: Human Interface Device (0x1812) bluetoothd[13648]: < ACL Data TX: Handle 3.. flags 0x00 dlen 11 #364 31.001783 ATT: Read By Group Type Request (0x10) len 6 Handle range: 0x0038-0xffff Attribute group type: Primary Service (0x2800) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #365 31.002035 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #366 31.015633 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #367 31.025408 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #365: len 612 (212 Kb/s) Latency: 23 msec (3-63 msec ~15 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 23 msec (6-36 msec ~15 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #368 31.028233 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #366: len 612 (408 Kb/s) Latency: 12 msec (3-63 msec ~14 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 12 msec (6-36 msec ~14 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #369 31.028765 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #370 31.036256 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #369: len 612 (699 Kb/s) Latency: 7 msec (3-63 msec ~10 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 7 msec (6-36 msec ~10 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #371 31.042089 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #372 31.045415 Num handles: 1 Handle: 3585 Address: EF:36:6F:77:29:0D (Static) Count: 1 #364: len 11 (2 Kb/s) Latency: 43 msec (42-89 msec ~46 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #373 31.050223 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #371: len 612 (612 Kb/s) Latency: 8 msec (3-63 msec ~9 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 8 msec (6-36 msec ~9 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #374 31.055497 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #375 31.066267 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #374: len 612 (489 Kb/s) Latency: 10 msec (3-63 msec ~10 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 10 msec (6-36 msec ~10 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #376 31.068772 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #377 31.082097 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > ACL Data RX: Handle 3585 flags 0x02 dlen 26 #378 31.091442 ATT: Read By Group Type Response (0x11) len 21 Attribute data length: 20 Attribute group list: 1 entry Handle range: 0x0038-0xffff UUID: Vendor specific (00010000-0000-1000-8000-011f2000046d) bluetoothd[13648]: < ACL Data TX: Handle 3.. flags 0x00 dlen 11 #379 31.091810 ATT: Read By Group Type Request (0x10) len 6 Handle range: 0x0001-0xffff Attribute group type: Secondary Service (0x2801) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #380 31.095461 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #381 31.102229 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #376: len 612 (148 Kb/s) Latency: 33 msec (3-63 msec ~21 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 33 msec (6-36 msec ~21 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #382 31.108744 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #383 31.110235 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #377: len 612 (174 Kb/s) Latency: 28 msec (3-63 msec ~24 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 28 msec (6-36 msec ~24 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #384 31.114236 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #380: len 612 (272 Kb/s) Latency: 18 msec (3-63 msec ~21 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 18 msec (6-36 msec ~21 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #385 31.122084 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #386 31.130404 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #382: len 612 (233 Kb/s) Latency: 21 msec (3-63 msec ~21 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 21 msec (6-36 msec ~21 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #387 31.135221 Num handles: 1 Handle: 3585 Address: EF:36:6F:77:29:0D (Static) Count: 1 #379: len 11 (2 Kb/s) Latency: 43 msec (42-89 msec ~44 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #388 31.135425 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #389 31.140211 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #385: len 612 (272 Kb/s) Latency: 18 msec (3-63 msec ~19 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 18 msec (6-36 msec ~19 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #390 31.148252 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #388: len 612 (408 Kb/s) Latency: 12 msec (3-63 msec ~16 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 12 msec (6-36 msec ~16 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #391 31.148760 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #392 31.162301 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #393 31.167255 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #391: len 612 (272 Kb/s) Latency: 18 msec (3-63 msec ~17 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 18 msec (6-36 msec ~17 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #394 31.171215 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #392: len 612 (612 Kb/s) Latency: 8 msec (3-63 msec ~13 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 8 msec (6-36 msec ~13 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #395 31.175483 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > ACL Data RX: Handle 3585 flags 0x02 dlen 9 #396 31.181609 ATT: Error Response (0x01) len 4 Read By Group Type Request (0x10) Handle: 0x0001 Error: Attribute Not Found (0x0a) bluetoothd[13648]: < ACL Data TX: Handle 3.. flags 0x00 dlen 11 #397 31.182028 ATT: Read By Type Request (0x08) len 6 Handle range: 0x0001-0xffff Attribute type: Include (0x2802) > HCI Event: Number of Completed Packets (0x13) plen 5 #398 31.188265 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #395: len 612 (408 Kb/s) Latency: 12 msec (3-63 msec ~12 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 12 msec (6-36 msec ~12 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #399 31.188771 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #400 31.202088 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #401 31.204251 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #399: len 612 (326 Kb/s) Latency: 15 msec (3-63 msec ~14 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 15 msec (6-36 msec ~14 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #402 31.215638 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #403 31.216206 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #400: len 612 (349 Kb/s) Latency: 14 msec (3-63 msec ~14 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 14 msec (6-36 msec ~14 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #404 31.222209 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #402: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~10 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-36 msec ~10 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #405 31.225262 Num handles: 1 Handle: 3585 Address: EF:36:6F:77:29:0D (Static) Count: 1 #397: len 11 (2 Kb/s) Latency: 43 msec (42-89 msec ~44 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #406 31.228752 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #407 31.236257 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #406: len 612 (699 Kb/s) Latency: 7 msec (3-63 msec ~8 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 7 msec (6-36 msec ~8 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #408 31.242122 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #409 31.248377 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #408: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~7 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-36 msec ~7 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #410 31.255436 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #411 31.266216 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #410: len 612 (489 Kb/s) Latency: 10 msec (3-63 msec ~9 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 10 msec (6-36 msec ~9 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #412 31.268705 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > ACL Data RX: Handle 3585 flags 0x02 dlen 9 #413 31.272391 ATT: Error Response (0x01) len 4 Read By Type Request (0x08) Handle: 0x0001 Error: Attribute Not Found (0x0a) bluetoothd[13648]: < ACL Data TX: Handle 3.. flags 0x00 dlen 11 #414 31.272689 ATT: Read By Type Request (0x08) len 6 Handle range: 0x0001-0xffff Attribute type: Characteristic (0x2803) > HCI Event: Number of Completed Packets (0x13) plen 5 #415 31.278371 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #412: len 612 (544 Kb/s) Latency: 9 msec (3-63 msec ~9 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 9 msec (6-36 msec ~9 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #416 31.282091 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #417 31.288224 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #416: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~7 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-36 msec ~7 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #418 31.295474 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #419 31.302277 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #418: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~7 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-36 msec ~7 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #420 31.308733 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #421 31.315283 Num handles: 1 Handle: 3585 Address: EF:36:6F:77:29:0D (Static) Count: 1 #414: len 11 (2 Kb/s) Latency: 42 msec (42-89 msec ~43 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #422 31.321257 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #420: len 612 (408 Kb/s) Latency: 12 msec (3-63 msec ~9 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 12 msec (6-36 msec ~9 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #423 31.322039 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #424 31.328265 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #423: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~8 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-36 msec ~8 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #425 31.335507 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #426 31.346363 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #425: len 612 (489 Kb/s) Latency: 10 msec (3-63 msec ~9 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 10 msec (6-36 msec ~9 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #427 31.348798 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #428 31.356249 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #427: len 612 (699 Kb/s) Latency: 7 msec (3-63 msec ~8 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 7 msec (6-36 msec ~8 msec) > ACL Data RX: Handle 3585 flags 0x02 dlen 27 #429 31.361437 ATT: Read By Type Response (0x09) len 22 Attribute data length: 7 Attribute data list: 3 entries Handle: 0x0002 Value: 0a0300002a Properties: 0x0a Read (0x02) Write (0x08) Value Handle: 0x0003 Value UUID: Device Name (0x2a00) Handle: 0x0004 Value: 020500012a Properties: 0x02 Read (0x02) Value Handle: 0x0005 Value UUID: Appearance (0x2a01) Handle: 0x0006 Value: 020700042a Properties: 0x02 Read (0x02) Value Handle: 0x0007 Value UUID: Peripheral Preferred Connection Parameters (0x2a04) bluetoothd[13648]: < ACL Data TX: Handle 3.. flags 0x00 dlen 11 #430 31.361750 ATT: Read By Type Request (0x08) len 6 Handle range: 0x0007-0xffff Attribute type: Characteristic (0x2803) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #431 31.362110 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #432 31.370264 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #431: len 612 (612 Kb/s) Latency: 8 msec (3-63 msec ~8 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 8 msec (6-36 msec ~8 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #433 31.375416 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #434 31.382374 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #433: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~7 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-36 msec ~7 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #435 31.388754 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #436 31.396353 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #435: len 612 (699 Kb/s) Latency: 7 msec (3-63 msec ~7 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 7 msec (6-36 msec ~7 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 9 #437 31.397406 Channel: 65 len 5 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Delay Report (0x0d) Command (0x00) type 0x00 label 3 nosp 0 ACP SEID: 7 Delay: 103.3ms bluetoothd[13648]: < ACL Data TX: Handle 256 flags 0x00 dlen 6 #438 31.397738 Channel: 193 len 2 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Delay Report (0x0d) Response Accept (0x02) type 0x00 label 3 nosp 0 bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #439 31.402037 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #440 31.402208 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #438: len 6 (12 Kb/s) Latency: 4 msec (3-63 msec ~6 msec) Channel: 193 [PSM 25 mode Basic (0x00)] {chan 1} Channel Latency: 4 msec (3-35 msec ~6 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #441 31.405219 Num handles: 1 Handle: 3585 Address: EF:36:6F:77:29:0D (Static) Count: 1 #430: len 11 (2 Kb/s) Latency: 43 msec (42-89 msec ~43 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #442 31.410368 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #439: len 612 (612 Kb/s) Latency: 8 msec (3-63 msec ~7 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 8 msec (6-36 msec ~7 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #443 31.415476 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #444 31.426254 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #443: len 612 (489 Kb/s) Latency: 10 msec (3-63 msec ~8 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 10 msec (6-36 msec ~9 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #445 31.428788 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #446 31.436254 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #445: len 612 (699 Kb/s) Latency: 7 msec (3-63 msec ~8 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 7 msec (6-36 msec ~8 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #447 31.442071 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #448 31.448386 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #447: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~7 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-36 msec ~7 msec) > ACL Data RX: Handle 3585 flags 0x02 dlen 27 #449 31.451430 ATT: Read By Type Response (0x09) len 22 Attribute data length: 7 Attribute data list: 3 entries Handle: 0x0008 Value: 020900a62a Properties: 0x02 Read (0x02) Value Handle: 0x0009 Value UUID: Central Address Resolution (0x2aa6) Handle: 0x000b Value: 200c00052a Properties: 0x20 Indicate (0x20) Value Handle: 0x000c Value UUID: Service Changed (0x2a05) Handle: 0x000f Value: 021000292a Properties: 0x02 Read (0x02) Value Handle: 0x0010 Value UUID: Manufacturer Name String (0x2a29) bluetoothd[13648]: < ACL Data TX: Handle 3.. flags 0x00 dlen 11 #450 31.451798 ATT: Read By Type Request (0x08) len 6 Handle range: 0x0010-0xffff Attribute type: Characteristic (0x2803) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #451 31.455442 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #452 31.462393 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #451: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~7 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-36 msec ~7 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #453 31.468775 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #454 31.476361 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #453: len 612 (699 Kb/s) Latency: 7 msec (3-63 msec ~7 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 7 msec (6-36 msec ~7 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #455 31.482156 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #456 31.488269 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #455: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~6 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-36 msec ~6 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #457 31.495278 Num handles: 1 Handle: 3585 Address: EF:36:6F:77:29:0D (Static) Count: 1 #450: len 11 (2 Kb/s) Latency: 43 msec (42-89 msec ~43 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #458 31.495460 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #459 31.502244 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #458: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~6 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-36 msec ~6 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #460 31.508741 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #461 31.516232 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #460: len 612 (699 Kb/s) Latency: 7 msec (3-63 msec ~7 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 7 msec (6-36 msec ~7 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #462 31.522026 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #463 31.535432 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #464 31.536270 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #462: len 612 (349 Kb/s) Latency: 14 msec (3-63 msec ~10 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 14 msec (6-36 msec ~10 msec) > ACL Data RX: Handle 3585 flags 0x02 dlen 27 #465 31.541375 ATT: Read By Type Response (0x09) len 22 Attribute data length: 7 Attribute data list: 3 entries Handle: 0x0011 Value: 021200242a Properties: 0x02 Read (0x02) Value Handle: 0x0012 Value UUID: Model Number String (0x2a24) Handle: 0x0013 Value: 021400252a Properties: 0x02 Read (0x02) Value Handle: 0x0014 Value UUID: Serial Number String (0x2a25) Handle: 0x0015 Value: 021600272a Properties: 0x02 Read (0x02) Value Handle: 0x0016 Value UUID: Hardware Revision String (0x2a27) bluetoothd[13648]: < ACL Data TX: Handle 3.. flags 0x00 dlen 11 #466 31.541574 ATT: Read By Type Request (0x08) len 6 Handle range: 0x0016-0xffff Attribute type: Characteristic (0x2803) > HCI Event: Number of Completed Packets (0x13) plen 5 #467 31.545207 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #463: len 612 (544 Kb/s) Latency: 9 msec (3-63 msec ~10 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 9 msec (6-36 msec ~10 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #468 31.548793 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #469 31.560272 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #468: len 612 (445 Kb/s) Latency: 11 msec (3-63 msec ~10 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 11 msec (6-36 msec ~10 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #470 31.562124 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #471 31.568259 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #470: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~8 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-36 msec ~8 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #472 31.575447 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #473 31.585191 Num handles: 1 Handle: 3585 Address: EF:36:6F:77:29:0D (Static) Count: 1 #466: len 11 (2 Kb/s) Latency: 43 msec (42-89 msec ~43 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #474 31.588763 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #475 31.590217 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #472: len 612 (349 Kb/s) Latency: 14 msec (3-63 msec ~11 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 14 msec (6-36 msec ~11 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #476 31.602100 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #477 31.604182 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #474: len 612 (326 Kb/s) Latency: 15 msec (3-63 msec ~13 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 15 msec (6-36 msec ~13 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #478 31.608173 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #476: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~9 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-36 msec ~9 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #479 31.615441 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #480 31.622202 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #479: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~8 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-36 msec ~8 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #481 31.628731 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > ACL Data RX: Handle 3585 flags 0x02 dlen 27 #482 31.631441 ATT: Read By Type Response (0x09) len 22 Attribute data length: 7 Attribute data list: 3 entries Handle: 0x0017 Value: 021800262a Properties: 0x02 Read (0x02) Value Handle: 0x0018 Value UUID: Firmware Revision String (0x2a26) Handle: 0x0019 Value: 021a00282a Properties: 0x02 Read (0x02) Value Handle: 0x001a Value UUID: Software Revision String (0x2a28) Handle: 0x001b Value: 021c00502a Properties: 0x02 Read (0x02) Value Handle: 0x001c Value UUID: PnP ID (0x2a50) bluetoothd[13648]: < ACL Data TX: Handle 3.. flags 0x00 dlen 11 #483 31.631752 ATT: Read By Type Request (0x08) len 6 Handle range: 0x001c-0xffff Attribute type: Characteristic (0x2803) > HCI Event: Number of Completed Packets (0x13) plen 5 #484 31.638238 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #481: len 612 (544 Kb/s) Latency: 9 msec (3-63 msec ~8 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 9 msec (6-36 msec ~8 msec) blueman-manager[13665]: < HCI Command: R.. (0x05|0x0005) plen 2 #485 31.641254 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #486 31.642033 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Command Complete (0x0e) plen 7 #487 31.643167 Read RSSI (0x05|0x0005) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) RSSI: -13 dBm (0xf3) blueman-manager[13665]: < HCI Command: R.. (0x03|0x002d) plen 3 #488 31.643376 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Type: Current Transmit Power Level (0x00) > HCI Event: Command Complete (0x0e) plen 7 #489 31.645230 Read Transmit Power Level (0x03|0x002d) ncmd 1 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) TX power: 12 dbm (0x0c) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #490 31.655407 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #491 31.657170 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #486: len 612 (326 Kb/s) Latency: 15 msec (3-63 msec ~12 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 15 msec (6-36 msec ~12 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #492 31.662217 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #490: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~9 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-36 msec ~9 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #493 31.668766 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #494 31.675282 Num handles: 1 Handle: 3585 Address: EF:36:6F:77:29:0D (Static) Count: 1 #483: len 11 (2 Kb/s) Latency: 43 msec (42-89 msec ~43 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #495 31.678401 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #493: len 612 (544 Kb/s) Latency: 9 msec (3-63 msec ~9 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 9 msec (6-36 msec ~9 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #496 31.682188 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #497 31.688246 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #496: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~7 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-36 msec ~7 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #498 31.695630 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #499 31.702292 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #498: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~7 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-36 msec ~7 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #500 31.708757 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #501 31.716294 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #500: len 612 (699 Kb/s) Latency: 7 msec (3-63 msec ~7 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 7 msec (6-36 msec ~7 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #502 31.722096 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > ACL Data RX: Handle 3585 flags 0x02 dlen 27 #503 31.722378 ATT: Read By Type Response (0x09) len 22 Attribute data length: 7 Attribute data list: 3 entries Handle: 0x001e Value: 121f00192a Properties: 0x12 Read (0x02) Notify (0x10) Value Handle: 0x001f Value UUID: Battery Level (0x2a19) Handle: 0x0022 Value: 0223004a2a Properties: 0x02 Read (0x02) Value Handle: 0x0023 Value UUID: HID Information (0x2a4a) Handle: 0x0024 Value: 122500332a Properties: 0x12 Read (0x02) Notify (0x10) Value Handle: 0x0025 Value UUID: Boot Mouse Input Report (0x2a33) bluetoothd[13648]: < ACL Data TX: Handle 3.. flags 0x00 dlen 11 #504 31.722629 ATT: Read By Type Request (0x08) len 6 Handle range: 0x0025-0xffff Attribute type: Characteristic (0x2803) > HCI Event: Number of Completed Packets (0x13) plen 5 #505 31.728379 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #502: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~6 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-36 msec ~6 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #506 31.735463 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #507 31.748983 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #508 31.750266 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #506: len 612 (349 Kb/s) Latency: 14 msec (3-63 msec ~10 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 14 msec (6-36 msec ~10 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #509 31.760263 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #507: len 612 (445 Kb/s) Latency: 11 msec (3-63 msec ~11 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 11 msec (6-36 msec ~11 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #510 31.762086 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #511 31.765258 Num handles: 1 Handle: 3585 Address: EF:36:6F:77:29:0D (Static) Count: 1 #504: len 11 (2 Kb/s) Latency: 42 msec (42-89 msec ~43 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #512 31.770241 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #510: len 612 (612 Kb/s) Latency: 8 msec (3-63 msec ~9 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 8 msec (6-36 msec ~9 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #513 31.775467 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #514 31.782424 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #513: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~8 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-36 msec ~8 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #515 31.788764 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #516 31.796268 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #515: len 612 (699 Kb/s) Latency: 7 msec (3-63 msec ~7 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 7 msec (6-36 msec ~7 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #517 31.802101 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > ACL Data RX: Handle 3585 flags 0x02 dlen 27 #518 31.811561 ATT: Read By Type Response (0x09) len 22 Attribute data length: 7 Attribute data list: 3 entries Handle: 0x0027 Value: 0228004b2a Properties: 0x02 Read (0x02) Value Handle: 0x0028 Value UUID: Report Map (0x2a4b) Handle: 0x0029 Value: 122a004d2a Properties: 0x12 Read (0x02) Notify (0x10) Value Handle: 0x002a Value UUID: Report (0x2a4d) Handle: 0x002d Value: 122e004d2a Properties: 0x12 Read (0x02) Notify (0x10) Value Handle: 0x002e Value UUID: Report (0x2a4d) bluetoothd[13648]: < ACL Data TX: Handle 3.. flags 0x00 dlen 11 #519 31.811980 ATT: Read By Type Request (0x08) len 6 Handle range: 0x002e-0xffff Attribute type: Characteristic (0x2803) > HCI Event: Number of Completed Packets (0x13) plen 5 #520 31.815398 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #517: len 612 (376 Kb/s) Latency: 13 msec (3-63 msec ~10 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 13 msec (6-36 msec ~10 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #521 31.815499 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #522 31.822271 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #521: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~8 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-36 msec ~8 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #523 31.828806 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #524 31.836300 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #523: len 612 (699 Kb/s) Latency: 7 msec (3-63 msec ~8 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 7 msec (6-36 msec ~8 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #525 31.842088 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #526 31.848287 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #525: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~7 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-36 msec ~7 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #527 31.855249 Num handles: 1 Handle: 3585 Address: EF:36:6F:77:29:0D (Static) Count: 1 #519: len 11 (2 Kb/s) Latency: 43 msec (42-89 msec ~43 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #528 31.855401 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #529 31.862384 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #528: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~7 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-36 msec ~7 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #530 31.868755 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #531 31.876295 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #530: len 612 (699 Kb/s) Latency: 7 msec (3-63 msec ~7 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 7 msec (6-36 msec ~7 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #532 31.882147 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #533 31.888275 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #532: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~6 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-36 msec ~6 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #534 31.895440 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > ACL Data RX: Handle 3585 flags 0x02 dlen 27 #535 31.902428 ATT: Read By Type Response (0x09) len 22 Attribute data length: 7 Attribute data list: 3 entries Handle: 0x0031 Value: 0e32004d2a Properties: 0x0e Read (0x02) Write Without Response (0x04) Write (0x08) Value Handle: 0x0032 Value UUID: Report (0x2a4d) Handle: 0x0034 Value: 0435004c2a Properties: 0x04 Write Without Response (0x04) Value Handle: 0x0035 Value UUID: HID Control Point (0x2a4c) Handle: 0x0036 Value: 0637004e2a Properties: 0x06 Read (0x02) Write Without Response (0x04) Value Handle: 0x0037 Value UUID: Protocol Mode (0x2a4e) bluetoothd[13648]: < ACL Data TX: Handle 3.. flags 0x00 dlen 11 #536 31.902788 ATT: Read By Type Request (0x08) len 6 Handle range: 0x0037-0xffff Attribute type: Characteristic (0x2803) > HCI Event: Number of Completed Packets (0x13) plen 5 #537 31.908292 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #534: len 612 (408 Kb/s) Latency: 12 msec (3-63 msec ~9 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 12 msec (6-36 msec ~9 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #538 31.908737 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #539 31.916237 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #538: len 612 (699 Kb/s) Latency: 7 msec (3-63 msec ~8 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 7 msec (6-36 msec ~8 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #540 31.922083 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #541 31.932322 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #540: len 612 (489 Kb/s) Latency: 10 msec (3-63 msec ~9 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 10 msec (6-36 msec ~9 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #542 31.935421 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #543 31.942285 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #542: len 612 (816 Kb/s) Latency: 6 msec (3-63 msec ~8 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 6 msec (6-36 msec ~8 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 7 #544 31.944406 Channel: 65 len 3 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Close (0x08) Command (0x00) type 0x00 label 4 nosp 0 ACP SEID: 7 > ACL Data RX: Handle 256 flags 0x02 dlen 12 #545 31.944408 L2CAP: Disconnection Request (0x06) ident 16 len 4 Destination CID: 67 Source CID: 451 < ACL Data TX: Handle 256 flags 0x00 dlen 12 #546 31.944481 L2CAP: Disconnection Response (0x07) ident 16 len 4 Destination CID: 67 Source CID: 451 bluetoothd[13648]: < ACL Data TX: Handle 256 flags 0x00 dlen 6 #547 31.944659 Channel: 193 len 2 [PSM 25 mode Basic (0x00)] {chan 1} AVDTP: Close (0x08) Response Accept (0x02) type 0x00 label 4 nosp 0 > HCI Event: Number of Completed Packets (0x13) plen 5 #548 31.945183 Num handles: 1 Handle: 3585 Address: EF:36:6F:77:29:0D (Static) Count: 1 #536: len 11 (2 Kb/s) Latency: 42 msec (42-89 msec ~42 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #549 31.948273 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #546: len 12 (32 Kb/s) Latency: 3 msec (3-63 msec ~5 msec) bluetoothd[13648]: < ACL Data TX: Handle... flags 0x02 dlen 612 #550 31.948742 Channel: 386 len 608 [PSM 25 mode Basic (0x00)] {chan 2} > HCI Event: Number of Completed Packets (0x13) plen 5 #551 31.950263 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #547: len 6 (9 Kb/s) Latency: 5 msec (3-63 msec ~5 msec) Channel: 193 [PSM 25 mode Basic (0x00)] {chan 1} Channel Latency: 5 msec (3-35 msec ~6 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 12 #552 31.960627 L2CAP: Disconnection Request (0x06) ident 17 len 4 Destination CID: 66 Source CID: 386 < ACL Data TX: Handle 256 flags 0x00 dlen 12 #553 31.961199 L2CAP: Disconnection Response (0x07) ident 17 len 4 Destination CID: 66 Source CID: 386 > HCI Event: Number of Completed Packets (0x13) plen 5 #554 31.971254 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #550: len 612 (222 Kb/s) Latency: 22 msec (3-63 msec ~14 msec) Channel: 386 [PSM 25 mode Basic (0x00)] {chan 2} Channel Latency: 22 msec (6-36 msec ~15 msec) > HCI Event: Number of Completed Packets (0x13) plen 5 #555 31.972238 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #553: len 12 (8 Kb/s) Latency: 11 msec (3-63 msec ~12 msec) > ACL Data RX: Handle 256 flags 0x02 dlen 12 #556 31.978401 L2CAP: Disconnection Request (0x06) ident 18 len 4 Destination CID: 65 Source CID: 193 < ACL Data TX: Handle 256 flags 0x00 dlen 12 #557 31.978848 L2CAP: Disconnection Response (0x07) ident 18 len 4 Destination CID: 65 Source CID: 193 > HCI Event: Number of Completed Packets (0x13) plen 5 #558 31.982255 Num handles: 1 Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Count: 1 #557: len 12 (32 Kb/s) Latency: 3 msec (3-63 msec ~8 msec) > ACL Data RX: Handle 3585 flags 0x02 dlen 27 #559 31.992364 ATT: Read By Type Response (0x09) len 22 Attribute data length: 21 Attribute data list: 1 entry Handle: 0x0039 Value: 1e3a006d0400201f0100800010000001000100 Properties: 0x1e Read (0x02) Write Without Response (0x04) Write (0x08) Notify (0x10) Value Handle: 0x003a Value UUID: Vendor specific (00010001-0000-1000-8000-011f2000046d) bluetoothd[13648]: < ACL Data TX: Handle 3.. flags 0x00 dlen 11 #560 31.992457 ATT: Read By Type Request (0x08) len 6 Handle range: 0x003a-0xffff Attribute type: Characteristic (0x2803) > HCI Event: Number of Completed Packets (0x13) plen 5 #561 32.035306 Num handles: 1 Handle: 3585 Address: EF:36:6F:77:29:0D (Static) Count: 1 #560: len 11 (2 Kb/s) Latency: 42 msec (42-89 msec ~42 msec) > ACL Data RX: Handle 3585 flags 0x02 dlen 9 #562 32.081558 ATT: Error Response (0x01) len 4 Read By Type Request (0x08) Handle: 0x003a Error: Attribute Not Found (0x0a) bluetoothd[13648]: < ACL Data TX: Handle 3585 flags 0x00 dlen 9 #563 32.082049 ATT: Find Information Request (0x04) len 4 Handle range: 0x002b-0x002c > HCI Event: Number of Completed Packets (0x13) plen 5 #564 32.125240 Num handles: 1 Handle: 3585 Address: EF:36:6F:77:29:0D (Static) Count: 1 #563: len 9 (1 Kb/s) Latency: 43 msec (42-89 msec ~43 msec) > ACL Data RX: Handle 3585 flags 0x02 dlen 14 #565 32.171800 ATT: Find Information Response (0x05) len 9 Format: UUID-16 (0x01) Handle: 0x002b UUID: Client Characteristic Configuration (0x2902) Handle: 0x002c UUID: Report Reference (0x2908) bluetoothd[13648]: < ACL Data TX: Handle 3585 flags 0x00 dlen 9 #566 32.172191 ATT: Find Information Request (0x04) len 4 Handle range: 0x002f-0x0030 > HCI Event: Number of Completed Packets (0x13) plen 5 #567 32.215481 Num handles: 1 Handle: 3585 Address: EF:36:6F:77:29:0D (Static) Count: 1 #566: len 9 (1 Kb/s) Latency: 43 msec (42-89 msec ~43 msec) > ACL Data RX: Handle 3585 flags 0x02 dlen 14 #568 32.261390 ATT: Find Information Response (0x05) len 9 Format: UUID-16 (0x01) Handle: 0x002f UUID: Client Characteristic Configuration (0x2902) Handle: 0x0030 UUID: Report Reference (0x2908) bluetoothd[13648]: < ACL Data TX: Handle 3585 flags 0x00 dlen 9 #569 32.261809 ATT: Find Information Request (0x04) len 4 Handle range: 0x0033-0x0033 > HCI Event: Number of Completed Packets (0x13) plen 5 #570 32.305321 Num handles: 1 Handle: 3585 Address: EF:36:6F:77:29:0D (Static) Count: 1 #569: len 9 (1 Kb/s) Latency: 43 msec (42-89 msec ~43 msec) > ACL Data RX: Handle 3585 flags 0x02 dlen 10 #571 32.351461 ATT: Find Information Response (0x05) len 5 Format: UUID-16 (0x01) Handle: 0x0033 UUID: Report Reference (0x2908) bluetoothd[13648]: < ACL Data TX: Handle 3585 flags 0x00 dlen 9 #572 32.351906 ATT: Find Information Request (0x04) len 4 Handle range: 0x003b-0xffff > HCI Event: Disconnect Complete (0x05) plen 4 #573 32.392470 Status: Success (0x00) Handle: 256 Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Reason: Remote User Terminated Connection (0x13) @ MGMT Event: Device Disconnected (0x000c) plen 8 {0x0001} 32.392576 BR/EDR Address: C4:30:18:62:E2:01 (MCS Logic Inc.) Reason: Connection terminated by remote host (0x03) > HCI Event: Number of Completed Packets (0x13) plen 5 #574 32.396279 Num handles: 1 Handle: 3585 Address: EF:36:6F:77:29:0D (Static) Count: 1 #572: len 9 (1 Kb/s) Latency: 44 msec (42-89 msec ~43 msec) < HCI Command: Write Scan Enable (0x03|0x001a) plen 1 #575 32.404545 Scan enable: Page Scan (0x02) > HCI Event: Command Complete (0x0e) plen 4 #576 32.406208 Write Scan Enable (0x03|0x001a) ncmd 2 Status: Success (0x00) > ACL Data RX: Handle 3585 flags 0x02 dlen 10 #577 32.441379 ATT: Find Information Response (0x05) len 5 Format: UUID-16 (0x01) Handle: 0x003b UUID: Client Characteristic Configuration (0x2902) bluetoothd[13648]: < ACL Data TX: Handle 3585 flags 0x00 dlen 9 #578 32.441677 ATT: Find Information Request (0x04) len 4 Handle range: 0x003c-0xffff > HCI Event: Number of Completed Packets (0x13) plen 5 #579 32.485274 Num handles: 1 Handle: 3585 Address: EF:36:6F:77:29:0D (Static) Count: 1 #578: len 9 (1 Kb/s) Latency: 43 msec (42-89 msec ~43 msec) > ACL Data RX: Handle 3585 flags 0x02 dlen 9 #580 32.531371 ATT: Error Response (0x01) len 4 Find Information Request (0x04) Handle: 0x003c Error: Attribute Not Found (0x0a) < ACL Data TX: Handle 3585 flags 0x00 dlen 11 #581 32.541535 SMP: Pairing Request (0x01) len 6 IO capability: KeyboardDisplay (0x04) OOB data: Authentication data not present (0x00) Authentication requirement: Bonding, MITM, SC, No Keypresses, CT2 (0x2d) Max encryption key size: 16 Initiator key distribution: EncKey Sign LinkKey (0x0d) Responder key distribution: EncKey IdKey Sign LinkKey (0x0f) > HCI Event: Number of Completed Packets (0x13) plen 5 #582 32.575203 Num handles: 1 Handle: 3585 Address: EF:36:6F:77:29:0D (Static) Count: 1 #581: len 11 (2 Kb/s) Latency: 33 msec (33-89 msec ~38 msec) blueman-manager[13665]: @ RAW Close: blueman-manager {0x0002} 32.641512 > ACL Data RX: Handle 3585 flags 0x02 dlen 11 #583 32.711553 SMP: Pairing Response (0x02) len 6 IO capability: NoInputNoOutput (0x03) OOB data: Authentication data not present (0x00) Authentication requirement: Bonding, No MITM, SC, No Keypresses (0x09) Max encryption key size: 16 Initiator key distribution: <none> (0x00) Responder key distribution: EncKey IdKey (0x03) < ACL Data TX: Handle 3585 flags 0x00 dlen 69 #584 32.729995 SMP: Pairing Public Key (0x0c) len 64 X: 4e6725b192d32a989ac0b7c4fffa9ff860e08569395b1ab91d8aae1ef2bf5d17 Y: 056ae3ecec7a4941099204fd63b1cc0adceb5432ba362bd076617e56d1821596 > HCI Event: Number of Completed Packets (0x13) plen 5 #585 32.757341 Num handles: 1 Handle: 3585 Address: EF:36:6F:77:29:0D (Static) Count: 1 #584: len 69 (20 Kb/s) Latency: 27 msec (27-89 msec ~33 msec) > ACL Data RX: Handle 3585 flags 0x02 dlen 27 #586 32.802375 > ACL Data RX: Handle 3585 flags 0x01 dlen 27 #587 32.802379 > ACL Data RX: Handle 3585 flags 0x01 dlen 15 #588 32.802380 SMP: Pairing Public Key (0x0c) len 64 X: 27f094c97e18dbe4434af3666d035e01496496f4c2f35463ba90fcfc27ecd1c8 Y: a896fbd5ff0e60d28e3f30f46bdcf9dc451eac846e212227785778805cecf875 > ACL Data RX: Handle 3585 flags 0x02 dlen 21 #589 32.802380 SMP: Pairing Confirm (0x03) len 16 Confim value: 89452116412a11a48d85117c9baa0068 < ACL Data TX: Handle 3585 flags 0x00 dlen 21 #590 32.805020 SMP: Pairing Random (0x04) len 16 Random value: 077738b483d4bb0405500c72ec6742d2 > HCI Event: Number of Completed Packets (0x13) plen 5 #591 32.845498 Num handles: 1 Handle: 3585 Address: EF:36:6F:77:29:0D (Static) Count: 1 #590: len 21 (4 Kb/s) Latency: 40 msec (27-89 msec ~36 msec) > ACL Data RX: Handle 3585 flags 0x02 dlen 21 #592 32.891385 SMP: Pairing Random (0x04) len 16 Random value: 38d87370cf53d8bdb2605795b764768f @ MGMT Event: User Confirmation Request (0x000f) plen 12 {0x0001} 32.891475 LE Address: EF:36:6F:77:29:0D (Static) Confirm hint: 0x01 Value: 0x000f4045