Difference between revisions of "How to use UARTs"

From IGEP - ISEE Wiki

Jump to: navigation, search
Line 1: Line 1:
Example program UART1 and UART3 via J960 connector
+
= Overview  =
  
(please contribute with this article)
+
This How-To is meant to be a starting point for people to learn use UART for IGEP v2 devices as quickly and easily as possible. In this how-to, we use a program that pass . 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>
 +
 
 +
NOTE: This program is a beta version, it decodes EDID following E-EDID Standard Release A-1 from VESA using i2c-dev driver. There are some functionalities that are not implemented (see code comments) and other new ones that appear in other revisions. Besides, this program only parses the first EDID 128 bytes block. But this code is enough to learn to use I2C.<br>
 +
 
 +
More information about [http://en.wikipedia.org/wiki/Extended_display_identification_data EDID].<br>
 +
 
 +
= Feedback and Contributing  =
 +
 
 +
At any point, if you see a mistake you can contribute to this How-To.
 +
 
 +
= Preparing IGEP <br> =
 +
 
 +
 
 +
 
 +
 
 +
 
 +
'''Under Construction'''
  
 
[[Category:Communications]] [[Category:Work_in_progress]]
 
[[Category:Communications]] [[Category:Work_in_progress]]

Revision as of 18:25, 17 January 2012

Overview

This How-To is meant to be a starting point for people to learn use UART for IGEP v2 devices as quickly and easily as possible. In this how-to, we use a program that pass . This program was tested in Linaro Headless with Kernel 2.6.35.y and Poky Linux distribution.

NOTE: This program is a beta version, it decodes EDID following E-EDID Standard Release A-1 from VESA using i2c-dev driver. There are some functionalities that are not implemented (see code comments) and other new ones that appear in other revisions. Besides, this program only parses the first EDID 128 bytes block. But this code is enough to learn to use I2C.

More information about EDID.

Feedback and Contributing

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

Preparing IGEP

Under Construction