User Activity

I have to extract the RSSI from scanned packet w.r.t to its device address. I got the RSSI but I am unable to get the actual device address. But in the manual they mentioned that"Once the scan parameters are set, the device scanning can be enabled. T...
When a P2P server is advertising I am able to see the raw data values of the advertisement as well as the explained details using mobile app.(nRQ connect) Here I need to find exact same things using STM32WB as a client. I am struggling to find a way ...
Beacons are advertising some data packets. From that data packet I have to extract the RSSI value. for that I used the following command.rssi = *(uint8_t*) (adv_report_data + le_advertising_event->Advertising_Report[0].Length_Data);It worked well for...
Hi,I am advertising I-Beacons using STM32WB. I need blink a led during the whole time of advertising. I have initialized below functions,I-Beacon Process()I-Beacon Initialization()but I am unable blink the led at this moment. (I was able to advertise...
Hi,I need to get the RSSI of scanned BLE packet. So I'm using le_advertising_event .I found some one used the following code for that purpose.rssi1 = le_advertising_event->Advertising_Report[0].RSSI;but in the struct they mentioned that /* WARNING: b...