I want to develop C# program to get product rssi value on specific channel by using nRF52840 dongle pca10059

I 'm developing a program (C# ) on PC for the nRF52840 dongle (pca10059) that is a RSSI scanner.

Scanning different BLE channels in the environment. The program is much like the nRF connects "RSSI viewer".

Finally,the goal of program is to scan for RSSI values while not connecting to any device, just scan a specific channel.

Here, What approach should I manually get rssi value from nRF52840 dongle (pca10059)?

Thanks!

 

Benny_Lin

Parents Reply
  • Benny_Lin said:

    Problem1

    From RSSI Viewer BLE channel range 0~39, In packet from RSSI firmware channel range is 0~80

    What difference is between RSSI Viewer channel and In packet from RSSI firmware channel?

    The RSSI firmware measures RSSI on all frequencies/channels between 2400MHz and 2480MHz in 1 MHz steps. The BLE channels are placed between 2402MHz to 2480MHz, in 2MHz steps. If you are only interested in the BLE channels, you need to filter these out in your application, or modify the RSSI firmware to only measure RSSI on the relevant channels.

    Benny_Lin said:

    Problem2

    If do advertise RSSI value (channel 37 38 39) ,what command should I send?

    The RSSI firmware can be limited to only report advertising channels (2402, 2426, 2480MHz), by sending "scan adv true" before sending "start" command. To go back to all channels, send "scan adv false" command.

Children
Related