Difference between revisions of "How to use I2C"

From IGEP - ISEE Wiki

Jump to: navigation, search
Line 1: Line 1:
 
= Overview  =
 
= Overview  =
  
This How-To is meant to be a starting point for people to learn use I2C for IGEP v2 devices as quickly and easily as possible. For this how-to i do a program that reads and decodes EDID information from EEPROM display. This program was tested in [http://releases.linaro.org/platform/linaro-m/headless/final/linaro-m-headless-tar-20101108-2.tar.gz Linaro Headless] with [[../../../../index.php/Linux_Kernel_2.6.35.y|Kernel 2.6.35.y]] and [[How to get the Poky Linux distribution|Poky Linux.]]<br>  
+
This How-To is meant to be a starting point for people to learn use I2C for IGEP v2 devices as quickly and easily as possible. For this how-to i do a program that reads and decodes EDID information from EEPROM display. This program was tested in [http://releases.linaro.org/platform/linaro-m/headless/final/linaro-m-headless-tar-20101108-2.tar.gz Linaro Headless] with [[Linux_Kernel_2.6.35.y|Kernel 2.6.35.y]] and [[How to get the Poky Linux distribution|Poky Linux distribution.]]<br>  
  
More information about [http://en.wikipedia.org/wiki/Extended_display_identification_data EDID].<br>  
+
More information about [http://en.wikipedia.org/wiki/Extended_display_identification_data EDID].<br>
  
 
= Feedback and Contributing  =
 
= Feedback and Contributing  =

Revision as of 17:33, 16 January 2012

Overview

This How-To is meant to be a starting point for people to learn use I2C for IGEP v2 devices as quickly and easily as possible. For this how-to i do a program that reads and decodes EDID information from EEPROM display. This program was tested in Linaro Headless with Kernel 2.6.35.y and Poky Linux distribution.

More information about EDID.

Feedback and Contributing

At any point, if you see a mistake you can contribute to this How-To.

Check I2C Devices

By defaul, all Linux Kernel support I2C bus via i2c-dev driver

Compile

Run program

Under construction