LINUX 设备驱动开发详解 + 源码 非常有用
2022-01-28 08:46:18 11.37MB LINUX 设备 驱动开发 详解
1
linux 驱动 外围设备
2022-01-18 18:06:25 1.85MB linux arm 驱动程序
1
宋宝华老师的力作《 Linux设备驱动开发详解_宋宝华著(高清带目录第二版).pdf》,高清带目录第二版,与之前传的扫描版不同,这个资源只有37M,而不100M左右。
1
BSP和设备驱动开发指南。对官方文档进行了翻译。 RTEMS, 即: 实时多处理器系统(Real Time Executive for Multiprocessor Systems),是一个开源的无版税实时嵌入操作系统RTOS。 它最早用于美国国防系统,早期的名称为实时导弹系统(Real Time Executive for Missile Systems),后来改名为实时军用系统(Real Time Executive for Military Systems),现在由OAR公司负责版本的升级与维护。无论是航空航天、军工,还是民用领域RTEMS都有着极为广泛的应用。
2022-01-13 16:07:58 961KB rtems 设备驱动 BSP 中文翻译
1
USB设备驱动开发深度解析-宋宝华.pdf
2022-01-13 14:52:33 1.59MB USB设备驱动
1
linux设备驱动源码(宋宝华版),很全的源码
2022-01-12 19:59:23 23.91MB 设备驱动
1
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; } }
intouch Daserver AB厂家设备接口
2022-01-04 10:52:20 59.92MB Inouch AB设备驱动
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