All of lore.kernel.org
 help / color / mirror / Atom feed
* Have to delete "/var/lib/bluetooth" folder in order to get all service characteristics available
@ 2021-03-17  7:36 Kenny Bian
  2021-03-17 18:15 ` Luiz Augusto von Dentz
  0 siblings, 1 reply; 5+ messages in thread
From: Kenny Bian @ 2021-03-17  7:36 UTC (permalink / raw)
  To: linux-bluetooth

In order to keep the pairing information, we carry over the
"/var/lib/bluetooth" folder from an older build to the new build in
the Linux system when doing firmware upgrade. This way, our end user
doesn't have to choose "Forget This Device" each time after the
firmware upgrade. Otherwise, our end user has to "Forget This Device"
and re-pair because the pairing info can't be found in the Linux
device. We also set the GATT cache as "no" in
"/etc/bluetooth/main.conf". Then the mobile app won't crash when there
is any "service changed" such as adding notification to some existing
characteristics.

We organize our characteristics under the services. There are 10
services on the Linux device. Each service has 5 to 10
characteristics. However, we found a new problem recently. The problem
is: the first 8 services are fine. But the last one or two services
only have the service UUID listed in nRF or our mobile app. There are
no characteristics showing up under these one or two services. This
caused our mobile app can't read the characteristics data under these
problematic services. I checked the nRF. It's the same thing. nRF only
shows the last one or two services with the service UUIDs. There are
no characteristics listed under those 2 services.

In order to fix this issue, we have to do these(let's call it "The Steps"):
- Remove the "/var/lib/bluetooth" folder from the Linux system
- Restart our BlueZ based service in Python in the Linux system
- Choose "Forget This Device" on the iPhone. After this operation, the
"/var/lib/bluetooth" is generated in the Linux device.
- Connect to the device from our mobile app or from nRF. We can see
all of the 10 services in the list. Each characteristic under the
service can be seen.
- We are able to read the data by using our mobile app or by using nRF

I compared the files in the "/var/lib/bluetooth" folder. As we
disabled the GATT cache, there is no "cache" folder. There are only 2
files in the folder. Here is the folder structure:
/var/lib/bluetooth:
    |
    +----00:11:22:33:44:55/
        |
        +----6C:92:11:87:11:25/
            |
            +----attributes
            +----info

I kept one copy of the files after the firmware upgrade. I also kept a
copy of the files after the folder was re-generated. I compared the
file "attributes" and "info". For the attributes, they are the same.
For the "info" file, there are only 3 differences:
[General]
Name=PhoneX
. . .

[SlaveLongTermKey]
Key=252256E19E26F3ED9FD0B99B7B5B0193
. . .

[LinkKey]
Key=1B593296571E2C48CF6952E60395E304
. . .


I don't think these differences could cause the issue. But the fact
is, if I delete the "/var/lib/bluetooth" folder and go thru "The
Steps" above, the problem will be gone. All of the services will have
their characteristics showing up in nRF. The data can be read from the
characteristics. This means the folder "/var/lib/bluetooth" is related
to the issue. But I don't know why.

Here is also another thing. I subscribed to the "PropertiesChanged"
signal. In the callback function "properties_changed", I print out the
"changed". Here is the code to subscribe the "PropertiesChanged":

        bus.add_signal_receiver(
            properties_changed,
            dbus_interface="org.freedesktop.DBus.Properties",
            signal_name="PropertiesChanged",
            arg0="org.bluez.Device1",
            path_keyword="path",
        )

If the folder "/var/lib/bluetooth" is removed and go thru "The Steps",
I saw the log like this:
dbus.Dictionary({dbus.String('UUIDs'):
dbus.Array([dbus.String('00000000-deca-fade-deca-deafdecacafe'),
dbus.String('00001000-0000-1000-8000-00805f9b34fb'),
dbus.String('0000110a-0000-1000-8000-00805f9b34fb'),
dbus.String('0000110c-0000-1000-8000-00805f9b34fb'),
dbus.String('0000110e-0000-1000-8000-00805f9b34fb'),
dbus.String('00001116-0000-1000-8000-00805f9b34fb'),
dbus.String('0000111f-0000-1000-8000-00805f9b34fb'),
dbus.String('0000112f-0000-1000-8000-00805f9b34fb'),
dbus.String('00001132-0000-1000-8000-00805f9b34fb'),
dbus.String('00001200-0000-1000-8000-00805f9b34fb'),
dbus.String('00001800-0000-1000-8000-00805f9b34fb'),
dbus.String('00001801-0000-1000-8000-00805f9b34fb'),
dbus.String('00001805-0000-1000-8000-00805f9b34fb'),
dbus.String('0000180a-0000-1000-8000-00805f9b34fb'),
dbus.String('0000180f-0000-1000-8000-00805f9b34fb'),
dbus.String('02030302-1d19-415f-86f2-22a2106a0a77'),
dbus.String('7905f431-b5ce-4e99-a40f-4b1e122d00d0'),
dbus.String('89d3502b-0f36-433a-8ef4-c502ad55f8dc'),
dbus.String('9fa480e0-4967-4542-9390-d343dc5d04ae'),
dbus.String('d0611e78-bbb4-4591-a5f8-487910ae4366')],
signature=dbus.Signature('s'), variant_level=1),
dbus.String('ServicesResolved'): dbus.Boolean(True, variant_level=1)},
signature=dbus.Signature('sv'))

If I check the log after the firmware is upgraded without deleting the
"/var/lib/bluetooth" folder, the log looks like this:
dbus.Dictionary({dbus.String('ServicesResolved'): dbus.Boolean(True,
variant_level=1)}, signature=dbus.Signature('sv'))

As we can see, they are different. Is it something to do with D-Bus?

We understand that if we don't carry over the "/var/lib/bluetooth"
folder, then there is no this issue. But our end user will have to
choose "Forget This Device" each time after the firmware is upgraded.
Otherwise, the end user can't connect to the Linux device because the
pairing info can't be found. Is there a way to fix this issue? Namely,
is there a way to keep the pairing info and also avoid this issue?

Thanks in advance!

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

* Re: Have to delete "/var/lib/bluetooth" folder in order to get all service characteristics available
  2021-03-17  7:36 Have to delete "/var/lib/bluetooth" folder in order to get all service characteristics available Kenny Bian
@ 2021-03-17 18:15 ` Luiz Augusto von Dentz
  2021-03-18  5:17   ` Kenny Bian
  0 siblings, 1 reply; 5+ messages in thread
From: Luiz Augusto von Dentz @ 2021-03-17 18:15 UTC (permalink / raw)
  To: Kenny Bian; +Cc: linux-bluetooth

Hi Kenny,

On Wed, Mar 17, 2021 at 12:40 AM Kenny Bian <kennybian@gmail.com> wrote:
>
> In order to keep the pairing information, we carry over the
> "/var/lib/bluetooth" folder from an older build to the new build in
> the Linux system when doing firmware upgrade. This way, our end user
> doesn't have to choose "Forget This Device" each time after the
> firmware upgrade. Otherwise, our end user has to "Forget This Device"
> and re-pair because the pairing info can't be found in the Linux
> device. We also set the GATT cache as "no" in
> "/etc/bluetooth/main.conf". Then the mobile app won't crash when there
> is any "service changed" such as adding notification to some existing
> characteristics.

But the cache only applies to client, service changed is for the
server not sure why your mobile would be crashing with that, or is it
disabling ServiceChanged indications with that? If there is no
indication that would explain why the services are not updated since
the mobile OS won't notice any changes on the database.

> We organize our characteristics under the services. There are 10
> services on the Linux device. Each service has 5 to 10
> characteristics. However, we found a new problem recently. The problem
> is: the first 8 services are fine. But the last one or two services
> only have the service UUID listed in nRF or our mobile app. There are
> no characteristics showing up under these one or two services. This
> caused our mobile app can't read the characteristics data under these
> problematic services. I checked the nRF. It's the same thing. nRF only
> shows the last one or two services with the service UUIDs. There are
> no characteristics listed under those 2 services.
>
> In order to fix this issue, we have to do these(let's call it "The Steps"):
> - Remove the "/var/lib/bluetooth" folder from the Linux system
> - Restart our BlueZ based service in Python in the Linux system
> - Choose "Forget This Device" on the iPhone. After this operation, the
> "/var/lib/bluetooth" is generated in the Linux device.
> - Connect to the device from our mobile app or from nRF. We can see
> all of the 10 services in the list. Each characteristic under the
> service can be seen.
> - We are able to read the data by using our mobile app or by using nRF
>
> I compared the files in the "/var/lib/bluetooth" folder. As we
> disabled the GATT cache, there is no "cache" folder. There are only 2
> files in the folder. Here is the folder structure:
> /var/lib/bluetooth:
>     |
>     +----00:11:22:33:44:55/
>         |
>         +----6C:92:11:87:11:25/
>             |
>             +----attributes
>             +----info
>
> I kept one copy of the files after the firmware upgrade. I also kept a
> copy of the files after the folder was re-generated. I compared the
> file "attributes" and "info". For the attributes, they are the same.
> For the "info" file, there are only 3 differences:
> [General]
> Name=PhoneX
> . . .
>
> [SlaveLongTermKey]
> Key=252256E19E26F3ED9FD0B99B7B5B0193
> . . .
>
> [LinkKey]
> Key=1B593296571E2C48CF6952E60395E304
> . . .
>
>
> I don't think these differences could cause the issue. But the fact
> is, if I delete the "/var/lib/bluetooth" folder and go thru "The
> Steps" above, the problem will be gone. All of the services will have
> their characteristics showing up in nRF. The data can be read from the
> characteristics. This means the folder "/var/lib/bluetooth" is related
> to the issue. But I don't know why.
>
> Here is also another thing. I subscribed to the "PropertiesChanged"
> signal. In the callback function "properties_changed", I print out the
> "changed". Here is the code to subscribe the "PropertiesChanged":
>
>         bus.add_signal_receiver(
>             properties_changed,
>             dbus_interface="org.freedesktop.DBus.Properties",
>             signal_name="PropertiesChanged",
>             arg0="org.bluez.Device1",
>             path_keyword="path",
>         )
>
> If the folder "/var/lib/bluetooth" is removed and go thru "The Steps",
> I saw the log like this:
> dbus.Dictionary({dbus.String('UUIDs'):
> dbus.Array([dbus.String('00000000-deca-fade-deca-deafdecacafe'),
> dbus.String('00001000-0000-1000-8000-00805f9b34fb'),
> dbus.String('0000110a-0000-1000-8000-00805f9b34fb'),
> dbus.String('0000110c-0000-1000-8000-00805f9b34fb'),
> dbus.String('0000110e-0000-1000-8000-00805f9b34fb'),
> dbus.String('00001116-0000-1000-8000-00805f9b34fb'),
> dbus.String('0000111f-0000-1000-8000-00805f9b34fb'),
> dbus.String('0000112f-0000-1000-8000-00805f9b34fb'),
> dbus.String('00001132-0000-1000-8000-00805f9b34fb'),
> dbus.String('00001200-0000-1000-8000-00805f9b34fb'),
> dbus.String('00001800-0000-1000-8000-00805f9b34fb'),
> dbus.String('00001801-0000-1000-8000-00805f9b34fb'),
> dbus.String('00001805-0000-1000-8000-00805f9b34fb'),
> dbus.String('0000180a-0000-1000-8000-00805f9b34fb'),
> dbus.String('0000180f-0000-1000-8000-00805f9b34fb'),
> dbus.String('02030302-1d19-415f-86f2-22a2106a0a77'),
> dbus.String('7905f431-b5ce-4e99-a40f-4b1e122d00d0'),
> dbus.String('89d3502b-0f36-433a-8ef4-c502ad55f8dc'),
> dbus.String('9fa480e0-4967-4542-9390-d343dc5d04ae'),
> dbus.String('d0611e78-bbb4-4591-a5f8-487910ae4366')],
> signature=dbus.Signature('s'), variant_level=1),
> dbus.String('ServicesResolved'): dbus.Boolean(True, variant_level=1)},
> signature=dbus.Signature('sv'))
>
> If I check the log after the firmware is upgraded without deleting the
> "/var/lib/bluetooth" folder, the log looks like this:
> dbus.Dictionary({dbus.String('ServicesResolved'): dbus.Boolean(True,
> variant_level=1)}, signature=dbus.Signature('sv'))
>
> As we can see, they are different. Is it something to do with D-Bus?
>
> We understand that if we don't carry over the "/var/lib/bluetooth"
> folder, then there is no this issue. But our end user will have to
> choose "Forget This Device" each time after the firmware is upgraded.
> Otherwise, the end user can't connect to the Linux device because the
> pairing info can't be found. Is there a way to fix this issue? Namely,
> is there a way to keep the pairing info and also avoid this issue?

This sounds like ServiceChanged is not being properly propagated when
you do the firmware update, do you have ServiceChanged entry on the
storage:

https://git.kernel.org/pub/scm/bluetooth/bluez.git/tree/doc/settings-storage.txt#n321

Is there any indication on btmon when you first connect after doing
the firmware update?

-- 
Luiz Augusto von Dentz

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

* Re: Have to delete "/var/lib/bluetooth" folder in order to get all service characteristics available
  2021-03-17 18:15 ` Luiz Augusto von Dentz
@ 2021-03-18  5:17   ` Kenny Bian
  2021-03-18 16:29     ` Luiz Augusto von Dentz
  0 siblings, 1 reply; 5+ messages in thread
From: Kenny Bian @ 2021-03-18  5:17 UTC (permalink / raw)
  To: Luiz Augusto von Dentz; +Cc: linux-bluetooth

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

Thank you so much for your reply, Luiz.

We have a small device which runs a Linux system in it. In this
embedded Linux system, there is GATT server runs BLE service which
provides the services with the characteristics for reading and writing
from the mobile device such as iPhone. The folder "/var/lib/bluetooth"
is in the embedded Linux system. We call this embedded Linux as BLE
Server, and the iPhone as the BLE Client. During the testing a few
weeks ago, not only our mobile app crashed, but the nRF also crashed
as the service was changed. Since we have no way to tell whether the
ServiceChanged indication works or not. We disabled the bluetooth
cache. Then we have this new issue.

I never saw the "[ServiceChanged]" section from the "info" file. I
tried to change the attributes of some characteristics. For example,
adding notification in some characteristics. Then restart the BlE
service from the Linux system. I did check the "info" file after that,
but I didn't see the "[ServiceChanged]" section. Is there another way
to have the "[ServiceChanged]" showing up?

Today, I ran the testing again by doing the firmware upgrade. Right
after the firmware upgrade, I used the btmon to capture the
characteristics reading by using our mobile app. Please see the
attached log. As you can see, there are a lot of errors because there
are 5 services which only have the service itself listed(I checked it
by using nRF). For about 30 characteristics under those services can't
be seen. That's why there are errors when the mobile app tries to read
the data. I double checked, the BLE python files between these two
versions of the firmware are exactly the same. So there are no
ServiceChanged. As the reading didn't work, I had to remove the
"/var/lib/bluetooth" folder. Then this folder was recreated again. I
compared the file "attributes" and "info" before and after removal of
the "/var/lib/bluetooth" folder. The "attributes" files are exactly
the same. The "info" files are different. But it makes sense because
only the "[SlaveLongTermKey]" and "[LinkKey]" are different which is
caused by re-pairing from the mobile side, I guess.

So in this case, the BLE service python code is exactly the same. The
"attributes" and "info" files are also the same or slightly different
because of the re-pairing. How come some characteristics cannot be
seen from nRF? As those characteristics are not listed in nRF, neither
nRF or our mobile app can read the data.

Honestly, this situation is pretty much the same as there is no
firmware upgrade because the service file itself and those files under
"/var/lib/bluetooth" are almost the same. How come the normal reading
from the mobile app works fine? But after the firmware upgrade, some
characteristics can't be seen? Is there anything wrong about
advertisement? In fact, the firmware upgrade only copy over the
"/var/lib/bluetooth" in order to keep the pairing information. I have
no idea something went wrong. Are there anything else to look into?

Thanks in advance!

