This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Error 133 (0x85): GATT ERROR on nRF52840

Hi,

I am running ble_app_blinky example on nRF5280 custom board, it is giving me Error 133 (0x85): GATT ERROR. Since I have nrf52DK, I tried same example with SD 132 on nrf52832 it works as expected.

I went through devzone and there are many questions with similar issues but  couldn't find a solution.

Could you please let me know what could be reason for the same?

https://devzone.nordicsemi.com/f/nordic-q-a/32590/error-133-0x85-gatt-error-with-htc-u11-life

https://devzone.nordicsemi.com/f/nordic-q-a/33313/android-gatt-133-error

SDK 15.2.0

SD 140

nRF52840

Keil

Tried on Honor 7X (Android 8.0.0), Redmi Note 4 (Android 7.0),

nRF Connect, 2019-04-24
Nordic_Blinky (XX:XX:XX:XX:XX:XX)
V 16:07:10.488 Connecting to XX:XX:XX:XX:XX:XX...
D 16:07:10.488 gatt = device.connectGatt(autoConnect = false, TRANSPORT_LE, preferred PHY = LE 1M)
D 16:07:19.253 [Callback] Connection state changed with status: 133 and new state: DISCONNECTED (0)
E 16:07:19.253 Error 133 (0x85): GATT ERROR
I 16:07:19.253 Disconnected
D 16:07:21.850 gatt.close()
D 16:07:21.854 wait(200)
V 16:07:22.056 Connecting to XX:XX:XX:XX:XX:XX...
D 16:07:22.057 gatt = device.connectGatt(autoConnect = false, TRANSPORT_LE, preferred PHY = LE 1M)
D 16:07:52.111 [Callback] Connection state changed with status: 133 and new state: DISCONNECTED (0)
E 16:07:52.111 Error 133 (0x85): GATT ERROR
I 16:07:52.111 Disconnected
D 16:07:54.117 gatt.close()
D 16:07:54.120 wait(200)
V 16:07:54.321 Connecting to XX:XX:XX:XX:XX:XX...
D 16:07:54.322 gatt = device.connectGatt(autoConnect = false, TRANSPORT_LE, preferred PHY = LE 1M)
D 16:08:09.849 [Callback] Connection state changed with status: 133 and new state: DISCONNECTED (0)
E 16:08:09.850 Error 133 (0x85): GATT ERROR
I 16:08:09.850 Disconnected
D 16:08:14.775 gatt.close()
D 16:08:14.779 wait(200)
V 16:08:14.982 Connecting to XX:XX:XX:XX:XX:XX...
D 16:08:14.982 gatt = device.connectGatt(autoConnect = false, TRANSPORT_LE, preferred PHY = LE 1M)
D 16:08:15.541 [Callback] Connection state changed with status: 133 and new state: DISCONNECTED (0)
E 16:08:15.541 Error 133 (0x85): GATT ERROR
I 16:08:15.541 Disconnected

00> <info> app: Template example started.
00> <info> app: Fast advertising.
00> <info> app: Connected.
00> <info> app: Fast advertising.
00> <info> app: Disconnected.

