Windows WDM设备驱动程序开发指南
2022-02-25 21:47:44 11.94MB wdm 驱动开发
1
基于ARM9的嵌入式Linux系统研究及设备驱动程序的开发
2022-02-24 21:00:46 131KB linux 运维 服务器 arm
linux 添加字符设备驱动程序及测试程序,linux下采用模块方法,添加一个新的设备驱动程序。要求添加字符设备的驱动。另附一个应用程序,测试添加的驱动程序. int main(void) { int fd; char buf[MAX_SIZE]; char get[MAX_SIZE]; char devName[20], dir[50] = "/dev/"; system("ls /dev/"); printf("Please input the device's name you wanna to use :"); gets(devName); strcat(dir, devName); fd = open(dir, O_RDWR | O_NONBLOCK); if (fd != -1) { read(fd, buf, sizeof(buf)); printf("The device was inited with a string : %s\n", buf); /* 测试写 */ printf("Please input a string :\n"); gets(get); write(fd, get, sizeof(get)); /* 测试读 */ read(fd, buf, sizeof(buf)); system("dmesg"); printf("\nThe string in the device now is : %s\n", buf); close(fd); return 0; } else { printf("Device open failed\n"); return -1; } }
用WinDriver开发PCI设备驱动程序
2022-01-02 10:40:11 159KB 用WinDriver开发PCI设备驱动程序
1
Windows设备驱动程序WDF开发及源码,需要的同志请拿走
2022-01-01 11:31:47 55.52MB WDF
1
LINUX设备驱动程序(第3版)魏永明译;《LINUX设备驱动程序(第3版)》详细介绍了Linux。如果您希望在Linux操作系统上支持计算机外部设备,或者在Linux上运行新的硬件,或者只是希望一般性地了解Linux内核的编程,就一定要阅读本书。
2021-12-30 11:26:13 46.93MB LINUX 驱动
1
i2c设备驱动程序读写EEPROM,I2C eeprom的设备驱动的读取和写入的协议都算是比较简单的。在实际中,也可能遇到更加复杂的i2c设备驱动,这就需要我们熟悉具体设备的业务协议,通过sysfs或者字符设备等,提供给用户操作的api接口。
2021-12-29 20:36:37 41KB i2c
1
《Linux设备驱动程序》的源码,Linux设备驱动程序这本书堪称经典,只有结合源码,才能真正学习该书的精华。另外还有Linux别的驱动解析
2021-12-29 20:05:39 24.05MB Linux 设备驱动
1
现阶段,NI-VISA作为世界通用的仪器设计标准,已经在开发虚拟仪器设备驱动方面有了广泛应用。简要介绍了该标准的实现方案,基本架构,为初学者做一个知识普及。
2021-12-28 23:21:51 195KB NI-VISA 设备驱动程序
1
可以copy文字。 备受好评的VxWorks下设备驱动程序经典书籍。业内人都知道。
2021-12-28 11:41:03 11.72MB VxWorks 驱动 BSP
1