Hi,
To get RSSI of received packet from available AP, I do active scan. Is there any other way to get RSSI from beacon for probe request ?
I can't use promiscuous mode here. How can I get RSSI of node who sent packet, without doing scan?
Get RSSI of received packet
Re: Get RSSI of received packet
Code: Select all
int wifiGetRSSI()
{
wifi_ap_record_t wifidata;
if (esp_wifi_sta_get_ap_info(&wifidata)==0){
return (wifidata.rssi);
}
return 0;
}
-
- Posts: 21
- Joined: Sat Jun 30, 2018 1:04 pm
Re: Get RSSI of received packet
Thank you for reply!
I am aware of this method, Need to do active or passive scan to get ap records.
if scan is frequently happens, quite blocking other running task. So I am looking for alternate solution for the same.
I am aware of this method, Need to do active or passive scan to get ap records.
if scan is frequently happens, quite blocking other running task. So I am looking for alternate solution for the same.
Re: Get RSSI of received packet
Hi Espressif System Developers,
Would you please help us to get that solution in form of API to get RSSI of received packet?
Would you please help us to get that solution in form of API to get RSSI of received packet?
Regards,
Ritesh Prajapati
Ritesh Prajapati
Who is online
Users browsing this forum: Bing [Bot] and 99 guests