实例介绍
8192CU LINUX驱动/****************************************************************************** * * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved. * * This program is free software; you can redistribute it and/or modify it * under the te
【实例截图】
【核心代码】
8192
└── 8192
├── autoconf_rtl8192c_usb_linux.h
├── autoconf_rtl8192d_usb_linux.h
├── clean
├── core
│ ├── efuse
│ │ └── rtw_efuse.c
│ ├── rtw_br_ext.c
│ ├── rtw_cmd.c
│ ├── rtw_debug.c
│ ├── rtw_eeprom.c
│ ├── rtw_ieee80211.c
│ ├── rtw_io.c
│ ├── rtw_ioctl_query.c
│ ├── rtw_ioctl_rtl.c
│ ├── rtw_ioctl_set.c
│ ├── rtw_iol.c
│ ├── rtw_mlme.c
│ ├── rtw_mlme_ext.c
│ ├── rtw_mp.c
│ ├── rtw_mp_ioctl.c
│ ├── rtw_p2p.c
│ ├── rtw_pwrctrl.c
│ ├── rtw_recv.c
│ ├── rtw_rf.c
│ ├── rtw_security.c
│ ├── rtw_sta_mgt.c
│ ├── rtw_wlan_util.c
│ └── rtw_xmit.c
├── hal
│ ├── hal_init.c
│ ├── rtl8192c
│ │ ├── rtl8192c_cmd.c
│ │ ├── rtl8192c_dm.c
│ │ ├── rtl8192c_hal_init.c
│ │ ├── rtl8192c_mp.c
│ │ ├── rtl8192c_phycfg.c
│ │ ├── rtl8192c_rf6052.c
│ │ ├── rtl8192c_rxdesc.c
│ │ ├── rtl8192c_sreset.c
│ │ └── usb
│ │ ├── Hal8192CUHWImg.c
│ │ ├── Hal8192CUHWImg_wowlan.c
│ │ ├── rtl8192cu_led.c
│ │ ├── rtl8192cu_recv.c
│ │ ├── rtl8192cu_xmit.c
│ │ ├── usb_halinit.c
│ │ ├── usb_ops_ce.c
│ │ ├── usb_ops_linux.c
│ │ └── usb_ops_xp.c
│ └── rtl8192d
│ ├── rtl8192d_cmd.c
│ ├── rtl8192d_dm.c
│ ├── rtl8192d_hal_init.c
│ ├── rtl8192d_mp.c
│ ├── rtl8192d_phycfg.c
│ ├── rtl8192d_rf6052.c
│ ├── rtl8192d_rxdesc.c
│ └── usb
│ ├── Hal8192DUHWImg.c
│ ├── Hal8192DUTestHWImg.c
│ ├── rtl8192du_led.c
│ ├── rtl8192du_recv.c
│ ├── rtl8192du_xmit.c
│ ├── usb_halinit.c
│ └── usb_ops_linux.c
├── ifcfg-wlan0
├── include
│ ├── autoconf.h
│ ├── basic_types.h
│ ├── byteorder
│ │ ├── big_endian.h
│ │ ├── generic.h
│ │ ├── little_endian.h
│ │ ├── swabb.h
│ │ └── swab.h
│ ├── circ_buf.h
│ ├── cmd_osdep.h
│ ├── drv_conf.h
│ ├── drv_types_ce.h
│ ├── drv_types.h
│ ├── drv_types_linux.h
│ ├── drv_types_xp.h
│ ├── ethernet.h
│ ├── farray.h
│ ├── h2clbk.h
│ ├── Hal8192CEHWImg.h
│ ├── Hal8192CPhyCfg.h
│ ├── Hal8192CPhyReg.h
│ ├── Hal8192CUHWImg.h
│ ├── Hal8192CUHWImg_wowlan.h
│ ├── Hal8192DEHWImg.h
│ ├── Hal8192DETestHWImg.h
│ ├── Hal8192DPhyCfg.h
│ ├── Hal8192DPhyReg.h
│ ├── Hal8192DUHWImg.h
│ ├── Hal8192DUTestHWImg.h
│ ├── hal_init.h
│ ├── ieee80211_ext.h
│ ├── ieee80211.h
│ ├── if_ether.h
│ ├── ioctl_cfg80211.h
│ ├── ip.h
│ ├── mlme_osdep.h
│ ├── mp_custom_oid.h
│ ├── nic_spec.h
│ ├── osdep_ce_service.h
│ ├── osdep_intf.h
│ ├── osdep_service.h
│ ├── pci_hal.h
│ ├── pci_ops.h
│ ├── pci_osintf.h
│ ├── recv_osdep.h
│ ├── rtl8192c_cmd.h
│ ├── rtl8192c_dm.h
│ ├── rtl8192c_event.h
│ ├── rtl8192c_hal.h
│ ├── rtl8192c_led.h
│ ├── rtl8192c_recv.h
│ ├── rtl8192c_rf.h
│ ├── rtl8192c_spec.h
│ ├── rtl8192c_sreset.h
│ ├── rtl8192c_xmit.h
│ ├── rtl8192d_cmd.h
│ ├── rtl8192d_dm.h
│ ├── rtl8192d_hal.h
│ ├── rtl8192d_led.h
│ ├── rtl8192d_recv.h
│ ├── rtl8192d_rf.h
│ ├── rtl8192d_spec.h
│ ├── rtl8192d_xmit.h
│ ├── rtw_android.h
│ ├── rtw_br_ext.h
│ ├── rtw_byteorder.h
│ ├── rtw_cmd.h
│ ├── rtw_debug.h
│ ├── rtw_eeprom.h
│ ├── rtw_efuse.h
│ ├── rtw_event.h
│ ├── rtw_ht.h
│ ├── rtw_ioctl.h
│ ├── rtw_ioctl_query.h
│ ├── rtw_ioctl_rtl.h
│ ├── rtw_ioctl_set.h
│ ├── rtw_io.h
│ ├── rtw_iol.h
│ ├── rtw_led.h
│ ├── rtw_mlme_ext.h
│ ├── rtw_mlme.h
│ ├── rtw_mp.h
│ ├── rtw_mp_ioctl.h
│ ├── rtw_mp_phy_regdef.h
│ ├── rtw_p2p.h
│ ├── rtw_pwrctrl.h
│ ├── rtw_qos.h
│ ├── rtw_recv.h
│ ├── rtw_rf.h
│ ├── rtw_security.h
│ ├── rtw_version.h
│ ├── rtw_xmit.h
│ ├── sdio_hal.h
│ ├── sdio_ops_ce.h
│ ├── sdio_ops.h
│ ├── sdio_ops_linux.h
│ ├── sdio_ops_xp.h
│ ├── sdio_osintf.h
│ ├── sta_info.h
│ ├── usb_hal.h
│ ├── usb_ops.h
│ ├── usb_osintf.h
│ ├── usb_vendor_req.h
│ ├── wifi.h
│ ├── wlan_bssdef.h
│ └── xmit_osdep.h
├── Kconfig
├── make_drv
├── Makefile
├── os_dep
│ ├── linux
│ │ ├── ioctl_cfg80211.c
│ │ ├── ioctl_linux.c
│ │ ├── mlme_linux.c
│ │ ├── os_intfs.c
│ │ ├── pci_intf.c
│ │ ├── recv_linux.c
│ │ ├── rtw_android.c
│ │ ├── sdio_intf.c
│ │ ├── usb_intf.c
│ │ └── xmit_linux.c
│ └── osdep_service.c
└── wlan0dhcp
12 directories, 179 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论