Setup nRF52 dongle as a Central BLE device and relay all the data from the peripheral to the PC via USb port

Hello,

As per the title, I am trying to use the nRF52 dongle to interface with our device which uses nRF52 based module. The idea is to communicate with the dongle over USB port and send data to our device and receive data back.

Essentially, the nRF52 dongle is replacing the PC's built in Bluetooth which can be sometimes unreliable. Also enables us to have multiple dongles connected to communicate with multiple BLE devices simultaneously.

So I downloaded the Bluetooth: CENTRAL UART WITH USB_CDC_ACM source from github.

https://github.com/WesC-sys/usb_dongle

As suggested in this older ticket.

 Using the nRF52840 Dongle (PCA10059) as a USB serial-to-BLE port 

The issue I face is that the USBD write to the PC is not buffered and drops bytes. Is there a reliable way to implement what I am trying to achieving with high data throughput as out device uses data length extensions and transmits 200 bytes every 30 milliseconds.

Would it better to use a nrf52 DK and a USB UART to achieve the above?

Regards

Parents Reply Children
  • Hello,

    Does this mean that nrf_ble_desktop is the PC application?

    Ble Connectivity firmware is already being programmed by nRF Connect on the dongle.

    I will ask a different question, as your response does not clearly state how to achieve my objective.

    I want to know how and what commands need to be sent to the ble connectivity firmware so I can create a PC app using any programming language to open a USBD virtual com port, and send commands to scan, connect and communicate with the peripheral.

  • Let me describe how I experimented:

    nRF peripheral: heart rate example
    nRF central (dongle): connectivity HEX files firmware
    PC: running github.com/.../main.c

    This main.c program will communicate with the nRF central (dongle) to scan, connect, and read heart rate values from the nRF peripheral (TARGET_DEV_NAME "Nordic_HRM").

    PC <-- USB_CDC_ACM --> nRF central          <------ BLE packet --->  nRF peripheral.

    Apologies if my experiment differs from your requirements.

Related