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

BLE Connection interval limit on nRF52840 (Zephyr NCS 1.4.2)

Hi,

I am using nRF52840 as BLE peripheral, on a Zephyr application under NCS 1.4.2

I want to limit the connection interval to 7.5ms (min+max)

I can see that the only way to limit that AFTER the connection established - using bt_conn_le_param_update is that correct?

no way to limit that prior to the connection?

The thing is that if i use bt_conn_le_param_update after the connection was established, the central has 5 seconds to request different connection parameters, and it brings it back to ~50ms


So my question is, what is the best practice of limiting the connection interval?

Thanks

Parents
  • Hi,

    The central decides the connection parameters initially when the connection is established and the peripheral has no say at that point. So if the phone is the central (which is most common), the only thing the nRF can do is request a connection parameter update, as you have found. However, most BLE stack on phones and tables may not allow you to use a very low connection interval, as awneil stated.

Reply
  • Hi,

    The central decides the connection parameters initially when the connection is established and the peripheral has no say at that point. So if the phone is the central (which is most common), the only thing the nRF can do is request a connection parameter update, as you have found. However, most BLE stack on phones and tables may not allow you to use a very low connection interval, as awneil stated.

Children
Related