├── Kconfig ├── Makefile ├── README.md ├── clean ├── core ├── efuse │ └── rtw_efuse.c ├── mesh │ ├── rtw_mesh.c │ ├── rtw_mesh.h │ ├── rtw_mesh_hwmp.c │ ├── rtw_mesh_hwmp.h │ ├── rtw_mesh_pathtbl.c │ └── rtw_mesh_pathtbl.h ├── rtw_ap.c ├── rtw_beamforming.c ├── rtw_br_ext.c ├── rtw_bt_mp.c ├── rtw_btcoex.c ├── rtw_btcoex_wifionly.c ├── rtw_chplan.c ├── rtw_chplan.h ├── rtw_cmd.c ├── rtw_debug.c ├── rtw_eeprom.c ├── rtw_ieee80211.c ├── rtw_io.c ├── rtw_ioctl_query.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_odm.c ├── rtw_p2p.c ├── rtw_pwrctrl.c ├── rtw_recv.c ├── rtw_rf.c ├── rtw_rm.c ├── rtw_rm_fsm.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 │ ├── btc_basic_types.h │ ├── halbtc8822c.c │ ├── halbtc8822c.h │ ├── halbtc8822cwifionly.c │ ├── halbtc8822cwifionly.h │ ├── halbtccommon.c │ ├── halbtccommon.h │ ├── halbtcoutsrc.h │ └── mp_precomp.h ├── efuse │ ├── efuse_mask.h │ └── rtl8822c │ │ ├── HalEfuseMask8822C_PCIE.c │ │ ├── HalEfuseMask8822C_PCIE.h │ │ ├── HalEfuseMask8822C_SDIO.c │ │ ├── HalEfuseMask8822C_SDIO.h │ │ ├── HalEfuseMask8822C_USB.c │ │ └── HalEfuseMask8822C_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_pci.c ├── hal_intf.c ├── hal_mcc.c ├── hal_mp.c ├── hal_phy.c ├── halmac │ ├── halmac_2_platform.h │ ├── halmac_88xx │ │ ├── halmac_8822c │ │ │ ├── halmac_8822c_cfg.h │ │ │ ├── halmac_cfg_wmac_8822c.c │ │ │ ├── halmac_cfg_wmac_8822c.h │ │ │ ├── halmac_common_8822c.c │ │ │ ├── halmac_common_8822c.h │ │ │ ├── halmac_gpio_8822c.c │ │ │ ├── halmac_gpio_8822c.h │ │ │ ├── halmac_init_8822c.c │ │ │ ├── halmac_init_8822c.h │ │ │ ├── halmac_pcie_8822c.c │ │ │ ├── halmac_pcie_8822c.h │ │ │ ├── halmac_phy_8822c.c │ │ │ ├── halmac_pwr_seq_8822c.c │ │ │ └── halmac_pwr_seq_8822c.h │ │ ├── halmac_88xx_cfg.h │ │ ├── halmac_bb_rf_88xx.c │ │ ├── halmac_bb_rf_88xx.h │ │ ├── halmac_cfg_wmac_88xx.c │ │ ├── halmac_cfg_wmac_88xx.h │ │ ├── halmac_common_88xx.c │ │ ├── halmac_common_88xx.h │ │ ├── halmac_efuse_88xx.c │ │ ├── halmac_efuse_88xx.h │ │ ├── halmac_flash_88xx.c │ │ ├── halmac_flash_88xx.h │ │ ├── halmac_fw_88xx.c │ │ ├── halmac_fw_88xx.h │ │ ├── halmac_gpio_88xx.c │ │ ├── halmac_gpio_88xx.h │ │ ├── halmac_init_88xx.c │ │ ├── halmac_init_88xx.h │ │ ├── halmac_mimo_88xx.c │ │ ├── halmac_mimo_88xx.h │ │ ├── halmac_pcie_88xx.c │ │ └── halmac_pcie_88xx.h │ ├── halmac_api.c │ ├── halmac_api.h │ ├── halmac_bit2.h │ ├── halmac_bit_8197f.h │ ├── halmac_bit_8814b.h │ ├── halmac_bit_8821c.h │ ├── halmac_bit_8822b.h │ ├── halmac_bit_8822c.h │ ├── halmac_fw_info.h │ ├── halmac_fw_offload_c2h_ap.h │ ├── halmac_fw_offload_c2h_nic.h │ ├── halmac_fw_offload_h2c_ap.h │ ├── halmac_fw_offload_h2c_nic.h │ ├── halmac_gpio_cmd.h │ ├── halmac_h2c_extra_info_ap.h │ ├── halmac_h2c_extra_info_nic.h │ ├── halmac_hw_cfg.h │ ├── halmac_intf_phy_cmd.h │ ├── halmac_original_c2h_ap.h │ ├── halmac_original_c2h_nic.h │ ├── halmac_original_h2c_ap.h │ ├── halmac_original_h2c_nic.h │ ├── halmac_pcie_reg.h │ ├── halmac_pwr_seq_cmd.h │ ├── halmac_reg2.h │ ├── halmac_reg_8197f.h │ ├── halmac_reg_8814b.h │ ├── halmac_reg_8821c.h │ ├── halmac_reg_8822b.h │ ├── halmac_reg_8822c.h │ ├── halmac_rx_bd_nic.h │ ├── halmac_rx_desc_ap.h │ ├── halmac_rx_desc_chip.h │ ├── halmac_rx_desc_nic.h │ ├── halmac_sdio_reg.h │ ├── halmac_state_machine.h │ ├── halmac_tx_bd_nic.h │ ├── halmac_tx_desc_ap.h │ ├── halmac_tx_desc_buffer_ap.h │ ├── halmac_tx_desc_buffer_chip.h │ ├── halmac_tx_desc_buffer_nic.h │ ├── halmac_tx_desc_chip.h │ ├── halmac_tx_desc_ie_ap.h │ ├── halmac_tx_desc_ie_chip.h │ ├── halmac_tx_desc_ie_nic.h │ ├── halmac_tx_desc_nic.h │ ├── halmac_type.h │ └── halmac_usb_reg.h ├── led │ ├── hal_led.c │ └── hal_pci_led.c ├── phydm │ ├── ap_makefile.mk │ ├── halhwimg.h │ ├── halrf │ │ ├── halphyrf_ap.c │ │ ├── halphyrf_ap.h │ │ ├── halphyrf_ce.c │ │ ├── halphyrf_ce.h │ │ ├── halphyrf_iot.c │ │ ├── halphyrf_iot.h │ │ ├── halphyrf_win.c │ │ ├── halphyrf_win.h │ │ ├── halrf.c │ │ ├── halrf.h │ │ ├── halrf_debug.c │ │ ├── halrf_debug.h │ │ ├── halrf_dpk.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_iot.c │ │ ├── halrf_powertracking_iot.h │ │ ├── halrf_powertracking_win.c │ │ ├── halrf_powertracking_win.h │ │ ├── halrf_psd.c │ │ ├── halrf_psd.h │ │ ├── halrf_txgapcal.c │ │ ├── halrf_txgapcal.h │ │ └── rtl8822c │ │ │ ├── halhwimg8822c_rf.c │ │ │ ├── halhwimg8822c_rf.h │ │ │ ├── halrf_8822c.c │ │ │ ├── halrf_8822c.h │ │ │ ├── halrf_dpk_8822c.c │ │ │ ├── halrf_dpk_8822c.h │ │ │ ├── halrf_iqk_8822c.c │ │ │ ├── halrf_iqk_8822c.h │ │ │ ├── halrf_rfk_init_8822c.c │ │ │ ├── halrf_rfk_init_8822c.h │ │ │ ├── halrf_tssi_8822c.c │ │ │ ├── halrf_tssi_8822c.h │ │ │ └── version_rtl8822c_rf.h │ ├── mp_precomp.h │ ├── phydm.c │ ├── phydm.h │ ├── phydm.mk │ ├── 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_direct_bf.c │ ├── phydm_direct_bf.h │ ├── phydm_dynamictxpower.c │ ├── phydm_dynamictxpower.h │ ├── phydm_features.h │ ├── phydm_features_ap.h │ ├── phydm_features_ce.h │ ├── phydm_features_ce2_kernel.h │ ├── phydm_features_iot.h │ ├── phydm_features_win.h │ ├── phydm_hwconfig.c │ ├── phydm_hwconfig.h │ ├── phydm_interface.c │ ├── phydm_interface.h │ ├── phydm_lna_sat.c │ ├── phydm_lna_sat.h │ ├── phydm_math_lib.c │ ├── phydm_math_lib.h │ ├── phydm_mp.c │ ├── phydm_mp.h │ ├── phydm_noisemonitor.c │ ├── phydm_noisemonitor.h │ ├── phydm_pathdiv.c │ ├── phydm_pathdiv.h │ ├── phydm_phystatus.c │ ├── phydm_phystatus.h │ ├── phydm_pmac_tx_setting.c │ ├── phydm_pmac_tx_setting.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_regtable.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 │ ├── rtl8822c │ │ ├── halhwimg8822c_bb.c │ │ ├── halhwimg8822c_bb.h │ │ ├── mp_precomp.h │ │ ├── phydm_hal_api8822c.c │ │ ├── phydm_hal_api8822c.h │ │ ├── phydm_regconfig8822c.c │ │ ├── phydm_regconfig8822c.h │ │ ├── phydm_rtl8822c.c │ │ ├── phydm_rtl8822c.h │ │ └── version_rtl8822c.h │ ├── sd4_phydm_2_kernel.mk │ └── 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 └── rtl8822c │ ├── hal8822c_fw.c │ ├── hal8822c_fw.h │ ├── pci │ ├── rtl8822ce.h │ ├── rtl8822ce_halinit.c │ ├── rtl8822ce_halmac.c │ ├── rtl8822ce_io.c │ ├── rtl8822ce_led.c │ ├── rtl8822ce_ops.c │ ├── rtl8822ce_recv.c │ └── rtl8822ce_xmit.c │ ├── rtl8822c.h │ ├── rtl8822c_cmd.c │ ├── rtl8822c_halinit.c │ ├── rtl8822c_mac.c │ ├── rtl8822c_ops.c │ └── rtl8822c_phy.c ├── halmac.mk ├── ifcfg-wlan0 ├── include ├── Hal8188EPhyCfg.h ├── Hal8188EPhyReg.h ├── Hal8188EPwrSeq.h ├── Hal8188FPhyCfg.h ├── Hal8188FPhyReg.h ├── Hal8188FPwrSeq.h ├── Hal8192EPhyCfg.h ├── Hal8192EPhyReg.h ├── Hal8192EPwrSeq.h ├── Hal8192FPhyCfg.h ├── Hal8192FPhyReg.h ├── Hal8192FPwrSeq.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 ├── 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 ├── hal_sdio_coex.h ├── ieee80211.h ├── ieee80211_ext.h ├── if_ether.h ├── ip.h ├── linux │ └── wireless.h ├── mlme_osdep.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 ├── rtl8192f_cmd.h ├── rtl8192f_dm.h ├── rtl8192f_hal.h ├── rtl8192f_led.h ├── rtl8192f_recv.h ├── rtl8192f_rf.h ├── rtl8192f_spec.h ├── rtl8192f_sreset.h ├── rtl8192f_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 ├── rtl8822c_hal.h ├── rtl8822ce_hal.h ├── rtl8822cs_hal.h ├── rtl8822cu_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_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_phy_regdef.h ├── rtw_odm.h ├── rtw_p2p.h ├── rtw_pwrctrl.h ├── rtw_qos.h ├── rtw_recv.h ├── rtw_rf.h ├── rtw_rm.h ├── rtw_rm_fsm.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 │ ├── .rtw_proc.o.d │ ├── custom_gpio_linux.c │ ├── ioctl_cfg80211.c │ ├── ioctl_cfg80211.h │ ├── ioctl_linux.c │ ├── ioctl_mp.c │ ├── mlme_linux.c │ ├── os_intfs.c │ ├── pci_intf.c │ ├── pci_ops_linux.c │ ├── recv_linux.c │ ├── rhashtable.c │ ├── rhashtable.h │ ├── rtw_android.c │ ├── rtw_cfgvendor.c │ ├── rtw_cfgvendor.h │ ├── rtw_proc.c │ ├── rtw_proc.h │ ├── rtw_rhashtable.c │ ├── rtw_rhashtable.h │ ├── 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_aml_s905_sdio.c ├── platform_aml_s905_sdio.h ├── platform_arm_act_sdio.c ├── platform_hisilicon_hi3798_sdio.c ├── platform_hisilicon_hi3798_sdio.h ├── platform_ops.c ├── platform_ops.h ├── platform_sprd_sdio.c ├── platform_zte_zx296716_sdio.c └── platform_zte_zx296716_sdio.h ├── rtl8822c.mk ├── rtw88_blacklist.conf ├── runwpa └── wlan0dhcp /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/Kconfig -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/README.md -------------------------------------------------------------------------------- /clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/clean -------------------------------------------------------------------------------- /core/efuse/rtw_efuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/efuse/rtw_efuse.c -------------------------------------------------------------------------------- /core/mesh/rtw_mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/mesh/rtw_mesh.c -------------------------------------------------------------------------------- /core/mesh/rtw_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/mesh/rtw_mesh.h -------------------------------------------------------------------------------- /core/mesh/rtw_mesh_hwmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/mesh/rtw_mesh_hwmp.c -------------------------------------------------------------------------------- /core/mesh/rtw_mesh_hwmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/mesh/rtw_mesh_hwmp.h -------------------------------------------------------------------------------- /core/mesh/rtw_mesh_pathtbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/mesh/rtw_mesh_pathtbl.c -------------------------------------------------------------------------------- /core/mesh/rtw_mesh_pathtbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/mesh/rtw_mesh_pathtbl.h -------------------------------------------------------------------------------- /core/rtw_ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_ap.c -------------------------------------------------------------------------------- /core/rtw_beamforming.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_beamforming.c -------------------------------------------------------------------------------- /core/rtw_br_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_br_ext.c -------------------------------------------------------------------------------- /core/rtw_bt_mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_bt_mp.c -------------------------------------------------------------------------------- /core/rtw_btcoex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_btcoex.c -------------------------------------------------------------------------------- /core/rtw_btcoex_wifionly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_btcoex_wifionly.c -------------------------------------------------------------------------------- /core/rtw_chplan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_chplan.c -------------------------------------------------------------------------------- /core/rtw_chplan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_chplan.h -------------------------------------------------------------------------------- /core/rtw_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_cmd.c -------------------------------------------------------------------------------- /core/rtw_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_debug.c -------------------------------------------------------------------------------- /core/rtw_eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_eeprom.c -------------------------------------------------------------------------------- /core/rtw_ieee80211.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_ieee80211.c -------------------------------------------------------------------------------- /core/rtw_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_io.c -------------------------------------------------------------------------------- /core/rtw_ioctl_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_ioctl_query.c -------------------------------------------------------------------------------- /core/rtw_ioctl_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_ioctl_set.c -------------------------------------------------------------------------------- /core/rtw_iol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_iol.c -------------------------------------------------------------------------------- /core/rtw_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_mem.c -------------------------------------------------------------------------------- /core/rtw_mi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_mi.c -------------------------------------------------------------------------------- /core/rtw_mlme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_mlme.c -------------------------------------------------------------------------------- /core/rtw_mlme_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_mlme_ext.c -------------------------------------------------------------------------------- /core/rtw_mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_mp.c -------------------------------------------------------------------------------- /core/rtw_odm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_odm.c -------------------------------------------------------------------------------- /core/rtw_p2p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_p2p.c -------------------------------------------------------------------------------- /core/rtw_pwrctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_pwrctrl.c -------------------------------------------------------------------------------- /core/rtw_recv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_recv.c -------------------------------------------------------------------------------- /core/rtw_rf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_rf.c -------------------------------------------------------------------------------- /core/rtw_rm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_rm.c -------------------------------------------------------------------------------- /core/rtw_rm_fsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_rm_fsm.c -------------------------------------------------------------------------------- /core/rtw_rson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_rson.c -------------------------------------------------------------------------------- /core/rtw_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_sdio.c -------------------------------------------------------------------------------- /core/rtw_security.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_security.c -------------------------------------------------------------------------------- /core/rtw_sreset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_sreset.c -------------------------------------------------------------------------------- /core/rtw_sta_mgt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_sta_mgt.c -------------------------------------------------------------------------------- /core/rtw_tdls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_tdls.c -------------------------------------------------------------------------------- /core/rtw_vht.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_vht.c -------------------------------------------------------------------------------- /core/rtw_wapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_wapi.c -------------------------------------------------------------------------------- /core/rtw_wapi_sms4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_wapi_sms4.c -------------------------------------------------------------------------------- /core/rtw_wlan_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_wlan_util.c -------------------------------------------------------------------------------- /core/rtw_xmit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/core/rtw_xmit.c -------------------------------------------------------------------------------- /dkms.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/dkms.conf -------------------------------------------------------------------------------- /hal/HalPwrSeqCmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/HalPwrSeqCmd.c -------------------------------------------------------------------------------- /hal/btc/btc_basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/btc/btc_basic_types.h -------------------------------------------------------------------------------- /hal/btc/halbtc8822c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/btc/halbtc8822c.c -------------------------------------------------------------------------------- /hal/btc/halbtc8822c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/btc/halbtc8822c.h -------------------------------------------------------------------------------- /hal/btc/halbtc8822cwifionly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/btc/halbtc8822cwifionly.c -------------------------------------------------------------------------------- /hal/btc/halbtc8822cwifionly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/btc/halbtc8822cwifionly.h -------------------------------------------------------------------------------- /hal/btc/halbtccommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/btc/halbtccommon.c -------------------------------------------------------------------------------- /hal/btc/halbtccommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/btc/halbtccommon.h -------------------------------------------------------------------------------- /hal/btc/halbtcoutsrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/btc/halbtcoutsrc.h -------------------------------------------------------------------------------- /hal/btc/mp_precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/btc/mp_precomp.h -------------------------------------------------------------------------------- /hal/efuse/efuse_mask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/efuse/efuse_mask.h -------------------------------------------------------------------------------- /hal/efuse/rtl8822c/HalEfuseMask8822C_PCIE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/efuse/rtl8822c/HalEfuseMask8822C_PCIE.c -------------------------------------------------------------------------------- /hal/efuse/rtl8822c/HalEfuseMask8822C_PCIE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/efuse/rtl8822c/HalEfuseMask8822C_PCIE.h -------------------------------------------------------------------------------- /hal/efuse/rtl8822c/HalEfuseMask8822C_SDIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/efuse/rtl8822c/HalEfuseMask8822C_SDIO.c -------------------------------------------------------------------------------- /hal/efuse/rtl8822c/HalEfuseMask8822C_SDIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/efuse/rtl8822c/HalEfuseMask8822C_SDIO.h -------------------------------------------------------------------------------- /hal/efuse/rtl8822c/HalEfuseMask8822C_USB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/efuse/rtl8822c/HalEfuseMask8822C_USB.c -------------------------------------------------------------------------------- /hal/efuse/rtl8822c/HalEfuseMask8822C_USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/efuse/rtl8822c/HalEfuseMask8822C_USB.h -------------------------------------------------------------------------------- /hal/hal_btcoex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/hal_btcoex.c -------------------------------------------------------------------------------- /hal/hal_btcoex_wifionly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/hal_btcoex_wifionly.c -------------------------------------------------------------------------------- /hal/hal_com.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/hal_com.c -------------------------------------------------------------------------------- /hal/hal_com_c2h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/hal_com_c2h.h -------------------------------------------------------------------------------- /hal/hal_com_phycfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/hal_com_phycfg.c -------------------------------------------------------------------------------- /hal/hal_dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/hal_dm.c -------------------------------------------------------------------------------- /hal/hal_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/hal_dm.h -------------------------------------------------------------------------------- /hal/hal_dm_acs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/hal_dm_acs.c -------------------------------------------------------------------------------- /hal/hal_dm_acs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/hal_dm_acs.h -------------------------------------------------------------------------------- /hal/hal_halmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/hal_halmac.c -------------------------------------------------------------------------------- /hal/hal_halmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/hal_halmac.h -------------------------------------------------------------------------------- /hal/hal_hci/hal_pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/hal_hci/hal_pci.c -------------------------------------------------------------------------------- /hal/hal_intf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/hal_intf.c -------------------------------------------------------------------------------- /hal/hal_mcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/hal_mcc.c -------------------------------------------------------------------------------- /hal/hal_mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/hal_mp.c -------------------------------------------------------------------------------- /hal/hal_phy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/hal_phy.c -------------------------------------------------------------------------------- /hal/halmac/halmac_2_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_2_platform.h -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_8822c/halmac_8822c_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_8822c/halmac_8822c_cfg.h -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_8822c/halmac_cfg_wmac_8822c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_8822c/halmac_cfg_wmac_8822c.c -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_8822c/halmac_cfg_wmac_8822c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_8822c/halmac_cfg_wmac_8822c.h -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_8822c/halmac_common_8822c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_8822c/halmac_common_8822c.c -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_8822c/halmac_common_8822c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_8822c/halmac_common_8822c.h -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_8822c/halmac_gpio_8822c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_8822c/halmac_gpio_8822c.c -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_8822c/halmac_gpio_8822c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_8822c/halmac_gpio_8822c.h -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_8822c/halmac_init_8822c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_8822c/halmac_init_8822c.c -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_8822c/halmac_init_8822c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_8822c/halmac_init_8822c.h -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_8822c/halmac_pcie_8822c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_8822c/halmac_pcie_8822c.c -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_8822c/halmac_pcie_8822c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_8822c/halmac_pcie_8822c.h -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_8822c/halmac_phy_8822c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_8822c/halmac_phy_8822c.c -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_8822c/halmac_pwr_seq_8822c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_8822c/halmac_pwr_seq_8822c.c -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_8822c/halmac_pwr_seq_8822c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_8822c/halmac_pwr_seq_8822c.h -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_88xx_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_88xx_cfg.h -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_bb_rf_88xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_bb_rf_88xx.c -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_bb_rf_88xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_bb_rf_88xx.h -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_cfg_wmac_88xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_cfg_wmac_88xx.c -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_cfg_wmac_88xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_cfg_wmac_88xx.h -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_common_88xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_common_88xx.c -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_common_88xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_common_88xx.h -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_efuse_88xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_efuse_88xx.c -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_efuse_88xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_efuse_88xx.h -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_flash_88xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_flash_88xx.c -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_flash_88xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_flash_88xx.h -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_fw_88xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_fw_88xx.c -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_fw_88xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_fw_88xx.h -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_gpio_88xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_gpio_88xx.c -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_gpio_88xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_gpio_88xx.h -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_init_88xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_init_88xx.c -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_init_88xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_init_88xx.h -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_mimo_88xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_mimo_88xx.c -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_mimo_88xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_mimo_88xx.h -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_pcie_88xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_pcie_88xx.c -------------------------------------------------------------------------------- /hal/halmac/halmac_88xx/halmac_pcie_88xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_88xx/halmac_pcie_88xx.h -------------------------------------------------------------------------------- /hal/halmac/halmac_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_api.c -------------------------------------------------------------------------------- /hal/halmac/halmac_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_api.h -------------------------------------------------------------------------------- /hal/halmac/halmac_bit2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_bit2.h -------------------------------------------------------------------------------- /hal/halmac/halmac_bit_8197f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_bit_8197f.h -------------------------------------------------------------------------------- /hal/halmac/halmac_bit_8814b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_bit_8814b.h -------------------------------------------------------------------------------- /hal/halmac/halmac_bit_8821c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_bit_8821c.h -------------------------------------------------------------------------------- /hal/halmac/halmac_bit_8822b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_bit_8822b.h -------------------------------------------------------------------------------- /hal/halmac/halmac_bit_8822c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_bit_8822c.h -------------------------------------------------------------------------------- /hal/halmac/halmac_fw_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_fw_info.h -------------------------------------------------------------------------------- /hal/halmac/halmac_fw_offload_c2h_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_fw_offload_c2h_ap.h -------------------------------------------------------------------------------- /hal/halmac/halmac_fw_offload_c2h_nic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_fw_offload_c2h_nic.h -------------------------------------------------------------------------------- /hal/halmac/halmac_fw_offload_h2c_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_fw_offload_h2c_ap.h -------------------------------------------------------------------------------- /hal/halmac/halmac_fw_offload_h2c_nic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_fw_offload_h2c_nic.h -------------------------------------------------------------------------------- /hal/halmac/halmac_gpio_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_gpio_cmd.h -------------------------------------------------------------------------------- /hal/halmac/halmac_h2c_extra_info_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_h2c_extra_info_ap.h -------------------------------------------------------------------------------- /hal/halmac/halmac_h2c_extra_info_nic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_h2c_extra_info_nic.h -------------------------------------------------------------------------------- /hal/halmac/halmac_hw_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_hw_cfg.h -------------------------------------------------------------------------------- /hal/halmac/halmac_intf_phy_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_intf_phy_cmd.h -------------------------------------------------------------------------------- /hal/halmac/halmac_original_c2h_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_original_c2h_ap.h -------------------------------------------------------------------------------- /hal/halmac/halmac_original_c2h_nic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_original_c2h_nic.h -------------------------------------------------------------------------------- /hal/halmac/halmac_original_h2c_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_original_h2c_ap.h -------------------------------------------------------------------------------- /hal/halmac/halmac_original_h2c_nic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_original_h2c_nic.h -------------------------------------------------------------------------------- /hal/halmac/halmac_pcie_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_pcie_reg.h -------------------------------------------------------------------------------- /hal/halmac/halmac_pwr_seq_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_pwr_seq_cmd.h -------------------------------------------------------------------------------- /hal/halmac/halmac_reg2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_reg2.h -------------------------------------------------------------------------------- /hal/halmac/halmac_reg_8197f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_reg_8197f.h -------------------------------------------------------------------------------- /hal/halmac/halmac_reg_8814b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_reg_8814b.h -------------------------------------------------------------------------------- /hal/halmac/halmac_reg_8821c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_reg_8821c.h -------------------------------------------------------------------------------- /hal/halmac/halmac_reg_8822b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_reg_8822b.h -------------------------------------------------------------------------------- /hal/halmac/halmac_reg_8822c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_reg_8822c.h -------------------------------------------------------------------------------- /hal/halmac/halmac_rx_bd_nic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_rx_bd_nic.h -------------------------------------------------------------------------------- /hal/halmac/halmac_rx_desc_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_rx_desc_ap.h -------------------------------------------------------------------------------- /hal/halmac/halmac_rx_desc_chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_rx_desc_chip.h -------------------------------------------------------------------------------- /hal/halmac/halmac_rx_desc_nic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_rx_desc_nic.h -------------------------------------------------------------------------------- /hal/halmac/halmac_sdio_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_sdio_reg.h -------------------------------------------------------------------------------- /hal/halmac/halmac_state_machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_state_machine.h -------------------------------------------------------------------------------- /hal/halmac/halmac_tx_bd_nic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_tx_bd_nic.h -------------------------------------------------------------------------------- /hal/halmac/halmac_tx_desc_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_tx_desc_ap.h -------------------------------------------------------------------------------- /hal/halmac/halmac_tx_desc_buffer_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_tx_desc_buffer_ap.h -------------------------------------------------------------------------------- /hal/halmac/halmac_tx_desc_buffer_chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_tx_desc_buffer_chip.h -------------------------------------------------------------------------------- /hal/halmac/halmac_tx_desc_buffer_nic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_tx_desc_buffer_nic.h -------------------------------------------------------------------------------- /hal/halmac/halmac_tx_desc_chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_tx_desc_chip.h -------------------------------------------------------------------------------- /hal/halmac/halmac_tx_desc_ie_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_tx_desc_ie_ap.h -------------------------------------------------------------------------------- /hal/halmac/halmac_tx_desc_ie_chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_tx_desc_ie_chip.h -------------------------------------------------------------------------------- /hal/halmac/halmac_tx_desc_ie_nic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_tx_desc_ie_nic.h -------------------------------------------------------------------------------- /hal/halmac/halmac_tx_desc_nic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_tx_desc_nic.h -------------------------------------------------------------------------------- /hal/halmac/halmac_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_type.h -------------------------------------------------------------------------------- /hal/halmac/halmac_usb_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/halmac/halmac_usb_reg.h -------------------------------------------------------------------------------- /hal/led/hal_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/led/hal_led.c -------------------------------------------------------------------------------- /hal/led/hal_pci_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/led/hal_pci_led.c -------------------------------------------------------------------------------- /hal/phydm/ap_makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/ap_makefile.mk -------------------------------------------------------------------------------- /hal/phydm/halhwimg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halhwimg.h -------------------------------------------------------------------------------- /hal/phydm/halrf/halphyrf_ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halphyrf_ap.c -------------------------------------------------------------------------------- /hal/phydm/halrf/halphyrf_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halphyrf_ap.h -------------------------------------------------------------------------------- /hal/phydm/halrf/halphyrf_ce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halphyrf_ce.c -------------------------------------------------------------------------------- /hal/phydm/halrf/halphyrf_ce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halphyrf_ce.h -------------------------------------------------------------------------------- /hal/phydm/halrf/halphyrf_iot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halphyrf_iot.c -------------------------------------------------------------------------------- /hal/phydm/halrf/halphyrf_iot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halphyrf_iot.h -------------------------------------------------------------------------------- /hal/phydm/halrf/halphyrf_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halphyrf_win.c -------------------------------------------------------------------------------- /hal/phydm/halrf/halphyrf_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halphyrf_win.h -------------------------------------------------------------------------------- /hal/phydm/halrf/halrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halrf.c -------------------------------------------------------------------------------- /hal/phydm/halrf/halrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halrf.h -------------------------------------------------------------------------------- /hal/phydm/halrf/halrf_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halrf_debug.c -------------------------------------------------------------------------------- /hal/phydm/halrf/halrf_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halrf_debug.h -------------------------------------------------------------------------------- /hal/phydm/halrf/halrf_dpk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halrf_dpk.h -------------------------------------------------------------------------------- /hal/phydm/halrf/halrf_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halrf_features.h -------------------------------------------------------------------------------- /hal/phydm/halrf/halrf_iqk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halrf_iqk.h -------------------------------------------------------------------------------- /hal/phydm/halrf/halrf_kfree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halrf_kfree.c -------------------------------------------------------------------------------- /hal/phydm/halrf/halrf_kfree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halrf_kfree.h -------------------------------------------------------------------------------- /hal/phydm/halrf/halrf_powertracking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halrf_powertracking.c -------------------------------------------------------------------------------- /hal/phydm/halrf/halrf_powertracking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halrf_powertracking.h -------------------------------------------------------------------------------- /hal/phydm/halrf/halrf_powertracking_ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halrf_powertracking_ap.c -------------------------------------------------------------------------------- /hal/phydm/halrf/halrf_powertracking_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halrf_powertracking_ap.h -------------------------------------------------------------------------------- /hal/phydm/halrf/halrf_powertracking_ce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halrf_powertracking_ce.c -------------------------------------------------------------------------------- /hal/phydm/halrf/halrf_powertracking_ce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halrf_powertracking_ce.h -------------------------------------------------------------------------------- /hal/phydm/halrf/halrf_powertracking_iot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halrf_powertracking_iot.c -------------------------------------------------------------------------------- /hal/phydm/halrf/halrf_powertracking_iot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halrf_powertracking_iot.h -------------------------------------------------------------------------------- /hal/phydm/halrf/halrf_powertracking_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halrf_powertracking_win.c -------------------------------------------------------------------------------- /hal/phydm/halrf/halrf_powertracking_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halrf_powertracking_win.h -------------------------------------------------------------------------------- /hal/phydm/halrf/halrf_psd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halrf_psd.c -------------------------------------------------------------------------------- /hal/phydm/halrf/halrf_psd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halrf_psd.h -------------------------------------------------------------------------------- /hal/phydm/halrf/halrf_txgapcal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halrf_txgapcal.c -------------------------------------------------------------------------------- /hal/phydm/halrf/halrf_txgapcal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/halrf_txgapcal.h -------------------------------------------------------------------------------- /hal/phydm/halrf/rtl8822c/halhwimg8822c_rf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/rtl8822c/halhwimg8822c_rf.c -------------------------------------------------------------------------------- /hal/phydm/halrf/rtl8822c/halhwimg8822c_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/rtl8822c/halhwimg8822c_rf.h -------------------------------------------------------------------------------- /hal/phydm/halrf/rtl8822c/halrf_8822c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/rtl8822c/halrf_8822c.c -------------------------------------------------------------------------------- /hal/phydm/halrf/rtl8822c/halrf_8822c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/rtl8822c/halrf_8822c.h -------------------------------------------------------------------------------- /hal/phydm/halrf/rtl8822c/halrf_dpk_8822c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/rtl8822c/halrf_dpk_8822c.c -------------------------------------------------------------------------------- /hal/phydm/halrf/rtl8822c/halrf_dpk_8822c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/rtl8822c/halrf_dpk_8822c.h -------------------------------------------------------------------------------- /hal/phydm/halrf/rtl8822c/halrf_iqk_8822c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/rtl8822c/halrf_iqk_8822c.c -------------------------------------------------------------------------------- /hal/phydm/halrf/rtl8822c/halrf_iqk_8822c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/rtl8822c/halrf_iqk_8822c.h -------------------------------------------------------------------------------- /hal/phydm/halrf/rtl8822c/halrf_rfk_init_8822c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/rtl8822c/halrf_rfk_init_8822c.c -------------------------------------------------------------------------------- /hal/phydm/halrf/rtl8822c/halrf_rfk_init_8822c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/rtl8822c/halrf_rfk_init_8822c.h -------------------------------------------------------------------------------- /hal/phydm/halrf/rtl8822c/halrf_tssi_8822c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/rtl8822c/halrf_tssi_8822c.c -------------------------------------------------------------------------------- /hal/phydm/halrf/rtl8822c/halrf_tssi_8822c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/rtl8822c/halrf_tssi_8822c.h -------------------------------------------------------------------------------- /hal/phydm/halrf/rtl8822c/version_rtl8822c_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/halrf/rtl8822c/version_rtl8822c_rf.h -------------------------------------------------------------------------------- /hal/phydm/mp_precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/mp_precomp.h -------------------------------------------------------------------------------- /hal/phydm/phydm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm.c -------------------------------------------------------------------------------- /hal/phydm/phydm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm.h -------------------------------------------------------------------------------- /hal/phydm/phydm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm.mk -------------------------------------------------------------------------------- /hal/phydm/phydm_adaptivity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_adaptivity.c -------------------------------------------------------------------------------- /hal/phydm/phydm_adaptivity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_adaptivity.h -------------------------------------------------------------------------------- /hal/phydm/phydm_adc_sampling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_adc_sampling.c -------------------------------------------------------------------------------- /hal/phydm/phydm_adc_sampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_adc_sampling.h -------------------------------------------------------------------------------- /hal/phydm/phydm_antdect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_antdect.c -------------------------------------------------------------------------------- /hal/phydm/phydm_antdect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_antdect.h -------------------------------------------------------------------------------- /hal/phydm/phydm_antdiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_antdiv.c -------------------------------------------------------------------------------- /hal/phydm/phydm_antdiv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_antdiv.h -------------------------------------------------------------------------------- /hal/phydm/phydm_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_api.c -------------------------------------------------------------------------------- /hal/phydm/phydm_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_api.h -------------------------------------------------------------------------------- /hal/phydm/phydm_auto_dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_auto_dbg.c -------------------------------------------------------------------------------- /hal/phydm/phydm_auto_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_auto_dbg.h -------------------------------------------------------------------------------- /hal/phydm/phydm_beamforming.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_beamforming.c -------------------------------------------------------------------------------- /hal/phydm/phydm_beamforming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_beamforming.h -------------------------------------------------------------------------------- /hal/phydm/phydm_cck_pd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_cck_pd.c -------------------------------------------------------------------------------- /hal/phydm/phydm_cck_pd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_cck_pd.h -------------------------------------------------------------------------------- /hal/phydm/phydm_ccx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_ccx.c -------------------------------------------------------------------------------- /hal/phydm/phydm_ccx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_ccx.h -------------------------------------------------------------------------------- /hal/phydm/phydm_cfotracking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_cfotracking.c -------------------------------------------------------------------------------- /hal/phydm/phydm_cfotracking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_cfotracking.h -------------------------------------------------------------------------------- /hal/phydm/phydm_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_debug.c -------------------------------------------------------------------------------- /hal/phydm/phydm_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_debug.h -------------------------------------------------------------------------------- /hal/phydm/phydm_dfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_dfs.c -------------------------------------------------------------------------------- /hal/phydm/phydm_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_dfs.h -------------------------------------------------------------------------------- /hal/phydm/phydm_dig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_dig.c -------------------------------------------------------------------------------- /hal/phydm/phydm_dig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_dig.h -------------------------------------------------------------------------------- /hal/phydm/phydm_direct_bf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_direct_bf.c -------------------------------------------------------------------------------- /hal/phydm/phydm_direct_bf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_direct_bf.h -------------------------------------------------------------------------------- /hal/phydm/phydm_dynamictxpower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_dynamictxpower.c -------------------------------------------------------------------------------- /hal/phydm/phydm_dynamictxpower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_dynamictxpower.h -------------------------------------------------------------------------------- /hal/phydm/phydm_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_features.h -------------------------------------------------------------------------------- /hal/phydm/phydm_features_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_features_ap.h -------------------------------------------------------------------------------- /hal/phydm/phydm_features_ce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_features_ce.h -------------------------------------------------------------------------------- /hal/phydm/phydm_features_ce2_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_features_ce2_kernel.h -------------------------------------------------------------------------------- /hal/phydm/phydm_features_iot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_features_iot.h -------------------------------------------------------------------------------- /hal/phydm/phydm_features_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_features_win.h -------------------------------------------------------------------------------- /hal/phydm/phydm_hwconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_hwconfig.c -------------------------------------------------------------------------------- /hal/phydm/phydm_hwconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_hwconfig.h -------------------------------------------------------------------------------- /hal/phydm/phydm_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_interface.c -------------------------------------------------------------------------------- /hal/phydm/phydm_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_interface.h -------------------------------------------------------------------------------- /hal/phydm/phydm_lna_sat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_lna_sat.c -------------------------------------------------------------------------------- /hal/phydm/phydm_lna_sat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_lna_sat.h -------------------------------------------------------------------------------- /hal/phydm/phydm_math_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_math_lib.c -------------------------------------------------------------------------------- /hal/phydm/phydm_math_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_math_lib.h -------------------------------------------------------------------------------- /hal/phydm/phydm_mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_mp.c -------------------------------------------------------------------------------- /hal/phydm/phydm_mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_mp.h -------------------------------------------------------------------------------- /hal/phydm/phydm_noisemonitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_noisemonitor.c -------------------------------------------------------------------------------- /hal/phydm/phydm_noisemonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_noisemonitor.h -------------------------------------------------------------------------------- /hal/phydm/phydm_pathdiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_pathdiv.c -------------------------------------------------------------------------------- /hal/phydm/phydm_pathdiv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_pathdiv.h -------------------------------------------------------------------------------- /hal/phydm/phydm_phystatus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_phystatus.c -------------------------------------------------------------------------------- /hal/phydm/phydm_phystatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_phystatus.h -------------------------------------------------------------------------------- /hal/phydm/phydm_pmac_tx_setting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_pmac_tx_setting.c -------------------------------------------------------------------------------- /hal/phydm/phydm_pmac_tx_setting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_pmac_tx_setting.h -------------------------------------------------------------------------------- /hal/phydm/phydm_pow_train.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_pow_train.c -------------------------------------------------------------------------------- /hal/phydm/phydm_pow_train.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_pow_train.h -------------------------------------------------------------------------------- /hal/phydm/phydm_pre_define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_pre_define.h -------------------------------------------------------------------------------- /hal/phydm/phydm_precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_precomp.h -------------------------------------------------------------------------------- /hal/phydm/phydm_primary_cca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_primary_cca.c -------------------------------------------------------------------------------- /hal/phydm/phydm_primary_cca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_primary_cca.h -------------------------------------------------------------------------------- /hal/phydm/phydm_psd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_psd.c -------------------------------------------------------------------------------- /hal/phydm/phydm_psd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_psd.h -------------------------------------------------------------------------------- /hal/phydm/phydm_rainfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_rainfo.c -------------------------------------------------------------------------------- /hal/phydm/phydm_rainfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_rainfo.h -------------------------------------------------------------------------------- /hal/phydm/phydm_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_reg.h -------------------------------------------------------------------------------- /hal/phydm/phydm_regdefine11ac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_regdefine11ac.h -------------------------------------------------------------------------------- /hal/phydm/phydm_regdefine11n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_regdefine11n.h -------------------------------------------------------------------------------- /hal/phydm/phydm_regtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_regtable.h -------------------------------------------------------------------------------- /hal/phydm/phydm_rssi_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_rssi_monitor.c -------------------------------------------------------------------------------- /hal/phydm/phydm_rssi_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_rssi_monitor.h -------------------------------------------------------------------------------- /hal/phydm/phydm_smt_ant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_smt_ant.c -------------------------------------------------------------------------------- /hal/phydm/phydm_smt_ant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_smt_ant.h -------------------------------------------------------------------------------- /hal/phydm/phydm_soml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_soml.c -------------------------------------------------------------------------------- /hal/phydm/phydm_soml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_soml.h -------------------------------------------------------------------------------- /hal/phydm/phydm_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/phydm_types.h -------------------------------------------------------------------------------- /hal/phydm/rtl8822c/halhwimg8822c_bb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/rtl8822c/halhwimg8822c_bb.c -------------------------------------------------------------------------------- /hal/phydm/rtl8822c/halhwimg8822c_bb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/rtl8822c/halhwimg8822c_bb.h -------------------------------------------------------------------------------- /hal/phydm/rtl8822c/mp_precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/rtl8822c/mp_precomp.h -------------------------------------------------------------------------------- /hal/phydm/rtl8822c/phydm_hal_api8822c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/rtl8822c/phydm_hal_api8822c.c -------------------------------------------------------------------------------- /hal/phydm/rtl8822c/phydm_hal_api8822c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/rtl8822c/phydm_hal_api8822c.h -------------------------------------------------------------------------------- /hal/phydm/rtl8822c/phydm_regconfig8822c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/rtl8822c/phydm_regconfig8822c.c -------------------------------------------------------------------------------- /hal/phydm/rtl8822c/phydm_regconfig8822c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/rtl8822c/phydm_regconfig8822c.h -------------------------------------------------------------------------------- /hal/phydm/rtl8822c/phydm_rtl8822c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/rtl8822c/phydm_rtl8822c.c -------------------------------------------------------------------------------- /hal/phydm/rtl8822c/phydm_rtl8822c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/rtl8822c/phydm_rtl8822c.h -------------------------------------------------------------------------------- /hal/phydm/rtl8822c/version_rtl8822c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/rtl8822c/version_rtl8822c.h -------------------------------------------------------------------------------- /hal/phydm/sd4_phydm_2_kernel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/sd4_phydm_2_kernel.mk -------------------------------------------------------------------------------- /hal/phydm/txbf/halcomtxbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/txbf/halcomtxbf.c -------------------------------------------------------------------------------- /hal/phydm/txbf/halcomtxbf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/txbf/halcomtxbf.h -------------------------------------------------------------------------------- /hal/phydm/txbf/haltxbf8192e.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/txbf/haltxbf8192e.c -------------------------------------------------------------------------------- /hal/phydm/txbf/haltxbf8192e.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/txbf/haltxbf8192e.h -------------------------------------------------------------------------------- /hal/phydm/txbf/haltxbf8814a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/txbf/haltxbf8814a.c -------------------------------------------------------------------------------- /hal/phydm/txbf/haltxbf8814a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/txbf/haltxbf8814a.h -------------------------------------------------------------------------------- /hal/phydm/txbf/haltxbf8822b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/txbf/haltxbf8822b.c -------------------------------------------------------------------------------- /hal/phydm/txbf/haltxbf8822b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/txbf/haltxbf8822b.h -------------------------------------------------------------------------------- /hal/phydm/txbf/haltxbfinterface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/txbf/haltxbfinterface.c -------------------------------------------------------------------------------- /hal/phydm/txbf/haltxbfinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/txbf/haltxbfinterface.h -------------------------------------------------------------------------------- /hal/phydm/txbf/haltxbfjaguar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/txbf/haltxbfjaguar.c -------------------------------------------------------------------------------- /hal/phydm/txbf/haltxbfjaguar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/txbf/haltxbfjaguar.h -------------------------------------------------------------------------------- /hal/phydm/txbf/phydm_hal_txbf_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/txbf/phydm_hal_txbf_api.c -------------------------------------------------------------------------------- /hal/phydm/txbf/phydm_hal_txbf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/phydm/txbf/phydm_hal_txbf_api.h -------------------------------------------------------------------------------- /hal/rtl8822c/hal8822c_fw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/rtl8822c/hal8822c_fw.c -------------------------------------------------------------------------------- /hal/rtl8822c/hal8822c_fw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/rtl8822c/hal8822c_fw.h -------------------------------------------------------------------------------- /hal/rtl8822c/pci/rtl8822ce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/rtl8822c/pci/rtl8822ce.h -------------------------------------------------------------------------------- /hal/rtl8822c/pci/rtl8822ce_halinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/rtl8822c/pci/rtl8822ce_halinit.c -------------------------------------------------------------------------------- /hal/rtl8822c/pci/rtl8822ce_halmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/rtl8822c/pci/rtl8822ce_halmac.c -------------------------------------------------------------------------------- /hal/rtl8822c/pci/rtl8822ce_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/rtl8822c/pci/rtl8822ce_io.c -------------------------------------------------------------------------------- /hal/rtl8822c/pci/rtl8822ce_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/rtl8822c/pci/rtl8822ce_led.c -------------------------------------------------------------------------------- /hal/rtl8822c/pci/rtl8822ce_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/rtl8822c/pci/rtl8822ce_ops.c -------------------------------------------------------------------------------- /hal/rtl8822c/pci/rtl8822ce_recv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/rtl8822c/pci/rtl8822ce_recv.c -------------------------------------------------------------------------------- /hal/rtl8822c/pci/rtl8822ce_xmit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/rtl8822c/pci/rtl8822ce_xmit.c -------------------------------------------------------------------------------- /hal/rtl8822c/rtl8822c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/rtl8822c/rtl8822c.h -------------------------------------------------------------------------------- /hal/rtl8822c/rtl8822c_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/rtl8822c/rtl8822c_cmd.c -------------------------------------------------------------------------------- /hal/rtl8822c/rtl8822c_halinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/rtl8822c/rtl8822c_halinit.c -------------------------------------------------------------------------------- /hal/rtl8822c/rtl8822c_mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/rtl8822c/rtl8822c_mac.c -------------------------------------------------------------------------------- /hal/rtl8822c/rtl8822c_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/rtl8822c/rtl8822c_ops.c -------------------------------------------------------------------------------- /hal/rtl8822c/rtl8822c_phy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/hal/rtl8822c/rtl8822c_phy.c -------------------------------------------------------------------------------- /halmac.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/halmac.mk -------------------------------------------------------------------------------- /ifcfg-wlan0: -------------------------------------------------------------------------------- 1 | #DHCP client 2 | DEVICE=wlan0 3 | BOOTPROTO=dhcp 4 | ONBOOT=yes -------------------------------------------------------------------------------- /include/Hal8188EPhyCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8188EPhyCfg.h -------------------------------------------------------------------------------- /include/Hal8188EPhyReg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8188EPhyReg.h -------------------------------------------------------------------------------- /include/Hal8188EPwrSeq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8188EPwrSeq.h -------------------------------------------------------------------------------- /include/Hal8188FPhyCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8188FPhyCfg.h -------------------------------------------------------------------------------- /include/Hal8188FPhyReg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8188FPhyReg.h -------------------------------------------------------------------------------- /include/Hal8188FPwrSeq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8188FPwrSeq.h -------------------------------------------------------------------------------- /include/Hal8192EPhyCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8192EPhyCfg.h -------------------------------------------------------------------------------- /include/Hal8192EPhyReg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8192EPhyReg.h -------------------------------------------------------------------------------- /include/Hal8192EPwrSeq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8192EPwrSeq.h -------------------------------------------------------------------------------- /include/Hal8192FPhyCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8192FPhyCfg.h -------------------------------------------------------------------------------- /include/Hal8192FPhyReg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8192FPhyReg.h -------------------------------------------------------------------------------- /include/Hal8192FPwrSeq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8192FPwrSeq.h -------------------------------------------------------------------------------- /include/Hal8703BPhyCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8703BPhyCfg.h -------------------------------------------------------------------------------- /include/Hal8703BPhyReg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8703BPhyReg.h -------------------------------------------------------------------------------- /include/Hal8703BPwrSeq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8703BPwrSeq.h -------------------------------------------------------------------------------- /include/Hal8710BPhyCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8710BPhyCfg.h -------------------------------------------------------------------------------- /include/Hal8710BPhyReg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8710BPhyReg.h -------------------------------------------------------------------------------- /include/Hal8710BPwrSeq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8710BPwrSeq.h -------------------------------------------------------------------------------- /include/Hal8723BPhyCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8723BPhyCfg.h -------------------------------------------------------------------------------- /include/Hal8723BPhyReg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8723BPhyReg.h -------------------------------------------------------------------------------- /include/Hal8723BPwrSeq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8723BPwrSeq.h -------------------------------------------------------------------------------- /include/Hal8723DPhyCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8723DPhyCfg.h -------------------------------------------------------------------------------- /include/Hal8723DPhyReg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8723DPhyReg.h -------------------------------------------------------------------------------- /include/Hal8723DPwrSeq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8723DPwrSeq.h -------------------------------------------------------------------------------- /include/Hal8723PwrSeq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8723PwrSeq.h -------------------------------------------------------------------------------- /include/Hal8812PhyCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8812PhyCfg.h -------------------------------------------------------------------------------- /include/Hal8812PhyReg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8812PhyReg.h -------------------------------------------------------------------------------- /include/Hal8812PwrSeq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8812PwrSeq.h -------------------------------------------------------------------------------- /include/Hal8814PhyCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8814PhyCfg.h -------------------------------------------------------------------------------- /include/Hal8814PhyReg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8814PhyReg.h -------------------------------------------------------------------------------- /include/Hal8814PwrSeq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8814PwrSeq.h -------------------------------------------------------------------------------- /include/Hal8821APwrSeq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/Hal8821APwrSeq.h -------------------------------------------------------------------------------- /include/HalPwrSeqCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/HalPwrSeqCmd.h -------------------------------------------------------------------------------- /include/HalVerDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/HalVerDef.h -------------------------------------------------------------------------------- /include/autoconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/autoconf.h -------------------------------------------------------------------------------- /include/basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/basic_types.h -------------------------------------------------------------------------------- /include/byteorder/big_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/byteorder/big_endian.h -------------------------------------------------------------------------------- /include/byteorder/generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/byteorder/generic.h -------------------------------------------------------------------------------- /include/byteorder/little_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/byteorder/little_endian.h -------------------------------------------------------------------------------- /include/byteorder/swab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/byteorder/swab.h -------------------------------------------------------------------------------- /include/byteorder/swabb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/byteorder/swabb.h -------------------------------------------------------------------------------- /include/circ_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/circ_buf.h -------------------------------------------------------------------------------- /include/cmd_osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/cmd_osdep.h -------------------------------------------------------------------------------- /include/cmn_info/rtw_sta_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/cmn_info/rtw_sta_info.h -------------------------------------------------------------------------------- /include/custom_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/custom_gpio.h -------------------------------------------------------------------------------- /include/drv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/drv_conf.h -------------------------------------------------------------------------------- /include/drv_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/drv_types.h -------------------------------------------------------------------------------- /include/drv_types_ce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/drv_types_ce.h -------------------------------------------------------------------------------- /include/drv_types_gspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/drv_types_gspi.h -------------------------------------------------------------------------------- /include/drv_types_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/drv_types_linux.h -------------------------------------------------------------------------------- /include/drv_types_pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/drv_types_pci.h -------------------------------------------------------------------------------- /include/drv_types_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/drv_types_sdio.h -------------------------------------------------------------------------------- /include/drv_types_xp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/drv_types_xp.h -------------------------------------------------------------------------------- /include/ethernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/ethernet.h -------------------------------------------------------------------------------- /include/gspi_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/gspi_hal.h -------------------------------------------------------------------------------- /include/gspi_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/gspi_ops.h -------------------------------------------------------------------------------- /include/gspi_ops_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/gspi_ops_linux.h -------------------------------------------------------------------------------- /include/gspi_osintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/gspi_osintf.h -------------------------------------------------------------------------------- /include/h2clbk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/h2clbk.h -------------------------------------------------------------------------------- /include/hal_btcoex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/hal_btcoex.h -------------------------------------------------------------------------------- /include/hal_btcoex_wifionly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/hal_btcoex_wifionly.h -------------------------------------------------------------------------------- /include/hal_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/hal_com.h -------------------------------------------------------------------------------- /include/hal_com_h2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/hal_com_h2c.h -------------------------------------------------------------------------------- /include/hal_com_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/hal_com_led.h -------------------------------------------------------------------------------- /include/hal_com_phycfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/hal_com_phycfg.h -------------------------------------------------------------------------------- /include/hal_com_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/hal_com_reg.h -------------------------------------------------------------------------------- /include/hal_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/hal_data.h -------------------------------------------------------------------------------- /include/hal_gspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/hal_gspi.h -------------------------------------------------------------------------------- /include/hal_ic_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/hal_ic_cfg.h -------------------------------------------------------------------------------- /include/hal_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/hal_intf.h -------------------------------------------------------------------------------- /include/hal_pg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/hal_pg.h -------------------------------------------------------------------------------- /include/hal_phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/hal_phy.h -------------------------------------------------------------------------------- /include/hal_phy_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/hal_phy_reg.h -------------------------------------------------------------------------------- /include/hal_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/hal_sdio.h -------------------------------------------------------------------------------- /include/hal_sdio_coex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/hal_sdio_coex.h -------------------------------------------------------------------------------- /include/ieee80211.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/ieee80211.h -------------------------------------------------------------------------------- /include/ieee80211_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/ieee80211_ext.h -------------------------------------------------------------------------------- /include/if_ether.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/if_ether.h -------------------------------------------------------------------------------- /include/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/ip.h -------------------------------------------------------------------------------- /include/linux/wireless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/linux/wireless.h -------------------------------------------------------------------------------- /include/mlme_osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/mlme_osdep.h -------------------------------------------------------------------------------- /include/nic_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/nic_spec.h -------------------------------------------------------------------------------- /include/osdep_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/osdep_intf.h -------------------------------------------------------------------------------- /include/osdep_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/osdep_service.h -------------------------------------------------------------------------------- /include/osdep_service_bsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/osdep_service_bsd.h -------------------------------------------------------------------------------- /include/osdep_service_ce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/osdep_service_ce.h -------------------------------------------------------------------------------- /include/osdep_service_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/osdep_service_linux.h -------------------------------------------------------------------------------- /include/osdep_service_xp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/osdep_service_xp.h -------------------------------------------------------------------------------- /include/pci_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/pci_hal.h -------------------------------------------------------------------------------- /include/pci_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/pci_ops.h -------------------------------------------------------------------------------- /include/pci_osintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/pci_osintf.h -------------------------------------------------------------------------------- /include/recv_osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/recv_osdep.h -------------------------------------------------------------------------------- /include/rtl8188e_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8188e_cmd.h -------------------------------------------------------------------------------- /include/rtl8188e_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8188e_dm.h -------------------------------------------------------------------------------- /include/rtl8188e_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8188e_hal.h -------------------------------------------------------------------------------- /include/rtl8188e_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8188e_led.h -------------------------------------------------------------------------------- /include/rtl8188e_recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8188e_recv.h -------------------------------------------------------------------------------- /include/rtl8188e_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8188e_rf.h -------------------------------------------------------------------------------- /include/rtl8188e_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8188e_spec.h -------------------------------------------------------------------------------- /include/rtl8188e_sreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8188e_sreset.h -------------------------------------------------------------------------------- /include/rtl8188e_xmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8188e_xmit.h -------------------------------------------------------------------------------- /include/rtl8188f_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8188f_cmd.h -------------------------------------------------------------------------------- /include/rtl8188f_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8188f_dm.h -------------------------------------------------------------------------------- /include/rtl8188f_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8188f_hal.h -------------------------------------------------------------------------------- /include/rtl8188f_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8188f_led.h -------------------------------------------------------------------------------- /include/rtl8188f_recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8188f_recv.h -------------------------------------------------------------------------------- /include/rtl8188f_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8188f_rf.h -------------------------------------------------------------------------------- /include/rtl8188f_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8188f_spec.h -------------------------------------------------------------------------------- /include/rtl8188f_sreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8188f_sreset.h -------------------------------------------------------------------------------- /include/rtl8188f_xmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8188f_xmit.h -------------------------------------------------------------------------------- /include/rtl8192e_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8192e_cmd.h -------------------------------------------------------------------------------- /include/rtl8192e_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8192e_dm.h -------------------------------------------------------------------------------- /include/rtl8192e_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8192e_hal.h -------------------------------------------------------------------------------- /include/rtl8192e_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8192e_led.h -------------------------------------------------------------------------------- /include/rtl8192e_recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8192e_recv.h -------------------------------------------------------------------------------- /include/rtl8192e_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8192e_rf.h -------------------------------------------------------------------------------- /include/rtl8192e_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8192e_spec.h -------------------------------------------------------------------------------- /include/rtl8192e_sreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8192e_sreset.h -------------------------------------------------------------------------------- /include/rtl8192e_xmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8192e_xmit.h -------------------------------------------------------------------------------- /include/rtl8192f_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8192f_cmd.h -------------------------------------------------------------------------------- /include/rtl8192f_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8192f_dm.h -------------------------------------------------------------------------------- /include/rtl8192f_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8192f_hal.h -------------------------------------------------------------------------------- /include/rtl8192f_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8192f_led.h -------------------------------------------------------------------------------- /include/rtl8192f_recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8192f_recv.h -------------------------------------------------------------------------------- /include/rtl8192f_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8192f_rf.h -------------------------------------------------------------------------------- /include/rtl8192f_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8192f_spec.h -------------------------------------------------------------------------------- /include/rtl8192f_sreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8192f_sreset.h -------------------------------------------------------------------------------- /include/rtl8192f_xmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8192f_xmit.h -------------------------------------------------------------------------------- /include/rtl8703b_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8703b_cmd.h -------------------------------------------------------------------------------- /include/rtl8703b_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8703b_dm.h -------------------------------------------------------------------------------- /include/rtl8703b_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8703b_hal.h -------------------------------------------------------------------------------- /include/rtl8703b_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8703b_led.h -------------------------------------------------------------------------------- /include/rtl8703b_recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8703b_recv.h -------------------------------------------------------------------------------- /include/rtl8703b_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8703b_rf.h -------------------------------------------------------------------------------- /include/rtl8703b_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8703b_spec.h -------------------------------------------------------------------------------- /include/rtl8703b_sreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8703b_sreset.h -------------------------------------------------------------------------------- /include/rtl8703b_xmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8703b_xmit.h -------------------------------------------------------------------------------- /include/rtl8710b_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8710b_cmd.h -------------------------------------------------------------------------------- /include/rtl8710b_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8710b_dm.h -------------------------------------------------------------------------------- /include/rtl8710b_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8710b_hal.h -------------------------------------------------------------------------------- /include/rtl8710b_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8710b_led.h -------------------------------------------------------------------------------- /include/rtl8710b_lps_poff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8710b_lps_poff.h -------------------------------------------------------------------------------- /include/rtl8710b_recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8710b_recv.h -------------------------------------------------------------------------------- /include/rtl8710b_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8710b_rf.h -------------------------------------------------------------------------------- /include/rtl8710b_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8710b_spec.h -------------------------------------------------------------------------------- /include/rtl8710b_sreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8710b_sreset.h -------------------------------------------------------------------------------- /include/rtl8710b_xmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8710b_xmit.h -------------------------------------------------------------------------------- /include/rtl8723b_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8723b_cmd.h -------------------------------------------------------------------------------- /include/rtl8723b_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8723b_dm.h -------------------------------------------------------------------------------- /include/rtl8723b_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8723b_hal.h -------------------------------------------------------------------------------- /include/rtl8723b_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8723b_led.h -------------------------------------------------------------------------------- /include/rtl8723b_recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8723b_recv.h -------------------------------------------------------------------------------- /include/rtl8723b_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8723b_rf.h -------------------------------------------------------------------------------- /include/rtl8723b_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8723b_spec.h -------------------------------------------------------------------------------- /include/rtl8723b_sreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8723b_sreset.h -------------------------------------------------------------------------------- /include/rtl8723b_xmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8723b_xmit.h -------------------------------------------------------------------------------- /include/rtl8723d_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8723d_cmd.h -------------------------------------------------------------------------------- /include/rtl8723d_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8723d_dm.h -------------------------------------------------------------------------------- /include/rtl8723d_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8723d_hal.h -------------------------------------------------------------------------------- /include/rtl8723d_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8723d_led.h -------------------------------------------------------------------------------- /include/rtl8723d_lps_poff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8723d_lps_poff.h -------------------------------------------------------------------------------- /include/rtl8723d_recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8723d_recv.h -------------------------------------------------------------------------------- /include/rtl8723d_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8723d_rf.h -------------------------------------------------------------------------------- /include/rtl8723d_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8723d_spec.h -------------------------------------------------------------------------------- /include/rtl8723d_sreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8723d_sreset.h -------------------------------------------------------------------------------- /include/rtl8723d_xmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8723d_xmit.h -------------------------------------------------------------------------------- /include/rtl8812a_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8812a_cmd.h -------------------------------------------------------------------------------- /include/rtl8812a_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8812a_dm.h -------------------------------------------------------------------------------- /include/rtl8812a_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8812a_hal.h -------------------------------------------------------------------------------- /include/rtl8812a_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8812a_led.h -------------------------------------------------------------------------------- /include/rtl8812a_recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8812a_recv.h -------------------------------------------------------------------------------- /include/rtl8812a_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8812a_rf.h -------------------------------------------------------------------------------- /include/rtl8812a_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8812a_spec.h -------------------------------------------------------------------------------- /include/rtl8812a_sreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8812a_sreset.h -------------------------------------------------------------------------------- /include/rtl8812a_xmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8812a_xmit.h -------------------------------------------------------------------------------- /include/rtl8814a_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8814a_cmd.h -------------------------------------------------------------------------------- /include/rtl8814a_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8814a_dm.h -------------------------------------------------------------------------------- /include/rtl8814a_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8814a_hal.h -------------------------------------------------------------------------------- /include/rtl8814a_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8814a_led.h -------------------------------------------------------------------------------- /include/rtl8814a_recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8814a_recv.h -------------------------------------------------------------------------------- /include/rtl8814a_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8814a_rf.h -------------------------------------------------------------------------------- /include/rtl8814a_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8814a_spec.h -------------------------------------------------------------------------------- /include/rtl8814a_sreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8814a_sreset.h -------------------------------------------------------------------------------- /include/rtl8814a_xmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8814a_xmit.h -------------------------------------------------------------------------------- /include/rtl8821a_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8821a_spec.h -------------------------------------------------------------------------------- /include/rtl8821a_xmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8821a_xmit.h -------------------------------------------------------------------------------- /include/rtl8821c_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8821c_dm.h -------------------------------------------------------------------------------- /include/rtl8821c_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8821c_hal.h -------------------------------------------------------------------------------- /include/rtl8821c_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8821c_spec.h -------------------------------------------------------------------------------- /include/rtl8821ce_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8821ce_hal.h -------------------------------------------------------------------------------- /include/rtl8821cs_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8821cs_hal.h -------------------------------------------------------------------------------- /include/rtl8821cu_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8821cu_hal.h -------------------------------------------------------------------------------- /include/rtl8822b_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8822b_hal.h -------------------------------------------------------------------------------- /include/rtl8822be_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8822be_hal.h -------------------------------------------------------------------------------- /include/rtl8822bs_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8822bs_hal.h -------------------------------------------------------------------------------- /include/rtl8822bu_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8822bu_hal.h -------------------------------------------------------------------------------- /include/rtl8822c_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8822c_hal.h -------------------------------------------------------------------------------- /include/rtl8822ce_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8822ce_hal.h -------------------------------------------------------------------------------- /include/rtl8822cs_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8822cs_hal.h -------------------------------------------------------------------------------- /include/rtl8822cu_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtl8822cu_hal.h -------------------------------------------------------------------------------- /include/rtw_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_android.h -------------------------------------------------------------------------------- /include/rtw_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_ap.h -------------------------------------------------------------------------------- /include/rtw_beamforming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_beamforming.h -------------------------------------------------------------------------------- /include/rtw_br_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_br_ext.h -------------------------------------------------------------------------------- /include/rtw_bt_mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_bt_mp.h -------------------------------------------------------------------------------- /include/rtw_btcoex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_btcoex.h -------------------------------------------------------------------------------- /include/rtw_btcoex_wifionly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_btcoex_wifionly.h -------------------------------------------------------------------------------- /include/rtw_byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_byteorder.h -------------------------------------------------------------------------------- /include/rtw_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_cmd.h -------------------------------------------------------------------------------- /include/rtw_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_debug.h -------------------------------------------------------------------------------- /include/rtw_eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_eeprom.h -------------------------------------------------------------------------------- /include/rtw_efuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_efuse.h -------------------------------------------------------------------------------- /include/rtw_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_event.h -------------------------------------------------------------------------------- /include/rtw_ht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_ht.h -------------------------------------------------------------------------------- /include/rtw_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_io.h -------------------------------------------------------------------------------- /include/rtw_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_ioctl.h -------------------------------------------------------------------------------- /include/rtw_ioctl_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_ioctl_query.h -------------------------------------------------------------------------------- /include/rtw_ioctl_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_ioctl_set.h -------------------------------------------------------------------------------- /include/rtw_iol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_iol.h -------------------------------------------------------------------------------- /include/rtw_mcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_mcc.h -------------------------------------------------------------------------------- /include/rtw_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_mem.h -------------------------------------------------------------------------------- /include/rtw_mi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_mi.h -------------------------------------------------------------------------------- /include/rtw_mlme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_mlme.h -------------------------------------------------------------------------------- /include/rtw_mlme_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_mlme_ext.h -------------------------------------------------------------------------------- /include/rtw_mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_mp.h -------------------------------------------------------------------------------- /include/rtw_mp_phy_regdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_mp_phy_regdef.h -------------------------------------------------------------------------------- /include/rtw_odm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_odm.h -------------------------------------------------------------------------------- /include/rtw_p2p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_p2p.h -------------------------------------------------------------------------------- /include/rtw_pwrctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_pwrctrl.h -------------------------------------------------------------------------------- /include/rtw_qos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_qos.h -------------------------------------------------------------------------------- /include/rtw_recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_recv.h -------------------------------------------------------------------------------- /include/rtw_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_rf.h -------------------------------------------------------------------------------- /include/rtw_rm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_rm.h -------------------------------------------------------------------------------- /include/rtw_rm_fsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_rm_fsm.h -------------------------------------------------------------------------------- /include/rtw_rson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_rson.h -------------------------------------------------------------------------------- /include/rtw_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_sdio.h -------------------------------------------------------------------------------- /include/rtw_security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_security.h -------------------------------------------------------------------------------- /include/rtw_sreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_sreset.h -------------------------------------------------------------------------------- /include/rtw_tdls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_tdls.h -------------------------------------------------------------------------------- /include/rtw_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_version.h -------------------------------------------------------------------------------- /include/rtw_vht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_vht.h -------------------------------------------------------------------------------- /include/rtw_wapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_wapi.h -------------------------------------------------------------------------------- /include/rtw_wifi_regd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_wifi_regd.h -------------------------------------------------------------------------------- /include/rtw_xmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/rtw_xmit.h -------------------------------------------------------------------------------- /include/sdio_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/sdio_hal.h -------------------------------------------------------------------------------- /include/sdio_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/sdio_ops.h -------------------------------------------------------------------------------- /include/sdio_ops_ce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/sdio_ops_ce.h -------------------------------------------------------------------------------- /include/sdio_ops_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/sdio_ops_linux.h -------------------------------------------------------------------------------- /include/sdio_ops_xp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/sdio_ops_xp.h -------------------------------------------------------------------------------- /include/sdio_osintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/sdio_osintf.h -------------------------------------------------------------------------------- /include/sta_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/sta_info.h -------------------------------------------------------------------------------- /include/usb_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/usb_hal.h -------------------------------------------------------------------------------- /include/usb_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/usb_ops.h -------------------------------------------------------------------------------- /include/usb_ops_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/usb_ops_linux.h -------------------------------------------------------------------------------- /include/usb_osintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/usb_osintf.h -------------------------------------------------------------------------------- /include/usb_vendor_req.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/usb_vendor_req.h -------------------------------------------------------------------------------- /include/wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/wifi.h -------------------------------------------------------------------------------- /include/wlan_bssdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/wlan_bssdef.h -------------------------------------------------------------------------------- /include/xmit_osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/include/xmit_osdep.h -------------------------------------------------------------------------------- /os_dep/linux/.rtw_proc.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/os_dep/linux/.rtw_proc.o.d -------------------------------------------------------------------------------- /os_dep/linux/custom_gpio_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/os_dep/linux/custom_gpio_linux.c -------------------------------------------------------------------------------- /os_dep/linux/ioctl_cfg80211.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/os_dep/linux/ioctl_cfg80211.c -------------------------------------------------------------------------------- /os_dep/linux/ioctl_cfg80211.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/os_dep/linux/ioctl_cfg80211.h -------------------------------------------------------------------------------- /os_dep/linux/ioctl_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/os_dep/linux/ioctl_linux.c -------------------------------------------------------------------------------- /os_dep/linux/ioctl_mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/os_dep/linux/ioctl_mp.c -------------------------------------------------------------------------------- /os_dep/linux/mlme_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/os_dep/linux/mlme_linux.c -------------------------------------------------------------------------------- /os_dep/linux/os_intfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/os_dep/linux/os_intfs.c -------------------------------------------------------------------------------- /os_dep/linux/pci_intf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/os_dep/linux/pci_intf.c -------------------------------------------------------------------------------- /os_dep/linux/pci_ops_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/os_dep/linux/pci_ops_linux.c -------------------------------------------------------------------------------- /os_dep/linux/recv_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/os_dep/linux/recv_linux.c -------------------------------------------------------------------------------- /os_dep/linux/rhashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/os_dep/linux/rhashtable.c -------------------------------------------------------------------------------- /os_dep/linux/rhashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/os_dep/linux/rhashtable.h -------------------------------------------------------------------------------- /os_dep/linux/rtw_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/os_dep/linux/rtw_android.c -------------------------------------------------------------------------------- /os_dep/linux/rtw_cfgvendor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/os_dep/linux/rtw_cfgvendor.c -------------------------------------------------------------------------------- /os_dep/linux/rtw_cfgvendor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/os_dep/linux/rtw_cfgvendor.h -------------------------------------------------------------------------------- /os_dep/linux/rtw_proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/os_dep/linux/rtw_proc.c -------------------------------------------------------------------------------- /os_dep/linux/rtw_proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/os_dep/linux/rtw_proc.h -------------------------------------------------------------------------------- /os_dep/linux/rtw_rhashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/os_dep/linux/rtw_rhashtable.c -------------------------------------------------------------------------------- /os_dep/linux/rtw_rhashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/os_dep/linux/rtw_rhashtable.h -------------------------------------------------------------------------------- /os_dep/linux/wifi_regd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/os_dep/linux/wifi_regd.c -------------------------------------------------------------------------------- /os_dep/linux/xmit_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/os_dep/linux/xmit_linux.c -------------------------------------------------------------------------------- /os_dep/osdep_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/os_dep/osdep_service.c -------------------------------------------------------------------------------- /platform/custom_country_chplan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/platform/custom_country_chplan.h -------------------------------------------------------------------------------- /platform/platform_ARM_SUN50IW1P1_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/platform/platform_ARM_SUN50IW1P1_sdio.c -------------------------------------------------------------------------------- /platform/platform_ARM_SUNnI_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/platform/platform_ARM_SUNnI_sdio.c -------------------------------------------------------------------------------- /platform/platform_ARM_SUNxI_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/platform/platform_ARM_SUNxI_sdio.c -------------------------------------------------------------------------------- /platform/platform_ARM_SUNxI_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/platform/platform_ARM_SUNxI_usb.c -------------------------------------------------------------------------------- /platform/platform_ARM_WMT_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/platform/platform_ARM_WMT_sdio.c -------------------------------------------------------------------------------- /platform/platform_RTK_DMP_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/platform/platform_RTK_DMP_usb.c -------------------------------------------------------------------------------- /platform/platform_aml_s905_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/platform/platform_aml_s905_sdio.c -------------------------------------------------------------------------------- /platform/platform_aml_s905_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/platform/platform_aml_s905_sdio.h -------------------------------------------------------------------------------- /platform/platform_arm_act_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/platform/platform_arm_act_sdio.c -------------------------------------------------------------------------------- /platform/platform_hisilicon_hi3798_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/platform/platform_hisilicon_hi3798_sdio.c -------------------------------------------------------------------------------- /platform/platform_hisilicon_hi3798_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/platform/platform_hisilicon_hi3798_sdio.h -------------------------------------------------------------------------------- /platform/platform_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/platform/platform_ops.c -------------------------------------------------------------------------------- /platform/platform_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/platform/platform_ops.h -------------------------------------------------------------------------------- /platform/platform_sprd_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/platform/platform_sprd_sdio.c -------------------------------------------------------------------------------- /platform/platform_zte_zx296716_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/platform/platform_zte_zx296716_sdio.c -------------------------------------------------------------------------------- /platform/platform_zte_zx296716_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/platform/platform_zte_zx296716_sdio.h -------------------------------------------------------------------------------- /rtl8822c.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/rtl8822c.mk -------------------------------------------------------------------------------- /rtw88_blacklist.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/rtw88_blacklist.conf -------------------------------------------------------------------------------- /runwpa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/runwpa -------------------------------------------------------------------------------- /wlan0dhcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanro49/rtl88x2ce-dkms/HEAD/wlan0dhcp --------------------------------------------------------------------------------