Welcome![Sign In][Sign Up]
Location:
Search - linux 2.6 usb

Search list

[Bookslinux设备驱动程序开发详解

Description: 详细讲述了linux设备驱动程序的开发,想学习linux下设备驱动程序开发工作的人员可以参考。文件清单列出如下: linuxdriver_code_tool |-- 03 | `-- 2.6内核升级工具 | |-- device-mapper-1.00.19-2.i386.rpm | |-- lvm2-2.00.25-1.01.i386.rpm | |-- mkinitrd-4.2.0.3.tar.tar | |-- module-init-tools-3.2.2.tar.bz2 | `-- modutils-2.4.5-1.src.rpm |-- 04 | |-- 内核模块参数范例 | | `-- book.c | |-- 内核模块导出符号 | | `-- export_symb.c | `-- 最简单的内核模块 | `-- hello.c |-- 05 | `-- udev源代码 | `-- udev-114.tar.gz |-- 06 | |-- globalmem驱动 | | `-- globalmem.c | `-- 包含2个globalmem设备的驱动 | `-- globalmem_two.c |-- 07 | `-- 含并发控制的globalmem驱动 | `-- globalmem_lock.c |-- 08 | |-- globalfifo驱动 | | `-- globalfifo.c | `-- poll应用程序范例 | `-- pollmonitor.c |-- 09 | |-- 异步通知应用程序范例 | | `-- asyncmonitor.c | `-- 支持异步通知的globalfifo | `-- globalfifo_async.c |-- 10 | |-- S3C2410实时钟驱动 | | `-- s3c2410-rtc.c | `-- 秒设备驱动与应用程序 | |-- second.c | `-- second_test.c |-- 11 | |-- DMA范例 | | |-- 3c505.c | | |-- 3c505.h | | `-- dma.h | `-- 静态映射范例 | `-- mach-smdk2440.c |-- 12 | |-- NVRAM驱动 | | `-- generic_nvram.c | |-- 触摸屏驱动 | | |-- 作为input设备 | | | |-- s3c2410_ts.c | | | `-- s3c2410_ts.h | | `-- 作为普通字符设备 | | `-- s3c2410-ts.c | |-- 看门狗驱动 | | `-- s3c2410_wdt.c | `-- 平台设备 | `-- devs.c |-- 13 | |-- IDE驱动 | | |-- ide-disk.c | | `-- ide-h8300.c | `-- RAMDISK驱动 | `-- rd.c |-- 14 | |-- S3C2410串口驱动 | | |-- regs-gpio.h | | |-- regs-serial.h | | `-- s3c2410.c | `-- 串口核心层 | |-- serial_core.c | `-- serial_core.h |-- 15 | |-- S3C2410 I2C主机驱动 | | |-- i2c-s3c2410.c | | |-- iic.h | | |-- regs-gpio.h | | `-- regs-iic.h | `-- SAA711x I2C设备驱动 | `-- saa711x.c |-- 16 | `-- CS8900以太网设备驱动 | |-- cs89x0.c | `-- cs89x0.h |-- 17 | |-- ALSA工具及库 | | |-- alsa-driver-1.0.15.tar.bz2 | | |-- alsa-firmware-1.0.15.tar.bz2 | | |-- alsa-lib-1.0.15.tar.bz2 | | |-- alsa-oss-1.0.15.tar.bz2 | | |-- alsa-tools-1.0.15.tar.bz2 | | |-- alsa-utils-1.0.13.tar.bz2 | | `-- pyalsa-1.0.15.tar.bz2 | |-- ALSA驱动范例 | | |-- sa11xx-uda1341.c | | `-- uda1341.h | |-- ALSA应用程序范例 | | |-- pcm.c | | `-- pcm_min.c | |-- OSS驱动范例 | | `-- s3c2410-uda1341.c | `-- OSS应用程序范例 | |-- mixer.c | `-- sound.c |-- 18 | |-- FRAMEBUFFER应用程序范例 | | `-- fb_display | | |-- fb_display.c | | |-- fb_display.h | | |-- Makefile | | |-- README | | `-- test.c | `-- S3C2410 LCD驱动 | |-- s3c2410fb.c | `-- s3c2410fb.h |-- 19 | |-- busybox源代码 | | `-- busybox-1.2.1.tar.bz2 | |-- MTD工具 | | `-- mtd-utils-1.0.0.tar.gz | |-- nand驱动范例 | | `-- s3c2410.c | |-- nor驱动范例 | | `-- s3c2410nor.c | `-- yaffs&yaffs2源代码 | |-- yaffs.tar.gz | `-- yaffs2.tar.gz |-- 20 | |-- USB串口驱动 | | |-- usb-serial.c | | `-- usb-serial.h | |-- USB工具 | | `-- usbview-1.0.tar.tar | |-- USB骨架程序 | | `-- usb-skeleton.c | |-- USB键盘驱动 | | |-- input.h | | |-- usb_input.h | | `-- usbkbd.c | `-- usb主机控制器驱动范例 | |-- ohci-s3c2410.c | `-- usb-control.h |-- 21 | |-- PCI骨架程序 | | `-- pci-skeleton.c | `-- PCI驱动范例 | `-- i810_audio.c `-- 22 |-- 范例代码 | |-- oops范例 | | |-- oops_example.asm | | `-- oops_example.c | `-- proc范例 | `-- sim_proc.c `-- 内核调试工具 |-- ddd-3.3.11.tar.gz |-- gdbmod-2.4.bz2 |-- kdb-v4.4-2.6.15-rc5-common-1.bz2 |-- kdb-v4.4-2.6.15-rc5-common-2.bz2 |-- kdb-v4.4-2.6.15-rc5-i386-1.bz2 `-- linux-2.6.15.5-kgdb-2.4.tar.tar
Platform: | Size: 25078324 | Author: zxx000 | Hits:

[Otherlinux USB驱动程序

Description: 讲解了linux操作系统下USB主机和设备的驱动程序
Platform: | Size: 2640146 | Author: jerry006 | Hits:

[Streaming Mpeg4linux 下通用usb camera 驱动

Description: linux 下usb camera 驱动及应用程序源码,在samsung s3c2440平台下测试ok,兼容市面上大部分usb camera
Platform: | Size: 214717 | Author: skyfyy@163.com | Hits:

[Internet-Networkbluetooth_drive

Description: linux蓝牙USB HCI层驱动,简单明了非常适合蓝牙开发人员学习-HCI layer drive, a very simple and straightforward for developers to learn Bluetooth
Platform: | Size: 53248 | Author: 邓华利 | Hits:

[ARM-PowerPC-ColdFire-MIPSUSBLinuxDriverForARM

Description: linux环境下USB驱动程序,适用三星ARM2410B-linux environment USB driver, Samsung applied ARM2410B
Platform: | Size: 954368 | Author: 徐虎 | Hits:

[ARM-PowerPC-ColdFire-MIPSAT91RM9200_usb(2.4)

Description: linux2.4下的USB驱动程序源代码,非常详细-linux2.4 the USB driver source code, a very detailed
Platform: | Size: 5120 | Author: 王佐 | Hits:

[Embeded LinuxautoUdisk

Description: 平台:ARM9的嵌入式LINUX 自动检测U盘,挂载U盘的程序-platforms : ARM9 Embedded Linux automatically detects USB disk mount U procedures
Platform: | Size: 7168 | Author: 路晓光 | Hits:

[Embeded Linuxusb_scanner_driver

Description: Driver for USB Scanners (linux-2.6)-Driver for USB Scanners (linux- 2.6)
Platform: | Size: 18432 | Author: 陶昱良 | Hits:

[Linux-Unixzc0302

Description: 关于USB摄像头zc302的一些源代码资料,仅提供参考.-on USB camera zc302 some of the source code, only for reference.
Platform: | Size: 315392 | Author: wang sh | Hits:

[Embeded Linuxusb-skeleton

Description: This driver is based on the 2.6.3 version of drivers/usb/usb-skeleton.c but has been rewritten to be easy to read and use, as no locks are now needed anymore.
Platform: | Size: 3072 | Author: 张延斌 | Hits:

[Linux-Unixusb-skeleton

Description: usb驱动框架,都是建立在此基础上(linux 2.6.14测试)-usb driver framework, are built on the basis of this (linux 2.6.14 test)
Platform: | Size: 3072 | Author: hwj | Hits:

[Driver Developlinuxdriver_code_tool

Description: 本书是一本介绍Linux设备驱动开发理论、框架与实例的书,本书以Linux 2.6版本内核为蓝本,详细介绍自旋锁、信号量、完成量、中断顶/底半部、定时器、内存和I/O映射以及异步通知、阻塞I/O、非阻塞I/O等Linux 设备驱动理论;字符设备、块设备、TTY设备、I2C设备、LCD设备、音频设备、USB设备、网络设备、PCI设备等Linux设备驱动的架构和框架中各个复杂数据架构和函数的关系,并讲解了大量Linux驱动开发的大量实例,使读者能够独立开发各类Linux设备驱动。-This book is to introduce a Linux device driver development theories, frameworks and examples of the book, the book version of the kernel to Linux 2.6 is based on details of spin locks, semaphores, output, interrupt the top/at the end of the first half, timer , memory and I/O mapping as well as asynchronous notification, blocking I/O, non-blocking I/O such as Linux device driver theory character device, block device, TTY device, I2C devices, LCD devices, audio devices, USB devices, network devices, PCI devices, such as Linux device driver architecture and the framework of various complex data structure and function relationships, and on a large number of Linux-driven development of a large number of examples so that readers can be an independent development of all types of Linux device drivers.
Platform: | Size: 25064448 | Author: keke | Hits:

[Internet-Networkdm9601_2.6

Description: DM9601 USB网卡linux驱动,修改makefile就可以了。本人在linux 2.6.14.1测试通过。-DM9601 USB adapter linux driver, modify makefile it. I am in linux 2.6.14.1 test.
Platform: | Size: 10240 | Author: Sam | Hits:

[Embeded Linuxch341

Description: Lunux2.6下USB转串口驱动C语言源代码。-Under the Lunux2.6 usb to com drive
Platform: | Size: 2048 | Author: walker.bai | Hits:

[Linux-Unixlinux-2.6.10-ov511

Description: Linux 2.6内核环境下OV511 + ov7620驱动芯片驱动, USB接口,适用于该芯片的组合摄像头图像采集。-Linux 2.6 kernel under the environment of the OV511+ ov7620 driver chip preparation, USB interface, suitable for use in the chip under the combination of camera image acquisition.
Platform: | Size: 32768 | Author: panzekai | Hits:

[Linux-Unixlinux-2.6.14

Description: 飞凌公司TE2410开发板自带的linux2.6.14内核源代码,内核中加入了cs8900a网卡,串口1,2,3驱动,USB HOST驱动,USB摄像头驱动(ov511芯片),声卡驱动,液晶屏驱动,开机图片-TE2410 development board飞凌company linux2.6.14 own kernel source code, the kernel is added to the network card cs8900a, 1,2,3-driven serial, USB HOST driver, USB camera driver (ov511 chip), sound card driver , LCD driver, boot image
Platform: | Size: 57621504 | Author: wangjun | Hits:

[Internet-Networkgadget

Description: USB gadget driver, linux 2.6.27 version, modified for android phone
Platform: | Size: 492544 | Author: 蔡时杰 | Hits:

[Embeded Linuxuvc

Description: usb video class driver v4l1 驱动 for linux 2.6.-usb video class driver v4l1 driver for linux 2.6.22
Platform: | Size: 53248 | Author: resun | Hits:

[Embeded Linuxluvcview-0.2.6

Description: 基于 UVC 免驱 的 USB 视频采集、摄像头 参数控制 。-UVC-free drive of the USB based video capture, camera parameter control.
Platform: | Size: 189440 | Author: Scorpio | Hits:

[Linux-Unixxr_usb_serial_linux-2.6.18-to-3.4

Description: XR21V1410/1412/1414 USB HUB驱动程序,适用于linux 2.6-3.4版本(The XR21V1410/1412/1414 USB HUB driver is available for the Linux 2.6-3.4 version)
Platform: | Size: 19456 | Author: 板砖 | Hits:
« 12 3 4 5 6 7 8 9 10 ... 49 »

CodeBus www.codebus.net