On Wed, Mar 17, 2021 at 11:15 AM Luiz Augusto von Dentz
<luiz.dentz@gmail.com> wrote:
>
> Hi Kenny,
>
> On Wed, Mar 17, 2021 at 12:40 AM Kenny Bian <kennybian@gmail.com> wrote:
> >
> > In order to keep the pairing information, we carry over the
> > "/var/lib/bluetooth" folder from an older build to the new build in
> > the Linux system when doing firmware upgrade. This way, our end user
> > doesn't have to choose "Forget This Device" each time after the
> > firmware upgrade. Otherwise, our end user has to "Forget This Device"
> > and re-pair because the pairing info can't be found in the Linux
> > device. We also set the GATT cache as "no" in
> > "/etc/bluetooth/main.conf". Then the mobile app won't crash when there
> > is any "service changed" such as adding notification to some existing
> > characteristics.
>
> But the cache only applies to client, service changed is for the
> server not sure why your mobile would be crashing with that, or is it
> disabling ServiceChanged indications with that? If there is no
> indication that would explain why the services are not updated since
> the mobile OS won't notice any changes on the database.
>
> > We organize our characteristics under the services. There are 10
> > services on the Linux device. Each service has 5 to 10
> > characteristics. However, we found a new problem recently. The problem
> > is: the first 8 services are fine. But the last one or two services
> > only have the service UUID listed in nRF or our mobile app. There are
> > no characteristics showing up under these one or two services. This
> > caused our mobile app can't read the characteristics data under these
> > problematic services. I checked the nRF. It's the same thing. nRF only
> > shows the last one or two services with the service UUIDs. There are
> > no characteristics listed under those 2 services.
> >
> > In order to fix this issue, we have to do these(let's call it "The Steps"):
> > - Remove the "/var/lib/bluetooth" folder from the Linux system
> > - Restart our BlueZ based service in Python in the Linux system
> > - Choose "Forget This Device" on the iPhone. After this operation, the
> > "/var/lib/bluetooth" is generated in the Linux device.
> > - Connect to the device from our mobile app or from nRF. We can see
> > all of the 10 services in the list. Each characteristic under the
> > service can be seen.
> > - We are able to read the data by using our mobile app or by using nRF
> >
> > I compared the files in the "/var/lib/bluetooth" folder. As we
> > disabled the GATT cache, there is no "cache" folder. There are only 2
> > files in the folder. Here is the folder structure:
> > /var/lib/bluetooth:
> >     |
> >     +----00:11:22:33:44:55/
> >         |
> >         +----6C:92:11:87:11:25/
> >             |
> >             +----attributes
> >             +----info
> >
> > I kept one copy of the files after the firmware upgrade. I also kept a
> > copy of the files after the folder was re-generated. I compared the
> > file "attributes" and "info". For the attributes, they are the same.
> > For the "info" file, there are only 3 differences:
> > [General]
> > Name=PhoneX
> > . . .
> >
> > [SlaveLongTermKey]
> > Key=252256E19E26F3ED9FD0B99B7B5B0193
> > . . .
> >
> > [LinkKey]
> > Key=1B593296571E2C48CF6952E60395E304
> > . . .
> >
> >
> > I don't think these differences could cause the issue. But the fact
> > is, if I delete the "/var/lib/bluetooth" folder and go thru "The
> > Steps" above, the problem will be gone. All of the services will have
> > their characteristics showing up in nRF. The data can be read from the
> > characteristics. This means the folder "/var/lib/bluetooth" is related
> > to the issue. But I don't know why.
> >
> > Here is also another thing. I subscribed to the "PropertiesChanged"
> > signal. In the callback function "properties_changed", I print out the
> > "changed". Here is the code to subscribe the "PropertiesChanged":
> >
> >         bus.add_signal_receiver(
> >             properties_changed,
> >             dbus_interface="org.freedesktop.DBus.Properties",
> >             signal_name="PropertiesChanged",
> >             arg0="org.bluez.Device1",
> >             path_keyword="path",
> >         )
> >
> > If the folder "/var/lib/bluetooth" is removed and go thru "The Steps",
> > I saw the log like this:
> > dbus.Dictionary({dbus.String('UUIDs'):
> > dbus.Array([dbus.String('00000000-deca-fade-deca-deafdecacafe'),
> > dbus.String('00001000-0000-1000-8000-00805f9b34fb'),
> > dbus.String('0000110a-0000-1000-8000-00805f9b34fb'),
> > dbus.String('0000110c-0000-1000-8000-00805f9b34fb'),
> > dbus.String('0000110e-0000-1000-8000-00805f9b34fb'),
> > dbus.String('00001116-0000-1000-8000-00805f9b34fb'),
> > dbus.String('0000111f-0000-1000-8000-00805f9b34fb'),
> > dbus.String('0000112f-0000-1000-8000-00805f9b34fb'),
> > dbus.String('00001132-0000-1000-8000-00805f9b34fb'),
> > dbus.String('00001200-0000-1000-8000-00805f9b34fb'),
> > dbus.String('00001800-0000-1000-8000-00805f9b34fb'),
> > dbus.String('00001801-0000-1000-8000-00805f9b34fb'),
> > dbus.String('00001805-0000-1000-8000-00805f9b34fb'),
> > dbus.String('0000180a-0000-1000-8000-00805f9b34fb'),
> > dbus.String('0000180f-0000-1000-8000-00805f9b34fb'),
> > dbus.String('02030302-1d19-415f-86f2-22a2106a0a77'),
> > dbus.String('7905f431-b5ce-4e99-a40f-4b1e122d00d0'),
> > dbus.String('89d3502b-0f36-433a-8ef4-c502ad55f8dc'),
> > dbus.String('9fa480e0-4967-4542-9390-d343dc5d04ae'),
> > dbus.String('d0611e78-bbb4-4591-a5f8-487910ae4366')],
> > signature=dbus.Signature('s'), variant_level=1),
> > dbus.String('ServicesResolved'): dbus.Boolean(True, variant_level=1)},
> > signature=dbus.Signature('sv'))
> >
> > If I check the log after the firmware is upgraded without deleting the
> > "/var/lib/bluetooth" folder, the log looks like this:
> > dbus.Dictionary({dbus.String('ServicesResolved'): dbus.Boolean(True,
> > variant_level=1)}, signature=dbus.Signature('sv'))
> >
> > As we can see, they are different. Is it something to do with D-Bus?
> >
> > We understand that if we don't carry over the "/var/lib/bluetooth"
> > folder, then there is no this issue. But our end user will have to
> > choose "Forget This Device" each time after the firmware is upgraded.
> > Otherwise, the end user can't connect to the Linux device because the
> > pairing info can't be found. Is there a way to fix this issue? Namely,
> > is there a way to keep the pairing info and also avoid this issue?
>
> This sounds like ServiceChanged is not being properly propagated when
> you do the firmware update, do you have ServiceChanged entry on the
> storage:
>
> https://git.kernel.org/pub/scm/bluetooth/bluez.git/tree/doc/settings-storage.txt#n321
>
> Is there any indication on btmon when you first connect after doing
> the firmware update?
>
> --
> Luiz Augusto von Dentz

[-- Attachment #2: btmon_unavailable_chars.log --]
[-- Type: application/octet-stream, Size: 188416 bytes --]

Bluetooth monitor ver 5.48
= Note: Linux version 4.19.35-g4e7ddffd720 (armv7l)                    0.062821
= Note: Bluetooth subsystem version 2.22                               0.062834
= New Index: 00:16:A4:5B:4F:02 (Primary,UART,hci0)              [hci0] 0.062839
= Open Index: 00:16:A4:5B:4F:02                                 [hci0] 0.062842
= Index Info: 00:16:A4:5.. (Cypress Semiconductor Corporation)  [hci0] 0.062845
@ MGMT Open: bluetoothd (privileged) version 1.14             {0x0002} 0.062850
@ MGMT Open: bluetoothd (privileged) version 1.14             {0x0001} 0.062853
@ MGMT Open: btmon (privileged) version 1.14                  {0x0003} 0.062924
< HCI Command: LE Set Advertising D.. (0x08|0x0008) plen 32  #1 [hci0] 0.287521
        Length: 29
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Google (0xfeaa)
        Service Data (UUID 0xfeaa): 00005c8e6b8bf66a4ab7a3590016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4                  #2 [hci0] 0.288918
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise Enable (0x08|0x000a) plen 1  #3 [hci0] 0.289001
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4                  #4 [hci0] 0.290453
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertising P.. (0x08|0x0006) plen 15  #5 [hci0] 0.290532
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4                  #6 [hci0] 0.293170
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise Enable (0x08|0x000a) plen 1  #7 [hci0] 0.293255
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4                  #8 [hci0] 0.294572
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
> HCI Event: LE Meta Event (0x3e) plen 19                    #9 [hci0] 1.585625
      LE Connection Complete (0x01)
        Status: Success (0x00)
        Handle: 64
        Role: Slave (0x01)
        Peer address type: Random (0x01)
        Peer address: 69:28:92:A4:B2:4A (Resolvable)
        Connection interval: 30.00 msec (0x0018)
        Connection latency: 0 (0x0000)
        Supervision timeout: 720 msec (0x0048)
        Master clock accuracy: 0x05
@ MGMT Event: Device Connected (0x000b) plen 13        {0x0003} [hci0] 1.585741
        LE Address: 6C:96:CF:98:99:12 (Apple, Inc.)
        Flags: 0x00000000
        Data length: 0
@ MGMT Event: Device Connected (0x000b) plen 13        {0x0002} [hci0] 1.585741
        LE Address: 6C:96:CF:98:99:12 (Apple, Inc.)
        Flags: 0x00000000
        Data length: 0
@ MGMT Event: Device Connected (0x000b) plen 13        {0x0001} [hci0] 1.585741
        LE Address: 6C:96:CF:98:99:12 (Apple, Inc.)
        Flags: 0x00000000
        Data length: 0
< HCI Command: LE Read Remote Used... (0x08|0x0016) plen 2  #10 [hci0] 1.586073
        Handle: 64
> HCI Event: Command Status (0x0f) plen 4                   #11 [hci0] 1.592807
      LE Read Remote Used Features (0x08|0x0016) ncmd 1
        Status: Success (0x00)
> HCI Event: LE Meta Event (0x3e) plen 13                   #12 [hci0] 1.739429
      LE Long Term Key Request (0x05)
        Handle: 64
        Random number: 0x0000000000000000
        Encrypted diversifier: 0x0000
< HCI Command: LE Long Term Key Re.. (0x08|0x001a) plen 18  #13 [hci0] 1.739529
        Handle: 64
        Long term key: a1ed523ce8162c15daba8a0f20068131
> HCI Event: Command Complete (0x0e) plen 6                 #14 [hci0] 1.740948
      LE Long Term Key Request Reply (0x08|0x001a) ncmd 1
        Status: Success (0x00)
        Handle: 64
> HCI Event: Encryption Change (0x08) plen 4                #15 [hci0] 1.859777
        Status: Success (0x00)
        Handle: 64
        Encryption: Enabled with AES-CCM (0x01)
= bluetoothd: BATT attribute not found                                 1.892683
= bluetoothd: batt-profile profile accept failed for 6C:96:CF:98:9..   1.892768
= bluetoothd: GAP attribute not found                                  1.897570
= bluetoothd: gap-profile profile accept failed for 6C:96:CF:98:99..   1.897650
< ACL Data TX: Handle 64 flags 0x00 dlen 7                  #16 [hci0] 1.896981
      ATT: Exchange MTU Request (0x02) len 2
        Client RX MTU: 517
> HCI Event: LE Meta Event (0x3e) plen 12                   #17 [hci0] 1.920063
      LE Read Remote Used Features (0x04)
        Status: Success (0x00)
        Handle: 64
        Features: 0x1d 0x00 0x00 0x00 0x00 0x00 0x00 0x00
          LE Encryption
          Extended Reject Indication
          Slave-initiated Features Exchange
          LE Ping
> ACL Data RX: Handle 64 flags 0x02 dlen 11                 #18 [hci0] 2.039550
      ATT: Handle Value Indication (0x1d) len 6
        Handle: 0x0008
          Data: 0a00ffff
< ACL Data TX: Handle 64 flags 0x00 dlen 5                  #19 [hci0] 2.040261
      ATT: Handle Value Confirmation (0x1e) len 0
> ACL Data RX: Handle 64 flags 0x02 dlen 7                  #20 [hci0] 2.040468
      ATT: Exchange MTU Response (0x03) len 2
        Server RX MTU: 185
< ACL Data TX: Handle 64 flags 0x00 dlen 11                 #21 [hci0] 2.041098
      ATT: Read By Group Type Request (0x10) len 6
        Handle range: 0x0001-0xffff
        Attribute group type: Primary Service (0x2800)
> ACL Data RX: Handle 64 flags 0x02 dlen 11                 #22 [hci0] 2.099955
      ATT: Read By Group Type Request (0x10) len 6
        Handle range: 0x0001-0xffff
        Attribute group type: Primary Service (0x2800)
< ACL Data TX: Handle 64 flags 0x00 dlen 18                 #23 [hci0] 2.100721
      ATT: Read By Group Type Response (0x11) len 13
        Attribute data length: 6
        Attribute group list: 2 entries
        Handle range: 0x0001-0x0005
        UUID: Generic Access Profile (0x1800)
        Handle range: 0x0006-0x0009
        UUID: Generic Attribute Profile (0x1801)
> HCI Event: Number of Completed Packets (0x13) plen 5      #24 [hci0] 2.129840
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 18                 #25 [hci0] 2.159941
      ATT: Read By Group Type Response (0x11) len 13
        Attribute data length: 6
        Attribute group list: 2 entries
        Handle range: 0x0001-0x0005
        UUID: Generic Access Profile (0x1800)
        Handle range: 0x0006-0x0009
        UUID: Generic Attribute Profile (0x1801)
< ACL Data TX: Handle 64 flags 0x00 dlen 11                 #26 [hci0] 2.160633
      ATT: Read By Group Type Request (0x10) len 6
        Handle range: 0x000a-0xffff
        Attribute group type: Primary Service (0x2800)
> HCI Event: Number of Completed Packets (0x13) plen 5      #27 [hci0] 2.160825
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 11                 #28 [hci0] 2.160905
      ATT: Read By Group Type Request (0x10) len 6
        Handle range: 0x000a-0xffff
        Attribute group type: Primary Service (0x2800)
< ACL Data TX: Handle 64 flags 0x00 dlen 186                #29 [hci0] 2.161842
      ATT: Read By Group Type Response (0x11) len 181
        Attribute data length: 20
        Attribute group list: 9 entries
        Handle range: 0x000a-0x0013
        UUID: Vendor specific (efb39360-a7e3-438f-a20d-e9f00e0e22b1)
        Handle range: 0x0014-0x004c
        UUID: Vendor specific (f57793c9-9544-46dc-bfa0-5fd149953c86)
        Handle range: 0x004d-0x0061
        UUID: Vendor specific (5040556b-340f-4c6f-b411-448089694628)
        Handle range: 0x0062-0x00ac
        UUID: Vendor specific (e05ad2ac-9a01-45f5-a56d-9c3c889d4dc6)
        Handle range: 0x00ad-0x00ca
        UUID: Vendor specific (51e16ff1-20d3-45ec-915c-f18290a893c5)
        Handle range: 0x00cb-0x00fc
        UUID: Vendor specific (e03d645c-3f2b-4693-a2fb-99840ee2581d)
        Handle range: 0x00fd-0x0122
        UUID: Vendor specific (5526a99e-7975-42ff-a27b-94d5a1ad9986)
        Handle range: 0x0123-0x0144
        UUID: Vendor specific (d72ce428-ba8c-4061-b6de-6f682736fe08)
        Handle range: 0x0145-0x0151
        UUID: Vendor specific (76a136d4-29fc-4217-b358-9bff4d6601ce)
> ACL Data RX: Handle 64 flags 0x02 dlen 27                 #30 [hci0] 2.192349
> ACL Data RX: Handle 64 flags 0x01 dlen 19                 #31 [hci0] 2.193295
      ATT: Read By Group Type Response (0x11) len 41
        Attribute data length: 20
        Attribute group list: 2 entries
        Handle range: 0x000a-0x000e
        UUID: Vendor specific (d0611e78-bbb4-4591-a5f8-487910ae4366)
        Handle range: 0x000f-0x0013
        UUID: Vendor specific (9fa480e0-4967-4542-9390-d343dc5d04ae)
< ACL Data TX: Handle 64 flags 0x00 dlen 11                 #32 [hci0] 2.194138
      ATT: Read By Group Type Request (0x10) len 6
        Handle range: 0x0014-0xffff
        Attribute group type: Primary Service (0x2800)
> HCI Event: Number of Completed Packets (0x13) plen 5      #33 [hci0] 2.219865
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 11                 #34 [hci0] 2.249547
      ATT: Read By Group Type Request (0x10) len 6
        Handle range: 0x0152-0xffff
        Attribute group type: Primary Service (0x2800)
< ACL Data TX: Handle 64 flags 0x00 dlen 9                  #35 [hci0] 2.250684
      ATT: Error Response (0x01) len 4
        Read By Group Type Request (0x10)
        Handle: 0x0152
        Error: Attribute Not Found (0x0a)
> ACL Data RX: Handle 64 flags 0x02 dlen 24                 #36 [hci0] 2.251402
      ATT: Read By Group Type Response (0x11) len 19
        Attribute data length: 6
        Attribute group list: 3 entries
        Handle range: 0x0014-0x0017
        UUID: Battery Service (0x180f)
        Handle range: 0x0018-0x001d
        UUID: Current Time Service (0x1805)
        Handle range: 0x001e-0x0022
        UUID: Device Information (0x180a)
< ACL Data TX: Handle 64 flags 0x00 dlen 11                 #37 [hci0] 2.252632
      ATT: Read By Group Type Request (0x10) len 6
        Handle range: 0x0023-0xffff
        Attribute group type: Primary Service (0x2800)
> HCI Event: Number of Completed Packets (0x13) plen 5      #38 [hci0] 2.279806
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                  #39 [hci0] 2.309342
      ATT: Write Request (0x12) len 4
        Handle: 0x0009
          Data: 0200
< ACL Data TX: Handle 64 flags 0x00 dlen 5                  #40 [hci0] 2.310253
      ATT: Write Response (0x13) len 0
> ACL Data RX: Handle 64 flags 0x02 dlen 27                 #41 [hci0] 2.310472
> ACL Data RX: Handle 64 flags 0x01 dlen 19                 #42 [hci0] 2.310826
      ATT: Read By Group Type Response (0x11) len 41
        Attribute data length: 20
        Attribute group list: 2 entries
        Handle range: 0x0023-0x002c
        UUID: Vendor specific (7905f431-b5ce-4e99-a40f-4b1e122d00d0)
        Handle range: 0x002d-0x0038
        UUID: Vendor specific (89d3502b-0f36-433a-8ef4-c502ad55f8dc)
< ACL Data TX: Handle 64 flags 0x00 dlen 11                 #43 [hci0] 2.311341
      ATT: Read By Group Type Request (0x10) len 6
        Handle range: 0x0039-0xffff
        Attribute group type: Primary Service (0x2800)
> HCI Event: Number of Completed Packets (0x13) plen 5      #44 [hci0] 2.339698
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                  #45 [hci0] 2.369932
      ATT: Error Response (0x01) len 4
        Read By Group Type Request (0x10)
        Handle: 0x0039
        Error: Attribute Not Found (0x0a)
< HCI Command: LE Set Advertising... (0x08|0x0008) plen 32  #46 [hci0] 2.370343
        Length: 17
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Unknown (0x4822)
        Company: not assigned (1694)
          Data: 0016a45b4f02
< ACL Data TX: Handle 64 flags 0x00 dlen 11                 #47 [hci0] 2.371855
      ATT: Read By Group Type Request (0x10) len 6
        Handle range: 0x0001-0xffff
        Attribute group type: Secondary Service (0x2801)
> HCI Event: Command Complete (0x0e) plen 4                 #48 [hci0] 2.374408
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertising... (0x08|0x0006) plen 15  #49 [hci0] 2.374505
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4                 #50 [hci0] 2.377846
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise Ena.. (0x08|0x000a) plen 1  #51 [hci0] 2.377959
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4                 #52 [hci0] 2.380996
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
> ACL Data RX: Handle 64 flags 0x02 dlen 11                 #53 [hci0] 2.399491
      ATT: Read By Type Request (0x08) len 6
        Handle range: 0x000a-0x0013
        Attribute type: Characteristic (0x2803)
< ACL Data TX: Handle 64 flags 0x00 dlen 69                 #54 [hci0] 2.400019
      ATT: Read By Type Response (0x09) len 64
        Attribute data length: 21
        Attribute data list: 3 entries
        Handle: 0x000b
        Value: 880c00786177d4d514e199094a7569e2189183
        Handle: 0x000e
        Value: 880f00b779b0fbddb1c7b99d4708a274bb113e
        Handle: 0x0011
        Value: 821200729df770251d1d8fe14d6d5df92f5cbe
> ACL Data RX: Handle 64 flags 0x02 dlen 9                  #55 [hci0] 2.429550
      ATT: Error Response (0x01) len 4
        Read By Group Type Request (0x10)
        Handle: 0x0038
        Error: Attribute Not Found (0x0a)
< ACL Data TX: Handle 64 flags 0x00 dlen 11                 #56 [hci0] 2.430248
      ATT: Read By Type Request (0x08) len 6
        Handle range: 0x0001-0x0038
        Attribute type: Include (0x2802)
> HCI Event: Number of Completed Packets (0x13) plen 5      #57 [hci0] 2.430441
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 11                 #58 [hci0] 2.459327
      ATT: Read By Type Request (0x08) len 6
        Handle range: 0x0014-0x004c
        Attribute type: Characteristic (0x2803)
< ACL Data TX: Handle 64 flags 0x00 dlen 174                #59 [hci0] 2.460073
      ATT: Read By Type Response (0x09) len 169
        Attribute data length: 21
        Attribute data list: 8 entries
        Handle: 0x0015
        Value: 92160021416b2b835978b6464171c4857c7b28
        Handle: 0x0019
        Value: 921a0097333718b67f8083aa4cf17af90da1d6
        Handle: 0x001d
        Value: 921e0000dd2b58f078cdb0ab4f4fa2def5b772
        Handle: 0x0021
        Value: 92220092bde88e8638dc8efa40a7e7b1fa74ea
        Handle: 0x0025
        Value: 922600a41f4f46f52e449507435f9fdab5c21c
        Handle: 0x0029
        Value: 922a00db41df096f7964b4f04a5bf44dbe2a29
        Handle: 0x002d
        Value: 922e007884c097d013759370462412c6f989c7
        Handle: 0x0031
        Value: 923200494d2efcee35429d4441f46a65a6c9ec
> ACL Data RX: Handle 64 flags 0x02 dlen 9                  #60 [hci0] 2.489328
      ATT: Error Response (0x01) len 4
        Read By Type Request (0x08)
        Handle: 0x0038
        Error: Attribute Not Found (0x0a)
< ACL Data TX: Handle 64 flags 0x00 dlen 11                 #61 [hci0] 2.490036
      ATT: Read By Type Request (0x08) len 6
        Handle range: 0x0001-0x0038
        Attribute type: Characteristic (0x2803)
> HCI Event: Number of Completed Packets (0x13) plen 5      #62 [hci0] 2.490245
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 11                 #63 [hci0] 2.519308
      ATT: Read By Type Request (0x08) len 6
        Handle range: 0x0033-0x004c
        Attribute type: Characteristic (0x2803)
< ACL Data TX: Handle 64 flags 0x00 dlen 132                #64 [hci0] 2.520130
      ATT: Read By Type Response (0x09) len 127
        Attribute data length: 21
        Attribute data list: 6 entries
        Handle: 0x0035
        Value: 92360098c34df848e2cfb17e40bac49073ce12
        Handle: 0x0039
        Value: 923a005bd7128bd01369b0584c05f817e3ae71
        Handle: 0x003d
        Value: 923e0047acdde10cfef081744e4a1506a817ff
        Handle: 0x0041
        Value: 9242007487dd22d523bbab324fae6aa82c30c1
        Handle: 0x0045
        Value: 9246009417e9b69426e1bab54ab235f158747e
        Handle: 0x0049
        Value: 924a00b83ae28de7b107b4634682831319296b
> ACL Data RX: Handle 64 flags 0x02 dlen 27                 #65 [hci0] 2.549860
      ATT: Read By Type Response (0x09) len 22
        Attribute data length: 7
        Attribute data list: 3 entries
        Handle: 0x0002
        Value: 020300002a
        Handle: 0x0004
        Value: 020500012a
        Handle: 0x0007
        Value: 200800052a
< ACL Data TX: Handle 64 flags 0x00 dlen 11                 #66 [hci0] 2.550788
      ATT: Read By Type Request (0x08) len 6
        Handle range: 0x0008-0x0038
        Attribute type: Characteristic (0x2803)
> HCI Event: Number of Completed Packets (0x13) plen 5      #67 [hci0] 2.550975
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 11                 #68 [hci0] 2.579310
      ATT: Read By Type Request (0x08) len 6
        Handle range: 0x004b-0x004c
        Attribute type: Characteristic (0x2803)
< ACL Data TX: Handle 64 flags 0x00 dlen 9                  #69 [hci0] 2.580077
      ATT: Error Response (0x01) len 4
        Read By Type Request (0x08)
        Handle: 0x004b
        Error: Attribute Not Found (0x0a)
> ACL Data RX: Handle 64 flags 0x02 dlen 27                 #70 [hci0] 2.609794
> HCI Event: Number of Completed Packets (0x13) plen 5      #71 [hci0] 2.610057
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x01 dlen 21                 #72 [hci0] 2.610554
      ATT: Read By Type Response (0x09) len 43
        Attribute data length: 21
        Attribute data list: 2 entries
        Handle: 0x000b
        Value: 980c004900d927ee54ed84914c379a6c556786
        Handle: 0x0010
        Value: 981100cce349c57ba77a91cd43995bb1ad0baf
< ACL Data TX: Handle 64 flags 0x00 dlen 11                 #73 [hci0] 2.611494
      ATT: Read By Type Request (0x08) len 6
        Handle range: 0x0011-0x0038
        Attribute type: Characteristic (0x2803)
> ACL Data RX: Handle 64 flags 0x02 dlen 11                 #74 [hci0] 2.639319
      ATT: Read By Type Request (0x08) len 6
        Handle range: 0x004d-0x0061
        Attribute type: Characteristic (0x2803)
< ACL Data TX: Handle 64 flags 0x00 dlen 111                #75 [hci0] 2.640112
      ATT: Read By Type Response (0x09) len 106
        Attribute data length: 21
        Attribute data list: 5 entries
        Handle: 0x004e
        Value: 9a4f007f967896955897aeac471d1f1b38e432
        Handle: 0x0052
        Value: 9a530012145d93c5bb68a083488af895728985
        Handle: 0x0056
        Value: 9a5700d5b0dfae43780e92be47d3bb60355d72
        Handle: 0x005a
        Value: 9a5b00eff7443213d488957c4201007c704783
        Handle: 0x005e
        Value: 9a5f0060b4dc25ff0ced922a42d152bcdb5b6b
> ACL Data RX: Handle 64 flags 0x02 dlen 27                 #76 [hci0] 2.670202
> HCI Event: Number of Completed Packets (0x13) plen 5      #77 [hci0] 2.670959
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x01 dlen 14                 #78 [hci0] 2.671090
      ATT: Read By Type Response (0x09) len 36
        Attribute data length: 7
        Attribute data list: 5 entries
        Handle: 0x0015
        Value: 121600192a
        Handle: 0x0019
        Value: 121a002b2a
        Handle: 0x001c
        Value: 021d000f2a
        Handle: 0x001f
        Value: 022000292a
        Handle: 0x0021
        Value: 022200242a
< ACL Data TX: Handle 64 flags 0x00 dlen 11                 #79 [hci0] 2.671502
      ATT: Read By Type Request (0x08) len 6
        Handle range: 0x0022-0x0038
        Attribute type: Characteristic (0x2803)
> ACL Data RX: Handle 64 flags 0x02 dlen 11                 #80 [hci0] 2.699619
      ATT: Read By Type Request (0x08) len 6
        Handle range: 0x0060-0x0061
        Attribute type: Characteristic (0x2803)
< ACL Data TX: Handle 64 flags 0x00 dlen 9                  #81 [hci0] 2.700635
      ATT: Error Response (0x01) len 4
        Read By Type Request (0x08)
        Handle: 0x0060
        Error: Attribute Not Found (0x0a)
> ACL Data RX: Handle 64 flags 0x02 dlen 27                 #82 [hci0] 2.729996
> HCI Event: Number of Completed Packets (0x13) plen 5      #83 [hci0] 2.730706
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x01 dlen 27                 #84 [hci0] 2.730831
> ACL Data RX: Handle 64 flags 0x01 dlen 27                 #85 [hci0] 2.731103
> ACL Data RX: Handle 64 flags 0x01 dlen 27                 #86 [hci0] 2.732926
> ACL Data RX: Handle 64 flags 0x01 dlen 24                 #87 [hci0] 2.733998
      ATT: Read By Type Response (0x09) len 127
        Attribute data length: 21
        Attribute data list: 6 entries
        Handle: 0x0024
        Value: 882500d9d9aafdbd9b2198a849e145f3d8d169
        Handle: 0x0027
        Value: 102800bd1da299e625588cd94201630d12bf9f
        Handle: 0x002a
        Value: 102b00fb7b7cce6ab344beb54bd624e9c6ea22
        Handle: 0x002e
        Value: 982f00c251caf7560edfb88a4ab157d8813c9b
        Handle: 0x0032
        Value: 98330002c196ba92bb0c9a1f418d80ceab7c2f
        Handle: 0x0036
        Value: 8a3700d7d5bb70a8a3aba6d846ab238cf3b2c6
< ACL Data TX: Handle 64 flags 0x00 dlen 11                 #88 [hci0] 2.734466
      ATT: Read By Type Request (0x08) len 6
        Handle range: 0x0037-0x0038
        Attribute type: Characteristic (0x2803)
> ACL Data RX: Handle 64 flags 0x02 dlen 11                 #89 [hci0] 2.789283
      ATT: Read By Type Request (0x08) len 6
        Handle range: 0x0062-0x00ac
        Attribute type: Characteristic (0x2803)
< ACL Data TX: Handle 64 flags 0x00 dlen 174                #90 [hci0] 2.790080
      ATT: Read By Type Response (0x09) len 169
        Attribute data length: 21
        Attribute data list: 8 entries
        Handle: 0x0063
        Value: 9a64002eb6f905dd8b5688c74e26d0b0ef2c2e
        Handle: 0x0067
        Value: 9a6800e9d91b50cbfaa2a14f407e6ee579ac49
        Handle: 0x006b
        Value: 9a6c00ede9d31a3b3a85bafa455cca8980c516
        Handle: 0x006f
        Value: 9a7000ce7415b3161eb4afe64151105dac2bb4
        Handle: 0x0073
        Value: 9a7400156485975224069c0f47516e5d1a2b23
        Handle: 0x0077
        Value: 9a7800fd68f998c1ec98aa9340ec84fc6eae05
        Handle: 0x007b
        Value: 9a7c003e27e0f60baf8ebe10457ed323086446
        Handle: 0x007f
        Value: 9a8000f733b8e094db68a3104f233f6690b9db
> ACL Data RX: Handle 64 flags 0x02 dlen 9                  #91 [hci0] 2.819313
      ATT: Error Response (0x01) len 4
        Read By Type Request (0x08)
        Handle: 0x0038
        Error: Attribute Not Found (0x0a)
< ACL Data TX: Handle 64 flags 0x00 dlen 9                  #92 [hci0] 2.820309
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0009-0x0009
> HCI Event: Number of Completed Packets (0x13) plen 5      #93 [hci0] 2.820519
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 11                 #94 [hci0] 2.849389
      ATT: Read By Type Request (0x08) len 6
        Handle range: 0x0081-0x00ac
        Attribute type: Characteristic (0x2803)
< ACL Data TX: Handle 64 flags 0x00 dlen 174                #95 [hci0] 2.850396
      ATT: Read By Type Response (0x09) len 169
        Attribute data length: 21
        Attribute data list: 8 entries
        Handle: 0x0083
        Value: 9a840064fa9c35557cb299e344587a369baa3c
        Handle: 0x0087
        Value: 9a88003a1d85a2372096aaf14f3aae6f256645
        Handle: 0x008b
        Value: 9a8c00ea7e9dd5a2d08e95464147730462c1d7
        Handle: 0x008f
        Value: 829000d0f887f4c2830492774c3e39eeee672c
        Handle: 0x0092
        Value: 889300326a936d942526bbdb48dd87f48d4e5d
        Handle: 0x0095
        Value: 8296003134a2d23d8a979e5149cbb1a02b41c3
        Handle: 0x0098
        Value: 889900b5c5fce617cf2fafec42409567494cd1
        Handle: 0x009b
        Value: 9a9c00837255bde5d5a58a1a4de75a0be85381
> ACL Data RX: Handle 64 flags 0x02 dlen 10                 #96 [hci0] 2.879761
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x0009
        UUID: Client Characteristic Configuration (0x2902)
< ACL Data TX: Handle 64 flags 0x00 dlen 9                  #97 [hci0] 2.880505
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x000d-0x000e
> HCI Event: Number of Completed Packets (0x13) plen 5      #98 [hci0] 2.880703
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 11                 #99 [hci0] 2.909560
      ATT: Read By Type Request (0x08) len 6
        Handle range: 0x009d-0x00ac
        Attribute type: Characteristic (0x2803)
< ACL Data TX: Handle 64 flags 0x00 dlen 90                #100 [hci0] 2.910352
      ATT: Read By Type Response (0x09) len 85
        Attribute data length: 21
        Attribute data list: 4 entries
        Handle: 0x009f
        Value: 9aa0001af474c2344f4c9c6748ed239afc09fc
        Handle: 0x00a3
        Value: 8aa4001fe592257aa720bb514b2299ad8f4bed
        Handle: 0x00a6
        Value: 9aa70001f57526482911a722485e90025c89a2
        Handle: 0x00aa
        Value: 8aab00b0e6eb248131d1a1a14e2908781742e5
> ACL Data RX: Handle 64 flags 0x02 dlen 14                #101 [hci0] 2.939559
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x000d
        UUID: Characteristic Extended Properties (0x2900)
        Handle: 0x000e
        UUID: Client Characteristic Configuration (0x2902)
< ACL Data TX: Handle 64 flags 0x00 dlen 7                 #102 [hci0] 2.940301
      ATT: Read Request (0x0a) len 2
        Handle: 0x000d
> HCI Event: Number of Completed Packets (0x13) plen 5     #103 [hci0] 2.940490
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 11                #104 [hci0] 2.969328
      ATT: Read By Type Request (0x08) len 6
        Handle range: 0x00ad-0x00ca
        Attribute type: Characteristic (0x2803)
< ACL Data TX: Handle 64 flags 0x00 dlen 174               #105 [hci0] 2.970180
      ATT: Read By Type Response (0x09) len 169
        Attribute data length: 21
        Attribute data list: 8 entries
        Handle: 0x00ae
        Value: 8aaf00fc098b5b8a88cf983d4386a55227ba9b
        Handle: 0x00b1
        Value: 8ab2005ce32281897fca94a146532482533b4a
        Handle: 0x00b4
        Value: 8ab500c84e10a462ab0abb4e4508802b0839d4
        Handle: 0x00b7
        Value: 8ab800a7b50f71d91aea84504833a38fca79ae
        Handle: 0x00ba
        Value: 9abb00eed9a05d6d4577bb824d6ee216a85f05
        Handle: 0x00be
        Value: 9abf008022378251854c9ef04b691242ba2339
        Handle: 0x00c2
        Value: 8ac3002d8d5c2303768396884a2b86d1e49273
        Handle: 0x00c5
        Value: 8ac600b29d98f64e7bb9b86e453aa10d57e745
> ACL Data RX: Handle 64 flags 0x02 dlen 7                 #106 [hci0] 2.999295
      ATT: Read Response (0x0b) len 2
        Value: 0100
< ACL Data TX: Handle 64 flags 0x00 dlen 9                 #107 [hci0] 3.000037
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0012-0x0013
> HCI Event: Number of Completed Packets (0x13) plen 5     #108 [hci0] 3.000250
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 11                #109 [hci0] 3.029550
      ATT: Read By Type Request (0x08) len 6
        Handle range: 0x00c7-0x00ca
        Attribute type: Characteristic (0x2803)
< ACL Data TX: Handle 64 flags 0x00 dlen 27                #110 [hci0] 3.030296
      ATT: Read By Type Response (0x09) len 22
        Attribute data length: 21
        Attribute data list: 1 entry
        Handle: 0x00c8
        Value: 82c900bdafb9ca3547f1b09341c5ae3c8d882e
> ACL Data RX: Handle 64 flags 0x02 dlen 14                #111 [hci0] 3.059442
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x0012
        UUID: Characteristic Extended Properties (0x2900)
        Handle: 0x0013
        UUID: Client Characteristic Configuration (0x2902)
< ACL Data TX: Handle 64 flags 0x00 dlen 7                 #112 [hci0] 3.060196
      ATT: Read Request (0x0a) len 2
        Handle: 0x0012
> HCI Event: Number of Completed Packets (0x13) plen 5     #113 [hci0] 3.060391
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 11                #114 [hci0] 3.089282
      ATT: Read By Type Request (0x08) len 6
        Handle range: 0x00cb-0x00fc
        Attribute type: Characteristic (0x2803)
< ACL Data TX: Handle 64 flags 0x00 dlen 174               #115 [hci0] 3.090080
      ATT: Read By Type Response (0x09) len 169
        Attribute data length: 21
        Attribute data list: 8 entries
        Handle: 0x00cc
        Value: 9acd0004108ad393498d8d0d437fc2080a4e5e
        Handle: 0x00d0
        Value: 9ad10059a625ab16508db44a44734b29305d26
        Handle: 0x00d4
        Value: 9ad50003c9914de4c2b2a4204c3dc9b05e03d1
        Handle: 0x00d8
        Value: 8ad9008fdc6e357017c9939b4b007a55fcab61
        Handle: 0x00db
        Value: 8adc00a3a488e392ec22986f4e41c84b8e3567
        Handle: 0x00de
        Value: 92df00226eb9b6bdf1dfa4a54ce886f1c8330c
        Handle: 0x00e2
        Value: 8ae300dfaaa4d4ea7ddcb4774d7ee9f25fb2e0
        Handle: 0x00e5
        Value: 8ae60059302c5bb29b0d9d874dee46da2c59e7
> ACL Data RX: Handle 64 flags 0x02 dlen 7                 #116 [hci0] 3.119241
      ATT: Read Response (0x0b) len 2
        Value: 0100
> HCI Event: Number of Completed Packets (0x13) plen 5     #117 [hci0] 3.119596
        Num handles: 1
        Handle: 64
        Count: 2
< ACL Data TX: Handle 64 flags 0x00 dlen 9                 #118 [hci0] 3.120204
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0017-0x0017
> ACL Data RX: Handle 64 flags 0x02 dlen 11                #119 [hci0] 3.149463
      ATT: Read By Type Request (0x08) len 6
        Handle range: 0x00e7-0x00fc
        Attribute type: Characteristic (0x2803)
< ACL Data TX: Handle 64 flags 0x00 dlen 132               #120 [hci0] 3.151697
      ATT: Read By Type Response (0x09) len 127
        Attribute data length: 21
        Attribute data list: 6 entries
        Handle: 0x00e8
        Value: 8ae9005d9ecce5acb079ba2c43ebef5b685a42
        Handle: 0x00eb
        Value: 82ec00fa288503f4285aa7dd4addc86f5baed7
        Handle: 0x00ee
        Value: 82ef002a2fdaf003f2a4ad5a4403c055c417c4
        Handle: 0x00f1
        Value: 92f2002f2b96383b6e0a899e4539b6a98c6773
        Handle: 0x00f5
        Value: 92f600878f25137b8ed28b4f4b8e7a9fccd1ec
        Handle: 0x00f9
        Value: 92fa00ee96b7d6d0c2d783754ed7dd72614556
> ACL Data RX: Handle 64 flags 0x02 dlen 10                #121 [hci0] 3.179634
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x0017
        UUID: Client Characteristic Configuration (0x2902)
< ACL Data TX: Handle 64 flags 0x00 dlen 9                 #122 [hci0] 3.180466
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x001b-0x001b
> HCI Event: Number of Completed Packets (0x13) plen 5     #123 [hci0] 3.180866
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 11                #124 [hci0] 3.209284
      ATT: Read By Type Request (0x08) len 6
        Handle range: 0x00fb-0x00fc
        Attribute type: Characteristic (0x2803)
< ACL Data TX: Handle 64 flags 0x00 dlen 9                 #125 [hci0] 3.210131
      ATT: Error Response (0x01) len 4
        Read By Type Request (0x08)
        Handle: 0x00fb
        Error: Attribute Not Found (0x0a)
> ACL Data RX: Handle 64 flags 0x02 dlen 10                #126 [hci0] 3.239269
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x001b
        UUID: Client Characteristic Configuration (0x2902)
> HCI Event: Number of Completed Packets (0x13) plen 5     #127 [hci0] 3.239657
        Num handles: 1
        Handle: 64
        Count: 2
< ACL Data TX: Handle 64 flags 0x00 dlen 9                 #128 [hci0] 3.240212
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0026-0x0026
> ACL Data RX: Handle 64 flags 0x02 dlen 11                #129 [hci0] 3.269265
      ATT: Read By Type Request (0x08) len 6
        Handle range: 0x00fd-0x0122
        Attribute type: Characteristic (0x2803)
< ACL Data TX: Handle 64 flags 0x00 dlen 174               #130 [hci0] 3.270034
      ATT: Read By Type Response (0x09) len 169
        Attribute data length: 21
        Attribute data list: 8 entries
        Handle: 0x00fe
        Value: 8aff00179c054bb0de2fb8de43f4de467d99b3
        Handle: 0x0101
        Value: 920201a2be6b9eb0d4aabe2347eadd905f62eb
        Handle: 0x0105
        Value: 8a060114189895d843c597a440adf8f9e4dccc
        Handle: 0x0108
        Value: 8a0901b0d5a0a9e1617c9c3444f80549624588
        Handle: 0x010b
        Value: 8a0c01e2f8d173a3b154841a4e86f7a5be228a
        Handle: 0x010e
        Value: 820f015714e7acb18aa59b954293f71e396db0
        Handle: 0x0111
        Value: 82120184b3e478c6cd5f80dd4a72178c871d26
        Handle: 0x0114
        Value: 821501f35d009b616e13ae9149cb8e1cc95359
> ACL Data RX: Handle 64 flags 0x02 dlen 10                #131 [hci0] 3.299573
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x0026
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #132 [hci0] 3.300394
        Num handles: 1
        Handle: 64
        Count: 2
< ACL Data TX: Handle 64 flags 0x00 dlen 7                 #133 [hci0] 3.302894
      ATT: Read Request (0x0a) len 2
        Handle: 0x0026
> ACL Data RX: Handle 64 flags 0x02 dlen 11                #134 [hci0] 3.329715
      ATT: Read By Type Request (0x08) len 6
        Handle range: 0x0116-0x0122
        Attribute type: Characteristic (0x2803)
< ACL Data TX: Handle 64 flags 0x00 dlen 90                #135 [hci0] 3.330823
      ATT: Read By Type Response (0x09) len 85
        Attribute data length: 21
        Attribute data list: 4 entries
        Handle: 0x0117
        Value: 821801ebf47d875b5274a947444e57aaee8889
        Handle: 0x011a
        Value: 821b0123165e60943ad3ab7f4383a6e099990f
        Handle: 0x011d
        Value: 821e018228fbf199f49092aa4ff692a9cd0506
        Handle: 0x0120
        Value: 822101548105a4a2d498b05d42b2245186abfa
> ACL Data RX: Handle 64 flags 0x02 dlen 7                 #136 [hci0] 3.359280
      ATT: Read Response (0x0b) len 2
        Value: 0100
< ACL Data TX: Handle 64 flags 0x00 dlen 9                 #137 [hci0] 3.360089
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0029-0x0029
> HCI Event: Number of Completed Packets (0x13) plen 5     #138 [hci0] 3.360300
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 11                #139 [hci0] 3.389270
      ATT: Read By Type Request (0x08) len 6
        Handle range: 0x0123-0x0144
        Attribute type: Characteristic (0x2803)
< ACL Data TX: Handle 64 flags 0x00 dlen 174               #140 [hci0] 3.390075
      ATT: Read By Type Response (0x09) len 169
        Attribute data length: 21
        Attribute data list: 8 entries
        Handle: 0x0124
        Value: 8225012a7609433923a6925d42d5d4bf9307c4
        Handle: 0x0127
        Value: 82280181c6d99e78e5409a26411b1570c9c420
        Handle: 0x012a
        Value: 822b01d56926acbb8915bcad433323d6d170f4
        Handle: 0x012d
        Value: 822e01ba148cb7ef078a8406420e179ac55080
        Handle: 0x0130
        Value: 8231017715d4d9cd34078f004286be53568f03
        Handle: 0x0133
        Value: 8234012d4ead967eb781bb25442973c6247972
        Handle: 0x0136
        Value: 8237019997e76edb16c4b0b347be4445ee259c
        Handle: 0x0139
        Value: 823a01cdef05a932746f85b44aa6b0b1f07b6e
> ACL Data RX: Handle 64 flags 0x02 dlen 10                #141 [hci0] 3.419295
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x0029
        UUID: Client Characteristic Configuration (0x2902)
> HCI Event: Number of Completed Packets (0x13) plen 5     #142 [hci0] 3.419457
        Num handles: 1
        Handle: 64
        Count: 2
< ACL Data TX: Handle 64 flags 0x00 dlen 9                 #143 [hci0] 3.420220
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x002c-0x002c
> ACL Data RX: Handle 64 flags 0x02 dlen 11                #144 [hci0] 3.449261
      ATT: Read By Type Request (0x08) len 6
        Handle range: 0x013b-0x0144
        Attribute type: Characteristic (0x2803)
< ACL Data TX: Handle 64 flags 0x00 dlen 69                #145 [hci0] 3.450057
      ATT: Read By Type Response (0x09) len 64
        Attribute data length: 21
        Attribute data list: 3 entries
        Handle: 0x013c
        Value: 823d01f1406c52df184a929e44b967b5d5bba3
        Handle: 0x013f
        Value: 884001e85f5356a5e92a9a794cb5c0c68a90bd
        Handle: 0x0142
        Value: 8a430168db5fe9dcd35c8dec46efcb334ffa8c
> ACL Data RX: Handle 64 flags 0x02 dlen 10                #146 [hci0] 3.479349
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x002c
        UUID: Client Characteristic Configuration (0x2902)
< ACL Data TX: Handle 64 flags 0x00 dlen 9                 #147 [hci0] 3.480936
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0030-0x0031
> HCI Event: Number of Completed Packets (0x13) plen 5     #148 [hci0] 3.481215
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 11                #149 [hci0] 3.509351
      ATT: Read By Type Request (0x08) len 6
        Handle range: 0x0145-0x0151
        Attribute type: Characteristic (0x2803)
< ACL Data TX: Handle 64 flags 0x00 dlen 90                #150 [hci0] 3.510145
      ATT: Read By Type Response (0x09) len 85
        Attribute data length: 21
        Attribute data list: 4 entries
        Handle: 0x0146
        Value: 884701f09f9394856720a26047025b9ef90752
        Handle: 0x0149
        Value: 884a013fd59d9e09e280b95d4ef082b6251241
        Handle: 0x014c
        Value: 8a4d01f2b9f5d7d417f1bfb14fe66a4c9a476c
        Handle: 0x014f
        Value: 885001da299c6a9df1309f43421ece432e9233
> ACL Data RX: Handle 64 flags 0x02 dlen 14                #151 [hci0] 3.539553
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x0030
        UUID: Characteristic Extended Properties (0x2900)
        Handle: 0x0031
        UUID: Client Characteristic Configuration (0x2902)
< ACL Data TX: Handle 64 flags 0x00 dlen 7                 #152 [hci0] 3.540315
      ATT: Read Request (0x0a) len 2
        Handle: 0x0030
> HCI Event: Number of Completed Packets (0x13) plen 5     #153 [hci0] 3.540512
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 7                 #154 [hci0] 3.599894
      ATT: Read Response (0x0b) len 2
        Value: 0100
> HCI Event: Number of Completed Packets (0x13) plen 5     #155 [hci0] 3.600286
        Num handles: 1
        Handle: 64
        Count: 2
< ACL Data TX: Handle 64 flags 0x00 dlen 9                 #156 [hci0] 3.600795
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0034-0x0035
> ACL Data RX: Handle 64 flags 0x02 dlen 14                #157 [hci0] 3.659606
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x0034
        UUID: Characteristic Extended Properties (0x2900)
        Handle: 0x0035
        UUID: Client Characteristic Configuration (0x2902)
< ACL Data TX: Handle 64 flags 0x00 dlen 7                 #158 [hci0] 3.660549
      ATT: Read Request (0x0a) len 2
        Handle: 0x0034
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #159 [hci0] 3.662788
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x000d-0x000d
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #160 [hci0] 3.663586
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x000d
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #161 [hci0] 3.689673
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 7                 #162 [hci0] 3.719263
      ATT: Read Response (0x0b) len 2
        Value: 0100
< ACL Data TX: Handle 64 flags 0x00 dlen 9                 #163 [hci0] 3.719849
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0038-0x0038
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #164 [hci0] 3.720039
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0010-0x0010
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #165 [hci0] 3.720716
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x0010
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #166 [hci0] 3.749715
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 10                #167 [hci0] 3.779341
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x0038
        UUID: Characteristic Extended Properties (0x2900)
< ACL Data TX: Handle 64 flags 0x00 dlen 7                 #168 [hci0] 3.780352
      ATT: Read Request (0x0a) len 2
        Handle: 0x0038
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #169 [hci0] 3.780570
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0013-0x0013
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #170 [hci0] 3.781185
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x0013
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #171 [hci0] 3.810034
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 7                 #172 [hci0] 3.839290
      ATT: Read Response (0x0b) len 2
        Value: 0100
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #173 [hci0] 3.842700
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0017-0x0018
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #174 [hci0] 3.925128
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x0017
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x0018
        UUID: Characteristic Extended Properties (0x2900)
< ACL Data TX: Handle 64 flags 0x00 dlen 9                 #175 [hci0] 3.925779
      ATT: Write Request (0x12) len 4
        Handle: 0x0009
          Data: 0200
> HCI Event: Number of Completed Packets (0x13) plen 5     #176 [hci0] 3.937986
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #177 [hci0] 3.959297
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x001b-0x001c
> ACL Data RX: Handle 64 flags 0x02 dlen 5                 #178 [hci0] 3.959676
      ATT: Write Response (0x13) len 0
> HCI Event: Number of Completed Packets (0x13) plen 5     #179 [hci0] 4.166254
        Num handles: 1
        Handle: 64
        Count: 1
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #180 [hci0] 4.193521
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x001b
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x001c
        UUID: Characteristic Extended Properties (0x2900)
< ACL Data TX: Handle 64 flags 0x00 dlen 7                 #181 [hci0] 4.200231
      ATT: Read Request (0x0a) len 2
        Handle: 0x0003
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #182 [hci0] 4.260039
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x001f-0x0020
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #183 [hci0] 4.260766
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x001f
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x0020
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 11                #184 [hci0] 4.289321
      ATT: Read Response (0x0b) len 6
        Value: 50686f6e6558
> HCI Event: Number of Completed Packets (0x13) plen 5     #185 [hci0] 4.289483
        Num handles: 1
        Handle: 64
        Count: 2
< ACL Data TX: Handle 64 flags 0x00 dlen 7                 #186 [hci0] 4.290213
      ATT: Read Request (0x0a) len 2
        Handle: 0x0005
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #187 [hci0] 4.319904
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0023-0x0024
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #188 [hci0] 4.320650
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x0023
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x0024
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 7                 #189 [hci0] 4.349163
      ATT: Read Response (0x0b) len 2
        Value: 4000
< ACL Data TX: Handle 64 flags 0x00 dlen 7                 #190 [hci0] 4.349868
      ATT: Read Request (0x0a) len 2
        Handle: 0x0016
> HCI Event: Number of Completed Packets (0x13) plen 5     #191 [hci0] 4.350447
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #192 [hci0] 4.379263
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0027-0x0028
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #193 [hci0] 4.379988
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x0027
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x0028
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 6                 #194 [hci0] 4.409251
      ATT: Read Response (0x0b) len 1
        Value: 64
> HCI Event: Number of Completed Packets (0x13) plen 5     #195 [hci0] 4.409407
        Num handles: 1
        Handle: 64
        Count: 2
< ACL Data TX: Handle 64 flags 0x00 dlen 9                 #196 [hci0] 4.410148
      ATT: Write Request (0x12) len 4
        Handle: 0x0017
          Data: 0100
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #197 [hci0] 4.439238
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x002b-0x002c
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #198 [hci0] 4.439946
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x002b
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x002c
        UUID: Characteristic Extended Properties (0x2900)
< HCI Command: LE Set Advertising.. (0x08|0x0008) plen 32  #199 [hci0] 4.447620
        Length: 29
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Google (0xfeaa)
        Service Data (UUID 0xfeaa): 00005c8e6b8bf66a4ab7a3590016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4                #200 [hci0] 4.450522
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise En.. (0x08|0x000a) plen 1  #201 [hci0] 4.450641
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4                #202 [hci0] 4.454564
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertising.. (0x08|0x0006) plen 15  #203 [hci0] 4.454675
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4                #204 [hci0] 4.459228
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise En.. (0x08|0x000a) plen 1  #205 [hci0] 4.459328
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4                #206 [hci0] 4.460963
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
> ACL Data RX: Handle 64 flags 0x02 dlen 5                 #207 [hci0] 4.469197
      ATT: Write Response (0x13) len 0
> HCI Event: Number of Completed Packets (0x13) plen 5     #208 [hci0] 4.470060
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #209 [hci0] 4.499956
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x002f-0x0030
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #210 [hci0] 4.500653
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x002f
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x0030
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #211 [hci0] 4.559917
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0033-0x0034
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #212 [hci0] 4.560657
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x0033
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x0034
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #213 [hci0] 4.560962
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #214 [hci0] 4.619901
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0037-0x0038
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #215 [hci0] 4.620603
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x0037
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x0038
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #216 [hci0] 4.679928
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x003b-0x003c
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #217 [hci0] 4.680678
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x003b
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x003c
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #218 [hci0] 4.680973
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #219 [hci0] 4.739925
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x003f-0x0040
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #220 [hci0] 4.740625
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x003f
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x0040
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #221 [hci0] 4.800312
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #222 [hci0] 4.829183
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0043-0x0044
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #223 [hci0] 4.829870
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x0043
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x0044
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #224 [hci0] 4.889930
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0047-0x0048
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #225 [hci0] 4.890629
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x0047
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x0048
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #226 [hci0] 4.949945
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x004b-0x004c
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #227 [hci0] 4.950696
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x004b
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x004c
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #228 [hci0] 4.950994
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #229 [hci0] 5.010660
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0050-0x0051
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #230 [hci0] 5.011367
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x0050
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x0051
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #231 [hci0] 5.100017
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0054-0x0055
> HCI Event: Number of Completed Packets (0x13) plen 5     #232 [hci0] 5.100179
        Num handles: 1
        Handle: 64
        Count: 2
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #233 [hci0] 5.100874
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x0054
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x0055
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #234 [hci0] 5.160240
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0058-0x0059
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #235 [hci0] 5.160945
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x0058
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x0059
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #236 [hci0] 5.219913
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x005c-0x005d
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #237 [hci0] 5.220645
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x005c
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x005d
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #238 [hci0] 5.220937
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #239 [hci0] 5.279903
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0060-0x0061
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #240 [hci0] 5.280620
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x0060
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x0061
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #241 [hci0] 5.339939
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0065-0x0066
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #242 [hci0] 5.340672
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x0065
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x0066
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #243 [hci0] 5.340973
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #244 [hci0] 5.399915
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0069-0x006a
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #245 [hci0] 5.400608
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x0069
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x006a
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #246 [hci0] 5.459898
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x006d-0x006e
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #247 [hci0] 5.460640
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x006d
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x006e
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #248 [hci0] 5.460935
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #249 [hci0] 5.519870
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0071-0x0072
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #250 [hci0] 5.520563
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x0071
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x0072
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #251 [hci0] 5.580000
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0075-0x0076
> HCI Event: Number of Completed Packets (0x13) plen 5     #252 [hci0] 5.580166
        Num handles: 1
        Handle: 64
        Count: 2
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #253 [hci0] 5.580874
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x0075
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x0076
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #254 [hci0] 5.669716
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0079-0x007a
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #255 [hci0] 5.670550
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x0079
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x007a
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #256 [hci0] 5.729651
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x007d-0x007e
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #257 [hci0] 5.730455
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x007d
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x007e
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #258 [hci0] 5.731454
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #259 [hci0] 5.789861
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0081-0x0082
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #260 [hci0] 5.790542
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x0081
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x0082
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #261 [hci0] 5.849884
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0085-0x0086
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #262 [hci0] 5.850633
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x0085
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x0086
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #263 [hci0] 5.850929
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #264 [hci0] 5.909948
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0089-0x008a
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #265 [hci0] 5.910639
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x0089
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x008a
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #266 [hci0] 5.969899
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x008d-0x008e
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #267 [hci0] 5.970646
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x008d
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x008e
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #268 [hci0] 5.970941
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #269 [hci0] 6.029900
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0091-0x0091
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #270 [hci0] 6.030611
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x0091
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #271 [hci0] 6.089914
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0094-0x0094
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #272 [hci0] 6.090740
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x0094
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #273 [hci0] 6.091175
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #274 [hci0] 6.149886
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0097-0x0097
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #275 [hci0] 6.150784
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x0097
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #276 [hci0] 6.209890
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x009a-0x009a
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #277 [hci0] 6.210701
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x009a
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #278 [hci0] 6.211896
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #279 [hci0] 6.269891
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x009d-0x009e
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #280 [hci0] 6.270585
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x009d
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x009e
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #281 [hci0] 6.329885
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x00a1-0x00a2
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #282 [hci0] 6.330623
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x00a1
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x00a2
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #283 [hci0] 6.330927
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #284 [hci0] 6.390766
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x00a5-0x00a5
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #285 [hci0] 6.391661
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x00a5
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #286 [hci0] 6.449884
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x00a8-0x00a9
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #287 [hci0] 6.450625
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x00a8
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x00a9
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #288 [hci0] 6.450936
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #289 [hci0] 6.509887
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x00ac-0x00ac
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #290 [hci0] 6.510590
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x00ac
        UUID: Characteristic Extended Properties (0x2900)
< HCI Command: LE Set Advertising.. (0x08|0x0008) plen 32  #291 [hci0] 6.527613
        Length: 17
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Unknown (0x4822)
        Company: not assigned (1694)
          Data: 0016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4                #292 [hci0] 6.529153
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise En.. (0x08|0x000a) plen 1  #293 [hci0] 6.529255
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4                #294 [hci0] 6.530997
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertising.. (0x08|0x0006) plen 15  #295 [hci0] 6.531104
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4                #296 [hci0] 6.536458
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise En.. (0x08|0x000a) plen 1  #297 [hci0] 6.536559
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4                #298 [hci0] 6.537254
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #299 [hci0] 6.569862
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x00b0-0x00b0
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #300 [hci0] 6.570508
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x00b0
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #301 [hci0] 6.571031
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #302 [hci0] 6.629893
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x00b3-0x00b3
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #303 [hci0] 6.630583
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x00b3
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #304 [hci0] 6.689886
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x00b6-0x00b6
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #305 [hci0] 6.690625
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x00b6
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #306 [hci0] 6.691168
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #307 [hci0] 6.779859
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x00b9-0x00b9
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #308 [hci0] 6.780544
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x00b9
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #309 [hci0] 6.869958
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x00bc-0x00bd
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #310 [hci0] 6.871739
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x00bc
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x00bd
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #311 [hci0] 6.872214
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #312 [hci0] 6.959843
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x00c0-0x00c1
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #313 [hci0] 6.960520
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x00c0
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x00c1
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #314 [hci0] 7.049876
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x00c4-0x00c4
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #315 [hci0] 7.050610
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x00c4
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #316 [hci0] 7.050966
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #317 [hci0] 7.109833
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x00c7-0x00c7
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #318 [hci0] 7.110527
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x00c7
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #319 [hci0] 7.169571
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x00ca-0x00ca
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #320 [hci0] 7.170320
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x00ca
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #321 [hci0] 7.170704
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #322 [hci0] 7.229834
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x00ce-0x00cf
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #323 [hci0] 7.230522
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x00ce
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x00cf
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #324 [hci0] 7.289805
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x00d2-0x00d3
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #325 [hci0] 7.290537
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x00d2
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x00d3
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #326 [hci0] 7.290840
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #327 [hci0] 7.349834
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x00d6-0x00d7
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #328 [hci0] 7.350604
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x00d6
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x00d7
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #329 [hci0] 7.409847
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x00da-0x00da
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #330 [hci0] 7.410577
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x00da
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #331 [hci0] 7.410946
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #332 [hci0] 7.469817
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x00dd-0x00dd
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #333 [hci0] 7.470504
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x00dd
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #334 [hci0] 7.529798
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x00e0-0x00e1
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #335 [hci0] 7.530527
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x00e0
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x00e1
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #336 [hci0] 7.530834
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #337 [hci0] 7.589808
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x00e4-0x00e4
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #338 [hci0] 7.590476
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x00e4
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #339 [hci0] 7.649817
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x00e7-0x00e7
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #340 [hci0] 7.650523
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x00e7
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #341 [hci0] 7.650736
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #342 [hci0] 7.709810
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x00ea-0x00ea
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #343 [hci0] 7.710462
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x00ea
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #344 [hci0] 7.769893
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x00ed-0x00ed
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #345 [hci0] 7.770963
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x00ed
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #346 [hci0] 7.771178
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #347 [hci0] 7.829819
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x00f0-0x00f0
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #348 [hci0] 7.830486
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x00f0
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #349 [hci0] 7.890589
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x00f3-0x00f4
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #350 [hci0] 7.891295
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x00f3
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x00f4
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #351 [hci0] 7.891426
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #352 [hci0] 7.949810
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x00f7-0x00f8
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #353 [hci0] 7.950481
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x00f7
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x00f8
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #354 [hci0] 8.009813
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x00fb-0x00fc
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #355 [hci0] 8.010690
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x00fb
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x00fc
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #356 [hci0] 8.010834
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #357 [hci0] 8.070206
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0100-0x0100
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #358 [hci0] 8.070918
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x0100
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #359 [hci0] 8.130173
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0103-0x0104
< ACL Data TX: Handle 64 flags 0x00 dlen 14                #360 [hci0] 8.130843
      ATT: Find Information Response (0x05) len 9
        Format: UUID-16 (0x01)
        Handle: 0x0103
        UUID: Client Characteristic Configuration (0x2902)
        Handle: 0x0104
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #361 [hci0] 8.130978
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #362 [hci0] 8.189799
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0107-0x0107
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #363 [hci0] 8.190457
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x0107
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #364 [hci0] 8.250427
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x010a-0x010a
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #365 [hci0] 8.251498
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x010a
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #366 [hci0] 8.251864
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #367 [hci0] 8.309459
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x010d-0x010d
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #368 [hci0] 8.310120
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x010d
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #369 [hci0] 8.369842
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0110-0x0110
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #370 [hci0] 8.370767
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x0110
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #371 [hci0] 8.371574
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #372 [hci0] 8.429544
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0113-0x0113
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #373 [hci0] 8.430339
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x0113
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #374 [hci0] 8.490060
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0116-0x0116
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #375 [hci0] 8.490908
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x0116
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #376 [hci0] 8.491209
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #377 [hci0] 8.550199
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0119-0x0119
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #378 [hci0] 8.550956
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x0119
        UUID: Characteristic Extended Properties (0x2900)
< HCI Command: LE Set Advertising.. (0x08|0x0008) plen 32  #379 [hci0] 8.607654
        Length: 29
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Google (0xfeaa)
        Service Data (UUID 0xfeaa): 00005c8e6b8bf66a4ab7a3590016a45b4f02
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #380 [hci0] 8.609777
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x011c-0x011c
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #381 [hci0] 8.610531
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x011c
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #382 [hci0] 8.610738
        Num handles: 1
        Handle: 64
        Count: 2
> HCI Event: Command Complete (0x0e) plen 4                #383 [hci0] 8.610818
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise En.. (0x08|0x000a) plen 1  #384 [hci0] 8.610867
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4                #385 [hci0] 8.612768
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertising.. (0x08|0x0006) plen 15  #386 [hci0] 8.612868
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4                #387 [hci0] 8.619110
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise En.. (0x08|0x000a) plen 1  #388 [hci0] 8.619215
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4                #389 [hci0] 8.620550
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #390 [hci0] 8.669750
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x011f-0x011f
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #391 [hci0] 8.670701
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x011f
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #392 [hci0] 8.729777
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0122-0x0122
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #393 [hci0] 8.730540
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x0122
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #394 [hci0] 8.730808
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #395 [hci0] 8.789745
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0126-0x0126
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #396 [hci0] 8.790401
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x0126
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #397 [hci0] 8.849751
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0129-0x0129
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #398 [hci0] 8.850589
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x0129
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #399 [hci0] 8.853323
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #400 [hci0] 8.909754
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x012c-0x012c
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #401 [hci0] 8.910697
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x012c
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #402 [hci0] 8.969758
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x012f-0x012f
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #403 [hci0] 8.970610
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x012f
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #404 [hci0] 8.970817
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #405 [hci0] 9.030289
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0132-0x0132
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #406 [hci0] 9.031064
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x0132
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #407 [hci0] 9.089806
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0135-0x0135
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #408 [hci0] 9.090513
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x0135
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #409 [hci0] 9.090725
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #410 [hci0] 9.150180
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0138-0x0138
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #411 [hci0] 9.150865
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x0138
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #412 [hci0] 9.209809
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x013b-0x013b
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #413 [hci0] 9.210517
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x013b
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #414 [hci0] 9.210729
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #415 [hci0] 9.269732
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x013e-0x013e
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #416 [hci0] 9.270473
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x013e
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #417 [hci0] 9.330212
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0141-0x0141
> HCI Event: Number of Completed Packets (0x13) plen 5     #418 [hci0] 9.330348
        Num handles: 1
        Handle: 64
        Count: 2
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #419 [hci0] 9.331049
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x0141
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #420 [hci0] 9.389917
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0144-0x0144
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #421 [hci0] 9.391631
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x0144
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #422 [hci0] 9.449725
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0148-0x0148
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #423 [hci0] 9.450494
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x0148
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #424 [hci0] 9.450694
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #425 [hci0] 9.509825
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x014b-0x014b
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #426 [hci0] 9.511371
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x014b
        UUID: Characteristic Extended Properties (0x2900)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #427 [hci0] 9.569430
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x014e-0x014e
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #428 [hci0] 9.570085
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x014e
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #429 [hci0] 9.570340
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                 #430 [hci0] 9.629711
      ATT: Find Information Request (0x04) len 4
        Handle range: 0x0151-0x0151
< ACL Data TX: Handle 64 flags 0x00 dlen 10                #431 [hci0] 9.630495
      ATT: Find Information Response (0x05) len 5
        Format: UUID-16 (0x01)
        Handle: 0x0151
        UUID: Characteristic Extended Properties (0x2900)
> HCI Event: Number of Completed Packets (0x13) plen 5     #432 [hci0] 9.690442
        Num handles: 1
        Handle: 64
        Count: 2
< HCI Command: LE Set Advertisin.. (0x08|0x0008) plen 32  #433 [hci0] 10.687698
        Length: 17
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Unknown (0x4822)
        Company: not assigned (1694)
          Data: 0016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4               #434 [hci0] 10.689399
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #435 [hci0] 10.689709
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #436 [hci0] 10.691144
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0006) plen 15  #437 [hci0] 10.691243
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #438 [hci0] 10.693742
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #439 [hci0] 10.693847
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4               #440 [hci0] 10.696552
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
> ACL Data RX: Handle 64 flags 0x02 dlen 11               #441 [hci0] 11.399105
      ATT: Read By Type Request (0x08) len 6
        Handle range: 0x0001-0x0005
        Attribute type: Device Name (0x2a00)
< ACL Data TX: Handle 64 flags 0x00 dlen 33               #442 [hci0] 11.400080
      ATT: Read By Type Response (0x09) len 28
        Attribute data length: 27
        Attribute data list: 1 entry
        Handle: 0x0003
        Value: 224f332d485542322d3278502d3132313431342f3030303722
> HCI Event: Number of Completed Packets (0x13) plen 5    #443 [hci0] 11.666351
        Num handles: 1
        Handle: 64
        Count: 1
< HCI Command: LE Set Advertisin.. (0x08|0x0008) plen 32  #444 [hci0] 12.767677
        Length: 29
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Google (0xfeaa)
        Service Data (UUID 0xfeaa): 00005c8e6b8bf66a4ab7a3590016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4               #445 [hci0] 12.769456
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #446 [hci0] 12.769569
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #447 [hci0] 12.771483
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0006) plen 15  #448 [hci0] 12.771591
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #449 [hci0] 12.776132
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #450 [hci0] 12.776242
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4               #451 [hci0] 12.777287
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0008) plen 32  #452 [hci0] 14.847950
        Length: 17
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Unknown (0x4822)
        Company: not assigned (1694)
          Data: 0016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4               #453 [hci0] 14.850048
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #454 [hci0] 14.850146
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #455 [hci0] 14.851646
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0006) plen 15  #456 [hci0] 14.851733
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #457 [hci0] 14.854852
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #458 [hci0] 14.854953
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4               #459 [hci0] 14.858118
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0008) plen 32  #460 [hci0] 16.927599
        Length: 29
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Google (0xfeaa)
        Service Data (UUID 0xfeaa): 00005c8e6b8bf66a4ab7a3590016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4               #461 [hci0] 16.929455
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #462 [hci0] 16.929602
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #463 [hci0] 16.931017
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0006) plen 15  #464 [hci0] 16.931120
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #465 [hci0] 16.934196
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #466 [hci0] 16.934304
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4               #467 [hci0] 16.935728
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0008) plen 32  #468 [hci0] 19.007688
        Length: 17
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Unknown (0x4822)
        Company: not assigned (1694)
          Data: 0016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4               #469 [hci0] 19.009232
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #470 [hci0] 19.009339
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #471 [hci0] 19.011295
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0006) plen 15  #472 [hci0] 19.011400
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #473 [hci0] 19.015927
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #474 [hci0] 19.016037
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4               #475 [hci0] 19.016678
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0008) plen 32  #476 [hci0] 21.087571
        Length: 29
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Google (0xfeaa)
        Service Data (UUID 0xfeaa): 00005c8e6b8bf66a4ab7a3590016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4               #477 [hci0] 21.089318
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #478 [hci0] 21.089426
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #479 [hci0] 21.094260
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0006) plen 15  #480 [hci0] 21.094377
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #481 [hci0] 21.100327
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #482 [hci0] 21.100440
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4               #483 [hci0] 21.101554
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0008) plen 32  #484 [hci0] 23.167650
        Length: 17
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Unknown (0x4822)
        Company: not assigned (1694)
          Data: 0016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4               #485 [hci0] 23.169222
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #486 [hci0] 23.169314
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #487 [hci0] 23.172385
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0006) plen 15  #488 [hci0] 23.172514
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #489 [hci0] 23.179434
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #490 [hci0] 23.179540
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4               #491 [hci0] 23.181671
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0008) plen 32  #492 [hci0] 25.247629
        Length: 29
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Google (0xfeaa)
        Service Data (UUID 0xfeaa): 00005c8e6b8bf66a4ab7a3590016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4               #493 [hci0] 25.249162
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #494 [hci0] 25.249260
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #495 [hci0] 25.251080
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0006) plen 15  #496 [hci0] 25.251188
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #497 [hci0] 25.256339
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #498 [hci0] 25.256497
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4               #499 [hci0] 25.257147
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0008) plen 32  #500 [hci0] 27.327777
        Length: 17
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Unknown (0x4822)
        Company: not assigned (1694)
          Data: 0016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4               #501 [hci0] 27.330747
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #502 [hci0] 27.330975
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #503 [hci0] 27.334679
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0006) plen 15  #504 [hci0] 27.334928
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #505 [hci0] 27.339427
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #506 [hci0] 27.339662
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4               #507 [hci0] 27.342370
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
> ACL Data RX: Handle 64 flags 0x02 dlen 13               #508 [hci0] 28.258727
      ATT: Write Request (0x12) len 8
        Handle: 0x000c
          Data: 303030303030
