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

S132 7.x BLE connection cannot be established while using Timeslot API

As I mentioned in my other question, I've been playing around with the bearer layer of the Mesh-Stack, to get a better understanding of how to get a robust basis for a multiprotocol implementation. I noticed that the current Mesh Stack (nRF SDK for Mesh v3.2.0) only supports Softdevice up to S132 v6.x. Nonetheless, I wanted to see how the timeslot implementation behaves when using S132 v7.x and indeed noticed that there seems to be an issue:

BLE GAP connection establishment often fails. When looking at BLE-Traffic with a sniffer, it looks like the CONNECT_IND PDU gets basically ignored.

Can you confirm whether there is such an Issue with S132 7.x?

I did test this with a basic application where I gutted most of the Mesh-Stack and am basically just running timeslot.c, bearer_handler.c and a few of their dependencies... During the timeslot I just "emulate" using it by basically stress testing the berare_handler with a lot of actions. This in itself looks to be rather stable and BLE connections seem to work properly when using the older Softdevice, but mostly fail when using Version 7.

Unfortunately, as of right now, I can't really provide any example in source code, because it is based on a proprietary scheduler. I could possibly post the two firmwares as HEX-files (one for each Softdevice), if that helps.

  • Hi,

    nRF5 SDK for Mesh v3.2.0 was developed for and is tested with SoftDevices version 6. From what I understand, the plan for next release is to build on nRF5 SDK v16, which uses SD v7.

    The changes from v6 to v7 are minimal. None of the required changes in the SoftDevice migration document should affect a mesh application, and in particular not anything related to CONNECT_IND PDU. I do not find any known issues related to CONNECT_IND and SoftDevice v7.

    I do not think hex-files alone would do much (other than proof that you see issues with the v7 SoftDevice, which we do take your word for.) In order to investigate in our end we do need to not only reliably reproduce the issue, but also be able to debug it...

    Regards,
    Terje

  • Hi Terje,

    Thanks for your response.

    I'll try to provide an example as soon as time permits.

    Just as a sidenote, when I looked at the Release Notes of s132_nrf52_7.0.0, I had a hunch, that the following point could have had an impact on timeslot functionality:

    API for triggering a task when the SoftDevice is about to start a connection event (DRGN-10914)

    Best regards,

    -mike

  • Hi,

    There were a couple of important bugfixes implemented for s132_nrf52_7.0.1, and v7.0.0 is now deprecated. If you have not done so already, can you switch to 7.0.1 and see if the issue is still the same? v7.0.1 is binary compatible to v7.0.0, with same memory requirement, and recompilation of application is not necessary for changing from v7.0.0 to v7.0.1.

    Regards,
    Terje

  • Hi Terje,

    Thanks for your response. I only got around to test this right now and the update to S132 v7.0.1 did indeed resolve this issue!

    Regards,

    -mike

Related