RK3399支持5G-WiFi热点:
背景
Platform: RK3399
OS: Android7.1.2
Kernel: v4.4.103
以前用AP6356s模块,设置WIFI热点的时候有5G频段选项
后面发现没有了,在调试AP6256的时候也发现没有,但他们都是支持5G的。
解决
最原始的版本是通过判断mWifiManager.isDualBandSupported()和countryCode,来确定是否添加5G频段的选项
mWifiManager.isDualBandSupported(),通过以下配置读取
frameworks/base/core/res/res/values/config.xml:
CODE
<bool translatable="false" name="config_wifi_dual_band_support">true</bool>
frameworks/opt/net/wifi/service/java/com/android/server/wifi/WifiServiceImpl.java:
.............
作者: Shell