Hi all,
I have a Gateway with nrf52832 BLE chip-set.
My question is: Does this chip-set provide the ability to get the RSSI levels of the three advertisement channels at same time?
if yes, how to get these values?
Hi all,
I have a Gateway with nrf52832 BLE chip-set.
My question is: Does this chip-set provide the ability to get the RSSI levels of the three advertisement channels at same time?
if yes, how to get these values?
Hi,
You will be informed about the channel (ble_gap_evt_adv_report_t::ch_index
) and RSSI (ble_gap_evt_adv_report_t::rssi
) for the received packet in each advertising report. There is no way to get RSSI for all three channels though, unless you continue to scan until you have received an advertising report for each channel.
You could
You could