diff options
| author | 2018-01-19 21:43:39 +0000 | |
|---|---|---|
| committer | 2018-01-19 21:43:39 +0000 | |
| commit | 0096827c74a2c1637d2c8b8fd02c37ae4069020e (patch) | |
| tree | cb33d0e6cc01725a7ee83b7b7fd58aee17991273 | |
| parent | f87fe4845608d26da0a7d5b5dc07c6d3cb3c7ff4 (diff) | |
| parent | b23125b19ed1a46259679fb1bcec01e6a5dd12ce (diff) | |
Merge changes I8031de0c,I390523b0
* changes:
config.xml: Add configuration to enable/disable 80211AC
config.xml: Add configuration to enable/disable ACS
| -rw-r--r-- | core/res/res/values/config.xml | 6 | ||||
| -rw-r--r-- | core/res/res/values/symbols.xml | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/core/res/res/values/config.xml b/core/res/res/values/config.xml index f084159b3f58..7005e289adf3 100644 --- a/core/res/res/values/config.xml +++ b/core/res/res/values/config.xml @@ -640,6 +640,12 @@ <!-- Wifi driver supports batched scan --> <bool translatable="false" name="config_wifi_batched_scan_supported">false</bool> + <!-- Wifi driver supports Automatic channel selection (ACS) for softap --> + <bool translatable="false" name="config_wifi_softap_acs_supported">false</bool> + + <!-- Wifi driver supports IEEE80211AC for softap --> + <bool translatable="false" name="config_wifi_softap_ieee80211ac_supported">false</bool> + <!-- Idle Receive current for wifi radio. 0 by default--> <integer translatable="false" name="config_wifi_idle_receive_cur_ma">0</integer> diff --git a/core/res/res/values/symbols.xml b/core/res/res/values/symbols.xml index 0c6713faa827..5309115f37bb 100644 --- a/core/res/res/values/symbols.xml +++ b/core/res/res/values/symbols.xml @@ -309,6 +309,8 @@ <java-symbol type="bool" name="config_useFixedVolume" /> <java-symbol type="bool" name="config_forceDefaultOrientation" /> <java-symbol type="bool" name="config_wifi_batched_scan_supported" /> + <java-symbol type="bool" name="config_wifi_softap_acs_supported" /> + <java-symbol type="bool" name="config_wifi_softap_ieee80211ac_supported" /> <java-symbol type="bool" name="config_enableMultiUserUI"/> <java-symbol type="bool" name="config_disableUsbPermissionDialogs"/> <java-symbol type="bool" name="config_hasRecents" /> |