Merge "Implements GNSS satellite blacklist" into pi-dev

This commit is contained in:
TreeHugger Robot
2018-04-05 23:28:19 +00:00
committed by Android (Google) Code Review
8 changed files with 340 additions and 15 deletions

View File

@@ -12541,6 +12541,19 @@ public final class Settings {
*/
public static final String SWAP_ENABLED = "swap_enabled";
/**
* Blacklist of GNSS satellites.
*
* This is a list of integers separated by commas to represent pairs of (constellation,
* svid). Thus, the number of integers should be even.
*
* E.g.: "3,0,5,24" denotes (constellation=3, svid=0) and (constellation=5, svid=24) are
* blacklisted. Note that svid=0 denotes all svids in the
* constellation are blacklisted.
*
* @hide
*/
public static final String GNSS_SATELLITE_BLACKLIST = "gnss_satellite_blacklist";
}
/**