< ACL Data TX: Handle 64 flags 0x00 dlen 5                #509 [hci0] 28.339351
      ATT: Write Response (0x13) len 0
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #510 [hci0] 28.379363
      ATT: Read Request (0x0a) len 2
        Handle: 0x0012
< ACL Data TX: Handle 64 flags 0x00 dlen 8                #511 [hci0] 28.402507
      ATT: Read Response (0x0b) len 3
        Value: 313032
> ACL Data RX: Handle 64 flags 0x02 dlen 13               #512 [hci0] 28.439176
      ATT: Write Request (0x12) len 8
        Handle: 0x000c
          Data: 323232323232
> HCI Event: Number of Completed Packets (0x13) plen 5    #513 [hci0] 28.453147
        Num handles: 1
        Handle: 64
        Count: 2
< ACL Data TX: Handle 64 flags 0x00 dlen 5                #514 [hci0] 28.478582
      ATT: Write Response (0x13) len 0
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #515 [hci0] 28.529213
      ATT: Read Request (0x0a) len 2
        Handle: 0x0012
< ACL Data TX: Handle 64 flags 0x00 dlen 6                #516 [hci0] 28.557072
      ATT: Read Response (0x0b) len 1
        Value: 30
> HCI Event: Number of Completed Packets (0x13) plen 5    #517 [hci0] 28.618571
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 8                #518 [hci0] 29.038700
      ATT: Write Request (0x12) len 3
        Handle: 0x0068
          Data: 30