Parents
  • Hi Ali

    I see that the BL654 uses the nRF52840 chip, and not the nRF52832 which the example you referred to and the nRF52DK uses. Please make sure that you use PCA10056 and s140 when developing. The BL654 does not ship with the external RC oscillator, so you have to configure the chip to use the internal RC instead. You can configure it to use the internal RC by setting this define = 0:

    // <e> NRFX_CLOCK_ENABLED - nrfx_clock - CLOCK peripheral driver
    //==========================================================
    #ifndef NRFX_CLOCK_ENABLED
    #define NRFX_CLOCK_ENABLED 0
    #endif
    // <o> NRFX_CLOCK_CONFIG_LF_SRC  - LF Clock Source
     
    // <0=> RC 
    // <1=> XTAL 
    // <2=> Synth 
    // <131073=> External Low Swing 
    // <196609=> External Full Swing 
    

    Best regards,

    Simon

  • Hi,

    I disabled NRF_CLOCK_ENABLED as suggested but still t doesn't work. It shows same error.

    Sorry, I didn't upload the logs last time.

    Here are the logs.

    ble_app_blinky example - PCA10056

    #define NRFX_CLOCK_ENABLED 0
    as suggested

    Laird’s BL654 module

    SDK 15.2

    SD 140

    2019-05-03T07:21:22.945Z INFO Application data folder: C:\Users\mac\AppData\Roaming\nrfconnect\pc-nrfconnect-ble
    2019-05-03T07:21:23.062Z DEBUG App pc-nrfconnect-ble v2.2.1 official
    2019-05-03T07:21:23.062Z DEBUG App path: C:\Users\mac\.nrfconnect-apps\node_modules\pc-nrfconnect-ble
    2019-05-03T07:21:23.062Z DEBUG nRFConnect 2.6.2 is supported by the app (^2.4.0)
    2019-05-03T07:21:23.062Z DEBUG nRFConnect path: C:\Users\mac\AppData\Local\Programs\nrfconnect\resources\app.asar
    2019-05-03T07:21:23.062Z DEBUG HomeDir: C:\Users\mac
    2019-05-03T07:21:23.062Z DEBUG TmpDir: C:\Users\mac\AppData\Local\Temp
    2019-05-03T07:21:23.076Z VERBOSE Could not fetch serial number for serial port at COM3
    2019-05-03T07:21:25.798Z INFO Validating connectivity firmware for device with serial number 000682749678...
    2019-05-03T07:21:27.429Z INFO Connectivity firmware is valid.
    2019-05-03T07:21:27.431Z INFO Getting information from J-Link debugger...
    2019-05-03T07:21:28.812Z INFO Found device type: unknown. J-Link firmware: J-Link OB-SAM3U128-V2-NordicSemi compiled Jul 12 2018 11:44:41.
    2019-05-03T07:21:28.812Z INFO Connectivity firmware version: 1.2.3. SoftDevice API version: 3. Baud rate: 1000000.
    2019-05-03T07:21:28.814Z INFO Opening adapter connected to COM8
    2019-05-03T07:21:29.376Z INFO Reset performed on adapter COM8
    2019-05-03T07:21:29.378Z INFO Successfully opened COM8. Baud rate: 1000000. Flow control: none. Parity: none.
    
    2019-05-03T07:21:29.378Z DEBUG State change: STATE_START -> STATE_RESET
    
    2019-05-03T07:21:29.378Z DEBUG        1 ->  []
                   type:          RESERVED_5 reliable: no seq#:0 ack#:0 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:29.675Z DEBUG State change: STATE_RESET -> STATE_UNINITIALIZED
    
    2019-05-03T07:21:29.676Z DEBUG        2 ->  [01 7e ]
                   type: LINK_CONTROL_PACKET reliable: no seq#:0 ack#:0 payload_length:2 data_integrity:0 err_code:0
                   [SYNC]
    2019-05-03T07:21:29.677Z DEBUG     1/ 0 <-  [02 7d ]
                   type: LINK_CONTROL_PACKET reliable: no seq#:0 ack#:0 payload_length:2 data_integrity:0 err_code:0
                   [SYNC_RESP]
    2019-05-03T07:21:29.678Z DEBUG State change: STATE_UNINITIALIZED -> STATE_INITIALIZED
    
    2019-05-03T07:21:29.678Z DEBUG        3 ->  [03 fc 11 ]
                   type: LINK_CONTROL_PACKET reliable: no seq#:0 ack#:0 payload_length:3 data_integrity:0 err_code:0
                   [CONFIG [ sliding-window-size:1 out-of-frame:0 data-integrity-check-type:1 version-number:0 ]]
    2019-05-03T07:21:29.926Z DEBUG     2/ 0 <-  [01 7e ]
                   type: LINK_CONTROL_PACKET reliable: no seq#:0 ack#:0 payload_length:2 data_integrity:0 err_code:0
                   [SYNC]
    2019-05-03T07:21:29.927Z DEBUG        4 ->  [02 7d ]
                   type: LINK_CONTROL_PACKET reliable: no seq#:0 ack#:0 payload_length:2 data_integrity:0 err_code:0
                   [SYNC_RESP]
    2019-05-03T07:21:29.929Z DEBUG        5 ->  [03 fc 11 ]
                   type: LINK_CONTROL_PACKET reliable: no seq#:0 ack#:0 payload_length:3 data_integrity:0 err_code:0
                   [CONFIG [ sliding-window-size:1 out-of-frame:0 data-integrity-check-type:1 version-number:0 ]]
    2019-05-03T07:21:29.931Z DEBUG     3/ 0 <-  [04 7b 11 ]
                   type: LINK_CONTROL_PACKET reliable: no seq#:0 ack#:0 payload_length:3 data_integrity:0 err_code:0
                   [CONFIG_RESP [ sliding-window-size:1 out-of-frame:0 data-integrity-check-type:1 version-number:0 ]]
    2019-05-03T07:21:29.932Z DEBUG State change: STATE_INITIALIZED -> STATE_ACTIVE
    
    2019-05-03T07:21:29.964Z INFO Adapter connected to COM8 opened
    2019-05-03T07:21:29.971Z DEBUG        6 ->  [00 60 01 0a 00 00 01 07 01 00 f7 00 00 00 00 00 00 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:0 ack#:0 payload_length:11 data_integrity:1 header_checksum:21 err_code:0
    2019-05-03T07:21:30.175Z DEBUG     4/ 0 <-  [03 fc 11 ]
                   type: LINK_CONTROL_PACKET reliable: no seq#:0 ack#:0 payload_length:3 data_integrity:0 err_code:0
                   [CONFIG [ sliding-window-size:1 out-of-frame:0 data-integrity-check-type:1 version-number:0 ]]
    2019-05-03T07:21:30.175Z DEBUG        7 ->  [04 7b 11 ]
                   type: LINK_CONTROL_PACKET reliable: no seq#:0 ack#:0 payload_length:3 data_integrity:0 err_code:0
                   [CONFIG_RESP [ sliding-window-size:1 out-of-frame:0 data-integrity-check-type:1 version-number:0 ]]
    2019-05-03T07:21:30.202Z DEBUG        8 ->  [00 60 01 0a 00 00 01 07 01 00 f7 00 00 00 00 00 00 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:0 ack#:0 payload_length:11 data_integrity:1 header_checksum:21 err_code:0
    2019-05-03T07:21:30.204Z DEBUG     5/ 0 <-  []
                   type:                 ACK reliable: no seq#:0 ack#:1 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:30.206Z DEBUG     6/ 0 <-  [01 60 00 00 00 00 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:0 ack#:1 payload_length:6 data_integrity:1 header_checksum:ca err_code:0
    2019-05-03T07:21:30.207Z DEBUG        9 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:1 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:30.223Z DEBUG       10 ->  [00 66 01 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:1 ack#:1 payload_length:3 data_integrity:1 header_checksum:f9 err_code:0
    2019-05-03T07:21:30.264Z DEBUG     7/ 0 <-  []
                   type:                 ACK reliable: no seq#:0 ack#:2 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:30.264Z DEBUG     8/ 0 <-  [01 66 00 00 00 00 08 59 00 91 00 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:1 ack#:2 payload_length:b data_integrity:1 header_checksum:71 err_code:0
    2019-05-03T07:21:30.265Z DEBUG       11 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:2 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:30.265Z DEBUG       12 ->  [00 7d 01 f8 00 01 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:2 ack#:2 payload_length:6 data_integrity:1 header_checksum:c0 err_code:0
    2019-05-03T07:21:30.266Z DEBUG     9/ 0 <-  []
                   type:                 ACK reliable: no seq#:0 ack#:3 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:30.266Z DEBUG    10/ 0 <-  [01 7d 00 00 00 00 01 05 00 6e 52 46 35 78 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:2 ack#:3 payload_length:e data_integrity:1 header_checksum:38 err_code:0
    2019-05-03T07:21:30.266Z DEBUG       13 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:3 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:30.281Z DEBUG       14 ->  [00 6d 01 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:3 ack#:3 payload_length:3 data_integrity:1 header_checksum:e7 err_code:0
    2019-05-03T07:21:30.283Z DEBUG    11/ 0 <-  []
                   type:                 ACK reliable: no seq#:0 ack#:4 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:30.283Z DEBUG    12/ 0 <-  [01 6d 00 00 00 00 02 79 0c bb 28 ae cd ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:3 ack#:4 payload_length:d data_integrity:1 header_checksum:3f err_code:0
    2019-05-03T07:21:30.283Z DEBUG       15 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:4 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:30.290Z DEBUG SoftDevice BLE stack enabled.
    2019-05-03T07:21:33.467Z DEBUG       16 ->  [00 8a 01 01 a0 00 20 00 3c 00 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:4 ack#:4 payload_length:a data_integrity:1 header_checksum:6e err_code:0
    2019-05-03T07:21:33.469Z DEBUG    13/ 0 <-  []
                   type:                 ACK reliable: no seq#:0 ack#:5 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:33.469Z DEBUG    14/ 0 <-  [01 8a 00 00 00 00 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:4 ack#:5 payload_length:6 data_integrity:1 header_checksum:a6 err_code:0
    2019-05-03T07:21:33.469Z DEBUG       17 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:5 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:33.475Z INFO Scan started
    2019-05-03T07:21:34.694Z DEBUG GAP_EVT_ADV_REPORT/ADV_NONCONN_IND time:2019-05-03T07:21:34.679Z connHandle:65535 rssi:92 peerAddr:[address:14:7C:FC:CC:67:04 type:randomPrivateNonResolvable addrIdPeer:0] scanRsp:false advType:advNonconnInd gap:[manufacturerSpecificData:6,0,1,9,32,2,163,167,251,45,159,1,83,17,212,125,111,176,52,253,53,180,184,161,24,194,151,89,87]
    2019-05-03T07:21:34.713Z DEBUG    15/ 0 <-  [02 1d 00 ff ff 06 04 67 cc fc 7c 14 00 00 00 00 00 00 00 a4 06 1f 01 1e ff 06 00 01 09 20 02 a3 a7 fb 2d 9f 01 53 11 d4 7d 6f b0 34 fd 35 b4 b8 a1 18 c2 97 59 57 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:5 ack#:5 payload_length:36 data_integrity:1 header_checksum:a2 err_code:0
    2019-05-03T07:21:34.714Z DEBUG       18 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:6 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:35.684Z DEBUG    16/ 0 <-  [02 1d 00 ff ff 00 d0 de 74 da e4 80 00 00 00 00 00 00 00 bd 00 1f 01 02 01 06 11 07 1b c5 d5 a5 02 00 dc 9e e4 11 e7 26 c0 df 2a f0 09 09 66 30 32 33 64 4e 37 51 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:6 ack#:5 payload_length:36 data_integrity:1 header_checksum:a1 err_code:0
    2019-05-03T07:21:35.685Z DEBUG       19 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:7 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:35.690Z DEBUG GAP_EVT_ADV_REPORT/ADV_IND time:2019-05-03T07:21:35.686Z connHandle:65535 rssi:67 peerAddr:[address:80:E4:DA:74:DE:D0 type:public addrIdPeer:0] scanRsp:false advType:advInd gap:[adTypeFlags:[leGeneralDiscMode,brEdrNotSupported,leOnlyLimitedDiscMode,leOnlyGeneralDiscMode] 128BitServiceUuidComplete:F02ADFC0-26E7-11E4-9EDC-0002A5D5C51B completeLocalName:f023dN7Q]
    2019-05-03T07:21:35.700Z DEBUG    17/ 0 <-  [02 1d 00 ff ff 00 d0 de 74 da e4 80 00 00 00 00 00 00 00 be 01 14 01 13 ff 0f 03 00 03 61 06 e0 c0 2e 00 87 06 0e 00 00 da e4 80 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:7 ack#:5 payload_length:2b data_integrity:1 header_checksum:51 err_code:0
    2019-05-03T07:21:35.701Z DEBUG       20 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:0 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:35.703Z DEBUG GAP_EVT_ADV_REPORT time:2019-05-03T07:21:35.689Z connHandle:65535 rssi:66 peerAddr:[address:80:E4:DA:74:DE:D0 type:public addrIdPeer:0] scanRsp:true gap:[manufacturerSpecificData:15,3,0,3,97,6,224,192,46,0,135,6,14,0,0,218,228,128]
    2019-05-03T07:21:36.980Z DEBUG    18/ 0 <-  [02 1d 00 ff ff 06 04 67 cc fc 7c 14 00 00 00 00 00 00 00 a5 06 1f 01 1e ff 06 00 01 09 20 02 a3 a7 fb 2d 9f 01 53 11 d4 7d 6f b0 34 fd 35 b4 b8 a1 18 c2 97 59 57 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:0 ack#:5 payload_length:36 data_integrity:1 header_checksum:a7 err_code:0
    2019-05-03T07:21:36.980Z DEBUG       21 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:1 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:36.982Z DEBUG GAP_EVT_ADV_REPORT/ADV_NONCONN_IND time:2019-05-03T07:21:36.980Z connHandle:65535 rssi:91 peerAddr:[address:14:7C:FC:CC:67:04 type:randomPrivateNonResolvable addrIdPeer:0] scanRsp:false advType:advNonconnInd gap:[manufacturerSpecificData:6,0,1,9,32,2,163,167,251,45,159,1,83,17,212,125,111,176,52,253,53,180,184,161,24,194,151,89,87]
    2019-05-03T07:21:37.280Z DEBUG    19/ 0 <-  [02 1d 00 ff ff 06 04 67 cc fc 7c 14 00 00 00 00 00 00 00 a4 06 1f 01 1e ff 06 00 01 09 20 02 a3 a7 fb 2d 9f 01 53 11 d4 7d 6f b0 34 fd 35 b4 b8 a1 18 c2 97 59 57 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:1 ack#:5 payload_length:36 data_integrity:1 header_checksum:a6 err_code:0
    2019-05-03T07:21:37.280Z DEBUG       22 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:2 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:37.282Z DEBUG GAP_EVT_ADV_REPORT/ADV_NONCONN_IND time:2019-05-03T07:21:37.280Z connHandle:65535 rssi:92 peerAddr:[address:14:7C:FC:CC:67:04 type:randomPrivateNonResolvable addrIdPeer:0] scanRsp:false advType:advNonconnInd gap:[manufacturerSpecificData:6,0,1,9,32,2,163,167,251,45,159,1,83,17,212,125,111,176,52,253,53,180,184,161,24,194,151,89,87]
    2019-05-03T07:21:37.488Z DEBUG    20/ 0 <-  [02 1d 00 ff ff 00 d0 de 74 da e4 80 00 00 00 00 00 00 00 bc 00 1f 01 02 01 06 11 07 1b c5 d5 a5 02 00 dc 9e e4 11 e7 26 c0 df 2a f0 09 09 66 30 32 33 64 4e 37 51 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:2 ack#:5 payload_length:36 data_integrity:1 header_checksum:a5 err_code:0
    2019-05-03T07:21:37.489Z DEBUG       23 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:3 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:37.490Z DEBUG GAP_EVT_ADV_REPORT/ADV_IND time:2019-05-03T07:21:37.488Z connHandle:65535 rssi:68 peerAddr:[address:80:E4:DA:74:DE:D0 type:public addrIdPeer:0] scanRsp:false advType:advInd gap:[adTypeFlags:[leGeneralDiscMode,brEdrNotSupported,leOnlyLimitedDiscMode,leOnlyGeneralDiscMode] 128BitServiceUuidComplete:F02ADFC0-26E7-11E4-9EDC-0002A5D5C51B completeLocalName:f023dN7Q]
    2019-05-03T07:21:37.495Z DEBUG    21/ 0 <-  [02 1d 00 ff ff 00 d0 de 74 da e4 80 00 00 00 00 00 00 00 bd 01 14 01 13 ff 0f 03 00 03 61 06 e0 c0 2e 00 87 06 0e 00 00 da e4 80 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:3 ack#:5 payload_length:2b data_integrity:1 header_checksum:55 err_code:0
    2019-05-03T07:21:37.495Z DEBUG       24 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:4 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:37.496Z DEBUG GAP_EVT_ADV_REPORT time:2019-05-03T07:21:37.492Z connHandle:65535 rssi:67 peerAddr:[address:80:E4:DA:74:DE:D0 type:public addrIdPeer:0] scanRsp:true gap:[manufacturerSpecificData:15,3,0,3,97,6,224,192,46,0,135,6,14,0,0,218,228,128]
    2019-05-03T07:21:39.291Z DEBUG    22/ 0 <-  [02 1d 00 ff ff 00 d0 de 74 da e4 80 00 00 00 00 00 00 00 bb 00 1f 01 02 01 06 11 07 1b c5 d5 a5 02 00 dc 9e e4 11 e7 26 c0 df 2a f0 09 09 66 30 32 33 64 4e 37 51 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:4 ack#:5 payload_length:36 data_integrity:1 header_checksum:a3 err_code:0
    2019-05-03T07:21:39.291Z DEBUG       25 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:5 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:39.294Z DEBUG GAP_EVT_ADV_REPORT/ADV_IND time:2019-05-03T07:21:39.291Z connHandle:65535 rssi:69 peerAddr:[address:80:E4:DA:74:DE:D0 type:public addrIdPeer:0] scanRsp:false advType:advInd gap:[adTypeFlags:[leGeneralDiscMode,brEdrNotSupported,leOnlyLimitedDiscMode,leOnlyGeneralDiscMode] 128BitServiceUuidComplete:F02ADFC0-26E7-11E4-9EDC-0002A5D5C51B completeLocalName:f023dN7Q]
    2019-05-03T07:21:39.301Z DEBUG    23/ 0 <-  [02 1d 00 ff ff 00 d0 de 74 da e4 80 00 00 00 00 00 00 00 bb 01 14 01 13 ff 0f 03 00 03 61 06 e0 c0 2e 00 87 06 0e 00 00 da e4 80 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:5 ack#:5 payload_length:2b data_integrity:1 header_checksum:53 err_code:0
    2019-05-03T07:21:39.302Z DEBUG       26 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:6 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:39.304Z DEBUG GAP_EVT_ADV_REPORT time:2019-05-03T07:21:39.295Z connHandle:65535 rssi:69 peerAddr:[address:80:E4:DA:74:DE:D0 type:public addrIdPeer:0] scanRsp:true gap:[manufacturerSpecificData:15,3,0,3,97,6,224,192,46,0,135,6,14,0,0,218,228,128]
    2019-05-03T07:21:41.091Z DEBUG    24/ 0 <-  [02 1d 00 ff ff 00 d0 de 74 da e4 80 00 00 00 00 00 00 00 ba 00 1f 01 02 01 06 11 07 1b c5 d5 a5 02 00 dc 9e e4 11 e7 26 c0 df 2a f0 09 09 66 30 32 33 64 4e 37 51 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:6 ack#:5 payload_length:36 data_integrity:1 header_checksum:a1 err_code:0
    2019-05-03T07:21:41.092Z DEBUG       27 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:7 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:41.099Z DEBUG GAP_EVT_ADV_REPORT/ADV_IND time:2019-05-03T07:21:41.091Z connHandle:65535 rssi:70 peerAddr:[address:80:E4:DA:74:DE:D0 type:public addrIdPeer:0] scanRsp:false advType:advInd gap:[adTypeFlags:[leGeneralDiscMode,brEdrNotSupported,leOnlyLimitedDiscMode,leOnlyGeneralDiscMode] 128BitServiceUuidComplete:F02ADFC0-26E7-11E4-9EDC-0002A5D5C51B completeLocalName:f023dN7Q]
    2019-05-03T07:21:41.106Z DEBUG    25/ 0 <-  [02 1d 00 ff ff 00 d0 de 74 da e4 80 00 00 00 00 00 00 00 ba 01 14 01 13 ff 0f 03 00 03 61 06 e0 c0 2e 00 87 06 0e 00 00 da e4 80 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:7 ack#:5 payload_length:2b data_integrity:1 header_checksum:51 err_code:0
    2019-05-03T07:21:41.107Z DEBUG       28 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:0 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:41.108Z DEBUG GAP_EVT_ADV_REPORT time:2019-05-03T07:21:41.096Z connHandle:65535 rssi:70 peerAddr:[address:80:E4:DA:74:DE:D0 type:public addrIdPeer:0] scanRsp:true gap:[manufacturerSpecificData:15,3,0,3,97,6,224,192,46,0,135,6,14,0,0,218,228,128]
    2019-05-03T07:21:41.279Z DEBUG    26/ 0 <-  [02 1d 00 ff ff 04 c8 60 12 93 f7 5a 00 00 00 00 00 00 00 a7 00 0e 01 02 01 1a 0a ff 4c 00 10 05 0b 1c 9a 4b 8c ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:0 ack#:5 payload_length:25 data_integrity:1 header_checksum:b8 err_code:0
    2019-05-03T07:21:41.279Z DEBUG       29 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:1 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:41.281Z DEBUG GAP_EVT_ADV_REPORT/ADV_IND time:2019-05-03T07:21:41.279Z connHandle:65535 rssi:89 peerAddr:[address:5A:F7:93:12:60:C8 type:randomPrivateResolvable addrIdPeer:0] scanRsp:false advType:advInd gap:[adTypeFlags:[leGeneralDiscMode,leOnlyGeneralDiscMode,leBrEdrController,leBrEdrHost] manufacturerSpecificData:76,0,16,5,11,28,154,75,140]
    2019-05-03T07:21:41.893Z DEBUG    27/ 0 <-  [02 1d 00 ff ff 06 04 67 cc fc 7c 14 00 00 00 00 00 00 00 a5 06 1f 01 1e ff 06 00 01 09 20 02 a3 a7 fb 2d 9f 01 53 11 d4 7d 6f b0 34 fd 35 b4 b8 a1 18 c2 97 59 57 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:1 ack#:5 payload_length:36 data_integrity:1 header_checksum:a6 err_code:0
    2019-05-03T07:21:41.893Z DEBUG       30 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:2 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:41.895Z DEBUG GAP_EVT_ADV_REPORT/ADV_NONCONN_IND time:2019-05-03T07:21:41.893Z connHandle:65535 rssi:91 peerAddr:[address:14:7C:FC:CC:67:04 type:randomPrivateNonResolvable addrIdPeer:0] scanRsp:false advType:advNonconnInd gap:[manufacturerSpecificData:6,0,1,9,32,2,163,167,251,45,159,1,83,17,212,125,111,176,52,253,53,180,184,161,24,194,151,89,87]
    2019-05-03T07:21:44.178Z DEBUG    28/ 0 <-  [02 1d 00 ff ff 06 04 67 cc fc 7c 14 00 00 00 00 00 00 00 a4 06 1f 01 1e ff 06 00 01 09 20 02 a3 a7 fb 2d 9f 01 53 11 d4 7d 6f b0 34 fd 35 b4 b8 a1 18 c2 97 59 57 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:2 ack#:5 payload_length:36 data_integrity:1 header_checksum:a5 err_code:0
    2019-05-03T07:21:44.178Z DEBUG       31 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:3 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:44.180Z DEBUG GAP_EVT_ADV_REPORT/ADV_NONCONN_IND time:2019-05-03T07:21:44.177Z connHandle:65535 rssi:92 peerAddr:[address:14:7C:FC:CC:67:04 type:randomPrivateNonResolvable addrIdPeer:0] scanRsp:false advType:advNonconnInd gap:[manufacturerSpecificData:6,0,1,9,32,2,163,167,251,45,159,1,83,17,212,125,111,176,52,253,53,180,184,161,24,194,151,89,87]
    2019-05-03T07:21:44.284Z DEBUG    29/ 0 <-  [02 1d 00 ff ff 06 04 67 cc fc 7c 14 00 00 00 00 00 00 00 a4 06 1f 01 1e ff 06 00 01 09 20 02 a3 a7 fb 2d 9f 01 53 11 d4 7d 6f b0 34 fd 35 b4 b8 a1 18 c2 97 59 57 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:3 ack#:5 payload_length:36 data_integrity:1 header_checksum:a4 err_code:0
    2019-05-03T07:21:44.285Z DEBUG       32 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:4 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:44.286Z DEBUG GAP_EVT_ADV_REPORT/ADV_NONCONN_IND time:2019-05-03T07:21:44.285Z connHandle:65535 rssi:92 peerAddr:[address:14:7C:FC:CC:67:04 type:randomPrivateNonResolvable addrIdPeer:0] scanRsp:false advType:advNonconnInd gap:[manufacturerSpecificData:6,0,1,9,32,2,163,167,251,45,159,1,83,17,212,125,111,176,52,253,53,180,184,161,24,194,151,89,87]
    2019-05-03T07:21:44.978Z DEBUG    30/ 0 <-  [02 1d 00 ff ff 04 c8 60 12 93 f7 5a 00 00 00 00 00 00 00 a3 00 0e 01 02 01 1a 0a ff 4c 00 10 05 0b 1c 9a 4b 8c ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:4 ack#:5 payload_length:25 data_integrity:1 header_checksum:b4 err_code:0
    2019-05-03T07:21:44.978Z DEBUG       33 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:5 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:44.980Z DEBUG GAP_EVT_ADV_REPORT/ADV_IND time:2019-05-03T07:21:44.977Z connHandle:65535 rssi:93 peerAddr:[address:5A:F7:93:12:60:C8 type:randomPrivateResolvable addrIdPeer:0] scanRsp:false advType:advInd gap:[adTypeFlags:[leGeneralDiscMode,leOnlyGeneralDiscMode,leBrEdrController,leBrEdrHost] manufacturerSpecificData:76,0,16,5,11,28,154,75,140]
    2019-05-03T07:21:46.080Z DEBUG    31/ 0 <-  [02 1d 00 ff ff 06 04 67 cc fc 7c 14 00 00 00 00 00 00 00 a5 06 1f 01 1e ff 06 00 01 09 20 02 a3 a7 fb 2d 9f 01 53 11 d4 7d 6f b0 34 fd 35 b4 b8 a1 18 c2 97 59 57 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:5 ack#:5 payload_length:36 data_integrity:1 header_checksum:a2 err_code:0
    2019-05-03T07:21:46.081Z DEBUG       34 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:6 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:46.083Z DEBUG GAP_EVT_ADV_REPORT/ADV_NONCONN_IND time:2019-05-03T07:21:46.080Z connHandle:65535 rssi:91 peerAddr:[address:14:7C:FC:CC:67:04 type:randomPrivateNonResolvable addrIdPeer:0] scanRsp:false advType:advNonconnInd gap:[manufacturerSpecificData:6,0,1,9,32,2,163,167,251,45,159,1,83,17,212,125,111,176,52,253,53,180,184,161,24,194,151,89,87]
    2019-05-03T07:21:48.189Z DEBUG    32/ 0 <-  [02 1d 00 ff ff 04 c8 60 12 93 f7 5a 00 00 00 00 00 00 00 a7 00 0e 01 02 01 1a 0a ff 4c 00 10 05 0b 1c 9a 4b 8c ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:6 ack#:5 payload_length:25 data_integrity:1 header_checksum:b2 err_code:0
    2019-05-03T07:21:48.189Z DEBUG       35 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:7 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:48.192Z DEBUG GAP_EVT_ADV_REPORT/ADV_IND time:2019-05-03T07:21:48.188Z connHandle:65535 rssi:89 peerAddr:[address:5A:F7:93:12:60:C8 type:randomPrivateResolvable addrIdPeer:0] scanRsp:false advType:advInd gap:[adTypeFlags:[leGeneralDiscMode,leOnlyGeneralDiscMode,leBrEdrController,leBrEdrHost] manufacturerSpecificData:76,0,16,5,11,28,154,75,140]
    2019-05-03T07:21:48.795Z DEBUG    33/ 0 <-  [02 1d 00 ff ff 06 04 67 cc fc 7c 14 00 00 00 00 00 00 00 a5 06 1f 01 1e ff 06 00 01 09 20 02 a3 a7 fb 2d 9f 01 53 11 d4 7d 6f b0 34 fd 35 b4 b8 a1 18 c2 97 59 57 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:7 ack#:5 payload_length:36 data_integrity:1 header_checksum:a0 err_code:0
    2019-05-03T07:21:48.795Z DEBUG       36 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:0 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:48.799Z DEBUG GAP_EVT_ADV_REPORT/ADV_NONCONN_IND time:2019-05-03T07:21:48.796Z connHandle:65535 rssi:91 peerAddr:[address:14:7C:FC:CC:67:04 type:randomPrivateNonResolvable addrIdPeer:0] scanRsp:false advType:advNonconnInd gap:[manufacturerSpecificData:6,0,1,9,32,2,163,167,251,45,159,1,83,17,212,125,111,176,52,253,53,180,184,161,24,194,151,89,87]
    2019-05-03T07:21:49.088Z DEBUG    34/ 0 <-  [02 1d 00 ff ff 04 c8 60 12 93 f7 5a 00 00 00 00 00 00 00 a7 00 0e 01 02 01 1a 0a ff 4c 00 10 05 0b 1c 9a 4b 8c ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:0 ack#:5 payload_length:25 data_integrity:1 header_checksum:b8 err_code:0
    2019-05-03T07:21:49.088Z DEBUG       37 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:1 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:49.090Z DEBUG GAP_EVT_ADV_REPORT/ADV_IND time:2019-05-03T07:21:49.088Z connHandle:65535 rssi:89 peerAddr:[address:5A:F7:93:12:60:C8 type:randomPrivateResolvable addrIdPeer:0] scanRsp:false advType:advInd gap:[adTypeFlags:[leGeneralDiscMode,leOnlyGeneralDiscMode,leBrEdrController,leBrEdrHost] manufacturerSpecificData:76,0,16,5,11,28,154,75,140]
    2019-05-03T07:21:49.481Z DEBUG    35/ 0 <-  [02 1d 00 ff ff 04 c8 60 12 93 f7 5a 00 00 00 00 00 00 00 a6 00 0e 01 02 01 1a 0a ff 4c 00 10 05 0b 1c 9a 4b 8c ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:1 ack#:5 payload_length:25 data_integrity:1 header_checksum:b7 err_code:0
    2019-05-03T07:21:49.481Z DEBUG       38 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:2 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:49.487Z DEBUG GAP_EVT_ADV_REPORT/ADV_IND time:2019-05-03T07:21:49.481Z connHandle:65535 rssi:90 peerAddr:[address:5A:F7:93:12:60:C8 type:randomPrivateResolvable addrIdPeer:0] scanRsp:false advType:advInd gap:[adTypeFlags:[leGeneralDiscMode,leOnlyGeneralDiscMode,leBrEdrController,leBrEdrHost] manufacturerSpecificData:76,0,16,5,11,28,154,75,140]
    2019-05-03T07:21:51.587Z DEBUG    36/ 0 <-  [02 1d 00 ff ff 04 c8 60 12 93 f7 5a 00 00 00 00 00 00 00 a4 00 0e 01 02 01 1a 0a ff 4c 00 10 05 0b 1c 9a 4b 8c ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:2 ack#:5 payload_length:25 data_integrity:1 header_checksum:b6 err_code:0
    2019-05-03T07:21:51.588Z DEBUG       39 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:3 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:51.592Z DEBUG GAP_EVT_ADV_REPORT/ADV_IND time:2019-05-03T07:21:51.588Z connHandle:65535 rssi:92 peerAddr:[address:5A:F7:93:12:60:C8 type:randomPrivateResolvable addrIdPeer:0] scanRsp:false advType:advInd gap:[adTypeFlags:[leGeneralDiscMode,leOnlyGeneralDiscMode,leBrEdrController,leBrEdrHost] manufacturerSpecificData:76,0,16,5,11,28,154,75,140]
    2019-05-03T07:21:52.683Z DEBUG    37/ 0 <-  [02 1d 00 ff ff 02 63 6b b4 02 fb c9 00 00 00 00 00 00 00 d0 00 16 01 03 19 00 00 02 01 06 0e 09 4e 6f 72 64 69 63 5f 42 6c 69 6e 6b 79 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:3 ack#:5 payload_length:2d data_integrity:1 header_checksum:35 err_code:0
    2019-05-03T07:21:52.683Z DEBUG       40 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:4 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:52.686Z DEBUG GAP_EVT_ADV_REPORT/ADV_IND time:2019-05-03T07:21:52.683Z connHandle:65535 rssi:48 peerAddr:[address:C9:FB:02:B4:6B:63 type:randomStatic addrIdPeer:0] scanRsp:false advType:advInd gap:[adTypeFlags:[leGeneralDiscMode,brEdrNotSupported,leOnlyLimitedDiscMode,leOnlyGeneralDiscMode] appearance:0,0 completeLocalName:Nordic_Blinky]
    2019-05-03T07:21:52.696Z DEBUG    38/ 0 <-  [02 1d 00 ff ff 02 63 6b b4 02 fb c9 00 00 00 00 00 00 00 d1 01 12 01 11 07 23 d1 bc ea 5f 78 23 15 de ef 12 12 23 15 00 00 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:4 ack#:5 payload_length:29 data_integrity:1 header_checksum:74 err_code:0
    2019-05-03T07:21:52.697Z DEBUG       41 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:5 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:52.699Z DEBUG GAP_EVT_ADV_REPORT time:2019-05-03T07:21:52.687Z connHandle:65535 rssi:47 peerAddr:[address:C9:FB:02:B4:6B:63 type:randomStatic addrIdPeer:0] scanRsp:true gap:[128BitServiceUuidComplete:00001523-1212-EFDE-1523-785FEABCD123]
    2019-05-03T07:21:52.793Z DEBUG    39/ 0 <-  [02 1d 00 ff ff 04 c8 60 12 93 f7 5a 00 00 00 00 00 00 00 a0 00 0e 01 02 01 1a 0a ff 4c 00 10 05 0b 1c 9a 4b 8c ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:5 ack#:5 payload_length:25 data_integrity:1 header_checksum:b3 err_code:0
    2019-05-03T07:21:52.793Z DEBUG       42 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:6 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:52.797Z DEBUG GAP_EVT_ADV_REPORT/ADV_IND time:2019-05-03T07:21:52.793Z connHandle:65535 rssi:96 peerAddr:[address:5A:F7:93:12:60:C8 type:randomPrivateResolvable addrIdPeer:0] scanRsp:false advType:advInd gap:[adTypeFlags:[leGeneralDiscMode,leOnlyGeneralDiscMode,leBrEdrController,leBrEdrHost] manufacturerSpecificData:76,0,16,5,11,28,154,75,140]
    2019-05-03T07:21:53.884Z DEBUG GAP_EVT_ADV_REPORT/ADV_IND time:2019-05-03T07:21:53.882Z connHandle:65535 rssi:92 peerAddr:[address:5A:F7:93:12:60:C8 type:randomPrivateResolvable addrIdPeer:0] scanRsp:false advType:advInd gap:[adTypeFlags:[leGeneralDiscMode,leOnlyGeneralDiscMode,leBrEdrController,leBrEdrHost] manufacturerSpecificData:76,0,16,5,11,28,154,75,140]
    2019-05-03T07:21:53.888Z DEBUG    40/ 0 <-  [02 1d 00 ff ff 04 c8 60 12 93 f7 5a 00 00 00 00 00 00 00 a4 00 0e 01 02 01 1a 0a ff 4c 00 10 05 0b 1c 9a 4b 8c ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:6 ack#:5 payload_length:25 data_integrity:1 header_checksum:b2 err_code:0
    2019-05-03T07:21:53.888Z DEBUG       43 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:7 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:54.977Z DEBUG    41/ 0 <-  [02 1d 00 ff ff 06 04 67 cc fc 7c 14 00 00 00 00 00 00 00 a6 06 1f 01 1e ff 06 00 01 09 20 02 a3 a7 fb 2d 9f 01 53 11 d4 7d 6f b0 34 fd 35 b4 b8 a1 18 c2 97 59 57 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:7 ack#:5 payload_length:36 data_integrity:1 header_checksum:a0 err_code:0
    2019-05-03T07:21:54.977Z DEBUG       44 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:0 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:54.979Z DEBUG GAP_EVT_ADV_REPORT/ADV_NONCONN_IND time:2019-05-03T07:21:54.977Z connHandle:65535 rssi:90 peerAddr:[address:14:7C:FC:CC:67:04 type:randomPrivateNonResolvable addrIdPeer:0] scanRsp:false advType:advNonconnInd gap:[manufacturerSpecificData:6,0,1,9,32,2,163,167,251,45,159,1,83,17,212,125,111,176,52,253,53,180,184,161,24,194,151,89,87]
    2019-05-03T07:21:55.083Z DEBUG    42/ 0 <-  [02 1d 00 ff ff 06 04 67 cc fc 7c 14 00 00 00 00 00 00 00 a4 06 1f 01 1e ff 06 00 01 09 20 02 a3 a7 fb 2d 9f 01 53 11 d4 7d 6f b0 34 fd 35 b4 b8 a1 18 c2 97 59 57 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:0 ack#:5 payload_length:36 data_integrity:1 header_checksum:a7 err_code:0
    2019-05-03T07:21:55.083Z DEBUG       45 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:1 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:55.086Z DEBUG GAP_EVT_ADV_REPORT/ADV_NONCONN_IND time:2019-05-03T07:21:55.083Z connHandle:65535 rssi:92 peerAddr:[address:14:7C:FC:CC:67:04 type:randomPrivateNonResolvable addrIdPeer:0] scanRsp:false advType:advNonconnInd gap:[manufacturerSpecificData:6,0,1,9,32,2,163,167,251,45,159,1,83,17,212,125,111,176,52,253,53,180,184,161,24,194,151,89,87]
    2019-05-03T07:21:57.512Z INFO Connecting to device
    2019-05-03T07:21:57.531Z DEBUG       46 ->  [00 8c 01 02 63 6b b4 02 fb c9 01 01 a0 00 50 00 14 00 01 06 00 06 00 00 00 90 01 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:5 ack#:1 payload_length:1b data_integrity:1 header_checksum:74 err_code:0
    2019-05-03T07:21:57.531Z DEBUG    43/ 0 <-  []
                   type:                 ACK reliable: no seq#:0 ack#:6 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:21:57.531Z DEBUG    44/ 0 <-  [01 8c 00 00 00 00 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:1 ack#:6 payload_length:6 data_integrity:1 header_checksum:a1 err_code:0
    2019-05-03T07:21:57.531Z DEBUG       47 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:2 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:22:12.457Z DEBUG    45/ 0 <-  [02 10 00 00 00 02 63 6b b4 02 fb c9 02 06 00 06 00 00 00 90 01 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:2 ack#:6 payload_length:15 data_integrity:1 header_checksum:af err_code:0
    2019-05-03T07:22:12.457Z DEBUG       48 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:3 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:22:12.460Z DEBUG GAP_EVT_CONNECTED time:2019-05-03T07:22:12.456Z connHandle:0 peerAddr:[address:C9:FB:02:B4:6B:63 type:randomStatic addrIdPeer:0] role:central connParams:[minConnInterval:7_5 maxConnInterval:7_5 slaveLatency:0 connSupTimeout:4000]
    2019-05-03T07:22:12.487Z INFO Connected to device C9:FB:02:B4:6B:63
    2019-05-03T07:22:12.531Z DEBUG    46/ 0 <-  [02 11 00 00 00 3e ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:3 ack#:6 payload_length:6 data_integrity:1 header_checksum:9f err_code:0
    2019-05-03T07:22:12.532Z DEBUG       49 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:4 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:22:12.532Z DEBUG       50 ->  [00 94 00 00 01 00 00 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:6 ack#:4 payload_length:7 data_integrity:1 header_checksum:9c err_code:0
    2019-05-03T07:22:12.532Z DEBUG    47/ 0 <-  []
                   type:                 ACK reliable: no seq#:0 ack#:7 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:22:12.532Z DEBUG    48/ 0 <-  [01 94 02 30 00 00 ]
                   type:     VENDOR_SPECIFIC reliable:yes seq#:4 ack#:7 payload_length:6 data_integrity:1 header_checksum:96 err_code:0
    2019-05-03T07:22:12.532Z DEBUG       51 ->  []
                   type:                 ACK reliable: no seq#:0 ack#:5 payload_length:0 data_integrity:0 err_code:0
    2019-05-03T07:22:12.533Z DEBUG GAP_EVT_DISCONNECTED time:2019-05-03T07:22:12.495Z connHandle:0 reason:62 reasonName:connFailedToBeEstablished
    2019-05-03T07:22:12.535Z INFO Disconnected from device C9:FB:02:B4:6B:63, reason: BLE_HCI_CONN_FAILED_TO_BE_ESTABLISHED
    

    Regards

  • Hi Ali

    I see I forgot to mention that the NRFX_CLOCK_ENABLED should be configured in the sdk_config.h file.

    Best regards,

    Simon

Reply Children
  • Hi,

    I forgot to mention that the NRFX_CLOCK_ENABLED should be configured in the sdk_config.h

    Sure, it is in sdk_config.h

    I think what you mean is I should enable clock and set Low Frequency Clock Source to RC right?

    #ifndef NRFX_CLOCK_ENABLED
    #define NRFX_CLOCK_ENABLED 1
    #endif
    // <o> NRFX_CLOCK_CONFIG_LF_SRC  - LF Clock Source
     
    // <0=> RC 
    // <1=> XTAL 
    // <2=> Synth 
    // <131073=> External Low Swing 
    // <196609=> External Full Swing 
    
    #ifndef NRFX_CLOCK_CONFIG_LF_SRC
    #define NRFX_CLOCK_CONFIG_LF_SRC 0
    #endif

    I have set the above configuration, still it gives same error.

    Please do let me know if I am wrong.

    Regards

Related