随笔分类 -  驱动内核

上一页 1 2 3 4 5 6 7 8 9 10 ··· 18 下一页

驱动内核
cdev设备 字符设备驱动例子
摘要:#include <linux/init.h> #include <linux/module.h> #include <linux/cdev.h> #include <linux/fs.h> #include <linux/device.h> #include <linux/uaccess.h> # 阅读全文

posted @ 2023-04-01 03:05 lydstory 阅读(29) 评论(0) 推荐(0) 编辑

内核事件队列
摘要:typedef unsigned int UINT32; typedef unsigned short UINT16; typedef struct event_handle_ { UINT32 eventID; UINT32 f2Handle; } event_handle; struct eve 阅读全文

posted @ 2023-03-31 09:28 lydstory 阅读(13) 评论(0) 推荐(0) 编辑

内核同步机制-自旋锁(spin_lock)
摘要:typedef struct spinlock { union { struct raw_spinlock rlock; //自旋锁的核心成员是和raw_spinlock锁。 #ifdef CONFIG_DEBUG_LOCK_ALLOC //如果打开次配置,会增加调试信息存储 # define LO 阅读全文

posted @ 2023-03-31 08:25 lydstory 阅读(153) 评论(0) 推荐(0) 编辑

BuildCommDCB 串口编程
摘要:if (!BuildCommDCB("9600,n,8,1", &dcb)) { 阅读全文

posted @ 2023-03-31 08:03 lydstory 阅读(113) 评论(0) 推荐(0) 编辑

SetupDiEnumDeviceInterfaces
摘要:SetupDiEnumDeviceInterfaces 阅读全文

posted @ 2023-03-31 08:02 lydstory 阅读(11) 评论(0) 推荐(0) 编辑

Atheros AR9285
摘要:Atheros AR9285 过时的百M 无线网卡 阅读全文

posted @ 2023-03-31 07:46 lydstory 阅读(70) 评论(0) 推荐(0) 编辑

struct net_device net_device_stats
摘要:struct net_device *netdev; /* net device handle (wifi%d) */ struct net_device_stats devstats; /* net device statisitics */ https://blog.csdn.net/weixi 阅读全文

posted @ 2023-03-31 05:20 lydstory 阅读(22) 评论(0) 推荐(0) 编辑

TAILQ_ENTRY
摘要:https://blog.csdn.net/u010386121/article/details/116857526 阅读全文

posted @ 2023-03-31 04:40 lydstory 阅读(13) 评论(0) 推荐(0) 编辑

OMCI
摘要:OMCI(光网络单元管理控制接口,即ONU Management and Control Interface)是GPON标准中定义的一种OLT与ONT之间信息交互的协议,用于在GPON网络中OLT对ONT的管理,包括配置管理、故障管理、性能管理和安全管理等 ont就是我们俗称的光猫,分为sfu(si 阅读全文

posted @ 2023-03-31 04:13 lydstory 阅读(177) 评论(0) 推荐(0) 编辑

为linux内核添加FPGA字符设备驱动程序
摘要:https://blog.csdn.net/lingshengxueyuan/article/details/108552547 阅读全文

posted @ 2023-03-29 08:14 lydstory 阅读(23) 评论(0) 推荐(0) 编辑

Marvell交换芯片88E6321/88E6320驱动总结-寄存器篇
摘要:https://blog.csdn.net/vesamount/article/details/88628714/ 阅读全文

posted @ 2023-03-29 05:16 lydstory 阅读(306) 评论(0) 推荐(0) 编辑

GT_QD_DEV
摘要:/* * Typedef: struct GT_QD_DEV * * Description: Includes Tapi layer switch configuration data. * * Fields: * deviceId - The device type identifier. * 阅读全文

posted @ 2023-03-29 04:30 lydstory 阅读(40) 评论(0) 推荐(0) 编辑

Internet gateway message protocol 因特网网关信息协议
摘要:Internet gateway message protocol 因特网网关信息协议 igmp snooping 交换芯片驱动上实现 阅读全文

posted @ 2023-03-29 04:07 lydstory 阅读(12) 评论(0) 推荐(0) 编辑

spin_lock_irqsave
摘要:spin_lock_irqsave https://blog.csdn.net/lzn948055097/article/details/120302623 /** * down - acquire the semaphore * @sem: the semaphore to be acquired 阅读全文

posted @ 2023-03-29 04:04 lydstory 阅读(14) 评论(0) 推荐(0) 编辑

88E6095芯片VLAN技术分析
摘要:/* * typedef: struct GT_VTU_ENTRY * * Description: VLAN tarnslaton unit Entry * Each field in the structure is device specific, i.e., some fields may 阅读全文

posted @ 2023-03-29 02:04 lydstory 阅读(59) 评论(0) 推荐(0) 编辑

MV88E6097
摘要:https://www.xjishu.com/zhuanli/62/201720309775.html 交换芯片驱动--网卡驱动 利用网卡驱动在以太网上实现VLAN技术 http://www.qianyan.biz/Patent-Display/02128105.html 阅读全文

posted @ 2023-03-29 01:58 lydstory 阅读(39) 评论(0) 推荐(0) 编辑

vlan代码
摘要:/dev/vlan_ioctl0 VLAN一般指虚拟局域网。 VLAN(Virtual Local Area Network)的中文名为"虚拟局域网"。虚拟局域网(VLAN)是一组逻辑上的设备和用户 阅读全文

posted @ 2023-03-29 01:52 lydstory 阅读(48) 评论(0) 推荐(0) 编辑

Security Association
摘要:英文缩写SA 英文全称Security Association 中文解释安全联盟 缩写简介IPSec对数据流提供的安全服务通过安全联盟SA来实现,它包括协议、算法、密钥等内容,具体确定了如何对IP报文进行处理。 阅读全文

posted @ 2023-03-29 01:35 lydstory 阅读(48) 评论(0) 推荐(0) 编辑

hostapd wext
摘要:大家好,又见面了,我是你们的朋友全栈君。 一、hostapd简介 hostapd 是一个用户态用于AP和认证服务器的守护进程。 它实现了IEEE 802.11相关的接入管理,IEEE 802.1X/WPA/WPA2/EAP 认证, RADIUS客户端,EAP服务器和RADIUS 认证服务器。 二、h 阅读全文

posted @ 2023-03-24 08:57 lydstory 阅读(186) 评论(0) 推荐(0) 编辑

精通WIFI通信协议包括802.11a/b/g/n/ac/ax、802.11 k/v/r、Easy-mesh、WPA3等;
摘要:精通WIFI通信协议包括802.11a/b/g/n/ac/ax、802.11 k/v/r、Easy-mesh、WPA3等; 精通WIFI通信协议包括802.11a/b/g/n/ac/ax、802.11 k/v/r、Easy-mesh、WPA3等; 阅读全文

posted @ 2023-03-24 08:48 lydstory 阅读(95) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 10 ··· 18 下一页

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

统计

点击右上角即可分享
微信分享提示