Difference between revisions of "I2C Linux"

From Teknologisk videncenter
Jump to: navigation, search
m (Links)
m (Links)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
  
I2C is a two wire low bit rate communication protocol, offering cheap communication form a master to one or more slave devices.
+
I2C is a two wire low bit rate communication protocol, offering cheap communication form a master to one or more slave devices. See also [[Beaglebone black i2c]]
 
[[Image:I2C-SMBus simple.png|center|400px|thumb|Simple I2C or SMBus]]
 
[[Image:I2C-SMBus simple.png|center|400px|thumb|Simple I2C or SMBus]]
 
=Links=
 
=Links=
*[https://www.kernel.org/doc/html/latest/i2c/index.html Linux kernel doc on I2C]
+
*[https://www.kernel.org/doc/html/latest/i2c/index.html Linux kernel doc on I2C] and [https://www.kernel.org/doc/html/v4.19/driver-api/i2c.html Kernel DOC Driver API]
 
*[https://www.nxp.com/docs/en/application-note/AN4471.pdf NXP Application note 4471 SMBus Quick Start Guide]
 
*[https://www.nxp.com/docs/en/application-note/AN4471.pdf NXP Application note 4471 SMBus Quick Start Guide]
 
*[https://www.nxp.com/docs/en/application-note/AN10216.pdf NXP - Application note 10216 i2C manual]
 
*[https://www.nxp.com/docs/en/application-note/AN10216.pdf NXP - Application note 10216 i2C manual]
 
*[https://github.com/fivdi/i2c-bus i2c bus on Node.js]
 
*[https://github.com/fivdi/i2c-bus i2c bus on Node.js]
 
[[Category:Linux]][[Category:I2C]][[Category:Grove]]
 
[[Category:Linux]][[Category:I2C]][[Category:Grove]]

Latest revision as of 08:08, 1 December 2023

I2C is a two wire low bit rate communication protocol, offering cheap communication form a master to one or more slave devices. See also Beaglebone black i2c

Simple I2C or SMBus

Links