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

running the ATT_MTU throughput on the nRF52840 dongles

Hi,

I am currently trying to embed the ATT_MTU throughput example on two nRF52840 dongles. The main issue I am facing is that after I compile and program the hex files onto the dongles I cannot establish a connection with them through PuTTY. 

I basically press on the reset button and connect on PuTTY but then I get absolutely no response at all even after I type in 'config'. ( I have set the PuTTY parameters according to a tutorial I found here as well). Is the code not runnable on the dongle or does it need some adjustments or am I missing out on a critical step ? 

thanks for taking the time to read my question.

Parents Reply
  • You can do CLI over UART on the nRF52840-DK because the on-board Segger debugger will serve as a UART->USB bridge to the PC. However, as the 52840 dongle doesn't have a UART USB bridge, you have to use the native built-int USB port instead. That means you would have to modify the example to include the USB driver and the USB CDC ACM transport backend for the CLI module (same as in the CLI example Kenneth pointed to).

    I would also recommend getting hold of a couple of DKs instead like Kenneth said, but you can try my modified ble_app_att_mtu_throughput example below if you still want to try with the dongle. I added the CLI USB backend and made some changes to the button logic because there is only a single button on this board.

    Hex file you can program with the Programmer app in nRF connect for desktop:

    ble_app_att_mtu_throughput_pca10059_with_s140.hex

    Modified example ble_app_att_mtu_throughput example:

    nRF5_SDK17.0.2_ble_app_att_mtu_throughput.zip

Children
No Data
Related