< ACL Data TX: Handle 64 flags 0x00 dlen 5                #519 [hci0] 29.091499
      ATT: Write Response (0x13) len 0
> ACL Data RX: Handle 64 flags 0x02 dlen 8                #520 [hci0] 29.248592
      ATT: Write Request (0x12) len 3
        Handle: 0x0064
          Data: 32
< ACL Data TX: Handle 64 flags 0x00 dlen 5                #521 [hci0] 29.292138
      ATT: Write Response (0x13) len 0
> HCI Event: Number of Completed Packets (0x13) plen 5    #522 [hci0] 29.292231
        Num handles: 1
        Handle: 64
        Count: 1
> ACL Data RX: Handle 64 flags 0x02 dlen 8                #523 [hci0] 29.339294
      ATT: Write Request (0x12) len 3
        Handle: 0x00ab
          Data: 30
< HCI Command: LE Set Advertisin.. (0x08|0x0008) plen 32  #524 [hci0] 29.407890
        Length: 29
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Google (0xfeaa)
        Service Data (UUID 0xfeaa): 00005c8e6b8bf66a4ab7a3590016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4               #525 [hci0] 29.414929
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #526 [hci0] 29.415053
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #527 [hci0] 29.416309
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0006) plen 15  #528 [hci0] 29.416409
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #529 [hci0] 29.419085
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #530 [hci0] 29.419185
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4               #531 [hci0] 29.420074
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< ACL Data TX: Handle 64 flags 0x00 dlen 5                #532 [hci0] 29.428498
      ATT: Write Response (0x13) len 0
