I.MX6 WIFI wireless_tools 移植
生活随笔
收集整理的這篇文章主要介紹了
I.MX6 WIFI wireless_tools 移植
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
/********************************************************************************* I.MX6 WIFI wireless_tools 移植* 說明:* 移植完了wifi驅動,現在要能夠測試wifi驅動了,但是Android中間層好像出了點* 問題,所以需要有工具能夠直接測試wifi功能,于是找了這個工具移植一下。** 2016-6-20 深圳 南山平山村 曾劍鋒*******************************************************************************/一、參考文檔:1. iwconfig的用法(轉)http://jasy.ice.blog.163.com/blog/static/8843073020112179448868/2. 嵌入式開發之工具移植--wireless tools工具的移植和使用http://blog.csdn.net/tigerjibo/article/details/127849013. 移植wireless tools (iwpriv, iwconfig, iwgetid, iwevents, iwspy, iwlist)到Androidhttp://blog.csdn.net/darkengine/article/details/70244594. 二、文件列表:myzr@myzr:~/myandroid/external/wireless_tools.30.rtl$ ls19-udev-ifrename.rules iwconfig.c README.frAndroid.mk iwevent.8 sample_enc.candroid_readme iwevent.c sample_pm.cCHANGELOG.h iwgetid.8 sample_priv_addr.cCOPYING iwgetid.c wireless.10.hcs iwlib.c wireless.11.hDISTRIBUTIONS.txt iwlib.h wireless.12.hESSID-BUG.txt iwlib-private.h wireless.13.hfr.ISO8859-1 iwlist.8 wireless.14.hfr.UTF-8 iwlist.c wireless.15.hHOTPLUG-UDEV.txt iwmulticall.c wireless.16.hifrename.8 iwpriv.8 wireless.17.hifrename.c iwpriv.c wireless.18.hIFRENAME-VS-XXX.txt iwspy.8 wireless.19.hiftab.5 iwspy.c wireless.20.hINSTALL macaddr.c wireless.21.hiw261_restore_full_essid.diff Makefile wireless.7iw262_restore_full_essid.diff PCMCIA.txt wireless.hiwconfig.8 README三、Android.mk:LOCAL_PATH:= $(call my-dir)################## build iwlib ###################include $(CLEAR_VARS)LOCAL_SRC_FILES := iwlib.cLOCAL_CFLAGS += -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wpointer-arith -Wcast-qual -Winline -MMD -fPICLOCAL_MODULE_TAGS := optionalLOCAL_MODULE:= libiwLOCAL_STATIC_LIBRARIES := libcutils libc libminclude $(BUILD_STATIC_LIBRARY)################## build iwconfig ###################include $(CLEAR_VARS)LOCAL_SRC_FILES := iwconfig.cLOCAL_CFLAGS += -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wpointer-arith -Wcast-qual -Winline -MMD -fPICLOCAL_MODULE_TAGS := optionalLOCAL_MODULE:= iwconfigLOCAL_STATIC_LIBRARIES := libcutils libc libm libiwLOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES) # install to system/xbininclude $(BUILD_EXECUTABLE)################## build iwlist ###################include $(CLEAR_VARS)LOCAL_SRC_FILES := iwlist.cLOCAL_CFLAGS += -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wpointer-arith -Wcast-qual -Winline -MMD -fPICLOCAL_MODULE_TAGS := optionalLOCAL_MODULE:= iwlistLOCAL_STATIC_LIBRARIES := libcutils libc libm libiwLOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES) # install to system/xbininclude $(BUILD_EXECUTABLE)################## build iwpriv ###################include $(CLEAR_VARS)LOCAL_SRC_FILES := iwpriv.cLOCAL_CFLAGS += -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wpointer-arith -Wcast-qual -Winline -MMD -fPICLOCAL_MODULE_TAGS := optionalLOCAL_MODULE:= iwprivLOCAL_STATIC_LIBRARIES := libcutils libc libm libiwLOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES) # install to system/xbininclude $(BUILD_EXECUTABLE)################## build iwspy ###################include $(CLEAR_VARS)LOCAL_SRC_FILES := iwspy.cLOCAL_CFLAGS += -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wpointer-arith -Wcast-qual -Winline -MMD -fPICLOCAL_MODULE_TAGS := optionalLOCAL_MODULE:= iwspyLOCAL_STATIC_LIBRARIES := libcutils libc libm libiwLOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES) # install to system/xbininclude $(BUILD_EXECUTABLE)################## build iwgetid ###################include $(CLEAR_VARS)LOCAL_SRC_FILES := iwgetid.cLOCAL_CFLAGS += -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wpointer-arith -Wcast-qual -Winline -MMD -fPICLOCAL_MODULE_TAGS := optionalLOCAL_MODULE:= iwgetidLOCAL_STATIC_LIBRARIES := libcutils libc libm libiwLOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES) # install to system/xbininclude $(BUILD_EXECUTABLE)################## build iwevent ###################include $(CLEAR_VARS)LOCAL_SRC_FILES := iwevent.cLOCAL_CFLAGS += -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wpointer-arith -Wcast-qual -Winline -MMD -fPICLOCAL_MODULE_TAGS := optionalLOCAL_MODULE:= iweventLOCAL_STATIC_LIBRARIES := libcutils libc libm libiwLOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES) # install to system/xbininclude $(BUILD_EXECUTABLE)################## build ifrename ####################include $(CLEAR_VARS)#LOCAL_SRC_FILES := ifrename.c#LOCAL_CFLAGS += -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wpointer-arith -Wcast-qual -Winline -MMD -fPIC#LOCAL_MODULE_TAGS := optional#LOCAL_MODULE:= ifrename#LOCAL_STATIC_LIBRARIES := libcutils libc libm libiw#LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES) # install to system/xbin#include $(BUILD_EXECUTABLE)################## build macaddr ###################include $(CLEAR_VARS)LOCAL_SRC_FILES := macaddr.cLOCAL_CFLAGS += -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wpointer-arith -Wcast-qual -Winline -MMD -fPICLOCAL_MODULE_TAGS := optionalLOCAL_MODULE:= macaddrLOCAL_STATIC_LIBRARIES := libcutils libc libm libiwLOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES) # install to system/xbininclude $(BUILD_EXECUTABLE)四、測試命令:root@android:/ # iwconfig wlan0 RTL871X: rtw_wx_get_rts, rts_thresh=2347RTL871X: rtw_wx_get_frag, frag_len=2346wlan0 unassociated Nickname:"<WIFI@REALTEK>"Mode:Managed Frequency=2.412 GHz Access Point: Not-Associated Sensitivity:0/0 Retry:off RTS thr:off Fragment thr:offEncryption key:offPower Management:offLink Quality=0/100 Signal level=0 dBm Noise level=0 dBmRx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0Tx excessive retries:0 Invalid misc:0 Missed beacon:0root@android:/ # busybox ifconfig wlan0 upRTL871X: +871x_drv - drv_open, bup=0RTL871X: FW does not exist before power on!!RTL871X: SetHwReg8723B: bMacPwrCtrlOn=1RTL871X: PowerOnCheck: val_mix:0x0000063f, res:0x0000063fRTL871X: PowerOnCheck: 0x100 the result of cmd52 and cmd53 is the same.RTL871X: PowerOnCheck: 0x1B8 test Pass.RTL871X: Power on ok!RTL871X: rtl8723b_FirmwareDownload fw: FW_NIC, size: 32108RTL871X: rtl8723b_FirmwareDownload: fw_ver=23 fw_subver=0000 sig=0x5301, Month=03, Date=26, Hour=14, Minute=35RTL871X: rtl8723b_FirmwareDownload(): Shift for fw header!RTL871X: polling_fwdl_chksum: Checksum report OK! (1, 0ms), REG_MCUFWDL:0x00070305RTL871X: _8051Reset8723: FinishRTL871X: _FWFreeToGo: Polling FW ready OK! (302, 30ms), REG_MCUFWDL:0x000706c6RTL871X: FWDL success. write_fw:1, 300msRTL871X: <=== rtl8723b_FirmwareDownload()RTL871X: HalDetectPwrDownMode(): PDN=0RTL871X: Set RF Chip ID to RF_6052 and RF type to 3.RTL871X: _init_available_page_threshold(): Enable Tx FIFO Page Threshold H:0x7a7a,N:0x7575,L:0x7575RTL871X: ===>phy_SwChnl8723B: Channel = 1RTL871X: pDM_Odm TxPowerTrackControl = 1RTL871X: ===>phy_SwChnl8723B: Channel = 1RTL871X: #### hw_var_set_opmode() -5250 iface_type(0) mode = 2 ####RTL871X: Using the default RF gain.RTL871X: MAC Address = 80:a5:89:49:6e:81RTL871X: -871x_drv - drv_open, bup=1RTL871X: start rtl8723bs_xmit_thread(wlan0)ADDRCONF(NETDEV_UP): wlan0: link is not readyRTL871X: rtl8723b_c2h_packet_handler: C2H, ID=9 seq=0 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=1 len=7root@android:/ # RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=2 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=3 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=4 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=5 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=6 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=7 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=8 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=9 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=10 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=11 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=12 len=7RTL871X: IsBtDisabled=0, IsBtControlLps=0RTL871X: ==>rtw_ps_processor .fw_state(8)RTL871X: ==>ips_enter cnts:1RTL871X: nolinked power save enterRTL871X: ===> rtw_ips_pwr_down...................RTL871X: ====> rtw_ips_dev_unload...RTL871X: rtl8723bs_hal_deinit: issue H2C to FW when entering IPSRTL871X: rtl8723b_set_FwPwrModeInIPS_cmd()RTL871X: rtl8723bs_hal_deinit polling REG_HMETFR=0x4, cnt=1 RTL871X: rtl8723bs_hal_deinit polling REG_HMETFR=0x0, cnt=2 RTL871X: rtl8723bs_hal_deinit: write rpwm=81RTL871X: rtl8723bs_hal_deinit polling 0x100=0xea, cnt=1 RTL871X: polling done when entering IPS, check result : 0x100=0xea, cnt=1, MAC_1cc=0xeaRTL871X: <=== rtw_ips_pwr_down..................... in 80msroot@android:/ # iwlist wlan0 scan RTL871X: ==>ips_leave cnts:1RTL871X: ===> rtw_ips_pwr_up..............RTL871X: ===> ips_netdrv_open.........RTL871X: rtl8723bs_hal_init: Leaving IPS in FWLPS stateRTL871X: rtl8723bs_hal_init: write rpwm=40RTL871X: rtl8723bs_hal_init: polling cpwm ok when leaving IPS in FWLPS state, cpwm_orig=00, cpwm_now=80, 0x100=0x3f RTL871X: rtl8723b_set_FwPwrModeInIPS_cmd()RTL871X: SetHwReg8723B: bMacPwrCtrlOn=1RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=9 seq=13 len=7RTL871X: ===>phy_SwChnl8723B: Channel = 1RTL871X: #### hw_var_set_opmode() -5250 iface_type(0) mode = 2 ####RTL871X: Using the default RF gain.RTL871X: <=== rtw_ips_pwr_up.............. in 60msRTL871X: nolinked power save leaveRTL871X: ==> ips_leave.....LED(0x00e28282)...RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=14 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=15 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=9 seq=16 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=17 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=18 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=19 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=20 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=21 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=22 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=23 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=24 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=25 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=26 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=9 seq=27 len=7RTL871X: ===>phy_SwChnl8723B: Channel = 1RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=28 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=29 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=30 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=31 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=32 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=33 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=34 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=35 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=36 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=37 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=38 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=39 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=40 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=41 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=42 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=43 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=44 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=45 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=46 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=47 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=48 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=49 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=50 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=51 len=7RTL871X: ===>phy_SwChnl8723B: Channel = 2RTL871X: IsBtDisabled=0, IsBtControlLps=0RTL871X: ===>phy_SwChnl8723B: Channel = 3RTL871X: ===>phy_SwChnl8723B: Channel = 4RTL871X: ===>phy_SwChnl8723B: Channel = 5RTL871X: ===>phy_SwChnl8723B: Channel = 6RTL871X: ===>phy_SwChnl8723B: Channel = 7RTL871X: ===>phy_SwChnl8723B: Channel = 8RTL871X: ===>phy_SwChnl8723B: Channel = 9RTL871X: ===>phy_SwChnl8723B: Channel = 10RTL871X: ===>phy_SwChnl8723B: Channel = 11RTL871X: ===>phy_SwChnl8723B: Channel = 12RTL871X: ===>phy_SwChnl8723B: Channel = 13RTL871X: ===>phy_SwChnl8723B: Channel = 1RTL871X: survey done event(60) band:0 for wlan0RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=9 seq=52 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=53 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=54 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=55 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=56 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=57 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=58 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=59 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=60 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=61 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=62 len=7RTL871X: rtw_indicate_scan_done(wlan0)RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=63 len=7RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=11 seq=64 len=7RTL871X: IsBtDisabled=0, IsBtControlLps=0RTL871X: ==>rtw_ps_processor .fw_state(8)RTL871X: rtl8723b_c2h_packet_handler: C2H, ID=9 seq=65 len=7RTL871X: ==>ips_enter cnts:2RTL871X: nolinked power save enterRTL871X: ===> rtw_ips_pwr_down...................RTL871X: ====> rtw_ips_dev_unload...RTL871X: rtl8723bs_hal_deinit: issue H2C to FW when entering IPSRTL871X: rtl8723b_set_FwPwrModeInIPS_cmd()wlan0 Scan completed :RTL871X: rtl8723bs_hal_deinit polling REG_HMETFR=0x4, cnt=1 Cell 01 - Address: 00:B0:C6:0F:24:B0ESSID:"-AP3"Protocol:IEEE 802.11RTL871X: rtl8723bs_hal_deinit polling REG_HMETFR=0x0, cnt=2 bgnMode:MasterFrequency:2.412 GHz (Channel 1)RTL871X: rtl8723bs_hal_deinit: write rpwm=c1Bit Rates:30RTL871X: rtl8723bs_hal_deinit polling 0x100=0xea, cnt=1 0 Mb/sExtra:rsn_ie=30140100000fac040100000fac040100000fac020c00IE: IEEE 802.11i/WPA2 RTL871X: polling done when entering IPS, check result : 0x100=0xea, cnt=1, MAC_1cc=0xeaVersion 1RTL871X: <=== rtw_ips_pwr_down..................... in 80msGroup Cipher : CCMPPairwise Ciphers (1) : CCMPAuthentication Suites (1) : PSKQuality=96/100 Signal level=-66 dBm Extra:fm=0003Cell 02 - Address: C0:61:18:FC:73:A1ESSID:"ZLY-TECH"Protocol:IEEE 802.11bgnMode:MasterFrequency:2.412 GHz (Channel 1)Encryption key:onBit Rates:300 Mb/sExtra:wpa_ie=dd160050f20101000050f20401000050f20401000050f202IE: WPA Version 1Group Cipher : CCMPPairwise Ciphers (1) : CCMPAuthentication Suites (1) : PSKExtra:IE: IEEE 802.11i/WPA2 Version 1Group Cipher : CCMPPairwise Ciphers (1) : CCMPAuthentication Suites (1) : PSKQuality=56/100 Signal level=-73 dBm Extra:fm=0001Cell 03 - Address: 0C:4C:39:1A:51:B3ESSID:"ChinaNet-Qh5y"Protocol:IEEE 802.11bgnMode:MasterFrequency:2.412 GHz (Channel 1)Encryption key:onBit Rates:144 Mb/sExtra:wpa_ie=dd160050f20101000050f20401000050f20401000050f202IE: WPA Version 1Group Cipher : CCMPPairwise Ciphers (1) : CCMPAuthentication Suites (1) : PSKExtra:IE: IEEE 802.11i/WPA2 Version 1Group Cipher : CCMPPairwise Ciphers (1) : CCMPAuthentication Suites (1) : PSKIE: Unknown: DD180050F204104A00011010440001021049000600372A000120Quality=73/100 Signal level=-73 dBm Extra:fm=0001Cell 04 - Address: B8:55:10:84:A5:13ESSID:"GOODSTART2"Protocol:IEEE 802.11bgnMode:MasterFrequency:2.412 GHz (Channel 1)Encryption key:onBit Rates:300 Mb/sExtra:wpa_ie=dd160050f20101000050f20401000050f20401000050f202IE: WPA Version 1Group Cipher : CCMPPairwise Ciphers (1) : CCMPAuthentication Suites (1) : PSKExtra:IE: IEEE 802.11i/WPA2 Version 1Group Cipher : CCMPPairwise Ciphers (1) : CCMPAuthentication Suites (1) : PSKQuality=28/100 Signal level=-76 dBm Extra:fm=0001Cell 05 - Address: 00:B0:C6:4F:98:27ESSID:"DXYP-2015"Protocol:IEEE 802.11bgnMode:MasterFrequency:2.412 GHz (Channel 1)Encryption key:onBit Rates:144 Mb/sExtra:wpa_ie=dd160050f20101000050f20401000050f20401000050f202IE: WPA Version 1Group Cipher : CCMPPairwise Ciphers (1) : CCMPAuthentication Suites (1) : PSKExtra:IE: IEEE 802.11i/WPA2 Version 1Group Cipher : CCMPPairwise Ciphers (1) : CCMPAuthentication Suites (1) : PSKQuality=96/100 Signal level=-71 dBm Extra:fm=0001Cell 06 - Address: B0:D5:9D:58:45:14ESSID:"huo"Protocol:IEEE 802.11bgnMode:MasterFrequency:2.412 GHz (Channel 1)Encryption key:onBit Rates:300 Mb/sExtra:rsn_ie=30140100000fac040100000fac040100000fac020000IE: IEEE 802.11i/WPA2 Version 1Group Cipher : CCMPPairwise Ciphers (1) : CCMPAuthentication Suites (1) : PSKQuality=100/100 Signal level=-65 dBm Extra:fm=0001Cell 07 - Address: F8:E9:03:B7:15:8AESSID:"laser309"Protocol:IEEE 802.11bgnMode:MasterFrequency:2.412 GHz (Channel 1)Encryption key:onBit Rates:300 Mb/sExtra:wpa_ie=dd160050f20101000050f20401000050f20401000050f202IE: WPA Version 1Group Cipher : CCMPPairwise Ciphers (1) : CCMPAuthentication Suites (1) : PSKExtra:IE: IEEE 802.11i/WPA2 Version 1Group Cipher : CCMPPairwise Ciphers (1) : CCMPAuthentication Suites (1) : PSKIE: Unknown: DD180050F204104A00011010440001011049000600372A000120Quality=46/100 Signal level=-75 dBm Extra:fm=0001Cell 08 - Address: 8C:BE:BE:01:54:D2ESSID:"_C"Protocol:IEEE 802.11bgnMode:MasterFrequency:2.412 GHz (Channel 1)Encryption key:onBit Rates:150 Mb/sExtra:rsn_ie=30140100000fac040100000fac040100000fac020000IE: IEEE 802.11i/WPA2 Version 1Group Cipher : CCMPPairwise Ciphers (1) : CCMPAuthentication Suites (1) : PSKQuality=100/100 Signal level=-65 dBm Extra:fm=0003Cell 09 - Address: EC:26:CA:47:D1:F6ESSID:"nnnd"Protocol:IEEE 802.11bgnMode:MasterFrequency:2.437 GHz (Channel 6)Encryption key:onBit Rates:300 Mb/sExtra:wpa_ie=dd160050f20101000050f20401000050f20401000050f202IE: WPA Version 1Group Cipher : CCMPPairwise Ciphers (1) : CCMPAuthentication Suites (1) : PSKExtra:IE: IEEE 802.11i/WPA2 Version 1Group Cipher : CCMPPairwise Ciphers (1) : CCMPAuthentication Suites (1) : PSKQuality=20/100 Signal level=-45 dBm Extra:fm=0001Cell 10 - Address: 14:75:90:D5:7E:A4ESSID:"worldstar-2"Protocol:IEEE 802.11bgnMode:MasterFrequency:2.437 GHz (Channel 6)Encryption key:onBit Rates:300 Mb/sExtra:wpa_ie=dd160050f20101000050f20401000050f20401000050f202IE: WPA Version 1Group Cipher : CCMPPairwise Ciphers (1) : CCMPAuthentication Suites (1) : PSKExtra:IE: IEEE 802.11i/WPA2 Version 1Group Cipher : CCMPPairwise Ciphers (1) : CCMPAuthentication Suites (1) : PSKQuality=5/100 Signal level=-74 dBm Extra:fm=0003Cell 11 - Address: B4:98:42:10:B1:3CESSID:"ChinaNet-xTSy"Protocol:IEEE 802.11bgnMode:MasterFrequency:2.437 GHz (Channel 6)Encryption key:onBit Rates:130 Mb/sExtra:wpa_ie=dd160050f20101000050f20401000050f20401000050f202IE: WPA Version 1Group Cipher : CCMPPairwise Ciphers (1) : CCMPAuthentication Suites (1) : PSKExtra:IE: IEEE 802.11i/WPA2 Version 1Group Cipher : CCMPPairwise Ciphers (1) : CCMPAuthentication Suites (1) : PSKIE: Unknown: DD0E0050F204104A0001101044000102Quality=36/100 Signal level=-73 dBm Extra:fm=0001Cell 12 - Address: 00:87:36:09:A9:4CESSID:"\xE6\xAD\xA4\xE5\xB9\xBF\xE5\x91\x8A\xE4\xBD\x8D\xE5\xB8\xB8\xE5\xB9\xB4\xE6\x8B\x9B\xE5\x95\x86"Protocol:IEEE 802.11bgnMode:MasterFrequency:2.437 GHz (Channel 6)Encryption key:onBit Rates:150 Mb/sExtra:wpa_ie=dd180050f20101000050f20401000050f20401000050f2020000IE: WPA Version 1Group Cipher : CCMPPairwise Ciphers (1) : CCMPAuthentication Suites (1) : PSKExtra:IE: IEEE 802.11i/WPA2 Version 1Group Cipher : CCMPPairwise Ciphers (1) : CCMPAuthentication Suites (1) : PSKQuality=29/100 Signal level=-74 dBm Extra:fm=0001Cell 13 - Address: EC:26:CA:E1:6B:17ESSID:"-AP"Protocol:IEEE 802.11bgnMode:MasterFrequency:2.462 GHz (Channel 11)Encryption key:onBit Rates:144 Mb/sExtra:wpa_ie=dd160050f20101000050f20401000050f20401000050f202IE: WPA Version 1Group Cipher : CCMPPairwise Ciphers (1) : CCMPAuthentication Suites (1) : PSKExtra:IE: IEEE 802.11i/WPA2 Version 1Group Cipher : CCMPPairwise Ciphers (1) : CCMPAuthentication Suites (1) : PSKQuality=36/100 Signal level=-76 dBm Extra:fm=0003Cell 14 - Address: 90:94:E4:3B:78:D0ESSID:"china"Protocol:IEEE 802.11bgnMode:MasterFrequency:2.457 GHz (Channel 10)Encryption key:onBit Rates:300 Mb/sExtra:wpa_ie=dd1a0050f20101000050f20202000050f2020050f20401000050f202IE: WPA Version 1Group Cipher : TKIPPairwise Ciphers (2) : TKIP CCMPAuthentication Suites (1) : PSKExtra:IE: IEEE 802.11i/WPA2 Version 1Group Cipher : TKIPPairwise Ciphers (2) : TKIP CCMPAuthentication Suites (1) : PSKQuality=88/100 Signal level=-73 dBm Extra:fm=0001Cell 15 - Address: A0:F3:C1:95:22:36ESSID:"TP-LINK_952236"Protocol:IEEE 802.11bgnMode:MasterFrequency:2.462 GHz (Channel 11)Encryption key:onBit Rates:300 Mb/sExtra:rsn_ie=30180100000fac020200000fac04000fac020100000fac020000IE: IEEE 802.11i/WPA2 Version 1Group Cipher : TKIPPairwise Ciphers (2) : CCMP TKIPAuthentication Suites (1) : PSKQuality=32/100 Signal level=-79 dBm Extra:fm=0003Cell 16 - Address: 14:75:90:CE:35:87ESSID:"sjb"Protocol:IEEE 802.11bgnMode:MasterFrequency:2.462 GHz (Channel 11)Encryption key:onBit Rates:300 Mb/sExtra:rsn_ie=30140100000fac040100000fac040100000fac020000IE: IEEE 802.11i/WPA2 Version 1Group Cipher : CCMPPairwise Ciphers (1) : CCMPAuthentication Suites (1) : PSKIE: Unknown: DD180050F204104A00011010440001021049000600372A000120Quality=0/100 Signal level=-74 dBm Extra:fm=0001Cell 17 - Address: D0:FA:1D:76:01:7BESSID:"SZSD"Protocol:IEEE 802.11bgnMode:MasterFrequency:2.462 GHz (Channel 11)Encryption key:onBit Rates:300 Mb/sExtra:wpa_ie=dd160050f20101000050f20401000050f20401000050f202IE: WPA Version 1Group Cipher : CCMPPairwise Ciphers (1) : CCMPAuthentication Suites (1) : PSKExtra:IE: IEEE 802.11i/WPA2 Version 1Group Cipher : CCMPPairwise Ciphers (1) : CCMPAuthentication Suites (1) : PSKQuality=0/100 Signal level=-71 dBm Extra:fm=0001
?
總結
以上是生活随笔為你收集整理的I.MX6 WIFI wireless_tools 移植的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 导入android studio项目,编
- 下一篇: 优化Linux系统中的服务