欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Android Wi-Fi 修改国家码(QCOM平台)

程序员文章站 2022-07-14 11:25:54
...

修改Wi-Fi国家码的方法有很多,目前只列举出几种方法

1.supplicant provide one private command which can be used by framework or supplicant to change the country code of wlan driver 

wpa_cli -i wlan0 DRIVER COUNTRY CN //change to CN 

2.将WCNSS_qcom_wlan_nv.bin文件取成xxx.xml文件然后将国家码修改成对应的国家

 <DefaultCountryTable>   

	 <RegulatoryDomain Map="0:FCC,1:ETSI,2:JAPAN,3:WORLD,4:N_AMER_EXC_FCC,5:APAC,6:KOREA,7:HI_5GHZ,8:NO_5GHZ"> 3 </RegulatoryDomain>   
	
	 <CountryCode>   

		 <Value>48</Value>   
		 <Value>48</Value>   
		 <Value>73</Value>   

	 </CountryCode>   
 </DefaultCountryTable>

3.通过adb临时修改国家码。

(1)首先开启手机的飞行模式
(2)adb remount; adb shell setprop gsm.operator.iso-country us---->设置成对应的国家
(3)adb remount; adb shell setprop gsm.sim.operator.iso-country us
(4)adb shell getprop | grep operator


4.SIM信息修改国际码

此方法通过获取SIM卡中的MCC(移动国家码,Mobile Country Code,3bit)信息然后通过setCountryCode方法设置。具体代码流程请看

我的另一篇博文

http://blog.csdn.net/xiaoxiangyuhai/article/details/75044469(点击打开链接)

5.修改WCNSS_qcom_cfg.ini修改国家码

#Set countrycode for STA mode.
gStaCountryCode = us 

#Set country code in SoftAP mode.
gAPCntryCode = us

6.通过开启11d功能设置国际码

Android Wi-Fi 修改国家码(QCOM平台)