> ACL Data RX: Handle 64 flags 0x02 dlen 8                #533 [hci0] 29.489418
      ATT: Write Request (0x12) len 3
        Handle: 0x00a4
          Data: 33
> HCI Event: Number of Completed Packets (0x13) plen 5    #534 [hci0] 29.505306
        Num handles: 1
        Handle: 64
        Count: 2
< ACL Data TX: Handle 64 flags 0x00 dlen 5                #535 [hci0] 29.549582
      ATT: Write Response (0x13) len 0
> HCI Event: Number of Completed Packets (0x13) plen 5    #536 [hci0] 29.792438
        Num handles: 1
        Handle: 64
        Count: 1
< HCI Command: LE Set Advertisin.. (0x08|0x0008) plen 32  #537 [hci0] 31.487752
        Length: 17
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Unknown (0x4822)
        Company: not assigned (1694)
          Data: 0016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4               #538 [hci0] 31.489708
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #539 [hci0] 31.489816
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #540 [hci0] 31.491292
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0006) plen 15  #541 [hci0] 31.491400
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #542 [hci0] 31.494452
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #543 [hci0] 31.494557
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4               #544 [hci0] 31.495968
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0008) plen 32  #545 [hci0] 33.567526
        Length: 29
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Google (0xfeaa)
        Service Data (UUID 0xfeaa): 00005c8e6b8bf66a4ab7a3590016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4               #546 [hci0] 33.569431
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #547 [hci0] 33.569524
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #548 [hci0] 33.571479
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0006) plen 15  #549 [hci0] 33.571569
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #550 [hci0] 33.578408
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #551 [hci0] 33.578498
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4               #552 [hci0] 33.579637
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
> ACL Data RX: Handle 64 flags 0x02 dlen 8                #553 [hci0] 35.248627
      ATT: Write Request (0x12) len 3
        Handle: 0x0068
          Data: 31
< ACL Data TX: Handle 64 flags 0x00 dlen 5                #554 [hci0] 35.302472
      ATT: Write Response (0x13) len 0
> HCI Event: Number of Completed Packets (0x13) plen 5    #555 [hci0] 35.542552
        Num handles: 1
        Handle: 64
        Count: 1
< HCI Command: LE Set Advertisin.. (0x08|0x0008) plen 32  #556 [hci0] 35.647599
        Length: 17
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Unknown (0x4822)
        Company: not assigned (1694)
          Data: 0016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4               #557 [hci0] 35.649604
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #558 [hci0] 35.649703
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #559 [hci0] 35.651730
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0006) plen 15  #560 [hci0] 35.651826
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #561 [hci0] 35.654913
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #562 [hci0] 35.655011
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4               #563 [hci0] 35.656291
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #564 [hci0] 35.968314
      ATT: Read Request (0x0a) len 2
        Handle: 0x0487
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #565 [hci0] 35.968950
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x0487
        Error: Invalid Handle (0x01)
