Hi ,
I am using sl_WlanRxStatGet function to get RSSI for connected access point.
Most of the time, I am getting "0xAC59" as a RSSI and sometimes I am getting "0xFFE1".
What is the interpretation of these values?
Regards,
Pranav
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi ,
I am using sl_WlanRxStatGet function to get RSSI for connected access point.
Most of the time, I am getting "0xAC59" as a RSSI and sometimes I am getting "0xFFE1".
What is the interpretation of these values?
Regards,
Pranav
Are you using this function properly?
SlWlanGetRxStatResponse_t rxStats;
int16_t rssi;
if (sl_WlanRxStatGet(&rxStats, 0)==0) {
/* average of both */
// rssi is in dBm and negative!
rssi = (rxStats.AvarageDataCtrlRssi + rxStats.AvarageMgMntRssi) / 2;
}