Searched refs:MAX_RSSI_DELTA (Results 1 - 1 of 1) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiAutoJoinController.java97 public static final int MAX_RSSI_DELTA = 50; field in class:WifiAutoJoinController
497 choice = MAX_RSSI_DELTA + 10; // Make sure the choice overrides the RSSI diff
724 // Normalize the order to [-50, +50] = [ -MAX_RSSI_DELTA, MAX_RSSI_DELTA]
725 if (order > MAX_RSSI_DELTA) order = MAX_RSSI_DELTA;
726 else if (order < -MAX_RSSI_DELTA) order = -MAX_RSSI_DELTA;

Completed in 125 milliseconds