搜索资源列表
Linux_driver_designe
- Linux系统中,设备驱动程序是操作系统内核的重要组成部分,在 与硬件设备之间 建立了标准的抽象接口。通过这个接口,用户可以像处理普通文件一样,对硬件设 备进行打开(open)、关闭(close)、读写(read/write)等操作。通过分析和设计设 备驱动程序,可以深入理解Linux系统和进行系统开发-Linux system, device drivers operating system kernel is an important component, the equipme
openhpi-1.9.2.tar
- HIP 硬件设备管理标准接口,SAF定义的标准接口实现-HIP hardware device management standard interfaces, SAF definition of the standard interfaces
micromobility.tar
- 运行于linux上的CIMS套件,用于做移动设备的IP测试。注意该软件是需要一定硬件支持的
W83791d-Linux
- W83791d是华帮公司生产的通用的具有I2C总线接口的硬件设备监控芯片。此芯片可以监控10种电压的输入信号,5种风扇的转速,3种温度的输入等。在我们的存储项目种,目前只是用到了电源电压的监控和硬盘温度的监控。驱动的移植主要是借鉴了I2C的linux下的标准架构和一种linux的新的文件系统—sysfs文件系统。
linuxmtd
- Linux MTD介绍: MTD(memory technology device内存技术设备)是用于访问memory设备(ROM、flash)的Linux的子系 统。MTD的主要目的是为了使新的memory设备的驱动更加简单,为此它在硬件和上层之间提供了一个 抽象的接口。MTD的所有源代码在/drivers/mtd子目录下。我将CFI接口的MTD设备分为四层(从设备节 点直到底层硬件驱动),这四层从上到下依次是:设备节点、MTD设备层、MTD原始设备层和硬件驱 动层。
hwclock
- Linux C程序, 用于同步rtc读取得时间和kernel的时间, 因为有时由于硬件的影响,这两个时间会产生差异。 程序相当于hwclock, 可用于嵌入式设备上。-Linux C program, is used to syncronize the time bwtween RTC and kernel time, since sometimes the two time differs because of hardware problem on embedded equipment.
11linux
- Linux系统中,设备驱动程序是操作系统内核的重要组成部分,在 与硬件设备之间建立了标准的抽象接口。通过这个接口,用户可以像处理普通文件一样,对硬件设备进行打开(open)、关闭(close)、读写(read/write)等操作。通过分析和设计设备驱动程序,可以深入理解Linux系统和进行系统开发。本文通过一个简单的例子来说明设备驱动程序的设计。 -Linux system, device drivers the operating system kernel are an importan
tool-player.tar
- 此Tool-play程序为Linux平台下基于alsa声音驱动的硬件设备的测试程序,可以播放mp3,测试声卡工作状态-This Tool-play program for the Linux platform alsa-based voice-driven test procedures for hardware devices, can play mp3, sound card testing job status
Construction_of_Embedded
- 本书讲述了嵌入式系统硬件的构成,再简要介绍了操作系统的知识,介绍了嵌入式linux及其软件开发环境,就交叉编译及设备驱动程序等也做了相关的叙述。-This book describes the composition of embedded systems hardware, and then briefly introduce the knowledge of the operating system on embedded linux and software development env
LINUX1.0
- 内核是系统的心脏,是运行程序和管理像磁盘和打印机等硬件设备的核心程序。Linux是最受欢迎的自由电脑作业系统核心。它是一个用C语言写成,符合POSIX标准的类Unix作业系统。本程序是linux1.0的内核源码!-Kernel is the heart of the system, run the program and management are as disk and printer hardware, such as the core of the procedure. Are the
ww
- 数据包过滤(packet filtering)是一个用软件或硬件设备对向网络上传或从网络下载的数据流进行有选择的控制过程。数据包过滤器通常是在将数据包从一个网站向另一个网络传送的过程中允许或阻止它们的通过(更为常见的是在从英特网向内部网络传输数据时,或从内部网络向英特网传输)。数据包过滤类防火墙对所有通过它进出的数据包进行检查,并阻止那些不符合既定规则数据包的传输。-Packet filtering (packet filtering) is a software or hardware de
udev.tar
- udev是一种工具,它能够根据系统中的硬件设备的状态动态更新设备文件,包括设备文件的创建,删除等。-udev is a tool, it can according to the system in the state of hardware devices dynamic update documents, including the creation of device files, delete and so on.
s111
- 通过本课学习,学员可以从用户设备I/O编程角度深入了解设备驱动的原理;通过了解字符设备驱动框架和具体硬件设备I/O操作,能够进行字符设备驱动开发;了解linux2.6内核的设备模型及掌握udev的使用
LINUX-Application-development
- Linux是一种自由和开放源码的类Unix操作系统。目前存在着许多不同的Linux,但它们都使用了Linux内核。Linux可安装在各种计算机硬件设备中,从手机、平板电脑、路由器和视频游戏控制台,到台式计算机、大型机和超级计算机。Linux是一个领先的操作系统,世界上运算最快的10台超级计算机运行的都是Linux操作系统-Linux is a free and open source of the Unix operating system. At present there exist man
The.Linux.Kernel.Primer
- Linux是一种自由和开放源码的类Unix操作系统。目前存在着许多不同的Linux,但它们都使用了Linux内核。Linux可安装在各种计算机硬件设备中,从手机、平板电脑、路由器和视频游戏控制台,到台式计算机、大型机和超级计算机。Linux是一个领先的操作系统,世界上运算最快的10台超级计算机运行的都是Linux操作系统.-Linux is a Unix-like computer operating system assembled under the model of free and op
LINUX-driver-interface-programming
- Linux系统中,设备驱动程序是操作系统内核的重要组成部分,在与硬件设备之间建立了标准的抽象接口。通过这个接口,用户可以像处理普通文件一样,对硬件设备进行打开(open)、关闭(close)、读写(read/write)等操作。通过学习和分析设备驱动程序,更深入理解Linux系统设备驱动开发。-Linux system, device drivers are an important part of the operating system kernel, and a standard abst
linux
- 本资料为linux编程,讲述了嵌入式系统的调试、连接、硬件设备、存储系统等。-The information for Linux programming, debugging, about the embedded system connecting, hardware equipment, storage system etc..
LinuxaOpenSourceGeniusGuide3
- Linux是一种自由和开放源码的操作系统,存在着许多不同的Linux版本。Linux可安装在各种计算机硬件设备中,比如手机、平板电脑、路由器、视频游戏控制台、台式计算机、大型机和超级计算机。Linux是一个领先的操作系统,世界上运算最快的10台超级计算机运行的都是Linux操作系统。严格来讲,Linux这个词本身只表示Linux内核,但实际上人们已经习惯了用Linux来形容整个基于Linux内核,并且使用GNU 工程各种工具和数据库的操作系统。本书主要讲解如何操纵开源源码,进行系统内部的控制和使
ipmitool-1.8.12.tar
- ipmitool 是基于Intel主导的IPMI规范编写的再命令行模式使用的工具,通过发送IPMI命令来监控服务器硬件设备的健康信息。-IPMItool is a utility for managing and configuring devices that support the Intelligent Platform Management Interface (IPMI) version 1.5 and version 2.0 specifications. IPMI is an op
MATLAB-coding-under-LINUX
- 探讨LINUX环境下MATLAB的混编方法,应用MATLAB 与C 语言的接口C-MEX 函数, 实现读取系统硬件设备( joystick) 数据的方法-Discussion LINUX environment MATLAB Interface C-MEX function of mixed methods, application of MATLAB and C language to read the system hardware (joystick) methods of data