nRF Connect SDK NUS throughput modifications and issues for peripheral_uart/central_uart example applications

There are many questions on DevZone on modifications to NCS peripheral_uart/central_uart NUS example applications to support higher throughput.

We have been mostly successful in modifying both applications so that BLE throughput can operate at 1380-1400 kbps.

After peripheral_uart/central_uart establish a connection, the central_uart will setup link parameters to improve BLE throughput:

  • negotiate to use 2M PHY
  • negotiate to use DLE (data length extension) set to 251 bytes
  • negotiate to use connection interval of 400ms

The UART has been modified to run at maximum speed of 1000kbps.

This work was done on NCS 1.8.0, but also demonstrated on NCS 1.6.1 and 1.7.1

It has been tested on nRF5340-DK and nRF52832-DK boards.

In the attached file nus_throughput_test_repo.zip there is a Git repo which shows all the code/project modifications, starting from the original NCS peripheral_uart/central_uart example applications. Fairly straightforward to see all the modifications.

If you build them, they will operate in a BLE throughput test mode, ignoring any UART communications.

After connecting and exchanging link negotiations, the peripheral_uart will send a 240 byte message as fast as possible, and central_uart will put out periodic RTT logs indicating the BLE received data rate of approximately 1380-1400 kbps

The throughput is perfect ( assuming your are in a clean RF environment )

One problem we have though is the following:

  • in present central_uart application (main.c), we have defined #define BLE_NUS_DISABLE_BT_CONN_SECURITY for our own purposes
  • this #define BLE_NUS_DISABLE_BT_CONN_SECURITY will make sure central_uart does not establish link security
    • via bt_conn_set_security(conn, BT_SECURITY_L2)

But if one sets #undef BLE_NUS_DISABLE_BT_CONN_SECURITY, the link security will be successfully established. Both endpoints will operate at 1380-1400 kbps throughput but with one important caveat / odd behavior.

  • What we observed is that every 28-29 seconds, the link communications will stumble
  • At this time, the throughput will drop drastically for upwards of 1200 ms ... a long time !
  • Then it will recover to perfect throughput, and this process will repeat every 28-29 seconds.

It appears there is something in the security/encryption mechanism that is responsible for this periodic throughput impairment.

Any ideas in the DevZone world on this issue ?

Issue appears to exist in NCS 1.6.x through to NCS 1.8.x

Thanks for your help !

nus_throughput_test_repo.zip

Parents
  • Hi again

    A bit more input from our devs: LE PING PDUs shouldn't be transmitted if there are valid encrypted PDUs already being received by the device. Here the throughput testing is simplex and hence the transmitting device is the one sending the LE Ping PDU to ensure the peer send a valid encrypted PDU response back to verify that the peer is not a spoof device.

    You can try increasing the interval between these LE_PING packets by issuing the HCI command "Write Authenticated Payload Timeout command". Described in the Bluetooth core spec. Core_v5.3, Vol 4, Part E, Section 7.3.94.

    Best regards,

    Simon

Reply
  • Hi again

    A bit more input from our devs: LE PING PDUs shouldn't be transmitted if there are valid encrypted PDUs already being received by the device. Here the throughput testing is simplex and hence the transmitting device is the one sending the LE Ping PDU to ensure the peer send a valid encrypted PDU response back to verify that the peer is not a spoof device.

    You can try increasing the interval between these LE_PING packets by issuing the HCI command "Write Authenticated Payload Timeout command". Described in the Bluetooth core spec. Core_v5.3, Vol 4, Part E, Section 7.3.94.

    Best regards,

    Simon

Children
No Data
Related