├── .gitignore ├── 8188gu-1.0.1 ├── AMD_X86.sh ├── ARM64.sh ├── ARM_RPI.sh ├── Kconfig ├── Makefile ├── README.md ├── core │ ├── efuse │ │ └── rtw_efuse.c │ ├── rtw_ap.c │ ├── rtw_beamforming.c │ ├── rtw_br_ext.c │ ├── rtw_bt_mp.c │ ├── rtw_btcoex.c │ ├── rtw_btcoex_wifionly.c │ ├── rtw_cmd.c │ ├── rtw_debug.c │ ├── rtw_eeprom.c │ ├── rtw_ieee80211.c │ ├── rtw_io.c │ ├── rtw_ioctl_query.c │ ├── rtw_ioctl_rtl.c │ ├── rtw_ioctl_set.c │ ├── rtw_iol.c │ ├── rtw_mem.c │ ├── rtw_mi.c │ ├── rtw_mlme.c │ ├── rtw_mlme_ext.c │ ├── rtw_mp.c │ ├── rtw_mp_ioctl.c │ ├── rtw_odm.c │ ├── rtw_p2p.c │ ├── rtw_pwrctrl.c │ ├── rtw_recv.c │ ├── rtw_rf.c │ ├── rtw_rson.c │ ├── rtw_sdio.c │ ├── rtw_security.c │ ├── rtw_sreset.c │ ├── rtw_sta_mgt.c │ ├── rtw_tdls.c │ ├── rtw_vht.c │ ├── rtw_wapi.c │ ├── rtw_wapi_sms4.c │ ├── rtw_wlan_util.c │ └── rtw_xmit.c ├── dkms.conf ├── hal │ ├── HalPwrSeqCmd.c │ ├── btc │ │ ├── halbtc8192e1ant.c │ │ ├── halbtc8192e1ant.h │ │ ├── halbtc8192e2ant.c │ │ ├── halbtc8192e2ant.h │ │ ├── halbtc8703b1ant.c │ │ ├── halbtc8703b1ant.h │ │ ├── halbtc8723b1ant.c │ │ ├── halbtc8723b1ant.h │ │ ├── halbtc8723b2ant.c │ │ ├── halbtc8723b2ant.h │ │ ├── halbtc8723bwifionly.c │ │ ├── halbtc8723bwifionly.h │ │ ├── halbtc8723d1ant.c │ │ ├── halbtc8723d1ant.h │ │ ├── halbtc8723d2ant.c │ │ ├── halbtc8723d2ant.h │ │ ├── halbtc8812a1ant.c │ │ ├── halbtc8812a1ant.h │ │ ├── halbtc8812a2ant.c │ │ ├── halbtc8812a2ant.h │ │ ├── halbtc8821a1ant.c │ │ ├── halbtc8821a1ant.h │ │ ├── halbtc8821a2ant.c │ │ ├── halbtc8821a2ant.h │ │ ├── halbtc8821c1ant.c │ │ ├── halbtc8821c1ant.h │ │ ├── halbtc8821c2ant.c │ │ ├── halbtc8821c2ant.h │ │ ├── halbtc8821cwifionly.c │ │ ├── halbtc8821cwifionly.h │ │ ├── halbtc8822b1ant.c │ │ ├── halbtc8822b1ant.h │ │ ├── halbtc8822b2ant.c │ │ ├── halbtc8822b2ant.h │ │ ├── halbtc8822bwifionly.c │ │ ├── halbtc8822bwifionly.h │ │ ├── halbtcoutsrc.h │ │ └── mp_precomp.h │ ├── efuse │ │ ├── efuse_mask.h │ │ └── rtl8710b │ │ │ ├── HalEfuseMask8710B_USB.c │ │ │ └── HalEfuseMask8710B_USB.h │ ├── hal_btcoex.c │ ├── hal_btcoex_wifionly.c │ ├── hal_com.c │ ├── hal_com_c2h.h │ ├── hal_com_phycfg.c │ ├── hal_dm.c │ ├── hal_dm.h │ ├── hal_dm_acs.c │ ├── hal_dm_acs.h │ ├── hal_halmac.c │ ├── hal_halmac.h │ ├── hal_hci │ │ └── hal_usb.c │ ├── hal_intf.c │ ├── hal_mcc.c │ ├── hal_mp.c │ ├── hal_phy.c │ ├── led │ │ └── hal_usb_led.c │ ├── phydm │ │ ├── ap_makefile.mk │ │ ├── halhwimg.h │ │ ├── halrf │ │ │ ├── halphyrf_ap.c │ │ │ ├── halphyrf_ap.h │ │ │ ├── halphyrf_ce.c │ │ │ ├── halphyrf_ce.h │ │ │ ├── halphyrf_win.c │ │ │ ├── halphyrf_win.h │ │ │ ├── halrf.c │ │ │ ├── halrf.h │ │ │ ├── halrf_features.h │ │ │ ├── halrf_iqk.h │ │ │ ├── halrf_kfree.c │ │ │ ├── halrf_kfree.h │ │ │ ├── halrf_powertracking.c │ │ │ ├── halrf_powertracking.h │ │ │ ├── halrf_powertracking_ap.c │ │ │ ├── halrf_powertracking_ap.h │ │ │ ├── halrf_powertracking_ce.c │ │ │ ├── halrf_powertracking_ce.h │ │ │ ├── halrf_powertracking_win.c │ │ │ ├── halrf_powertracking_win.h │ │ │ ├── halrf_psd.c │ │ │ ├── halrf_psd.h │ │ │ ├── halrf_txgapcal.c │ │ │ ├── halrf_txgapcal.h │ │ │ └── rtl8710b │ │ │ │ ├── halrf_8710b.c │ │ │ │ └── halrf_8710b.h │ │ ├── mp_precomp.h │ │ ├── phydm.c │ │ ├── phydm.h │ │ ├── phydm.mk │ │ ├── phydm_acs.c │ │ ├── phydm_acs.h │ │ ├── phydm_adaptivity.c │ │ ├── phydm_adaptivity.h │ │ ├── phydm_adc_sampling.c │ │ ├── phydm_adc_sampling.h │ │ ├── phydm_antdect.c │ │ ├── phydm_antdect.h │ │ ├── phydm_antdiv.c │ │ ├── phydm_antdiv.h │ │ ├── phydm_api.c │ │ ├── phydm_api.h │ │ ├── phydm_auto_dbg.c │ │ ├── phydm_auto_dbg.h │ │ ├── phydm_beamforming.c │ │ ├── phydm_beamforming.h │ │ ├── phydm_cck_pd.c │ │ ├── phydm_cck_pd.h │ │ ├── phydm_ccx.c │ │ ├── phydm_ccx.h │ │ ├── phydm_cfotracking.c │ │ ├── phydm_cfotracking.h │ │ ├── phydm_debug.c │ │ ├── phydm_debug.h │ │ ├── phydm_dfs.c │ │ ├── phydm_dfs.h │ │ ├── phydm_dig.c │ │ ├── phydm_dig.h │ │ ├── phydm_dynamic_rx_path.c │ │ ├── phydm_dynamic_rx_path.h │ │ ├── phydm_dynamictxpower.c │ │ ├── phydm_dynamictxpower.h │ │ ├── phydm_features.h │ │ ├── phydm_features_ap.h │ │ ├── phydm_features_ce.h │ │ ├── phydm_features_win.h │ │ ├── phydm_hwconfig.c │ │ ├── phydm_hwconfig.h │ │ ├── phydm_interface.c │ │ ├── phydm_interface.h │ │ ├── phydm_math_lib.c │ │ ├── phydm_math_lib.h │ │ ├── phydm_noisemonitor.c │ │ ├── phydm_noisemonitor.h │ │ ├── phydm_pathdiv.c │ │ ├── phydm_pathdiv.h │ │ ├── phydm_phystatus.c │ │ ├── phydm_phystatus.h │ │ ├── phydm_pow_train.c │ │ ├── phydm_pow_train.h │ │ ├── phydm_pre_define.h │ │ ├── phydm_precomp.h │ │ ├── phydm_primary_cca.c │ │ ├── phydm_primary_cca.h │ │ ├── phydm_psd.c │ │ ├── phydm_psd.h │ │ ├── phydm_rainfo.c │ │ ├── phydm_rainfo.h │ │ ├── phydm_reg.h │ │ ├── phydm_regdefine11ac.h │ │ ├── phydm_regdefine11n.h │ │ ├── phydm_rssi_monitor.c │ │ ├── phydm_rssi_monitor.h │ │ ├── phydm_smt_ant.c │ │ ├── phydm_smt_ant.h │ │ ├── phydm_soml.c │ │ ├── phydm_soml.h │ │ ├── phydm_types.h │ │ ├── rtl8710b │ │ │ ├── hal8710breg.h │ │ │ ├── halhwimg8710b_bb.c │ │ │ ├── halhwimg8710b_bb.h │ │ │ ├── halhwimg8710b_mac.c │ │ │ ├── halhwimg8710b_mac.h │ │ │ ├── halhwimg8710b_rf.c │ │ │ ├── halhwimg8710b_rf.h │ │ │ ├── phydm_regconfig8710b.c │ │ │ ├── phydm_regconfig8710b.h │ │ │ ├── phydm_rtl8710b.c │ │ │ ├── phydm_rtl8710b.h │ │ │ └── version_rtl8710b.h │ │ └── txbf │ │ │ ├── halcomtxbf.c │ │ │ ├── halcomtxbf.h │ │ │ ├── haltxbf8192e.c │ │ │ ├── haltxbf8192e.h │ │ │ ├── haltxbf8814a.c │ │ │ ├── haltxbf8814a.h │ │ │ ├── haltxbf8822b.c │ │ │ ├── haltxbf8822b.h │ │ │ ├── haltxbfinterface.c │ │ │ ├── haltxbfinterface.h │ │ │ ├── haltxbfjaguar.c │ │ │ ├── haltxbfjaguar.h │ │ │ ├── phydm_hal_txbf_api.c │ │ │ └── phydm_hal_txbf_api.h │ └── rtl8710b │ │ ├── Hal8710BPwrSeq.c │ │ ├── hal8710b_fw.c │ │ ├── hal8710b_fw.h │ │ ├── rtl8710b_cmd.c │ │ ├── rtl8710b_dm.c │ │ ├── rtl8710b_hal_init.c │ │ ├── rtl8710b_lps_poff.c │ │ ├── rtl8710b_phycfg.c │ │ ├── rtl8710b_rf6052.c │ │ ├── rtl8710b_rxdesc.c │ │ ├── rtl8710b_sreset.c │ │ └── usb │ │ ├── rtl8710bu_led.c │ │ ├── rtl8710bu_recv.c │ │ ├── rtl8710bu_xmit.c │ │ ├── usb_halinit.c │ │ └── usb_ops.c ├── include │ ├── Hal8188EPhyCfg.h │ ├── Hal8188EPhyReg.h │ ├── Hal8188EPwrSeq.h │ ├── Hal8188FPhyCfg.h │ ├── Hal8188FPhyReg.h │ ├── Hal8188FPwrSeq.h │ ├── Hal8192EPhyCfg.h │ ├── Hal8192EPhyReg.h │ ├── Hal8192EPwrSeq.h │ ├── Hal8703BPhyCfg.h │ ├── Hal8703BPhyReg.h │ ├── Hal8703BPwrSeq.h │ ├── Hal8710BPhyCfg.h │ ├── Hal8710BPhyReg.h │ ├── Hal8710BPwrSeq.h │ ├── Hal8723BPhyCfg.h │ ├── Hal8723BPhyReg.h │ ├── Hal8723BPwrSeq.h │ ├── Hal8723DPhyCfg.h │ ├── Hal8723DPhyReg.h │ ├── Hal8723DPwrSeq.h │ ├── Hal8723PwrSeq.h │ ├── Hal8812PhyCfg.h │ ├── Hal8812PhyReg.h │ ├── Hal8812PwrSeq.h │ ├── Hal8814PhyCfg.h │ ├── Hal8814PhyReg.h │ ├── Hal8814PwrSeq.h │ ├── Hal8821APwrSeq.h │ ├── HalPwrSeqCmd.h │ ├── HalVerDef.h │ ├── autoconf.h │ ├── autoconf.h.old │ ├── basic_types.h │ ├── byteorder │ │ ├── big_endian.h │ │ ├── generic.h │ │ ├── little_endian.h │ │ ├── swab.h │ │ └── swabb.h │ ├── circ_buf.h │ ├── cmd_osdep.h │ ├── cmn_info │ │ └── rtw_sta_info.h │ ├── custom_gpio.h │ ├── drv_conf.h │ ├── drv_types.h │ ├── drv_types_ce.h │ ├── drv_types_gspi.h │ ├── drv_types_linux.h │ ├── drv_types_pci.h │ ├── drv_types_sdio.h │ ├── drv_types_xp.h │ ├── ethernet.h │ ├── gspi_hal.h │ ├── gspi_ops.h │ ├── gspi_ops_linux.h │ ├── gspi_osintf.h │ ├── h2clbk.h │ ├── hal_btcoex.h │ ├── hal_btcoex_wifionly.h │ ├── hal_com.h │ ├── hal_com_h2c.h │ ├── hal_com_led.h │ ├── hal_com_phycfg.h │ ├── hal_com_reg.h │ ├── hal_data.h │ ├── hal_gspi.h │ ├── hal_ic_cfg.h │ ├── hal_intf.h │ ├── hal_pg.h │ ├── hal_phy.h │ ├── hal_phy_reg.h │ ├── hal_sdio.h │ ├── ieee80211.h │ ├── ieee80211_ext.h │ ├── if_ether.h │ ├── ip.h │ ├── linux │ │ └── wireless.h │ ├── mlme_osdep.h │ ├── mp_custom_oid.h │ ├── nic_spec.h │ ├── osdep_intf.h │ ├── osdep_service.h │ ├── osdep_service_bsd.h │ ├── osdep_service_ce.h │ ├── osdep_service_linux.h │ ├── osdep_service_xp.h │ ├── pci_hal.h │ ├── pci_ops.h │ ├── pci_osintf.h │ ├── recv_osdep.h │ ├── rtl8188e_cmd.h │ ├── rtl8188e_dm.h │ ├── rtl8188e_hal.h │ ├── rtl8188e_led.h │ ├── rtl8188e_recv.h │ ├── rtl8188e_rf.h │ ├── rtl8188e_spec.h │ ├── rtl8188e_sreset.h │ ├── rtl8188e_xmit.h │ ├── rtl8188f_cmd.h │ ├── rtl8188f_dm.h │ ├── rtl8188f_hal.h │ ├── rtl8188f_led.h │ ├── rtl8188f_recv.h │ ├── rtl8188f_rf.h │ ├── rtl8188f_spec.h │ ├── rtl8188f_sreset.h │ ├── rtl8188f_xmit.h │ ├── rtl8192e_cmd.h │ ├── rtl8192e_dm.h │ ├── rtl8192e_hal.h │ ├── rtl8192e_led.h │ ├── rtl8192e_recv.h │ ├── rtl8192e_rf.h │ ├── rtl8192e_spec.h │ ├── rtl8192e_sreset.h │ ├── rtl8192e_xmit.h │ ├── rtl8703b_cmd.h │ ├── rtl8703b_dm.h │ ├── rtl8703b_hal.h │ ├── rtl8703b_led.h │ ├── rtl8703b_recv.h │ ├── rtl8703b_rf.h │ ├── rtl8703b_spec.h │ ├── rtl8703b_sreset.h │ ├── rtl8703b_xmit.h │ ├── rtl8710b_cmd.h │ ├── rtl8710b_dm.h │ ├── rtl8710b_hal.h │ ├── rtl8710b_led.h │ ├── rtl8710b_lps_poff.h │ ├── rtl8710b_recv.h │ ├── rtl8710b_rf.h │ ├── rtl8710b_spec.h │ ├── rtl8710b_sreset.h │ ├── rtl8710b_xmit.h │ ├── rtl8723b_cmd.h │ ├── rtl8723b_dm.h │ ├── rtl8723b_hal.h │ ├── rtl8723b_led.h │ ├── rtl8723b_recv.h │ ├── rtl8723b_rf.h │ ├── rtl8723b_spec.h │ ├── rtl8723b_sreset.h │ ├── rtl8723b_xmit.h │ ├── rtl8723d_cmd.h │ ├── rtl8723d_dm.h │ ├── rtl8723d_hal.h │ ├── rtl8723d_led.h │ ├── rtl8723d_lps_poff.h │ ├── rtl8723d_recv.h │ ├── rtl8723d_rf.h │ ├── rtl8723d_spec.h │ ├── rtl8723d_sreset.h │ ├── rtl8723d_xmit.h │ ├── rtl8812a_cmd.h │ ├── rtl8812a_dm.h │ ├── rtl8812a_hal.h │ ├── rtl8812a_led.h │ ├── rtl8812a_recv.h │ ├── rtl8812a_rf.h │ ├── rtl8812a_spec.h │ ├── rtl8812a_sreset.h │ ├── rtl8812a_xmit.h │ ├── rtl8814a_cmd.h │ ├── rtl8814a_dm.h │ ├── rtl8814a_hal.h │ ├── rtl8814a_led.h │ ├── rtl8814a_recv.h │ ├── rtl8814a_rf.h │ ├── rtl8814a_spec.h │ ├── rtl8814a_sreset.h │ ├── rtl8814a_xmit.h │ ├── rtl8821a_spec.h │ ├── rtl8821a_xmit.h │ ├── rtl8821c_dm.h │ ├── rtl8821c_hal.h │ ├── rtl8821c_spec.h │ ├── rtl8821ce_hal.h │ ├── rtl8821cs_hal.h │ ├── rtl8821cu_hal.h │ ├── rtl8822b_hal.h │ ├── rtl8822be_hal.h │ ├── rtl8822bs_hal.h │ ├── rtl8822bu_hal.h │ ├── rtw_android.h │ ├── rtw_ap.h │ ├── rtw_beamforming.h │ ├── rtw_br_ext.h │ ├── rtw_bt_mp.h │ ├── rtw_btcoex.h │ ├── rtw_btcoex_wifionly.h │ ├── rtw_byteorder.h │ ├── rtw_cmd.h │ ├── rtw_debug.h │ ├── rtw_eeprom.h │ ├── rtw_efuse.h │ ├── rtw_event.h │ ├── rtw_ht.h │ ├── rtw_io.h │ ├── rtw_ioctl.h │ ├── rtw_ioctl_query.h │ ├── rtw_ioctl_rtl.h │ ├── rtw_ioctl_set.h │ ├── rtw_iol.h │ ├── rtw_mcc.h │ ├── rtw_mem.h │ ├── rtw_mi.h │ ├── rtw_mlme.h │ ├── rtw_mlme_ext.h │ ├── rtw_mp.h │ ├── rtw_mp_ioctl.h │ ├── rtw_mp_phy_regdef.h │ ├── rtw_odm.h │ ├── rtw_p2p.h │ ├── rtw_pwrctrl.h │ ├── rtw_qos.h │ ├── rtw_recv.h │ ├── rtw_rf.h │ ├── rtw_rson.h │ ├── rtw_sdio.h │ ├── rtw_security.h │ ├── rtw_sreset.h │ ├── rtw_tdls.h │ ├── rtw_version.h │ ├── rtw_vht.h │ ├── rtw_wapi.h │ ├── rtw_wifi_regd.h │ ├── rtw_xmit.h │ ├── sdio_hal.h │ ├── sdio_ops.h │ ├── sdio_ops_ce.h │ ├── sdio_ops_linux.h │ ├── sdio_ops_xp.h │ ├── sdio_osintf.h │ ├── sta_info.h │ ├── usb_hal.h │ ├── usb_ops.h │ ├── usb_ops_linux.h │ ├── usb_osintf.h │ ├── usb_vendor_req.h │ ├── wifi.h │ ├── wlan_bssdef.h │ └── xmit_osdep.h ├── os_dep │ ├── linux │ │ ├── custom_gpio_linux.c │ │ ├── ioctl_cfg80211.c │ │ ├── ioctl_cfg80211.h │ │ ├── ioctl_linux.c │ │ ├── ioctl_mp.c │ │ ├── mlme_linux.c │ │ ├── os_intfs.c │ │ ├── recv_linux.c │ │ ├── rtw_android.c │ │ ├── rtw_cfgvendor.c │ │ ├── rtw_cfgvendor.h │ │ ├── rtw_proc.c │ │ ├── rtw_proc.h │ │ ├── usb_intf.c │ │ ├── usb_ops_linux.c │ │ ├── wifi_regd.c │ │ └── xmit_linux.c │ └── osdep_service.c └── platform │ ├── custom_country_chplan.h │ ├── platform_ARM_SUN50IW1P1_sdio.c │ ├── platform_ARM_SUNnI_sdio.c │ ├── platform_ARM_SUNxI_sdio.c │ ├── platform_ARM_SUNxI_usb.c │ ├── platform_ARM_WMT_sdio.c │ ├── platform_RTK_DMP_usb.c │ ├── platform_arm_act_sdio.c │ ├── platform_ops.c │ ├── platform_ops.h │ └── platform_sprd_sdio.c ├── README.md └── release ├── 8188gu-dkms_1.0.1_amd64.deb ├── 8188gu-dkms_1.0.1_armhf.deb ├── 8188gu-modules-4.9.41-v7+_1.0.1_armhf.deb ├── 8188gu-modules-5.10.103+_1.0.1_armhf.deb ├── 8188gu-modules-5.10.92+_1.0.1_armhf.deb └── 8188gu-modules-5.13.0-37-generic_1.0.1_amd64.deb /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /8188gu-1.0.1/AMD_X86.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/AMD_X86.sh -------------------------------------------------------------------------------- /8188gu-1.0.1/ARM64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/ARM64.sh -------------------------------------------------------------------------------- /8188gu-1.0.1/ARM_RPI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/ARM_RPI.sh -------------------------------------------------------------------------------- /8188gu-1.0.1/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/Kconfig -------------------------------------------------------------------------------- /8188gu-1.0.1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/Makefile -------------------------------------------------------------------------------- /8188gu-1.0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/README.md -------------------------------------------------------------------------------- /8188gu-1.0.1/core/efuse/rtw_efuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/efuse/rtw_efuse.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_ap.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_beamforming.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_beamforming.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_br_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_br_ext.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_bt_mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_bt_mp.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_btcoex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_btcoex.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_btcoex_wifionly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_btcoex_wifionly.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_cmd.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_debug.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_eeprom.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_ieee80211.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_ieee80211.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_io.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_ioctl_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_ioctl_query.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_ioctl_rtl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_ioctl_rtl.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_ioctl_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_ioctl_set.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_iol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_iol.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_mem.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_mi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_mi.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_mlme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_mlme.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_mlme_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_mlme_ext.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_mp.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_mp_ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_mp_ioctl.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_odm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_odm.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_p2p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_p2p.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_pwrctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_pwrctrl.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_recv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_recv.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_rf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_rf.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_rson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_rson.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_sdio.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_security.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_security.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_sreset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_sreset.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_sta_mgt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_sta_mgt.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_tdls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_tdls.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_vht.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_vht.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_wapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_wapi.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_wapi_sms4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_wapi_sms4.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_wlan_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_wlan_util.c -------------------------------------------------------------------------------- /8188gu-1.0.1/core/rtw_xmit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/core/rtw_xmit.c -------------------------------------------------------------------------------- /8188gu-1.0.1/dkms.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/dkms.conf -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/HalPwrSeqCmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/HalPwrSeqCmd.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8192e1ant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8192e1ant.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8192e1ant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8192e1ant.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8192e2ant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8192e2ant.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8192e2ant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8192e2ant.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8703b1ant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8703b1ant.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8703b1ant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8703b1ant.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8723b1ant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8723b1ant.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8723b1ant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8723b1ant.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8723b2ant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8723b2ant.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8723b2ant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8723b2ant.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8723bwifionly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8723bwifionly.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8723bwifionly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8723bwifionly.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8723d1ant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8723d1ant.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8723d1ant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8723d1ant.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8723d2ant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8723d2ant.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8723d2ant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8723d2ant.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8812a1ant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8812a1ant.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8812a1ant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8812a1ant.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8812a2ant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8812a2ant.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8812a2ant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8812a2ant.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8821a1ant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8821a1ant.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8821a1ant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8821a1ant.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8821a2ant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8821a2ant.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8821a2ant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8821a2ant.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8821c1ant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8821c1ant.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8821c1ant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8821c1ant.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8821c2ant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8821c2ant.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8821c2ant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8821c2ant.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8821cwifionly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8821cwifionly.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8821cwifionly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8821cwifionly.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8822b1ant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8822b1ant.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8822b1ant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8822b1ant.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8822b2ant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8822b2ant.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8822b2ant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8822b2ant.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8822bwifionly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8822bwifionly.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtc8822bwifionly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtc8822bwifionly.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/halbtcoutsrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/halbtcoutsrc.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/btc/mp_precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/btc/mp_precomp.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/efuse/efuse_mask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/efuse/efuse_mask.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/efuse/rtl8710b/HalEfuseMask8710B_USB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/efuse/rtl8710b/HalEfuseMask8710B_USB.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/efuse/rtl8710b/HalEfuseMask8710B_USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/efuse/rtl8710b/HalEfuseMask8710B_USB.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/hal_btcoex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/hal_btcoex.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/hal_btcoex_wifionly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/hal_btcoex_wifionly.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/hal_com.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/hal_com.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/hal_com_c2h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/hal_com_c2h.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/hal_com_phycfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/hal_com_phycfg.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/hal_dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/hal_dm.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/hal_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/hal_dm.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/hal_dm_acs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/hal_dm_acs.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/hal_dm_acs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/hal_dm_acs.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/hal_halmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/hal_halmac.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/hal_halmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/hal_halmac.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/hal_hci/hal_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/hal_hci/hal_usb.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/hal_intf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/hal_intf.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/hal_mcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/hal_mcc.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/hal_mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/hal_mp.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/hal_phy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/hal_phy.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/led/hal_usb_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/led/hal_usb_led.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/ap_makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/ap_makefile.mk -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/halhwimg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/halhwimg.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/halrf/halphyrf_ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/halrf/halphyrf_ap.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/halrf/halphyrf_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/halrf/halphyrf_ap.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/halrf/halphyrf_ce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/halrf/halphyrf_ce.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/halrf/halphyrf_ce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/halrf/halphyrf_ce.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/halrf/halphyrf_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/halrf/halphyrf_win.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/halrf/halphyrf_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/halrf/halphyrf_win.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/halrf/halrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/halrf/halrf.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/halrf/halrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/halrf/halrf.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/halrf/halrf_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/halrf/halrf_features.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/halrf/halrf_iqk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/halrf/halrf_iqk.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/halrf/halrf_kfree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/halrf/halrf_kfree.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/halrf/halrf_kfree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/halrf/halrf_kfree.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/halrf/halrf_powertracking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/halrf/halrf_powertracking.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/halrf/halrf_powertracking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/halrf/halrf_powertracking.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/halrf/halrf_powertracking_ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/halrf/halrf_powertracking_ap.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/halrf/halrf_powertracking_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/halrf/halrf_powertracking_ap.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/halrf/halrf_powertracking_ce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/halrf/halrf_powertracking_ce.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/halrf/halrf_powertracking_ce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/halrf/halrf_powertracking_ce.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/halrf/halrf_powertracking_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/halrf/halrf_powertracking_win.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/halrf/halrf_powertracking_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/halrf/halrf_powertracking_win.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/halrf/halrf_psd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/halrf/halrf_psd.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/halrf/halrf_psd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/halrf/halrf_psd.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/halrf/halrf_txgapcal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/halrf/halrf_txgapcal.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/halrf/halrf_txgapcal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/halrf/halrf_txgapcal.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/halrf/rtl8710b/halrf_8710b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/halrf/rtl8710b/halrf_8710b.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/halrf/rtl8710b/halrf_8710b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/halrf/rtl8710b/halrf_8710b.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/mp_precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/mp_precomp.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm.mk -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_acs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_acs.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_acs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_acs.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_adaptivity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_adaptivity.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_adaptivity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_adaptivity.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_adc_sampling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_adc_sampling.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_adc_sampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_adc_sampling.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_antdect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_antdect.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_antdect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_antdect.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_antdiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_antdiv.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_antdiv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_antdiv.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_api.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_api.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_auto_dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_auto_dbg.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_auto_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_auto_dbg.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_beamforming.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_beamforming.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_beamforming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_beamforming.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_cck_pd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_cck_pd.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_cck_pd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_cck_pd.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_ccx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_ccx.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_ccx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_ccx.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_cfotracking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_cfotracking.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_cfotracking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_cfotracking.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_debug.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_debug.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_dfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_dfs.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_dfs.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_dig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_dig.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_dig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_dig.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_dynamic_rx_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_dynamic_rx_path.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_dynamic_rx_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_dynamic_rx_path.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_dynamictxpower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_dynamictxpower.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_dynamictxpower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_dynamictxpower.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_features.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_features_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_features_ap.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_features_ce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_features_ce.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_features_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_features_win.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_hwconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_hwconfig.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_hwconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_hwconfig.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_interface.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_interface.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_math_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_math_lib.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_math_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_math_lib.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_noisemonitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_noisemonitor.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_noisemonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_noisemonitor.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_pathdiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_pathdiv.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_pathdiv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_pathdiv.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_phystatus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_phystatus.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_phystatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_phystatus.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_pow_train.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_pow_train.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_pow_train.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_pow_train.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_pre_define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_pre_define.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_precomp.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_primary_cca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_primary_cca.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_primary_cca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_primary_cca.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_psd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_psd.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_psd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_psd.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_rainfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_rainfo.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_rainfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_rainfo.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_reg.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_regdefine11ac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_regdefine11ac.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_regdefine11n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_regdefine11n.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_rssi_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_rssi_monitor.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_rssi_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_rssi_monitor.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_smt_ant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_smt_ant.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_smt_ant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_smt_ant.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_soml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_soml.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_soml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_soml.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/phydm_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/phydm_types.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/rtl8710b/hal8710breg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/rtl8710b/hal8710breg.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/rtl8710b/halhwimg8710b_bb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/rtl8710b/halhwimg8710b_bb.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/rtl8710b/halhwimg8710b_bb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/rtl8710b/halhwimg8710b_bb.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/rtl8710b/halhwimg8710b_mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/rtl8710b/halhwimg8710b_mac.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/rtl8710b/halhwimg8710b_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/rtl8710b/halhwimg8710b_mac.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/rtl8710b/halhwimg8710b_rf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/rtl8710b/halhwimg8710b_rf.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/rtl8710b/halhwimg8710b_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/rtl8710b/halhwimg8710b_rf.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/rtl8710b/phydm_regconfig8710b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/rtl8710b/phydm_regconfig8710b.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/rtl8710b/phydm_regconfig8710b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/rtl8710b/phydm_regconfig8710b.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/rtl8710b/phydm_rtl8710b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/rtl8710b/phydm_rtl8710b.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/rtl8710b/phydm_rtl8710b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/rtl8710b/phydm_rtl8710b.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/rtl8710b/version_rtl8710b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/rtl8710b/version_rtl8710b.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/txbf/halcomtxbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/txbf/halcomtxbf.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/txbf/halcomtxbf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/txbf/halcomtxbf.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/txbf/haltxbf8192e.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/txbf/haltxbf8192e.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/txbf/haltxbf8192e.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/txbf/haltxbf8192e.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/txbf/haltxbf8814a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/txbf/haltxbf8814a.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/txbf/haltxbf8814a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/txbf/haltxbf8814a.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/txbf/haltxbf8822b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/txbf/haltxbf8822b.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/txbf/haltxbf8822b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/txbf/haltxbf8822b.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/txbf/haltxbfinterface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/txbf/haltxbfinterface.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/txbf/haltxbfinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/txbf/haltxbfinterface.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/txbf/haltxbfjaguar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/txbf/haltxbfjaguar.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/txbf/haltxbfjaguar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/txbf/haltxbfjaguar.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/txbf/phydm_hal_txbf_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/txbf/phydm_hal_txbf_api.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/phydm/txbf/phydm_hal_txbf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/phydm/txbf/phydm_hal_txbf_api.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/rtl8710b/Hal8710BPwrSeq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/rtl8710b/Hal8710BPwrSeq.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/rtl8710b/hal8710b_fw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/rtl8710b/hal8710b_fw.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/rtl8710b/hal8710b_fw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/rtl8710b/hal8710b_fw.h -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/rtl8710b/rtl8710b_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/rtl8710b/rtl8710b_cmd.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/rtl8710b/rtl8710b_dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/rtl8710b/rtl8710b_dm.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/rtl8710b/rtl8710b_hal_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/rtl8710b/rtl8710b_hal_init.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/rtl8710b/rtl8710b_lps_poff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/rtl8710b/rtl8710b_lps_poff.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/rtl8710b/rtl8710b_phycfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/rtl8710b/rtl8710b_phycfg.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/rtl8710b/rtl8710b_rf6052.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/rtl8710b/rtl8710b_rf6052.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/rtl8710b/rtl8710b_rxdesc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/rtl8710b/rtl8710b_rxdesc.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/rtl8710b/rtl8710b_sreset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/rtl8710b/rtl8710b_sreset.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/rtl8710b/usb/rtl8710bu_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/rtl8710b/usb/rtl8710bu_led.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/rtl8710b/usb/rtl8710bu_recv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/rtl8710b/usb/rtl8710bu_recv.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/rtl8710b/usb/rtl8710bu_xmit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/rtl8710b/usb/rtl8710bu_xmit.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/rtl8710b/usb/usb_halinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/rtl8710b/usb/usb_halinit.c -------------------------------------------------------------------------------- /8188gu-1.0.1/hal/rtl8710b/usb/usb_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/hal/rtl8710b/usb/usb_ops.c -------------------------------------------------------------------------------- /8188gu-1.0.1/include/Hal8188EPhyCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/Hal8188EPhyCfg.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/Hal8188EPhyReg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/Hal8188EPhyReg.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/Hal8188EPwrSeq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/Hal8188EPwrSeq.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/Hal8188FPhyCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/Hal8188FPhyCfg.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/Hal8188FPhyReg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/Hal8188FPhyReg.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/Hal8188FPwrSeq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/Hal8188FPwrSeq.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/Hal8192EPhyCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/Hal8192EPhyCfg.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/Hal8192EPhyReg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/Hal8192EPhyReg.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/Hal8192EPwrSeq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/Hal8192EPwrSeq.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/Hal8703BPhyCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/Hal8703BPhyCfg.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/Hal8703BPhyReg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/Hal8703BPhyReg.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/Hal8703BPwrSeq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/Hal8703BPwrSeq.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/Hal8710BPhyCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/Hal8710BPhyCfg.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/Hal8710BPhyReg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/Hal8710BPhyReg.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/Hal8710BPwrSeq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/Hal8710BPwrSeq.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/Hal8723BPhyCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/Hal8723BPhyCfg.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/Hal8723BPhyReg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/Hal8723BPhyReg.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/Hal8723BPwrSeq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/Hal8723BPwrSeq.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/Hal8723DPhyCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/Hal8723DPhyCfg.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/Hal8723DPhyReg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/Hal8723DPhyReg.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/Hal8723DPwrSeq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/Hal8723DPwrSeq.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/Hal8723PwrSeq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/Hal8723PwrSeq.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/Hal8812PhyCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/Hal8812PhyCfg.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/Hal8812PhyReg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/Hal8812PhyReg.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/Hal8812PwrSeq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/Hal8812PwrSeq.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/Hal8814PhyCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/Hal8814PhyCfg.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/Hal8814PhyReg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/Hal8814PhyReg.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/Hal8814PwrSeq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/Hal8814PwrSeq.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/Hal8821APwrSeq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/Hal8821APwrSeq.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/HalPwrSeqCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/HalPwrSeqCmd.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/HalVerDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/HalVerDef.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/autoconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/autoconf.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/autoconf.h.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/autoconf.h.old -------------------------------------------------------------------------------- /8188gu-1.0.1/include/basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/basic_types.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/byteorder/big_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/byteorder/big_endian.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/byteorder/generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/byteorder/generic.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/byteorder/little_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/byteorder/little_endian.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/byteorder/swab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/byteorder/swab.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/byteorder/swabb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/byteorder/swabb.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/circ_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/circ_buf.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/cmd_osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/cmd_osdep.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/cmn_info/rtw_sta_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/cmn_info/rtw_sta_info.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/custom_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/custom_gpio.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/drv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/drv_conf.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/drv_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/drv_types.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/drv_types_ce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/drv_types_ce.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/drv_types_gspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/drv_types_gspi.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/drv_types_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/drv_types_linux.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/drv_types_pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/drv_types_pci.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/drv_types_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/drv_types_sdio.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/drv_types_xp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/drv_types_xp.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/ethernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/ethernet.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/gspi_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/gspi_hal.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/gspi_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/gspi_ops.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/gspi_ops_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/gspi_ops_linux.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/gspi_osintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/gspi_osintf.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/h2clbk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/h2clbk.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/hal_btcoex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/hal_btcoex.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/hal_btcoex_wifionly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/hal_btcoex_wifionly.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/hal_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/hal_com.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/hal_com_h2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/hal_com_h2c.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/hal_com_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/hal_com_led.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/hal_com_phycfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/hal_com_phycfg.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/hal_com_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/hal_com_reg.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/hal_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/hal_data.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/hal_gspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/hal_gspi.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/hal_ic_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/hal_ic_cfg.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/hal_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/hal_intf.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/hal_pg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/hal_pg.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/hal_phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/hal_phy.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/hal_phy_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/hal_phy_reg.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/hal_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/hal_sdio.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/ieee80211.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/ieee80211.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/ieee80211_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/ieee80211_ext.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/if_ether.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/if_ether.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/ip.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/linux/wireless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/linux/wireless.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/mlme_osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/mlme_osdep.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/mp_custom_oid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/mp_custom_oid.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/nic_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/nic_spec.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/osdep_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/osdep_intf.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/osdep_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/osdep_service.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/osdep_service_bsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/osdep_service_bsd.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/osdep_service_ce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/osdep_service_ce.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/osdep_service_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/osdep_service_linux.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/osdep_service_xp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/osdep_service_xp.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/pci_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/pci_hal.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/pci_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/pci_ops.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/pci_osintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/pci_osintf.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/recv_osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/recv_osdep.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8188e_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8188e_cmd.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8188e_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8188e_dm.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8188e_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8188e_hal.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8188e_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8188e_led.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8188e_recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8188e_recv.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8188e_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8188e_rf.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8188e_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8188e_spec.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8188e_sreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8188e_sreset.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8188e_xmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8188e_xmit.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8188f_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8188f_cmd.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8188f_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8188f_dm.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8188f_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8188f_hal.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8188f_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8188f_led.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8188f_recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8188f_recv.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8188f_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8188f_rf.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8188f_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8188f_spec.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8188f_sreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8188f_sreset.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8188f_xmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8188f_xmit.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8192e_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8192e_cmd.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8192e_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8192e_dm.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8192e_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8192e_hal.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8192e_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8192e_led.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8192e_recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8192e_recv.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8192e_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8192e_rf.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8192e_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8192e_spec.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8192e_sreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8192e_sreset.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8192e_xmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8192e_xmit.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8703b_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8703b_cmd.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8703b_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8703b_dm.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8703b_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8703b_hal.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8703b_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8703b_led.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8703b_recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8703b_recv.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8703b_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8703b_rf.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8703b_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8703b_spec.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8703b_sreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8703b_sreset.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8703b_xmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8703b_xmit.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8710b_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8710b_cmd.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8710b_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8710b_dm.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8710b_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8710b_hal.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8710b_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8710b_led.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8710b_lps_poff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8710b_lps_poff.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8710b_recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8710b_recv.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8710b_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8710b_rf.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8710b_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8710b_spec.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8710b_sreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8710b_sreset.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8710b_xmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8710b_xmit.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8723b_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8723b_cmd.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8723b_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8723b_dm.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8723b_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8723b_hal.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8723b_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8723b_led.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8723b_recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8723b_recv.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8723b_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8723b_rf.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8723b_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8723b_spec.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8723b_sreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8723b_sreset.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8723b_xmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8723b_xmit.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8723d_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8723d_cmd.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8723d_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8723d_dm.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8723d_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8723d_hal.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8723d_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8723d_led.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8723d_lps_poff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8723d_lps_poff.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8723d_recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8723d_recv.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8723d_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8723d_rf.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8723d_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8723d_spec.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8723d_sreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8723d_sreset.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8723d_xmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8723d_xmit.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8812a_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8812a_cmd.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8812a_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8812a_dm.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8812a_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8812a_hal.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8812a_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8812a_led.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8812a_recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8812a_recv.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8812a_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8812a_rf.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8812a_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8812a_spec.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8812a_sreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8812a_sreset.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8812a_xmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8812a_xmit.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8814a_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8814a_cmd.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8814a_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8814a_dm.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8814a_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8814a_hal.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8814a_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8814a_led.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8814a_recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8814a_recv.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8814a_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8814a_rf.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8814a_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8814a_spec.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8814a_sreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8814a_sreset.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8814a_xmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8814a_xmit.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8821a_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8821a_spec.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8821a_xmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8821a_xmit.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8821c_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8821c_dm.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8821c_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8821c_hal.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8821c_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8821c_spec.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8821ce_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8821ce_hal.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8821cs_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8821cs_hal.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8821cu_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8821cu_hal.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8822b_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8822b_hal.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8822be_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8822be_hal.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8822bs_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8822bs_hal.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtl8822bu_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtl8822bu_hal.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_android.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_ap.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_beamforming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_beamforming.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_br_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_br_ext.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_bt_mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_bt_mp.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_btcoex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_btcoex.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_btcoex_wifionly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_btcoex_wifionly.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_byteorder.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_cmd.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_debug.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_eeprom.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_efuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_efuse.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_event.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_ht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_ht.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_io.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_ioctl.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_ioctl_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_ioctl_query.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_ioctl_rtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_ioctl_rtl.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_ioctl_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_ioctl_set.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_iol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_iol.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_mcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_mcc.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_mem.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_mi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_mi.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_mlme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_mlme.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_mlme_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_mlme_ext.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_mp.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_mp_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_mp_ioctl.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_mp_phy_regdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_mp_phy_regdef.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_odm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_odm.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_p2p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_p2p.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_pwrctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_pwrctrl.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_qos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_qos.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_recv.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_rf.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_rson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_rson.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_sdio.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_security.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_sreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_sreset.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_tdls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_tdls.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_version.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_vht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_vht.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_wapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_wapi.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_wifi_regd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_wifi_regd.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/rtw_xmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/rtw_xmit.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/sdio_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/sdio_hal.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/sdio_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/sdio_ops.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/sdio_ops_ce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/sdio_ops_ce.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/sdio_ops_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/sdio_ops_linux.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/sdio_ops_xp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/sdio_ops_xp.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/sdio_osintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/sdio_osintf.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/sta_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/sta_info.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/usb_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/usb_hal.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/usb_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/usb_ops.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/usb_ops_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/usb_ops_linux.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/usb_osintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/usb_osintf.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/usb_vendor_req.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/usb_vendor_req.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/wifi.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/wlan_bssdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/wlan_bssdef.h -------------------------------------------------------------------------------- /8188gu-1.0.1/include/xmit_osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/include/xmit_osdep.h -------------------------------------------------------------------------------- /8188gu-1.0.1/os_dep/linux/custom_gpio_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/os_dep/linux/custom_gpio_linux.c -------------------------------------------------------------------------------- /8188gu-1.0.1/os_dep/linux/ioctl_cfg80211.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/os_dep/linux/ioctl_cfg80211.c -------------------------------------------------------------------------------- /8188gu-1.0.1/os_dep/linux/ioctl_cfg80211.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/os_dep/linux/ioctl_cfg80211.h -------------------------------------------------------------------------------- /8188gu-1.0.1/os_dep/linux/ioctl_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/os_dep/linux/ioctl_linux.c -------------------------------------------------------------------------------- /8188gu-1.0.1/os_dep/linux/ioctl_mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/os_dep/linux/ioctl_mp.c -------------------------------------------------------------------------------- /8188gu-1.0.1/os_dep/linux/mlme_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/os_dep/linux/mlme_linux.c -------------------------------------------------------------------------------- /8188gu-1.0.1/os_dep/linux/os_intfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/os_dep/linux/os_intfs.c -------------------------------------------------------------------------------- /8188gu-1.0.1/os_dep/linux/recv_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/os_dep/linux/recv_linux.c -------------------------------------------------------------------------------- /8188gu-1.0.1/os_dep/linux/rtw_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/os_dep/linux/rtw_android.c -------------------------------------------------------------------------------- /8188gu-1.0.1/os_dep/linux/rtw_cfgvendor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/os_dep/linux/rtw_cfgvendor.c -------------------------------------------------------------------------------- /8188gu-1.0.1/os_dep/linux/rtw_cfgvendor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/os_dep/linux/rtw_cfgvendor.h -------------------------------------------------------------------------------- /8188gu-1.0.1/os_dep/linux/rtw_proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/os_dep/linux/rtw_proc.c -------------------------------------------------------------------------------- /8188gu-1.0.1/os_dep/linux/rtw_proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/os_dep/linux/rtw_proc.h -------------------------------------------------------------------------------- /8188gu-1.0.1/os_dep/linux/usb_intf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/os_dep/linux/usb_intf.c -------------------------------------------------------------------------------- /8188gu-1.0.1/os_dep/linux/usb_ops_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/os_dep/linux/usb_ops_linux.c -------------------------------------------------------------------------------- /8188gu-1.0.1/os_dep/linux/wifi_regd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/os_dep/linux/wifi_regd.c -------------------------------------------------------------------------------- /8188gu-1.0.1/os_dep/linux/xmit_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/os_dep/linux/xmit_linux.c -------------------------------------------------------------------------------- /8188gu-1.0.1/os_dep/osdep_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/os_dep/osdep_service.c -------------------------------------------------------------------------------- /8188gu-1.0.1/platform/custom_country_chplan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/platform/custom_country_chplan.h -------------------------------------------------------------------------------- /8188gu-1.0.1/platform/platform_ARM_SUN50IW1P1_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/platform/platform_ARM_SUN50IW1P1_sdio.c -------------------------------------------------------------------------------- /8188gu-1.0.1/platform/platform_ARM_SUNnI_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/platform/platform_ARM_SUNnI_sdio.c -------------------------------------------------------------------------------- /8188gu-1.0.1/platform/platform_ARM_SUNxI_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/platform/platform_ARM_SUNxI_sdio.c -------------------------------------------------------------------------------- /8188gu-1.0.1/platform/platform_ARM_SUNxI_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/platform/platform_ARM_SUNxI_usb.c -------------------------------------------------------------------------------- /8188gu-1.0.1/platform/platform_ARM_WMT_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/platform/platform_ARM_WMT_sdio.c -------------------------------------------------------------------------------- /8188gu-1.0.1/platform/platform_RTK_DMP_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/platform/platform_RTK_DMP_usb.c -------------------------------------------------------------------------------- /8188gu-1.0.1/platform/platform_arm_act_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/platform/platform_arm_act_sdio.c -------------------------------------------------------------------------------- /8188gu-1.0.1/platform/platform_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/platform/platform_ops.c -------------------------------------------------------------------------------- /8188gu-1.0.1/platform/platform_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/platform/platform_ops.h -------------------------------------------------------------------------------- /8188gu-1.0.1/platform/platform_sprd_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/8188gu-1.0.1/platform/platform_sprd_sdio.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/README.md -------------------------------------------------------------------------------- /release/8188gu-dkms_1.0.1_amd64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/release/8188gu-dkms_1.0.1_amd64.deb -------------------------------------------------------------------------------- /release/8188gu-dkms_1.0.1_armhf.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/release/8188gu-dkms_1.0.1_armhf.deb -------------------------------------------------------------------------------- /release/8188gu-modules-4.9.41-v7+_1.0.1_armhf.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/release/8188gu-modules-4.9.41-v7+_1.0.1_armhf.deb -------------------------------------------------------------------------------- /release/8188gu-modules-5.10.103+_1.0.1_armhf.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/release/8188gu-modules-5.10.103+_1.0.1_armhf.deb -------------------------------------------------------------------------------- /release/8188gu-modules-5.10.92+_1.0.1_armhf.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/release/8188gu-modules-5.10.92+_1.0.1_armhf.deb -------------------------------------------------------------------------------- /release/8188gu-modules-5.13.0-37-generic_1.0.1_amd64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandercn/RTL8188GU/HEAD/release/8188gu-modules-5.13.0-37-generic_1.0.1_amd64.deb --------------------------------------------------------------------------------