ChinaUnix.net
相关文章推荐:

linux i2c driver

linux i2c driver ============================================================================= from: http://www.linuxjournal.com/article/7136 i2c Drivers, Part I December 1st, 2003 by Greg Kroah-Hartman in Software The i2c bus helps you monitor the health of your system. Here's how to develop a driver that will get you all the hardware info you need to kn...

by nlchjian - Linux文档专区 - 2009-04-03 15:46:09 阅读(3894) 回复(0)

相关讨论

http://www.linuxidc.com/Linux/2011-02/32496.htm

目录
1. 摘要 3
2. 简介 3
3. i2c架构 3
4. i2c总线初始化 4
5. i2c适配器驱动 5
6. i2c设备驱动 9
7. 用户空间驱动支持 12
8. 数据传输框架 16
9. References 16

 

1. 摘要
主要介绍Msm7227平台上i2c驱动原理,多数部分是29内核标准架构。...

by ztguang - 移动操作系统 - 2011-12-23 02:53:15 阅读(1393) 回复(0)

gpio模拟i2c为什么收不到应达信号,会和上拉或下拉电阻有关吗?

by 3xhua - 嵌入式开发 - 2011-04-19 09:36:00 阅读(3286) 回复(2)

OT_U8 OT_i2c_PutByte(OT_U8 Byte) { OT_S8 Counter; for (Counter=7; Counter>= 0; Counter--) { if ( Byte & (1<i2c_key_sda = %d ****************\n",GPIOGetPinLevel(i2c_KEY_SDA)); } else { OT_SDA_LOW(); /* address bit */ printk("i2c_key_sda = %d ****************\n",GPIOGetPinLevel(i2c_KEY_SDA)); } OT_i2c_SCL_TOGGLE(); /* clo...

by hujinzhi - 驱动开发 - 2011-03-17 10:49:16 阅读(2068) 回复(0)

i2c architecture in linux kernel ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ i2c(Inter-Integrated Circuit) bus is a very cheap yet effective network used to interconnect periphral devices within small-scale embedded systems. i2c uses two wires to connect multiple devices in a multi-drop bus. The bus is bidirectional, low-speed, and synchronous to a common clock. Devices may be attached or detached from the...

by edwinrong - Linux文档专区 - 2009-08-17 20:54:52 阅读(2458) 回复(0)

参考代码 http://blog.chinaunix.net/u3/91468/showart_1798987.html linux下24c08的i2c读写程序 #include #include #include #include #include #include #include #include #include #define MAX_i2c_MSG 2 #define i2c_RETRIES 0x701 #define i2c_TIMEOUT 0x702 #define i2c_RDWR 0x707 #define i2c_M_RD 0x1 struct i2c_msg { __u16 addr; __u16 flags; __u16 len; __u8 *buf; }; stru...

by soararing - Linux文档专区 - 2009-04-09 11:55:44 阅读(753) 回复(0)

大范甘迪个 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/56448/showart_1711057.html

by chenmeng56 - Linux文档专区 - 2008-12-09 22:24:23 阅读(1510) 回复(0)

http://tech.ddvip.com/2008/07/121576733546832.html 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/35351/showart_1211336.html

by lawrencekang - Linux文档专区 - 2008-09-20 10:56:58 阅读(553) 回复(0)

最近在看Linux 2.6.21内核的i2c驱动,也在网上查了一下资料,有错也有对,有些心得,记录下来吧。里面认识或许多有不当之处,还恳请指正。 1. i2c 协议 1.1 i2c总线工作原理 i2c总线是由数据线SDA和时钟SCL构成的串行总线,各种被控制器件均并联在这条总线上,每个器件都有一个唯一的地址识别,可以作为总线上的一个发送器件或接收器件(具体由器件的功能决定) 1.2 i2c总线的几种信号状态 1. 空闲状态:SDA...

by sdlizhe - Linux文档专区 - 2008-06-11 17:18:45 阅读(1307) 回复(0)

i2c驱动组成有三部分: A.i2c 核心驱动 B. i2c总线驱动 C. i2c设备驱动 i2c驱动相关的重要结构: 1. /** * struct i2c_driver - represent an i2c device driver * @class: What kind of i2c device we instantiate (for detect) * @attach_adapter: Callback for bus addition (deprecated) * @detach_adapter: Callback for bus removal (deprecated) * @probe: Callback for device binding * @remove: Callback for...

by xfortune - 驱动开发 - 2013-04-10 17:57:19 阅读(3045) 回复(7)

本帖最后由 breeze505 于 2012-09-12 17:31 编辑 我的ARM平台是 Cortex A9,MSP430G2231通过P1.6、P1.7与ARM核i2c总线通信,ARM上跑的是Linux系统,Linux内核有i2c总线驱动。 所以我除了MSP430端的程序外,ARM端我还需要做MSP430的Linux设备驱动程序。问题: (1)芯片的i2c总线驱动内核上已有,那我是否可以在应用程序中使用内核的设备驱动i2c-dev.c中的open、read、write等接口,而不需要重新开发一个设备驱动程序? (2)若...

by breeze505 - 驱动开发 - 2012-09-28 16:39:57 阅读(1798) 回复(5)