> ACL Data RX: Handle 64 flags 0x02 dlen 8                #566 [hci0] 36.029010
      ATT: Write Request (0x12) len 3
        Handle: 0x0064
          Data: 32
< ACL Data TX: Handle 64 flags 0x00 dlen 5                #567 [hci0] 36.080072
      ATT: Write Response (0x13) len 0
> HCI Event: Number of Completed Packets (0x13) plen 5    #568 [hci0] 36.118401
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #569 [hci0] 36.238788
      ATT: Read Request (0x0a) len 2
        Handle: 0x048a
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #570 [hci0] 36.239489
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x048a
        Error: Invalid Handle (0x01)
> ACL Data RX: Handle 64 flags 0x02 dlen 8                #571 [hci0] 36.299053
      ATT: Write Request (0x12) len 3
        Handle: 0x00ab
          Data: 31
< ACL Data TX: Handle 64 flags 0x00 dlen 5                #572 [hci0] 36.381544
      ATT: Write Response (0x13) len 0
> HCI Event: Number of Completed Packets (0x13) plen 5    #573 [hci0] 36.418536
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #574 [hci0] 36.478844
      ATT: Read Request (0x0a) len 2
        Handle: 0x04a5
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #575 [hci0] 36.479723
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x04a5
        Error: Invalid Handle (0x01)
> ACL Data RX: Handle 64 flags 0x02 dlen 8                #576 [hci0] 36.539035
      ATT: Write Request (0x12) len 3
        Handle: 0x00a4
          Data: 30
< ACL Data TX: Handle 64 flags 0x00 dlen 5                #577 [hci0] 36.591083
      ATT: Write Response (0x13) len 0
> HCI Event: Number of Completed Packets (0x13) plen 5    #578 [hci0] 36.628366
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #579 [hci0] 36.718398
      ATT: Read Request (0x0a) len 2
        Handle: 0x0493
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #580 [hci0] 36.719048
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x0493
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #581 [hci0] 36.918668
        Num handles: 1
        Handle: 64
        Count: 1
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #582 [hci0] 37.078324
      ATT: Read Request (0x0a) len 2
        Handle: 0x0497
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #583 [hci0] 37.079245
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x0497
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #584 [hci0] 37.292681
        Num handles: 1
        Handle: 64
        Count: 1
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #585 [hci0] 37.408276
      ATT: Read Request (0x0a) len 2
        Handle: 0x04a9
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #586 [hci0] 37.408951
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x04a9
        Error: Invalid Handle (0x01)
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #587 [hci0] 37.648418
      ATT: Read Request (0x0a) len 2
        Handle: 0x04ad
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #588 [hci0] 37.649266
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x04ad
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #589 [hci0] 37.667870
        Num handles: 1
        Handle: 64
        Count: 1
< HCI Command: LE Set Advertisin.. (0x08|0x0008) plen 32  #590 [hci0] 37.727666
        Length: 29
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Google (0xfeaa)
        Service Data (UUID 0xfeaa): 00005c8e6b8bf66a4ab7a3590016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4               #591 [hci0] 37.728892
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #592 [hci0] 37.728988
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #593 [hci0] 37.730466
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0006) plen 15  #594 [hci0] 37.730573
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #595 [hci0] 37.733667
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #596 [hci0] 37.733771
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4               #597 [hci0] 37.734737
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #598 [hci0] 37.888373
      ATT: Read Request (0x0a) len 2
        Handle: 0x04bb
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #599 [hci0] 37.889028
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x04bb
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #600 [hci0] 37.917663
        Num handles: 1
        Handle: 64
        Count: 1
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #601 [hci0] 38.098267
      ATT: Read Request (0x0a) len 2
        Handle: 0x04b1
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #602 [hci0] 38.098923
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x04b1
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #603 [hci0] 38.158293
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #604 [hci0] 38.278242
      ATT: Read Request (0x0a) len 2
        Handle: 0x0490
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #605 [hci0] 38.278896
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x0490
        Error: Invalid Handle (0x01)
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #606 [hci0] 38.488242
      ATT: Read Request (0x0a) len 2
        Handle: 0x04b4
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #607 [hci0] 38.488897
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x04b4
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #608 [hci0] 38.542705
        Num handles: 1
        Handle: 64
        Count: 1
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #609 [hci0] 38.698242
      ATT: Read Request (0x0a) len 2
        Handle: 0x04b7
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #610 [hci0] 38.698889
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x04b7
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #611 [hci0] 38.788308
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #612 [hci0] 39.058243
      ATT: Read Request (0x0a) len 2
        Handle: 0x0525
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #613 [hci0] 39.058894
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x0525
        Error: Invalid Handle (0x01)
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #614 [hci0] 39.238282
      ATT: Read Request (0x0a) len 2
        Handle: 0x04be
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #615 [hci0] 39.238948
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x04be
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #616 [hci0] 39.293240
        Num handles: 1
        Handle: 64
        Count: 1
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #617 [hci0] 39.448203
      ATT: Read Request (0x0a) len 2
        Handle: 0x04be
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #618 [hci0] 39.448844
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x04be
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #619 [hci0] 39.508283
        Num handles: 1
        Handle: 64
        Count: 2
< HCI Command: LE Set Advertisin.. (0x08|0x0008) plen 32  #620 [hci0] 39.807598
        Length: 17
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Unknown (0x4822)
        Company: not assigned (1694)
          Data: 0016a45b4f02
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #621 [hci0] 39.815412
      ATT: Read Request (0x0a) len 2
        Handle: 0x04d7
> HCI Event: Command Complete (0x0e) plen 4               #622 [hci0] 39.815541
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #623 [hci0] 39.815603
        Advertising: Disabled (0x00)
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #624 [hci0] 39.816066
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x04d7
        Error: Invalid Handle (0x01)
> HCI Event: Command Complete (0x0e) plen 4               #625 [hci0] 39.826828
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0006) plen 15  #626 [hci0] 39.826945
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #627 [hci0] 39.827933
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #628 [hci0] 39.828028
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4               #629 [hci0] 39.829467
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #630 [hci0] 39.988189
      ATT: Read Request (0x0a) len 2
        Handle: 0x0057
< ACL Data TX: Handle 64 flags 0x00 dlen 10               #631 [hci0] 40.019490
      ATT: Read Response (0x0b) len 5
        Value: 3338302e30
> HCI Event: Number of Completed Packets (0x13) plen 5    #632 [hci0] 40.043617
        Num handles: 1
        Handle: 64
        Count: 1
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #633 [hci0] 40.228164
      ATT: Read Request (0x0a) len 2
        Handle: 0x04de
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #634 [hci0] 40.229087
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x04de
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #635 [hci0] 40.288350
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #636 [hci0] 40.438320
      ATT: Read Request (0x0a) len 2
        Handle: 0x04e1
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #637 [hci0] 40.439403
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x04e1
        Error: Invalid Handle (0x01)
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #638 [hci0] 40.648241
      ATT: Read Request (0x0a) len 2
        Handle: 0x0506
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #639 [hci0] 40.648885
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x0506
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #640 [hci0] 40.668214
        Num handles: 1
        Handle: 64
        Count: 1
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #641 [hci0] 40.858149
      ATT: Read Request (0x0a) len 2
        Handle: 0x04a1
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #642 [hci0] 40.858782
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x04a1
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #643 [hci0] 40.918734
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #644 [hci0] 41.068115
      ATT: Read Request (0x0a) len 2
        Handle: 0x050f
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #645 [hci0] 41.068788
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x050f
        Error: Invalid Handle (0x01)
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #646 [hci0] 41.278139
      ATT: Read Request (0x0a) len 2
        Handle: 0x050c
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #647 [hci0] 41.278794
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x050c
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #648 [hci0] 41.292767
        Num handles: 1
        Handle: 64
        Count: 1
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #649 [hci0] 41.458219
      ATT: Read Request (0x0a) len 2
        Handle: 0x04c4
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #650 [hci0] 41.459654
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x04c4
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #651 [hci0] 41.518211
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #652 [hci0] 41.668132
      ATT: Read Request (0x0a) len 2
        Handle: 0x04c7
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #653 [hci0] 41.668900
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x04c7
        Error: Invalid Handle (0x01)
< HCI Command: LE Set Advertisin.. (0x08|0x0008) plen 32  #654 [hci0] 41.887522
        Length: 29
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Google (0xfeaa)
        Service Data (UUID 0xfeaa): 00005c8e6b8bf66a4ab7a3590016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4               #655 [hci0] 41.888923
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #656 [hci0] 41.889058
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #657 [hci0] 41.890277
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0006) plen 15  #658 [hci0] 41.890354
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #659 [hci0] 41.893482
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #660 [hci0] 41.893582
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4               #661 [hci0] 41.895020
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #662 [hci0] 41.908399
      ATT: Read Request (0x0a) len 2
        Handle: 0x0509
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #663 [hci0] 41.909190
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x0509
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #664 [hci0] 41.917940
        Num handles: 1
        Handle: 64
        Count: 1
> HCI Event: Number of Completed Packets (0x13) plen 5    #665 [hci0] 42.169577
        Num handles: 1
        Handle: 64
        Count: 1
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #666 [hci0] 42.268107
      ATT: Read Request (0x0a) len 2
        Handle: 0x04ca
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #667 [hci0] 42.268745
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x04ca
        Error: Invalid Handle (0x01)
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #668 [hci0] 42.478412
      ATT: Read Request (0x0a) len 2
        Handle: 0x04ce
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #669 [hci0] 42.479047
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x04ce
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #670 [hci0] 42.542916
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #671 [hci0] 42.658322
      ATT: Read Request (0x0a) len 2
        Handle: 0x0016
< ACL Data TX: Handle 64 flags 0x00 dlen 10               #672 [hci0] 42.699824
      ATT: Read Response (0x0b) len 5
        Value: 32322e3031
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #673 [hci0] 42.898115
      ATT: Read Request (0x0a) len 2
        Handle: 0x002e
> HCI Event: Number of Completed Packets (0x13) plen 5    #674 [hci0] 42.917879
        Num handles: 1
        Handle: 64
        Count: 1
< ACL Data TX: Handle 64 flags 0x00 dlen 10               #675 [hci0] 42.933494
      ATT: Read Response (0x0b) len 5
        Value: 32322e3036
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #676 [hci0] 43.138107
      ATT: Read Request (0x0a) len 2
        Handle: 0x0032
> HCI Event: Number of Completed Packets (0x13) plen 5    #677 [hci0] 43.169322
        Num handles: 1
        Handle: 64
        Count: 1
< ACL Data TX: Handle 64 flags 0x00 dlen 10               #678 [hci0] 43.172153
      ATT: Read Response (0x0b) len 5
        Value: 32312e3731
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #679 [hci0] 43.380751
      ATT: Read Request (0x0a) len 2
        Handle: 0x001e
< ACL Data TX: Handle 64 flags 0x00 dlen 6                #680 [hci0] 43.409421
      ATT: Read Response (0x0b) len 1
        Value: 31
> HCI Event: Number of Completed Packets (0x13) plen 5    #681 [hci0] 43.419281
        Num handles: 1
        Handle: 64
        Count: 1
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #682 [hci0] 43.618160
      ATT: Read Request (0x0a) len 2
        Handle: 0x002a
< ACL Data TX: Handle 64 flags 0x00 dlen 6                #683 [hci0] 43.639364
      ATT: Read Response (0x0b) len 1
        Value: 30
> HCI Event: Number of Completed Packets (0x13) plen 5    #684 [hci0] 43.668794
        Num handles: 1
        Handle: 64
        Count: 1
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #685 [hci0] 43.828100
      ATT: Read Request (0x0a) len 2
        Handle: 0x04ed
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #686 [hci0] 43.828757
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x04ed
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #687 [hci0] 43.888148
        Num handles: 1
        Handle: 64
        Count: 2
< HCI Command: LE Set Advertisin.. (0x08|0x0008) plen 32  #688 [hci0] 43.967671
        Length: 17
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Unknown (0x4822)
        Company: not assigned (1694)
          Data: 0016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4               #689 [hci0] 43.969132
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #690 [hci0] 43.969236
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #691 [hci0] 43.971289
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0006) plen 15  #692 [hci0] 43.971429
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #693 [hci0] 43.975281
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #694 [hci0] 43.975388
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4               #695 [hci0] 43.976017
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #696 [hci0] 44.008071
      ATT: Read Request (0x0a) len 2
        Handle: 0x001a
< ACL Data TX: Handle 64 flags 0x00 dlen 10               #697 [hci0] 44.030598
      ATT: Read Response (0x0b) len 5
        Value: 33342e3631
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #698 [hci0] 44.218055
      ATT: Read Request (0x0a) len 2
        Handle: 0x0036
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #699 [hci0] 44.237993
      ATT: Read Response (0x0b) len 4
        Value: 33362e33
> HCI Event: Number of Completed Packets (0x13) plen 5    #700 [hci0] 44.278136
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #701 [hci0] 44.428056
      ATT: Read Request (0x0a) len 2
        Handle: 0x0022
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #702 [hci0] 44.480820
      ATT: Read Response (0x0b) len 4
        Value: 33352e30
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #703 [hci0] 44.668050
      ATT: Read Request (0x0a) len 2
        Handle: 0x003a
> HCI Event: Number of Completed Packets (0x13) plen 5    #704 [hci0] 44.678005
        Num handles: 1
        Handle: 64
        Count: 1
< ACL Data TX: Handle 64 flags 0x00 dlen 11               #705 [hci0] 44.686167
      ATT: Read Response (0x0b) len 6
        Value: 373330312e30
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #706 [hci0] 44.878046
      ATT: Read Request (0x0a) len 2
        Handle: 0x0026
< ACL Data TX: Handle 64 flags 0x00 dlen 7                #707 [hci0] 44.914162
      ATT: Read Response (0x0b) len 2
        Value: 3338
> HCI Event: Number of Completed Packets (0x13) plen 5    #708 [hci0] 44.918122
        Num handles: 1
        Handle: 64
        Count: 1
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #709 [hci0] 45.118033
      ATT: Read Request (0x0a) len 2
        Handle: 0x0090
< ACL Data TX: Handle 64 flags 0x00 dlen 13               #710 [hci0] 45.143123
      ATT: Read Response (0x0b) len 8
        Value: 302e303030303030
> HCI Event: Number of Completed Packets (0x13) plen 5    #711 [hci0] 45.168012
        Num handles: 1
        Handle: 64
        Count: 1
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #712 [hci0] 45.298051
      ATT: Read Request (0x0a) len 2
        Handle: 0x0096
< ACL Data TX: Handle 64 flags 0x00 dlen 13               #713 [hci0] 45.320441
      ATT: Read Response (0x0b) len 8
        Value: 302e303030303030
> HCI Event: Number of Completed Packets (0x13) plen 5    #714 [hci0] 45.358090
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #715 [hci0] 45.508006
      ATT: Read Request (0x0a) len 2
        Handle: 0x0080
< ACL Data TX: Handle 64 flags 0x00 dlen 6                #716 [hci0] 45.540389
      ATT: Read Response (0x0b) len 1
        Value: ff
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #717 [hci0] 45.748201
      ATT: Read Request (0x0a) len 2
        Handle: 0x008c
< ACL Data TX: Handle 64 flags 0x00 dlen 6                #718 [hci0] 45.773910
      ATT: Read Response (0x0b) len 1
        Value: ff
> HCI Event: Number of Completed Packets (0x13) plen 5    #719 [hci0] 45.793270
        Num handles: 1
        Handle: 64
        Count: 1
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #720 [hci0] 45.958185
      ATT: Read Request (0x0a) len 2
        Handle: 0x051b
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #721 [hci0] 45.959045
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x051b
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #722 [hci0] 46.018420
        Num handles: 1
        Handle: 64
        Count: 2
< HCI Command: LE Set Advertisin.. (0x08|0x0008) plen 32  #723 [hci0] 46.047573
        Length: 29
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Google (0xfeaa)
        Service Data (UUID 0xfeaa): 00005c8e6b8bf66a4ab7a3590016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4               #724 [hci0] 46.049196
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #725 [hci0] 46.049292
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #726 [hci0] 46.051328
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0006) plen 15  #727 [hci0] 46.051439
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #728 [hci0] 46.053985
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #729 [hci0] 46.054079
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4               #730 [hci0] 46.055312
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #731 [hci0] 46.167978
      ATT: Read Request (0x0a) len 2
        Handle: 0x04da
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #732 [hci0] 46.168729
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x04da
        Error: Invalid Handle (0x01)
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #733 [hci0] 46.378007
      ATT: Read Request (0x0a) len 2
        Handle: 0x0012
< ACL Data TX: Handle 64 flags 0x00 dlen 6                #734 [hci0] 46.403605
      ATT: Read Response (0x0b) len 1
        Value: 30
> HCI Event: Number of Completed Packets (0x13) plen 5    #735 [hci0] 46.418029
        Num handles: 1
        Handle: 64
        Count: 1
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #736 [hci0] 46.588498
      ATT: Read Request (0x0a) len 2
        Handle: 0x04a5
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #737 [hci0] 46.589243
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x04a5
        Error: Invalid Handle (0x01)
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #738 [hci0] 46.648296
      ATT: Read Request (0x0a) len 2
        Handle: 0x0493
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #739 [hci0] 46.648969
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x0493
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #740 [hci0] 46.649170
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #741 [hci0] 46.709109
      ATT: Read Request (0x0a) len 2
        Handle: 0x0497
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #742 [hci0] 46.709810
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x0497
        Error: Invalid Handle (0x01)
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #743 [hci0] 46.769034
      ATT: Read Request (0x0a) len 2
        Handle: 0x04a9
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #744 [hci0] 46.769676
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x04a9
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #745 [hci0] 46.769868
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #746 [hci0] 46.828818
      ATT: Read Request (0x0a) len 2
        Handle: 0x04ad
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #747 [hci0] 46.829451
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x04ad
        Error: Invalid Handle (0x01)
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #748 [hci0] 46.888664
      ATT: Read Request (0x0a) len 2
        Handle: 0x04bb
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #749 [hci0] 46.889349
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x04bb
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #750 [hci0] 46.889561
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #751 [hci0] 46.948794
      ATT: Read Request (0x0a) len 2
        Handle: 0x04b1
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #752 [hci0] 46.950248
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x04b1
        Error: Invalid Handle (0x01)
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #753 [hci0] 47.008844
      ATT: Read Request (0x0a) len 2
        Handle: 0x0490
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #754 [hci0] 47.010148
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x0490
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #755 [hci0] 47.010728
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #756 [hci0] 47.068643
      ATT: Read Request (0x0a) len 2
        Handle: 0x04b4
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #757 [hci0] 47.069286
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x04b4
        Error: Invalid Handle (0x01)
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #758 [hci0] 47.128790
      ATT: Read Request (0x0a) len 2
        Handle: 0x04b7
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #759 [hci0] 47.130427
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x04b7
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #760 [hci0] 47.131974
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #761 [hci0] 47.188339
      ATT: Read Request (0x0a) len 2
        Handle: 0x0487
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #762 [hci0] 47.188982
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x0487
        Error: Invalid Handle (0x01)
