Welcome![Sign In][Sign Up]
Location:
Search - i2c makefile

Search list

[Other resourcetvp5150

Description: tvp5150视频编解码芯片驱动程序,cpu通过i2c控制该芯片,将驱动程序放入driver/i2c/chips目录下,并且在makefile文件中加入该驱动编译即可。-tvp5150 Video Decoder Chip driver, cpu through i2c control of the chip Add to Driver driver/i2c/chips directory, and the makefile to accede to the document can be driven compiler.
Platform: | Size: 1982 | Author: 李正路 | Hits:

[Linux-Unixkmodule

Description: PNX8550 I2C总线驱动源码,如果像编译请先修改Makefile
Platform: | Size: 21076 | Author: wenbinwu | Hits:

[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:

[Embeded Linuxtvp5150

Description: tvp5150视频编解码芯片驱动程序,cpu通过i2c控制该芯片,将驱动程序放入driver/i2c/chips目录下,并且在makefile文件中加入该驱动编译即可。-tvp5150 Video Decoder Chip driver, cpu through i2c control of the chip Add to Driver driver/i2c/chips directory, and the makefile to accede to the document can be driven compiler.
Platform: | Size: 2048 | Author: 李正路 | Hits:

[Linux-Unixkmodule

Description: PNX8550 I2C总线驱动源码,如果像编译请先修改Makefile-PNX8550 I2C bus driver source code, if you modify Makefile as compiler
Platform: | Size: 20480 | Author: wenbinwu | Hits:

[SCMpmbus

Description: pmbus在avr32开发板平台上tiny24中的实现。-This is PMBus 1.1 [0] software intended to replace the firmware found in the "Board Controller" [1] on the Atmel ATNGW100 [2], which is a low cost [$US 90] Linux-oriented board suitable for developing and deploying AVR32 based embedded systems. This firmware can go into an ATtiny24 microcontroller which is found on that board, but which is not currently used for anything of note. This is licensed under GNU GPLv3. The distribution files include README-- what you re reading COPYING-- copy of GPLv3 Makefile-- to build under Linux pmbus_slave.elf-- pre-built binary pmbus_peek.c-- userspace tool talking to the firmware Plus of course the source code with the I2C/PMBus protocol code and microcontroller access: main.c pmbus.c usi_i2c_slave.c usi_i2c_slave.h smbus_glue.h prod_misc.h
Platform: | Size: 57344 | Author: 张磊 | Hits:

[Linux-UnixMakefile

Description: A standard Makefile for I2C Driver module generation
Platform: | Size: 1024 | Author: mist4u | Hits:

[Linux-Unixi2c

Description: 2440开发板的i2c驱动测试程序,可实现写和读功能,内含makefile,可直接编译!-2440 development board i2c driver of the test procedure, can be written and read, includes makefile, the compiler can directly!
Platform: | Size: 4096 | Author: tea | Hits:

[Linux-Unixiicread

Description: 君正的i2c资料 包括驱动和测试程序 包含Makefile-Jun is the i2c information, including drivers and test procedures
Platform: | Size: 19456 | Author: 姜虫虫 | Hits:

[Embeded Linuxexamples.tar

Description: 友善之臂mini6410的examples 有i2c camtest等 源码和makefile 参考 -Arm friendliness have i2c camtest mini6410 of examples such as reference source and makefile
Platform: | Size: 31744 | Author: luxingmin | Hits:

[Driver Developi2c

Description: linux i2c 示例代码,详细的描述了linux下i2c驱动的编写的方式,及其makefile文件的编写。-the examples of i2c for linux
Platform: | Size: 4096 | Author: 王工 | Hits:

[Driver Developamlogic_i2c.tar

Description: Amlogic晶晨半导体 aml8726-m3 的I2C驱动。包含GPIO模拟方式和硬件方式。-. ├── aml_i2c.c ├── aml_i2c.h ├── aml_sw_i2c.c ├── aml_sw_i2c.h ├── i2c-apollo.c ├── i2c-apollo.h ├── Kconfig ├── Makefile └── README
Platform: | Size: 15360 | Author: dongdong | Hits:

[Linux driveri2c

Description: 关于嵌入式linux的驱动代码,基于mini2440开发平台的I2C驱动程序,及makefile文件,经测试正常使用-About Embedded linux driver code, based mini2440 development platform I2C driver, and makefile files, tested normal use
Platform: | Size: 30720 | Author: 周圣 | Hits:

CodeBus www.codebus.net