문제

In class wifi info the getRssi() method

getRssi()
   {
     Return RSSI; 
   }

From where they get it? and from where they measure it? I know RSSI is the signal strength between the access point and the device, but i want to understand how they measure it here!

도움이 되었습니까?

해결책

The data is calculated and set in WifiStateMachine's fetchRssiAndLinkSpeedNative().
Compilers often have a "Find implementation" or "Find usages" feature which will lead you to the source in many cases. (I used this feature on grepcode.com to find the method above.)

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top