搜索资源列表
Linux24_char_device_driver
- Linux 2.4内核字符设备驱动开发实例。 是Linux下驱动开发人员再好不过的参考源码。编译之后加载驱动,附有测试程序进行驱动的测试! Linux kernel 2.4 char device driver example.-character device driver development example. Linux is driven development staff a better reference source. After loading
zifuqudong
- 一个linux下字符设备驱动程序的编写例子,是自己参考了相关资料的修改版本
linuxuse
- 介绍了Linux字符设备驱动程序中建立设备,初始化设备、设备的资源分配和如何访问设备方法以及相关函数的实现
linux-character-driver
- Linux下的简单字符设备驱动的源码,有说明文件说明如何编译和安装卸载测试驱动
test1_src
- linux下的基本虚拟字符设备驱动程序,以模块的形式提供。-the basic characters of virtual device driver to the form module.
第七章:设备管理实验
- Linux设备管理源码 字符设备驱动程序:设计两个终端设备文件实现一个字符设备驱动程序,使一对进程之间利用该字符设备驱动程序能互相传递可变长度的信息。-equipment management source Linux device drivers characters : two terminal equipment design documents for a character device driver, so that a process between the use of the
vfifo
- linux下的字符设备驱动代码,用来加载新的驱动-under linux character device driver code, used to load the new driver
922624schar
- linux字符设备驱动程序schar 内附makefile-linux character device driver makefile containing Schar
Linuxdevicedriverchardriver
- Linux设备驱动程序学习(1)-字符设备驱动程序 - Linux设备驱动程序.rar-Linux设备驱动程序学习(1)-字符设备驱动程序- Linux设备驱动程序.rar
linuxqudong-4
- 本书介绍的主题会越来越复杂,它们可以分成两个部分。第一部分(第1章到第10章)从内核模块的正确安装开始介绍,会涉及到写字符设备驱动程序需要面对的各方面的问题。每章会讨论一个独立主题,并且在末尾包含一个“符号表”,在实际开发时,可以用作参考。当我写自己的设备驱动程序时,我发现我会回头去查自己写的章节,我希望你也可以充分利用这个符号表。-linux qudong kai fa zhong wenban
LinuxDrv
- Linux驱动示例,入门推荐.有字符设备驱动,块设备驱动.-Linux driver example, the entry recommended. There is character device drivers, block device drivers.
linuxchardev
- linux下的字符设备驱动,参加培训时的资料-chardev
globalfifo_async
- linux 字符设备驱动-globalfifo_async-linux driver--globalfifo_async
drive
- C语言实现的Linux字符设备驱动,能够注册字符设备模块,文件中含有2个脚本文件,实现字符设备模块的加载和卸载-C language implementation of the Linux character device driver can register character device module, the file contains two scr ipts, the character devices to achieve the loading and unloading mo
Linux-driver-development16
- 作者:华清远见嵌入式学院。《Linux设备驱动开发详解》(08&09年度畅销榜TOP50)第16章、Linux网络设备驱动。网络设备是完成用户数据包在网络媒介上发送和接收的设备,它将上层协议传递下来的数据包以特定的媒介访问控制方式进行发送,并将接收到的数据包传递给上层协议。 与字符设备和块设备不同,网络设备并不对应于/dev目录下的文件,应用程序最终使用套接字(socket)完成与网络设备的接口。因而在网络设备身上并不能体现出“一切都是文件”的思想。Linux系统对网络设备驱动定义了4个层次
Linux-driver-development13
- 作者:华清远见嵌入式学院。《Linux设备驱动开发详解》(08&09年度畅销榜TOP50)第13章、Linux块设备驱动。块设备是与字符设备并列的概念,这两类设备在Linux中驱动的结构有较大差异,总体而言,块设备驱动比字符设备驱动要复杂得多,在I/O操作上表现出极大的不同,缓冲、I/O调度、请求队列等都是与块设备驱动相关的概念。本章将详细讲解Linux块设备驱动的编程方法。13.1节讲解块设备I/O操作的特点,分析字符设备与块设备在I/O操作上的差异。13.2节从整体上描述Linux块设备驱动
Linux-driver-development6
- 作者:华清远见嵌入式学院。《Linux设备驱动开发详解》(08&09年度畅销榜TOP50)第6章、字符设备驱动。在Linux设备驱动中,字符设备驱动较为基础。本章主要讲解Linux字符设备驱动程序的结构及其主要组成部分的编程方法。6.1节讲解了Linux字符设备驱动的关键数据结构cdev及file_operations结构体的操作方法,并分析了Linux字符设备的整体结构,给出了简单的设计模板。6.2节讲解了本章及后续各章所基于的globalmem虚拟字符设备,第6~9章都将基于该虚拟设备实例进
Linux-driver-development12
- 作者:华清远见嵌入式学院。《Linux设备驱动开发详解》(08&09年度畅销榜TOP50)第12章、Linux字符设备驱动综合实例。本章将分析5个典型的字符设备驱动,在这些驱动中,将灵活地运用到前面各章所讲解的内容。12.1节讲解按键的设备驱动,加深读者对字符设备驱动架构、阻塞与非阻塞、中断、定时器等相关知识的理解。12.2节讲解触摸屏的设备驱动,触摸屏的设备驱动比按键的设备驱动稍微复杂一些,但是很类似。12.3节讲解TI的DSP提供给通用CPU的HPI(主机并行接口)的设备驱动,硬件结构为AR
1-Linux
- Linux字符设备驱动程序设计 -Linux character device driver design a character device driver design
chrdev
- linux下,字符设备驱动:模块三要素,file_operations结构体,字符设备的注册,Makefile编写,全部资料(Under Linux, character device drivers)