> ACL Data RX: Handle 64 flags 0x02 dlen 7                #763 [hci0] 47.248650
      ATT: Read Request (0x0a) len 2
        Handle: 0x048a
> HCI Event: Number of Completed Packets (0x13) plen 5    #764 [hci0] 47.249026
        Num handles: 1
        Handle: 64
        Count: 2
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #765 [hci0] 47.249457
      ATT: Error Response (0x01) len 4
        Read Request (0x0a)
        Handle: 0x048a
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #766 [hci0] 47.543565
        Num handles: 1
        Handle: 64
        Count: 1
< HCI Command: LE Set Advertisin.. (0x08|0x0008) plen 32  #767 [hci0] 48.127782
        Length: 17
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Unknown (0x4822)
        Company: not assigned (1694)
          Data: 0016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4               #768 [hci0] 48.129819
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #769 [hci0] 48.129924
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #770 [hci0] 48.131379
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0006) plen 15  #771 [hci0] 48.131482
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #772 [hci0] 48.134564
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #773 [hci0] 48.134667
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4               #774 [hci0] 48.136217
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                #775 [hci0] 48.958488
      ATT: Write Request (0x12) len 4
        Handle: 0x04a6
          Data: 0100
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #776 [hci0] 48.959201
      ATT: Error Response (0x01) len 4
        Write Request (0x12)
        Handle: 0x04a6
        Error: Invalid Handle (0x01)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                #777 [hci0] 49.018633
      ATT: Write Request (0x12) len 4
        Handle: 0x0494
          Data: 0100
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #778 [hci0] 49.019315
      ATT: Error Response (0x01) len 4
        Write Request (0x12)
        Handle: 0x0494
        Error: Invalid Handle (0x01)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                #779 [hci0] 49.078643
      ATT: Write Request (0x12) len 4
        Handle: 0x0498
          Data: 0100
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #780 [hci0] 49.079440
      ATT: Error Response (0x01) len 4
        Write Request (0x12)
        Handle: 0x0498
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #781 [hci0] 49.082222
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                #782 [hci0] 49.138667
      ATT: Write Request (0x12) len 4
        Handle: 0x04aa
          Data: 0100
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #783 [hci0] 49.139325
      ATT: Error Response (0x01) len 4
        Write Request (0x12)
        Handle: 0x04aa
        Error: Invalid Handle (0x01)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                #784 [hci0] 49.198224
      ATT: Write Request (0x12) len 4
        Handle: 0x04ae
          Data: 0100
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #785 [hci0] 49.198931
      ATT: Error Response (0x01) len 4
        Write Request (0x12)
        Handle: 0x04ae
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #786 [hci0] 49.199139
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                #787 [hci0] 49.258978
      ATT: Write Request (0x12) len 4
        Handle: 0x04b8
          Data: 0100
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #788 [hci0] 49.259692
      ATT: Error Response (0x01) len 4
        Write Request (0x12)
        Handle: 0x04b8
        Error: Invalid Handle (0x01)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                #789 [hci0] 49.318675
      ATT: Write Request (0x12) len 4
        Handle: 0x0017
          Data: 0100
< ACL Data TX: Handle 64 flags 0x00 dlen 5                #790 [hci0] 49.319855
      ATT: Write Response (0x13) len 0
> HCI Event: Number of Completed Packets (0x13) plen 5    #791 [hci0] 49.326910
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                #792 [hci0] 49.378649
      ATT: Write Request (0x12) len 4
        Handle: 0x002f
          Data: 0100
< ACL Data TX: Handle 64 flags 0x00 dlen 5                #793 [hci0] 49.379601
      ATT: Write Response (0x13) len 0
> ACL Data RX: Handle 64 flags 0x02 dlen 9                #794 [hci0] 49.438711
      ATT: Write Request (0x12) len 4
        Handle: 0x0033
          Data: 0100
< ACL Data TX: Handle 64 flags 0x00 dlen 5                #795 [hci0] 49.439734
      ATT: Write Response (0x13) len 0
> HCI Event: Number of Completed Packets (0x13) plen 5    #796 [hci0] 49.443797
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                #797 [hci0] 49.498656
      ATT: Write Request (0x12) len 4
        Handle: 0x001f
          Data: 0100
< ACL Data TX: Handle 64 flags 0x00 dlen 5                #798 [hci0] 49.499622
      ATT: Write Response (0x13) len 0
> ACL Data RX: Handle 64 flags 0x02 dlen 9                #799 [hci0] 49.558652
      ATT: Write Request (0x12) len 4
        Handle: 0x002b
          Data: 0100
< ACL Data TX: Handle 64 flags 0x00 dlen 5                #800 [hci0] 49.559718
      ATT: Write Response (0x13) len 0
> HCI Event: Number of Completed Packets (0x13) plen 5    #801 [hci0] 49.563924
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                #802 [hci0] 49.618649
      ATT: Write Request (0x12) len 4
        Handle: 0x001b
          Data: 0100
< ACL Data TX: Handle 64 flags 0x00 dlen 5                #803 [hci0] 49.619705
      ATT: Write Response (0x13) len 0
> ACL Data RX: Handle 64 flags 0x02 dlen 9                #804 [hci0] 49.678753
      ATT: Write Request (0x12) len 4
        Handle: 0x0037
          Data: 0100
< ACL Data TX: Handle 64 flags 0x00 dlen 5                #805 [hci0] 49.679803
      ATT: Write Response (0x13) len 0
> HCI Event: Number of Completed Packets (0x13) plen 5    #806 [hci0] 49.683667
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                #807 [hci0] 49.738639
      ATT: Write Request (0x12) len 4
        Handle: 0x0023
          Data: 0100
< ACL Data TX: Handle 64 flags 0x00 dlen 5                #808 [hci0] 49.739601
      ATT: Write Response (0x13) len 0
> ACL Data RX: Handle 64 flags 0x02 dlen 9                #809 [hci0] 49.798661
      ATT: Write Request (0x12) len 4
        Handle: 0x003b
          Data: 0100
< ACL Data TX: Handle 64 flags 0x00 dlen 5                #810 [hci0] 49.799700
      ATT: Write Response (0x13) len 0
> HCI Event: Number of Completed Packets (0x13) plen 5    #811 [hci0] 49.803009
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                #812 [hci0] 49.858606
      ATT: Write Request (0x12) len 4
        Handle: 0x0027
          Data: 0100
< ACL Data TX: Handle 64 flags 0x00 dlen 5                #813 [hci0] 49.859565
      ATT: Write Response (0x13) len 0
> ACL Data RX: Handle 64 flags 0x02 dlen 9                #814 [hci0] 49.918665
      ATT: Write Request (0x12) len 4
        Handle: 0x0081
          Data: 0100
< ACL Data TX: Handle 64 flags 0x00 dlen 5                #815 [hci0] 49.919737
      ATT: Write Response (0x13) len 0
> HCI Event: Number of Completed Packets (0x13) plen 5    #816 [hci0] 49.923712
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                #817 [hci0] 49.978619
      ATT: Write Request (0x12) len 4
        Handle: 0x008d
          Data: 0100
< ACL Data TX: Handle 64 flags 0x00 dlen 5                #818 [hci0] 49.979613
      ATT: Write Response (0x13) len 0
> ACL Data RX: Handle 64 flags 0x02 dlen 9                #819 [hci0] 50.038647
      ATT: Write Request (0x12) len 4
        Handle: 0x04db
          Data: 0100
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #820 [hci0] 50.039354
      ATT: Error Response (0x01) len 4
        Write Request (0x12)
        Handle: 0x04db
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #821 [hci0] 50.039717
        Num handles: 1
        Handle: 64
        Count: 2
> ACL Data RX: Handle 64 flags 0x02 dlen 9                #822 [hci0] 50.098908
      ATT: Write Request (0x12) len 4
        Handle: 0x04a6
          Data: 0000
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #823 [hci0] 50.099571
      ATT: Error Response (0x01) len 4
        Write Request (0x12)
        Handle: 0x04a6
        Error: Invalid Handle (0x01)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                #824 [hci0] 50.158632
      ATT: Write Request (0x12) len 4
        Handle: 0x0494
          Data: 0000
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #825 [hci0] 50.159335
      ATT: Error Response (0x01) len 4
        Write Request (0x12)
        Handle: 0x0494
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #826 [hci0] 50.159695
        Num handles: 1
        Handle: 64
        Count: 2
< HCI Command: LE Set Advertisin.. (0x08|0x0008) plen 32  #827 [hci0] 50.207663
        Length: 29
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Google (0xfeaa)
        Service Data (UUID 0xfeaa): 00005c8e6b8bf66a4ab7a3590016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4               #828 [hci0] 50.209263
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #829 [hci0] 50.209404
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #830 [hci0] 50.211827
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0006) plen 15  #831 [hci0] 50.211945
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #832 [hci0] 50.215685
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #833 [hci0] 50.215787
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4               #834 [hci0] 50.216549
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                #835 [hci0] 50.218186
      ATT: Write Request (0x12) len 4
        Handle: 0x0498
          Data: 0000
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #836 [hci0] 50.218812
      ATT: Error Response (0x01) len 4
        Write Request (0x12)
        Handle: 0x0498
        Error: Invalid Handle (0x01)
> ACL Data RX: Handle 64 flags 0x02 dlen 9                #837 [hci0] 50.278672
      ATT: Write Request (0x12) len 4
        Handle: 0x04aa
          Data: 0000
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #838 [hci0] 50.279370
      ATT: Error Response (0x01) len 4
        Write Request (0x12)
        Handle: 0x04aa
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #839 [hci0] 50.279733
        Num handles: 1
        Handle: 64
        Count: 2
< ACL Data TX: Handle 64 flags 0x00 dlen 12               #840 [hci0] 50.325362
      ATT: Handle Value Notification (0x1b) len 7
        Handle: 0x0016
          Data: 32322e3031
> ACL Data RX: Handle 64 flags 0x02 dlen 9                #841 [hci0] 50.337943
      ATT: Write Request (0x12) len 4
        Handle: 0x04ae
          Data: 0000
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #842 [hci0] 50.338803
      ATT: Error Response (0x01) len 4
        Write Request (0x12)
        Handle: 0x04ae
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #843 [hci0] 50.367846
        Num handles: 1
        Handle: 64
        Count: 2
< ACL Data TX: Handle 64 flags 0x00 dlen 12               #844 [hci0] 50.384540
      ATT: Handle Value Notification (0x1b) len 7
        Handle: 0x002e
          Data: 32322e3036
> ACL Data RX: Handle 64 flags 0x02 dlen 9                #845 [hci0] 50.398155
      ATT: Write Request (0x12) len 4
        Handle: 0x04b8
          Data: 0000
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #846 [hci0] 50.398815
      ATT: Error Response (0x01) len 4
        Write Request (0x12)
        Handle: 0x04b8
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #847 [hci0] 50.427805
        Num handles: 1
        Handle: 64
        Count: 2
< ACL Data TX: Handle 64 flags 0x00 dlen 12               #848 [hci0] 50.444797
      ATT: Handle Value Notification (0x1b) len 7
        Handle: 0x0032
          Data: 32312e3731
> ACL Data RX: Handle 64 flags 0x02 dlen 9                #849 [hci0] 50.457908
      ATT: Write Request (0x12) len 4
        Handle: 0x04db
          Data: 0000
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #850 [hci0] 50.458594
      ATT: Error Response (0x01) len 4
        Write Request (0x12)
        Handle: 0x04db
        Error: Invalid Handle (0x01)
> HCI Event: Number of Completed Packets (0x13) plen 5    #851 [hci0] 50.488323
        Num handles: 1
        Handle: 64
        Count: 2
< ACL Data TX: Handle 64 flags 0x00 dlen 8                #852 [hci0] 50.505330
      ATT: Handle Value Notification (0x1b) len 3
        Handle: 0x001e
          Data: 31
> HCI Event: Number of Completed Packets (0x13) plen 5    #853 [hci0] 50.554035
        Num handles: 1
        Handle: 64
        Count: 2
< ACL Data TX: Handle 64 flags 0x00 dlen 8                #854 [hci0] 50.571494
      ATT: Handle Value Notification (0x1b) len 3
        Handle: 0x002a
          Data: 31
< ACL Data TX: Handle 64 flags 0x00 dlen 12               #855 [hci0] 50.624727
      ATT: Handle Value Notification (0x1b) len 7
        Handle: 0x001a
          Data: 33342e3631
> HCI Event: Number of Completed Packets (0x13) plen 5    #856 [hci0] 50.677589
        Num handles: 1
        Handle: 64
        Count: 2
< ACL Data TX: Handle 64 flags 0x00 dlen 11               #857 [hci0] 50.690948
      ATT: Handle Value Notification (0x1b) len 6
        Handle: 0x0036
          Data: 33362e33
< ACL Data TX: Handle 64 flags 0x00 dlen 11               #858 [hci0] 50.745410
      ATT: Handle Value Notification (0x1b) len 6
        Handle: 0x0022
          Data: 33352e30
> HCI Event: Number of Completed Packets (0x13) plen 5    #859 [hci0] 50.788038
        Num handles: 1
        Handle: 64
        Count: 2
< ACL Data TX: Handle 64 flags 0x00 dlen 13               #860 [hci0] 50.811065
      ATT: Handle Value Notification (0x1b) len 8
        Handle: 0x003a
          Data: 353431342e30
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #861 [hci0] 50.868754
      ATT: Handle Value Notification (0x1b) len 4
        Handle: 0x0026
          Data: 3338
> HCI Event: Number of Completed Packets (0x13) plen 5    #862 [hci0] 50.907931
        Num handles: 1
        Handle: 64
        Count: 2
< HCI Command: LE Set Advertisin.. (0x08|0x0008) plen 32  #863 [hci0] 52.287570
        Length: 17
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Unknown (0x4822)
        Company: not assigned (1694)
          Data: 0016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4               #864 [hci0] 52.289262
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #865 [hci0] 52.289368
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #866 [hci0] 52.291542
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0006) plen 15  #867 [hci0] 52.291638
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #868 [hci0] 52.299068
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #869 [hci0] 52.299165
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4               #870 [hci0] 52.300398
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0008) plen 32  #871 [hci0] 54.367597
        Length: 29
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Google (0xfeaa)
        Service Data (UUID 0xfeaa): 00005c8e6b8bf66a4ab7a3590016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4               #872 [hci0] 54.369325
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #873 [hci0] 54.369437
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #874 [hci0] 54.371575
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0006) plen 15  #875 [hci0] 54.371678
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #876 [hci0] 54.377799
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #877 [hci0] 54.377901
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4               #878 [hci0] 54.379690
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0008) plen 32  #879 [hci0] 56.447586
        Length: 17
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Unknown (0x4822)
        Company: not assigned (1694)
          Data: 0016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4               #880 [hci0] 56.449548
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #881 [hci0] 56.449649
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #882 [hci0] 56.451152
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0006) plen 15  #883 [hci0] 56.451257
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #884 [hci0] 56.454230
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #885 [hci0] 56.454334
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4               #886 [hci0] 56.454971
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0008) plen 32  #887 [hci0] 58.527573
        Length: 29
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Google (0xfeaa)
        Service Data (UUID 0xfeaa): 00005c8e6b8bf66a4ab7a3590016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4               #888 [hci0] 58.529161
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #889 [hci0] 58.529259
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #890 [hci0] 58.531361
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0006) plen 15  #891 [hci0] 58.531455
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #892 [hci0] 58.538294
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #893 [hci0] 58.538398
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4               #894 [hci0] 58.540091
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0008) plen 32  #895 [hci0] 60.607697
        Length: 17
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Unknown (0x4822)
        Company: not assigned (1694)
          Data: 0016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4               #896 [hci0] 60.609264
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #897 [hci0] 60.609355
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #898 [hci0] 60.611256
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0006) plen 15  #899 [hci0] 60.611345
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #900 [hci0] 60.618193
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #901 [hci0] 60.618282
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4               #902 [hci0] 60.619439
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< ACL Data TX: Handle 64 flags 0x00 dlen 8                #903 [hci0] 61.572692
      ATT: Handle Value Notification (0x1b) len 3
        Handle: 0x002a
          Data: 30
> HCI Event: Number of Completed Packets (0x13) plen 5    #904 [hci0] 61.793906
        Num handles: 1
        Handle: 64
        Count: 1
< HCI Command: LE Set Advertisin.. (0x08|0x0008) plen 32  #905 [hci0] 62.687644
        Length: 29
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Google (0xfeaa)
        Service Data (UUID 0xfeaa): 00005c8e6b8bf66a4ab7a3590016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4               #906 [hci0] 62.689598
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #907 [hci0] 62.689712
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #908 [hci0] 62.691358
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0006) plen 15  #909 [hci0] 62.691471
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #910 [hci0] 62.694713
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #911 [hci0] 62.694821
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4               #912 [hci0] 62.695479
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0008) plen 32  #913 [hci0] 64.767646
        Length: 17
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Unknown (0x4822)
        Company: not assigned (1694)
          Data: 0016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4               #914 [hci0] 64.769120
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #915 [hci0] 64.769219
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #916 [hci0] 64.771894
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0006) plen 15  #917 [hci0] 64.772002
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #918 [hci0] 64.778280
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #919 [hci0] 64.778391
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4               #920 [hci0] 64.780178
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0008) plen 32  #921 [hci0] 66.847646
        Length: 29
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Google (0xfeaa)
        Service Data (UUID 0xfeaa): 00005c8e6b8bf66a4ab7a3590016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4               #922 [hci0] 66.849219
      LE Set Advertising Data (0x08|0x0008) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #923 [hci0] 66.849317
        Advertising: Disabled (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #924 [hci0] 66.851960
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertisin.. (0x08|0x0006) plen 15  #925 [hci0] 66.852068
        Min advertising interval: 1280.000 msec (0x0800)
        Max advertising interval: 1280.000 msec (0x0800)
        Type: Connectable undirected - ADV_IND (0x00)
        Own address type: Public (0x00)
        Direct address type: Public (0x00)
        Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
        Channel map: 37, 38, 39 (0x07)
        Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)
> HCI Event: Command Complete (0x0e) plen 4               #926 [hci0] 66.859002
      LE Set Advertising Parameters (0x08|0x0006) ncmd 1
        Status: Success (0x00)
< HCI Command: LE Set Advertise E.. (0x08|0x000a) plen 1  #927 [hci0] 66.859118
        Advertising: Enabled (0x01)
> HCI Event: Command Complete (0x0e) plen 4               #928 [hci0] 66.860294
      LE Set Advertise Enable (0x08|0x000a) ncmd 1
        Status: Success (0x00)
< ACL Data TX: Handle 64 flags 0x00 dlen 9                #929 [hci0] 66.874993
      ATT: Handle Value Notification (0x1b) len 4
        Handle: 0x0026
          Data: 3538
