Random RSSI value drops of the received BLE advertising packets

blanchehermine
Posts: 16
Joined: Wed Mar 22, 2023 8:11 am

Random RSSI value drops of the received BLE advertising packets

Postby blanchehermine » Thu Apr 20, 2023 8:08 am

Hello.
I have a ESP32-C3 module and it's programmed with an app that continuously scans for BLE advertising packets using NimBLE Host (ESP-IDF 5.0.1). Whenever advertising packet is received, an event of type BLE_GAP_EVENT_EXT_DISC (extended advertising is enabled) is raised and in the data of that event a RSSI can be retrieved:

Code: Select all

event->ext_disc.rssi
The problem is that this value periodically drops to the level of around -80 dBm. Charts are present for two different advertiser devices.
rssi_drop1.png
rssi_drop1.png (81.02 KiB) Viewed 955 times
rssi_drop2.png
rssi_drop2.png (61.97 KiB) Viewed 955 times
Maybe it's related to something like Wi-fi transmissions or other interferences, but this RSSI drop look suspicious and artificial. Even if I bring two devices very close to each other, so the scanner device would report maximum possible rssi (which is only -8 dBm for some reason), the drops are still there and again rssi value frops to the level of around -80 dBm! Here's the image:
rssi_drop3.png
rssi_drop3.png (27 KiB) Viewed 955 times
If it were 'real' signal level drop, it wouldn't go down to -80 dB both from -45 dBm and -8 dBm.
I tried scanning with the different BLE modules from different manufacturers and didn't observe any drops. I also scanned with my Android phone and nRFConnect app and there were no drops either.
I tried changing scanning parameters (scan interval, scan window), changing various Bluetooth Controller options in menuconfig, but the result is still the same.

Code for initiaing scanning:

Code: Select all

  int rc;

  struct ble_gap_disc_params disc_params = {
    .itvl = 1600,
    .window = 1600,
    .filter_policy = BLE_HCI_SCAN_FILT_NO_WL,
    .limited = 0,
    .passive = 1,
    .filter_duplicates = 0
  };

  rc = ble_gap_disc(BLE_OWN_ADDR_PUBLIC, BLE_HS_FOREVER, &disc_params,
                    nimble_gap_event, NULL);
Any thoughts?
Thank you.

blanchehermine
Posts: 16
Joined: Wed Mar 22, 2023 8:11 am

Re: Random RSSI value drops of the received BLE advertising packets

Postby blanchehermine » Thu Apr 20, 2023 8:10 am

Also attached to this comment is sdkconfig of my project.
Attachments
sdkconfig.txt
(53.42 KiB) Downloaded 145 times

Who is online

Users browsing this forum: No registered users and 209 guests