> HCI Event: Number of Completed Packets (0x13) plen 5    #930 [hci0] 67.170400
        Num handles: 1
        Handle: 64
        Count: 1
< ACL Data TX: Handle 64 flags 0x00 dlen 8                #931 [hci0] 67.576597
      ATT: Handle Value Notification (0x1b) len 3
        Handle: 0x002a
          Data: 31
> HCI Event: Number of Completed Packets (0x13) plen 5    #932 [hci0] 67.794407
        Num handles: 1
        Handle: 64
        Count: 1
< HCI Command: LE Set Advertisin.. (0x08|0x0008) plen 32  #933 [hci0] 68.927597
        Length: 17
        Flags: 0x02
          LE General Discoverable Mode
        16-bit Service UUIDs (complete): 1 entry
          Unknown (0x4822)
        Company: not assigned (1694)
          Data: 0016a45b4f02
> HCI Event: Command Complete (0x0e) plen 4               #934 [hci0] 68.929257
      LE Set Advertising Data (0x08|0x0008) n

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

* Re: Have to delete "/var/lib/bluetooth" folder in order to get all service characteristics available
  2021-03-18  5:17   ` Kenny Bian
@ 2021-03-18 16:29     ` Luiz Augusto von Dentz
  2021-03-19  6:07       ` Kenny Bian
  0 siblings, 1 reply; 5+ messages in thread
From: Luiz Augusto von Dentz @ 2021-03-18 16:29 UTC (permalink / raw)
  To: Kenny Bian; +Cc: linux-bluetooth

Hi Kenny,

On Wed, Mar 17, 2021 at 10:17 PM Kenny Bian <kennybian@gmail.com> wrote:
>
> Thank you so much for your reply, Luiz.
>
> We have a small device which runs a Linux system in it. In this
> embedded Linux system, there is GATT server runs BLE service which
> provides the services with the characteristics for reading and writing
> from the mobile device such as iPhone. The folder "/var/lib/bluetooth"
> is in the embedded Linux system. We call this embedded Linux as BLE
> Server, and the iPhone as the BLE Client. During the testing a few
> weeks ago, not only our mobile app crashed, but the nRF also crashed
> as the service was changed. Since we have no way to tell whether the
> ServiceChanged indication works or not. We disabled the bluetooth
> cache. Then we have this new issue.
>
> I never saw the "[ServiceChanged]" section from the "info" file. I
> tried to change the attributes of some characteristics. For example,
> adding notification in some characteristics. Then restart the BlE
> service from the Linux system. I did check the "info" file after that,
> but I didn't see the "[ServiceChanged]" section. Is there another way
> to have the "[ServiceChanged]" showing up?
>
> Today, I ran the testing again by doing the firmware upgrade. Right
> after the firmware upgrade, I used the btmon to capture the
> characteristics reading by using our mobile app. Please see the
> attached log. As you can see, there are a lot of errors because there
> are 5 services which only have the service itself listed(I checked it
> by using nRF). For about 30 characteristics under those services can't
> be seen. That's why there are errors when the mobile app tries to read
> the data. I double checked, the BLE python files between these two
> versions of the firmware are exactly the same. So there are no
> ServiceChanged. As the reading didn't work, I had to remove the
> "/var/lib/bluetooth" folder. Then this folder was recreated again. I
> compared the file "attributes" and "info" before and after removal of
> the "/var/lib/bluetooth" folder. The "attributes" files are exactly
> the same. The "info" files are different. But it makes sense because
> only the "[SlaveLongTermKey]" and "[LinkKey]" are different which is
> caused by re-pairing from the mobile side, I guess.
>
> So in this case, the BLE service python code is exactly the same. The
> "attributes" and "info" files are also the same or slightly different
> because of the re-pairing. How come some characteristics cannot be
> seen from nRF? As those characteristics are not listed in nRF, neither
> nRF or our mobile app can read the data.
>
> Honestly, this situation is pretty much the same as there is no
> firmware upgrade because the service file itself and those files under
> "/var/lib/bluetooth" are almost the same. How come the normal reading
> from the mobile app works fine? But after the firmware upgrade, some
> characteristics can't be seen? Is there anything wrong about
> advertisement? In fact, the firmware upgrade only copy over the
> "/var/lib/bluetooth" in order to keep the pairing information. I have
> no idea something went wrong. Are there anything else to look into?

< ACL Data TX: Handle 64 flags 0x00 dlen 186
      ATT: Read By Group Type Response (0x11) len 181
        Attribute data length: 20
        Attribute group list: 9 entries
        Handle range: 0x000a-0x0013
        UUID: Vendor specific (efb39360-a7e3-438f-a20d-e9f00e0e22b1)
        Handle range: 0x0014-0x004c
        UUID: Vendor specific (f57793c9-9544-46dc-bfa0-5fd149953c86)
        Handle range: 0x004d-0x0061
        UUID: Vendor specific (5040556b-340f-4c6f-b411-448089694628)
        Handle range: 0x0062-0x00ac
        UUID: Vendor specific (e05ad2ac-9a01-45f5-a56d-9c3c889d4dc6)
        Handle range: 0x00ad-0x00ca
        UUID: Vendor specific (51e16ff1-20d3-45ec-915c-f18290a893c5)
        Handle range: 0x00cb-0x00fc
        UUID: Vendor specific (e03d645c-3f2b-4693-a2fb-99840ee2581d)
        Handle range: 0x00fd-0x0122
        UUID: Vendor specific (5526a99e-7975-42ff-a27b-94d5a1ad9986)
        Handle range: 0x0123-0x0144
        UUID: Vendor specific (d72ce428-ba8c-4061-b6de-6f682736fe08)
        Handle range: 0x0145-0x0151
        UUID: Vendor specific (76a136d4-29fc-4217-b358-9bff4d6601ce

So if I got you right you are saying that characteristics under the
last 2 services are not listed? But they appeared on the logs:

> ACL Data RX: Handle 64 flags 0x02 dlen 11
      ATT: Read By Type Request (0x08) len 6
        Handle range: 0x0123-0x0144
        Attribute type: Characteristic (0x2803)
< ACL Data TX: Handle 64 flags 0x00 dlen 174
      ATT: Read By Type Response (0x09) len 169
        Attribute data length: 21
        Attribute data list: 8 entries
        Handle: 0x0124
        Value: 8225012a7609433923a6925d42d5d4bf9307c4
        Handle: 0x0127
        Value: 82280181c6d99e78e5409a26411b1570c9c420
        Handle: 0x012a
        Value: 822b01d56926acbb8915bcad433323d6d170f4
        Handle: 0x012d
        Value: 822e01ba148cb7ef078a8406420e179ac55080
        Handle: 0x0130
        Value: 8231017715d4d9cd34078f004286be53568f03
        Handle: 0x0133
        Value: 8234012d4ead967eb781bb25442973c6247972
        Handle: 0x0136
        Value: 8237019997e76edb16c4b0b347be4445ee259c
        Handle: 0x0139
        Value: 823a01cdef05a932746f85b44aa6b0b1f07b6
> ACL Data RX: Handle 64 flags 0x02 dlen 11
      ATT: Read By Type Request (0x08) len 6
        Handle range: 0x013b-0x0144
        Attribute type: Characteristic (0x2803)
< ACL Data TX: Handle 64 flags 0x00 dlen 69
      ATT: Read By Type Response (0x09) len 64
        Attribute data length: 21
        Attribute data list: 3 entries
        Handle: 0x013c
        Value: 823d01f1406c52df184a929e44b967b5d5bba3
        Handle: 0x013f
        Value: 884001e85f5356a5e92a9a794cb5c0c68a90bd
        Handle: 0x0142
        Value: 8a430168db5fe9dcd35c8dec46efcb334ffa8

So this informed the remote that there are a total of 11 (8+3)
characteristics in the range of 0x0123-0x0144.

> ACL Data RX: Handle 64 flags 0x02 dlen 11
      ATT: Read By Type Request (0x08) len 6
        Handle range: 0x0145-0x0151
        Attribute type: Characteristic (0x2803)
< ACL Data TX: Handle 64 flags 0x00 dlen 90
      ATT: Read By Type Response (0x09) len 85
        Attribute data length: 21
        Attribute data list: 4 entries
        Handle: 0x0146
        Value: 884701f09f9394856720a26047025b9ef90752
        Handle: 0x0149
        Value: 884a013fd59d9e09e280b95d4ef082b6251241
        Handle: 0x014c
        Value: 8a4d01f2b9f5d7d417f1bfb14fe66a4c9a476c
        Handle: 0x014f
        Value: 885001da299c6a9df1309f43421ece432e9233

And there are 4 characteristics in the range of 0x0145-0x0151. In fact
all the services seem to contain characteristics so if the remote
cannot list them then the problem is on their side, also there are
writes on the handles 0x04xx where there are no services whatsoever,
so this tells me that the remote has a invalid cache even after
performing a discovery and found out there are no services in the
range 0x0152-0xffff:

> ACL Data RX: Handle 64 flags 0x02 dlen 11
      ATT: Read By Group Type Request (0x10) len 6
        Handle range: 0x0152-0xffff
        Attribute group type: Primary Service (0x2800)
< ACL Data TX: Handle 64 flags 0x00 dlen 9
      ATT: Error Response (0x01) len 4
        Read By Group Type Request (0x10)
        Handle: 0x0152
        Error: Attribute Not Found (0x0a)

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

* Re: Have to delete "/var/lib/bluetooth" folder in order to get all service characteristics available
  2021-03-18 16:29     ` Luiz Augusto von Dentz
@ 2021-03-19  6:07       ` Kenny Bian
  0 siblings, 0 replies; 5+ messages in thread
From: Kenny Bian @ 2021-03-19  6:07 UTC (permalink / raw)
  To: Luiz Augusto von Dentz; +Cc: linux-bluetooth

Thank you so much, Luiz. I appreciate it.

Yes, you're right. I counted the characteristics from the log. There
are exactly 9 services which include 92 characteristics. Do you think
it is "too many" by having 92 characteristics? Do you know if there is
any limit in BlueZ? It seems someone mentioned the number of
characteristics in this link:
https://devzone.nordicsemi.com/f/nordic-q-a/16233/nrf-connect-fails-when-using-many-characteristics

For the write request for the non-exist handle, I've asked our mobile
developer to check it on the mobile side.

Thanks again!

On Thu, Mar 18, 2021 at 9:30 AM Luiz Augusto von Dentz
<luiz.dentz@gmail.com> wrote:
>
> Hi Kenny,
>
> On Wed, Mar 17, 2021 at 10:17 PM Kenny Bian <kennybian@gmail.com> wrote:
> >
> > Thank you so much for your reply, Luiz.
> >
> > We have a small device which runs a Linux system in it. In this
> > embedded Linux system, there is GATT server runs BLE service which
> > provides the services with the characteristics for reading and writing
> > from the mobile device such as iPhone. The folder "/var/lib/bluetooth"
> > is in the embedded Linux system. We call this embedded Linux as BLE
> > Server, and the iPhone as the BLE Client. During the testing a few
> > weeks ago, not only our mobile app crashed, but the nRF also crashed
> > as the service was changed. Since we have no way to tell whether the
> > ServiceChanged indication works or not. We disabled the bluetooth
> > cache. Then we have this new issue.
> >
> > I never saw the "[ServiceChanged]" section from the "info" file. I
> > tried to change the attributes of some characteristics. For example,
> > adding notification in some characteristics. Then restart the BlE
> > service from the Linux system. I did check the "info" file after that,
> > but I didn't see the "[ServiceChanged]" section. Is there another way
> > to have the "[ServiceChanged]" showing up?
> >
> > Today, I ran the testing again by doing the firmware upgrade. Right
> > after the firmware upgrade, I used the btmon to capture the
> > characteristics reading by using our mobile app. Please see the
> > attached log. As you can see, there are a lot of errors because there
> > are 5 services which only have the service itself listed(I checked it
> > by using nRF). For about 30 characteristics under those services can't
> > be seen. That's why there are errors when the mobile app tries to read
> > the data. I double checked, the BLE python files between these two
> > versions of the firmware are exactly the same. So there are no
> > ServiceChanged. As the reading didn't work, I had to remove the
> > "/var/lib/bluetooth" folder. Then this folder was recreated again. I
> > compared the file "attributes" and "info" before and after removal of
> > the "/var/lib/bluetooth" folder. The "attributes" files are exactly
> > the same. The "info" files are different. But it makes sense because
> > only the "[SlaveLongTermKey]" and "[LinkKey]" are different which is
> > caused by re-pairing from the mobile side, I guess.
> >
> > So in this case, the BLE service python code is exactly the same. The
> > "attributes" and "info" files are also the same or slightly different
> > because of the re-pairing. How come some characteristics cannot be
> > seen from nRF? As those characteristics are not listed in nRF, neither
> > nRF or our mobile app can read the data.
> >
> > Honestly, this situation is pretty much the same as there is no
> > firmware upgrade because the service file itself and those files under
> > "/var/lib/bluetooth" are almost the same. How come the normal reading
> > from the mobile app works fine? But after the firmware upgrade, some
> > characteristics can't be seen? Is there anything wrong about
> > advertisement? In fact, the firmware upgrade only copy over the
> > "/var/lib/bluetooth" in order to keep the pairing information. I have
> > no idea something went wrong. Are there anything else to look into?
>
> < ACL Data TX: Handle 64 flags 0x00 dlen 186
>       ATT: Read By Group Type Response (0x11) len 181
>         Attribute data length: 20
>         Attribute group list: 9 entries
>         Handle range: 0x000a-0x0013
>         UUID: Vendor specific (efb39360-a7e3-438f-a20d-e9f00e0e22b1)
>         Handle range: 0x0014-0x004c
>         UUID: Vendor specific (f57793c9-9544-46dc-bfa0-5fd149953c86)
>         Handle range: 0x004d-0x0061
>         UUID: Vendor specific (5040556b-340f-4c6f-b411-448089694628)
>         Handle range: 0x0062-0x00ac
>         UUID: Vendor specific (e05ad2ac-9a01-45f5-a56d-9c3c889d4dc6)
>         Handle range: 0x00ad-0x00ca
>         UUID: Vendor specific (51e16ff1-20d3-45ec-915c-f18290a893c5)
>         Handle range: 0x00cb-0x00fc
>         UUID: Vendor specific (e03d645c-3f2b-4693-a2fb-99840ee2581d)
>         Handle range: 0x00fd-0x0122
>         UUID: Vendor specific (5526a99e-7975-42ff-a27b-94d5a1ad9986)
>         Handle range: 0x0123-0x0144
>         UUID: Vendor specific (d72ce428-ba8c-4061-b6de-6f682736fe08)
>         Handle range: 0x0145-0x0151
>         UUID: Vendor specific (76a136d4-29fc-4217-b358-9bff4d6601ce
>
> So if I got you right you are saying that characteristics under the
> last 2 services are not listed? But they appeared on the logs:
>
> > ACL Data RX: Handle 64 flags 0x02 dlen 11
>       ATT: Read By Type Request (0x08) len 6
>         Handle range: 0x0123-0x0144
>         Attribute type: Characteristic (0x2803)
> < ACL Data TX: Handle 64 flags 0x00 dlen 174
>       ATT: Read By Type Response (0x09) len 169
>         Attribute data length: 21
>         Attribute data list: 8 entries
>         Handle: 0x0124
>         Value: 8225012a7609433923a6925d42d5d4bf9307c4
>         Handle: 0x0127
>         Value: 82280181c6d99e78e5409a26411b1570c9c420
>         Handle: 0x012a
>         Value: 822b01d56926acbb8915bcad433323d6d170f4
>         Handle: 0x012d
>         Value: 822e01ba148cb7ef078a8406420e179ac55080
>         Handle: 0x0130
>         Value: 8231017715d4d9cd34078f004286be53568f03
>         Handle: 0x0133
>         Value: 8234012d4ead967eb781bb25442973c6247972
>         Handle: 0x0136
>         Value: 8237019997e76edb16c4b0b347be4445ee259c
>         Handle: 0x0139
>         Value: 823a01cdef05a932746f85b44aa6b0b1f07b6
> > ACL Data RX: Handle 64 flags 0x02 dlen 11
>       ATT: Read By Type Request (0x08) len 6
>         Handle range: 0x013b-0x0144
>         Attribute type: Characteristic (0x2803)
> < ACL Data TX: Handle 64 flags 0x00 dlen 69
>       ATT: Read By Type Response (0x09) len 64
>         Attribute data length: 21
>         Attribute data list: 3 entries
>         Handle: 0x013c
>         Value: 823d01f1406c52df184a929e44b967b5d5bba3
>         Handle: 0x013f
>         Value: 884001e85f5356a5e92a9a794cb5c0c68a90bd
>         Handle: 0x0142
>         Value: 8a430168db5fe9dcd35c8dec46efcb334ffa8
>
> So this informed the remote that there are a total of 11 (8+3)
> characteristics in the range of 0x0123-0x0144.
>
> > ACL Data RX: Handle 64 flags 0x02 dlen 11
>       ATT: Read By Type Request (0x08) len 6
>         Handle range: 0x0145-0x0151
>         Attribute type: Characteristic (0x2803)
> < ACL Data TX: Handle 64 flags 0x00 dlen 90
>       ATT: Read By Type Response (0x09) len 85
>         Attribute data length: 21
>         Attribute data list: 4 entries
>         Handle: 0x0146
>         Value: 884701f09f9394856720a26047025b9ef90752
>         Handle: 0x0149
>         Value: 884a013fd59d9e09e280b95d4ef082b6251241
>         Handle: 0x014c
>         Value: 8a4d01f2b9f5d7d417f1bfb14fe66a4c9a476c
>         Handle: 0x014f
>         Value: 885001da299c6a9df1309f43421ece432e9233
>
> And there are 4 characteristics in the range of 0x0145-0x0151. In fact
> all the services seem to contain characteristics so if the remote
> cannot list them then the problem is on their side, also there are
> writes on the handles 0x04xx where there are no services whatsoever,
> so this tells me that the remote has a invalid cache even after
> performing a discovery and found out there are no services in the
> range 0x0152-0xffff:
>
> > ACL Data RX: Handle 64 flags 0x02 dlen 11
>       ATT: Read By Group Type Request (0x10) len 6
>         Handle range: 0x0152-0xffff
>         Attribute group type: Primary Service (0x2800)
> < ACL Data TX: Handle 64 flags 0x00 dlen 9
>       ATT: Error Response (0x01) len 4
>         Read By Group Type Request (0x10)
>         Handle: 0x0152
>         Error: Attribute Not Found (0x0a)

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

end of thread, other threads:[~2021-03-19  6:08 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-17  7:36 Have to delete "/var/lib/bluetooth" folder in order to get all service characteristics available Kenny Bian
2021-03-17 18:15 ` Luiz Augusto von Dentz
2021-03-18  5:17   ` Kenny Bian
2021-03-18 16:29     ` Luiz Augusto von Dentz
2021-03-19  6:07       ` Kenny Bian

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