<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wiki.gumstix.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Zyagon</id>
		<title>Gumstix User Wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.gumstix.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Zyagon"/>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php/Special:Contributions/Zyagon"/>
		<updated>2026-04-14T11:00:19Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.25.3</generator>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=GPIO&amp;diff=447</id>
		<title>GPIO</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=GPIO&amp;diff=447"/>
				<updated>2008-04-10T16:48:08Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:100px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:yellow;&amp;quot; | GPIO(&amp;lt;i&amp;gt; n &amp;lt;/i&amp;gt;)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Logic level (3.3V) signals &lt;br /&gt;
* 3-4mA max&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
all GPIO's information and examples should go here&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
todo&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
According to the PXA270 datasheet:&lt;br /&gt;
http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Electrical,%20Mechanical,%20and%20Thermal%20Specification%20%5b280002-005%5d.pdf&lt;br /&gt;
most of the pins are limited to 3mA, and a few can go upto 4 mA (see page 5-9) &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Accessing GPIO's from userland ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If proc-gpio is a module, add it to /etc/modules or do a modprobe proc-gpio.&lt;br /&gt;
&lt;br /&gt;
A number of files exist under /proc/gpio, one for each GPIO on the PXA processor.&lt;br /&gt;
&lt;br /&gt;
If you cat one of these files, you get, eg:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cat /proc/gpio/GPIO12&lt;br /&gt;
12 GPIO in set&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That tells you — GPIO number, function (either GPIO, AF 1, AF 2, or AF 3), in|out, set|clear.&lt;br /&gt;
&lt;br /&gt;
You can change any of those values, by writing to the file, eg:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# echo &amp;quot;AF1 out&amp;quot; &amp;gt; /proc/gpio/GPIO12&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This sets GPIO12 to AF1, out mode. (In the case of GPIO12, the PXA defines this function as putting out the 32kHz clock signal.) this is currently case-sensitive&lt;br /&gt;
&lt;br /&gt;
If you have the GPIO set to an output, and GPIO mode, you can set or clear the signal:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# echo &amp;quot;GPIO out set&amp;quot; &amp;gt; /proc/gpio/GPIO12&lt;br /&gt;
# echo &amp;quot;GPIO out clear&amp;quot; &amp;gt; /proc/gpio/GPIO12&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
The alternative functions are described in the PXA255 Developer's Manual (link should be found in the Featured links-box) section 4.1.2.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== gpio-event driver ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----------------------------&lt;br /&gt;
&lt;br /&gt;
Related pages on the old wiki:&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/index.php/GPIO_event&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/index.php/Tips_and_tricks#Access_GPIOs_from_user-space&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/index.php/Sample_code/C/gpregs&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/index.php/Kernel_programming&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=GPIO&amp;diff=446</id>
		<title>GPIO</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=GPIO&amp;diff=446"/>
				<updated>2008-04-10T16:47:19Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:100px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:yellow;&amp;quot; | GPIO(&amp;lt;i&amp;gt; n &amp;lt;/i&amp;gt;)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Logic level (3.3V) signals &lt;br /&gt;
* 3-4mA max&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
all GPIO's information and examples should go here&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
todo&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
According to the PXA270 datasheet:&lt;br /&gt;
http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Electrical,%20Mechanical,%20and%20Thermal%20Specification%20%5b280002-005%5d.pdf&lt;br /&gt;
most of the pins are limited to 3mA, and a few can go upto 4 mA (see page 5-9) &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Accessing GPIO's from userland ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If proc-gpio is a module, add it to /etc/modules or do a modprobe proc-gpio.&lt;br /&gt;
&lt;br /&gt;
A number of files exist under /proc/gpio, one for each GPIO on the PXA processor.&lt;br /&gt;
&lt;br /&gt;
If you cat one of these files, you get, eg:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cat /proc/gpio/GPIO12&lt;br /&gt;
12 GPIO in set&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That tells you — GPIO number, function (either GPIO, AF 1, AF 2, or AF 3), in|out, set|clear.&lt;br /&gt;
&lt;br /&gt;
You can change any of those values, by writing to the file, eg:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# echo &amp;quot;AF1 out&amp;quot; &amp;gt; /proc/gpio/GPIO12&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This sets GPIO12 to AF1, out mode. (In the case of GPIO12, the PXA defines this function as putting out the 32kHz clock signal.) this is currently case-sensitive&lt;br /&gt;
&lt;br /&gt;
If you have the GPIO set to an output, and GPIO mode, you can set or clear the signal:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# echo &amp;quot;GPIO out set&amp;quot; &amp;gt; /proc/gpio/GPIO12&lt;br /&gt;
# echo &amp;quot;GPIO out clear&amp;quot; &amp;gt; /proc/gpio/GPIO12&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
The alternative functions are described in the PXA255 Developer's Manual (link should be found in the Featured links-box) section 4.1.2.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
gpio-event&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----------------------------&lt;br /&gt;
&lt;br /&gt;
Related pages on the old wiki:&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/index.php/GPIO_event&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/index.php/Tips_and_tricks#Access_GPIOs_from_user-space&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/index.php/Sample_code/C/gpregs&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/index.php/Kernel_programming&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Supply&amp;diff=444</id>
		<title>Supply</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Supply&amp;diff=444"/>
				<updated>2008-04-08T17:49:32Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Supply &amp;amp; Power Management}}&lt;br /&gt;
&lt;br /&gt;
== V_BATT ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:120px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:tomato;&amp;quot; | V_BATT&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Supply voltage: 3.6V - 5.0V (max. 6.0V)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This net powers the gumstix motherboard and all expansion boards. '''V_BATT''' is located on all modular connectors.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== V_BACKUP_BATT ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:120px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:salmon;&amp;quot; | V_BACKUP_BATT&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Supply voltage: 3.0V&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This net connects to the pin 'VBACKUP' of the power management chip [http://www.ti.com/lit/gpn/tps65022 TPS65022].&lt;br /&gt;
&amp;lt;br&amp;gt;It exists to source power from an off-board backup battery. V_BACKUP_BATT is located on the [[24pin connector|24-pin flex ribbon]] (Verdex only) connector&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If your application needs a backup battery, connect a 3V Li-Ion cell directly to '''V_BACKUP_BATT''' and '''GND''' and remove R9 (0 Ohm resistor to ground). &lt;br /&gt;
&lt;br /&gt;
Use a boost converter (ex. [http://www.ti.com/lit/gpn/tps61070 TPS61070]) if you use a single NiMH battery&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In systems where no backup battery is used, this net is connected to GROUND.&amp;lt;br&amp;gt;&lt;br /&gt;
On the verdex, this is done with R9 (0 Ohm resistor), which is populated by default on our website-sale boards.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== SYS_EN ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:120px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:lightpink;&amp;quot; | SYS_EN&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Power Management ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Powering Gumstix from batteries ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----------------------------&lt;br /&gt;
&lt;br /&gt;
Related pages on the gumstix website:&lt;br /&gt;
&lt;br /&gt;
http://pubs.gumstix.org/documents/Powering_a_Gumstix.pdf&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----------------------------&lt;br /&gt;
&lt;br /&gt;
Related pages on the old wiki:&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/index.php/Gumstix_motherboard_I/O#Batteries_and_power&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/index.php/Batteries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=443</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=443"/>
				<updated>2008-04-08T15:52:33Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;big&amp;gt;''Welcome to the gumstix users wiki''&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This site is provided so that users of the gumstix OpenEmbedded build system can share their knowledge, showcase their gumstix based projects, and pass on links to other sources of information and materials.  This information is entirely user generated and supported.  Please contribute your know-how to help your fellow developers.&lt;br /&gt;
&lt;br /&gt;
  '''Customer additions and edits are encouraged, but please read the help page before you make any major edits.'''&lt;br /&gt;
  ''Note:  you will need to create a new user account if you would like to contribute or edit content on this site.''&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
{|cellpadding=&amp;quot;2&amp;quot; cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;vertical-align:top;background-color:#f5fffa;border:1px solid #bcc&amp;quot;&lt;br /&gt;
! style=&amp;quot;margin:0;background:#cef2e0;font-size:120%;font-weight:bold;border:1px solid #a3b0bf;text-align:left;color:#000;padding:0.2em 0.4em;&amp;quot; | [[:Category:How-tos |User how to's]]&lt;br /&gt;
! style=&amp;quot;margin:0;background:#cef2e0;font-size:120%;font-weight:bold;border:1px solid #a3b0bf;text-align:left;color:#000;padding:0.2em 0.4em;&amp;quot; | [[:Category:projects|User projects]]&lt;br /&gt;
! style=&amp;quot;margin:0;background:#cef2e0;font-size:120%;font-weight:bold;border:1px solid #a3b0bf;text-align:left;color:#000;padding:0.2em 0.4em;&amp;quot; | [[:Category:literature|Literature]]&lt;br /&gt;
! style=&amp;quot;margin:0;background:#cef2e0;font-size:120%;font-weight:bold;border:1px solid #a3b0bf;text-align:left;color:#000;padding:0.2em 0.4em;&amp;quot; | [[:Category:resources|Resources]]&lt;br /&gt;
! style=&amp;quot;margin:0;background:#cef2e0;font-size:120%;font-weight:bold;border:1px solid #a3b0bf;text-align:left;color:#000;padding:0.2em 0.4em;&amp;quot; | [[:Category:faqs|FAQs]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[:Category:how to - general|General]]&lt;br /&gt;
* [[:Category:how to - linux|Linux]]&lt;br /&gt;
* [[:Category:how to - displays|Displays]]&lt;br /&gt;
* [[:Category:how to - audio|Audio]]&lt;br /&gt;
* [[:Category:how to - wifi|Wifi]]&lt;br /&gt;
* [[:Category:how to - bluetooth|Bluetooth]]&lt;br /&gt;
* [[:Category:how to - gps|GPS]]&lt;br /&gt;
* [[:Category:how to - serial|Serial]]&lt;br /&gt;
* [[:Category:how to - gpio|GPIO]]&lt;br /&gt;
* [[:Category:how to - gui|GUI]]&lt;br /&gt;
* [[:Category:how to - i2c|I²C]]&lt;br /&gt;
* [[:Category:how to - spi|SPI]]&lt;br /&gt;
* [[:Category:how to - usb|USB]]&lt;br /&gt;
* [[:Category:how to - robotics|Robotics]]&lt;br /&gt;
* [[:Category:how to - security|Security]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[:Category:projects - audio|Audio]]&lt;br /&gt;
* [[:Category:projects - competitions|Competitions]]&lt;br /&gt;
* [[:Category:projects - displays|Displays]]&lt;br /&gt;
* [[:Category:projects - education|Education]]&lt;br /&gt;
* [[:Category:projects - monitoring and control|Monitoring and Control]]&lt;br /&gt;
* [[:Category:projects - robotics|Robotics]]&lt;br /&gt;
* [[:Category:projects - uav's|UAV's]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[Motherboard information]]&lt;br /&gt;
* [[Motherboard specifications]]&lt;br /&gt;
* [[Expansion board information]]&lt;br /&gt;
* [[Expansion board specifications]]&lt;br /&gt;
* [[Software information]]&lt;br /&gt;
* [[Supported hardware]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[Manufacturer's specifications]]&lt;br /&gt;
* [[:Category:component suppliers|Component suppliers]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[Frequent Problems]]&lt;br /&gt;
* [[GUI on Gumstix FAQ]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For official Gumstix supported documentation on OpenEmbedded and other information of interest to developers:&lt;br /&gt;
[http://www.gumstix.net www.gumstix.net]&lt;br /&gt;
&lt;br /&gt;
For company and product information, pricing, and to place an order:&lt;br /&gt;
[http://www.gumstix.com www.gumstix.com]&lt;br /&gt;
&lt;br /&gt;
To use the gumstix users mailing list: &lt;br /&gt;
[https://lists.sourceforge.net/lists/listinfo/gumstix-users Signup page]&lt;br /&gt;
[http://www.nabble.com/Gumstix-f22543.html Archive search]&lt;br /&gt;
&lt;br /&gt;
For information and support for the legacy gumstix buildroot build system:&lt;br /&gt;
[http://docwiki.gumstix.org/Main_Page docwiki.gumstix.org]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Category:How_to_-_security&amp;diff=441</id>
		<title>Category:How to - security</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Category:How_to_-_security&amp;diff=441"/>
				<updated>2008-04-08T15:48:24Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: New page: Please contribute your knowledge to the gumstix community&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Please contribute your knowledge to the gumstix community&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Supply&amp;diff=440</id>
		<title>Supply</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Supply&amp;diff=440"/>
				<updated>2008-04-08T15:28:19Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== V_BATT ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:120px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:tomato;&amp;quot; | V_BATT&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Supply voltage: 3.6V - 5.0V (max. 6.0V)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This net powers the gumstix motherboard and all expansion boards. '''V_BATT''' is located on all modular connectors.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== V_BACKUP_BATT ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:120px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:salmon;&amp;quot; | V_BACKUP_BATT&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Supply voltage: 3.0V&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This net connects to the pin 'VBACKUP' of the power management chip [http://www.ti.com/lit/gpn/tps65022 TPS65022].&lt;br /&gt;
&amp;lt;br&amp;gt;It exists to source power from an off-board backup battery. V_BACKUP_BATT is located on the [[24pin connector|24-pin flex ribbon]] (Verdex only) connector&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If your application needs a backup battery, connect a 3V Li-Ion cell directly to '''V_BACKUP_BATT''' and '''GND''' and remove R9 (0 Ohm resistor to ground). &lt;br /&gt;
&lt;br /&gt;
Use a boost converter (ex. [http://www.ti.com/lit/gpn/tps61070 TPS61070]) if you use a single NiMH battery&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In systems where no backup battery is used, this net is connected to GROUND.&amp;lt;br&amp;gt;&lt;br /&gt;
On the verdex, this is done with R9 (0 Ohm resistor), which is populated by default on our website-sale boards.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== SYS_EN ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:120px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:lightpink;&amp;quot; | SYS_EN&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Power Management ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Powering Gumstix from batteries ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----------------------------&lt;br /&gt;
&lt;br /&gt;
Related pages on the gumstix website:&lt;br /&gt;
&lt;br /&gt;
http://pubs.gumstix.org/documents/Powering_a_Gumstix.pdf&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----------------------------&lt;br /&gt;
&lt;br /&gt;
Related pages on the old wiki:&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/index.php/Gumstix_motherboard_I/O#Batteries_and_power&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/index.php/Batteries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=I%C2%B2C&amp;diff=439</id>
		<title>I²C</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=I%C2%B2C&amp;diff=439"/>
				<updated>2008-04-08T15:28:01Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:100px;background:darkgoldenrod;&amp;quot; | I2C_SDA || I²C Data (Serial data/address bus)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:darkgoldenrod;&amp;quot; | I2C_SCL || I²C Clock (Serial clock)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND || Ground&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Logic level (3.3V) signals&lt;br /&gt;
* 400 kbps Fast mode&lt;br /&gt;
* 100 kbps Standard mode&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The I²C bus uses 3 signals, '''I2C_SDA''', '''I2C_SCL''', and '''GND''' (ground), all of which are present on the [[60pin connector|60-pin Hirose]], [[120pin connector|120-pin MOLEX]] (Verdex only) and [[24pin connector|24-pin flex ribbon]] (Verdex only) connectors. Some daughter cards allow the I²C signals to be accessed directly.&lt;br /&gt;
&lt;br /&gt;
Note that some older versions of the Breakout board have pins labeled incorrectly. See the [http://docwiki.gumstix.org/Breakout breakout page] for more details.&lt;br /&gt;
&lt;br /&gt;
On the robostix board, pin 12 on the UARTS connector is SDA, and pin 16 is SCL. These are both 5v signals and have pullup resistors.&lt;br /&gt;
&lt;br /&gt;
On the Tweener, pin 19 on the hirose connector is SDA, and pin 20 is SCL. The [[JTAG]] connector page has a photo of the hirose connector. The TDO pin shown in the photo is pin 22. The via to the left under the T is pin 21, the one under the O is pin 20, and the one under the D is 19. These are all 3.3v signals and don't have any pullup resistors. &lt;br /&gt;
&lt;br /&gt;
On the back of the waysmall board, amongst the set of 20 pads, the pad closest to the edge of the board and the power connector is the SDA signal, and the one next to it (also by the edge of the board) is the SCL signal. These are both 3.3v signals and don't have any pullup resistors. The waysmall board has a 3.3v regulator on it, just to the left of the power connector. It has LW33 stamped on it. The pin below the 3 (in LW33) is the 3.3v output (see the [[JTAG]] connector page which identifies the Vcc pin on the same type of regulator used on the Tweener).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Pullup resistors ==&lt;br /&gt;
&lt;br /&gt;
The I2C bus requires pullup resistors on the '''I2C_SDA''' and '''I2C_SCL''' lines. The [http://www.semiconductors.philips.com/acrobat/literature/9398/39340011.pdf I2C specification] gives some charts for min and max values (see page 39 and 40). For a 5v or 3.3v bus, the minimum pullup resistance should be around 2k ohms. A typical value to use would be 4.7k ohms.&lt;br /&gt;
&lt;br /&gt;
All of the current daughter cards (except the robostix), need to have pullup resistors added, which pullup the SDA and SCL lines to 3.3v levels.&lt;br /&gt;
&lt;br /&gt;
If you use a robostix, the 3.3v pullup resistors are already included. The SDA and SCL lines on the UARTS connector are at 5v levels, and also have pullup resistors on the robostix board. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The [http://docwiki.gumstix.org/I2C_Max518 I2C Max518] example shows how to connect the Maxim [http://www.maxim-ic.com/quick_view2.cfm/qv_pk/1119 MAX518], which is a dual, i2c, digital to analog converter.&lt;br /&gt;
&lt;br /&gt;
The [http://docwiki.gumstix.org/I2C_DS1307 I2C DS1307] example shows how to connect the [http://www.maxim-ic.com/quick_view2.cfm/qv_pk/2688 DS1307], which is an i2c real time clock and nvram chip. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Related ==&lt;br /&gt;
&lt;br /&gt;
[http://www.nxp.com/acrobat_download/literature/9398/39340011.pdf The I²C Bus Specification V.2.1, Philips Semiconductors]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----------------------------&lt;br /&gt;
&lt;br /&gt;
Related pages on the old wiki:&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/index.php/I2C_on_the_Gumstix&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/index.php/Sample_code/C/I2C&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/index.php/I2C_Max518&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/index.php/I2C_DS1307&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=GPIO&amp;diff=438</id>
		<title>GPIO</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=GPIO&amp;diff=438"/>
				<updated>2008-04-08T15:27:42Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:100px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:yellow;&amp;quot; | GPIO(&amp;lt;i&amp;gt; n &amp;lt;/i&amp;gt;)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 3.3V&lt;br /&gt;
* 3-4mA max&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
all GPIO's information and examples should go here&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
todo&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
According to the PXA270 datasheet:&lt;br /&gt;
http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Electrical,%20Mechanical,%20and%20Thermal%20Specification%20%5b280002-005%5d.pdf&lt;br /&gt;
most of the pins are limited to 3mA, and a few can go upto 4 mA (see page 5-9) &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----------------------------&lt;br /&gt;
&lt;br /&gt;
Related pages on the old wiki:&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/index.php/GPIO_event&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/index.php/Tips_and_tricks#Access_GPIOs_from_user-space&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/index.php/Sample_code/C/gpregs&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/index.php/Kernel_programming&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=UARTs&amp;diff=437</id>
		<title>UARTs</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=UARTs&amp;diff=437"/>
				<updated>2008-04-08T15:26:48Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== UARTs ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Note! Current kernels use ttyS3 (HWUART) for bluetooth. This is available on the BTUART pins by setting GPIO42 and 43 to AF3 - and this is the default configuration. This can be very confusing if you want to use the HWUART for something else! To re-enable HWUART on ttyS3, make bluetooth use ttyS1 (see /etc/default/bluetooth) and then set GPIO42 to AF1 in and GPIO43 to AF2 out. You can then set GPIO48 to AF1 out (HWUART TXD) and GPIO49 to AF1 in (HWUART RXD).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== FFUART ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:100px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:lightblue;&amp;quot; | FF_CTS&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:lightblue;&amp;quot; | FF_RTS&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:lightblue;&amp;quot; | FF_TXD&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:lightblue;&amp;quot; | FF_RXD&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Logic level (3.3V) signals&lt;br /&gt;
* Speeds to 230 kbps &lt;br /&gt;
* Normally mapped to ttyS0 in the kernel and Y0 in some schematics&lt;br /&gt;
* FFUART pins are located on the [[60pin connector|60-pin Hirose]] connector&lt;br /&gt;
* [http://www.gumstix.org/schematics/B00002-FFUART.png?nocache=1 Schematic diagram for the FFUART]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== HWUART ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:100px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:aquamarine;&amp;quot; | HW_CTS&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:aquamarine;&amp;quot; | HW_RTS&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:aquamarine;&amp;quot; | HW_TXD&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:aquamarine;&amp;quot; | HW_RXD&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Logic level (3.3V) signals&lt;br /&gt;
* Speeds to 921 kbps&lt;br /&gt;
* Normally mapped to ttyS3 in the kernel and Y1 in some schematics&lt;br /&gt;
* HWUART pins are located on the [[60pin connector|60-pin Hirose]] (Connex and Basix only) &lt;br /&gt;
* [http://www.gumstix.org/schematics/B00002-HWUART.png?nocache=1 Schematic diagram for the HWUART]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== STUART ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Logic level (3.3V) signals&lt;br /&gt;
* Speeds to 230 kbps&lt;br /&gt;
* Normally mapped to ttyS2&lt;br /&gt;
* [http://www.gumstix.org/schematics/B00003-FF_ST_UARTS.png?nocache=1 Schematic diagram for the STUART]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== BTUART ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:dodgerblue;width:100px;&amp;quot; | BT_CTS&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:dodgerblue;&amp;quot; | BT_RTS&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:dodgerblue;&amp;quot; | BT_TXD&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:dodgerblue;&amp;quot; | BT_RXD&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:dodgerblue;width:100px;&amp;quot; | BT_NRESET || Bluetooth reset (output, active low)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:dodgerblue;&amp;quot; | CLK_32 || 32.768 kHz Clock output&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Logic level (3.3V) signals&lt;br /&gt;
* BTUART pins are located on the [[60pin connector|60-pin Hirose]] and [[24pin connector|24-pin flex ribbon]] (Verdex only) connectors.&lt;br /&gt;
* It is not an exposed interface; mapped to ttyS1 by the kernel and connected physically to the bluetooth module if one is present.&lt;br /&gt;
* BT_NRESET and CLK_32 are for an optional Bluetooth module IC ([[24pin connector|24-pin flex ribbon]] only)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----------------------------&lt;br /&gt;
&lt;br /&gt;
Related pages on the old wiki:&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/index.php/Gumstix_UARTs&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/index.php/Gumstix_motherboard_I/O#UART&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/index.php/Tips_and_tricks#UARTs&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=I%C2%B2C&amp;diff=436</id>
		<title>I²C</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=I%C2%B2C&amp;diff=436"/>
				<updated>2008-04-08T15:18:57Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:100px;background:darkgoldenrod;&amp;quot; | I2C_SDA || I²C Data (Serial data/address bus)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:darkgoldenrod;&amp;quot; | I2C_SCL || I²C Clock (Serial clock)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND || Ground&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Logic level (3.3V) signals&lt;br /&gt;
* 400 kbps Fast mode&lt;br /&gt;
* 100 kbps Standard mode&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The I²C bus uses 3 signals, '''I2C_SDA''', '''I2C_SCL''', and '''GND''' (ground), all of which are present on the [[60pin connector|60-pin Hirose]], [[120pin connector|120-pin MOLEX]] (Verdex only) and [[24pin connector|24-pin flex ribbon]] (Verdex only) connectors. Some daughter cards allow the I²C signals to be accessed directly.&lt;br /&gt;
&lt;br /&gt;
Note that some older versions of the Breakout board have pins labeled incorrectly. See the [http://docwiki.gumstix.org/Breakout breakout page] for more details.&lt;br /&gt;
&lt;br /&gt;
On the robostix board, pin 12 on the UARTS connector is SDA, and pin 16 is SCL. These are both 5v signals and have pullup resistors.&lt;br /&gt;
&lt;br /&gt;
On the Tweener, pin 19 on the hirose connector is SDA, and pin 20 is SCL. The [[JTAG]] connector page has a photo of the hirose connector. The TDO pin shown in the photo is pin 22. The via to the left under the T is pin 21, the one under the O is pin 20, and the one under the D is 19. These are all 3.3v signals and don't have any pullup resistors. &lt;br /&gt;
&lt;br /&gt;
On the back of the waysmall board, amongst the set of 20 pads, the pad closest to the edge of the board and the power connector is the SDA signal, and the one next to it (also by the edge of the board) is the SCL signal. These are both 3.3v signals and don't have any pullup resistors. The waysmall board has a 3.3v regulator on it, just to the left of the power connector. It has LW33 stamped on it. The pin below the 3 (in LW33) is the 3.3v output (see the [[JTAG]] connector page which identifies the Vcc pin on the same type of regulator used on the Tweener).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Pullup resistors ==&lt;br /&gt;
&lt;br /&gt;
The I2C bus requires pullup resistors on the '''I2C_SDA''' and '''I2C_SCL''' lines. The [http://www.semiconductors.philips.com/acrobat/literature/9398/39340011.pdf I2C specification] gives some charts for min and max values (see page 39 and 40). For a 5v or 3.3v bus, the minimum pullup resistance should be around 2k ohms. A typical value to use would be 4.7k ohms.&lt;br /&gt;
&lt;br /&gt;
All of the current daughter cards (except the robostix), need to have pullup resistors added, which pullup the SDA and SCL lines to 3.3v levels.&lt;br /&gt;
&lt;br /&gt;
If you use a robostix, the 3.3v pullup resistors are already included. The SDA and SCL lines on the UARTS connector are at 5v levels, and also have pullup resistors on the robostix board. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The [http://docwiki.gumstix.org/I2C_Max518 I2C Max518] example shows how to connect the Maxim [http://www.maxim-ic.com/quick_view2.cfm/qv_pk/1119 MAX518], which is a dual, i2c, digital to analog converter.&lt;br /&gt;
&lt;br /&gt;
The [http://docwiki.gumstix.org/I2C_DS1307 I2C DS1307] example shows how to connect the [http://www.maxim-ic.com/quick_view2.cfm/qv_pk/2688 DS1307], which is an i2c real time clock and nvram chip. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Related ==&lt;br /&gt;
&lt;br /&gt;
[http://www.nxp.com/acrobat_download/literature/9398/39340011.pdf The I²C Bus Specification V.2.1, Philips Semiconductors]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----------------------------&lt;br /&gt;
&lt;br /&gt;
Related pages on the old wiki:&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/I2C_on_the_Gumstix&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/Sample_code/C/I2C&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/I2C_Max518&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/I2C_DS1307&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=I%C2%B2C&amp;diff=435</id>
		<title>I²C</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=I%C2%B2C&amp;diff=435"/>
				<updated>2008-04-08T15:14:15Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:100px;background:darkgoldenrod;&amp;quot; | I2C_SDA || I²C Data (Serial data/address bus)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:darkgoldenrod;&amp;quot; | I2C_SCL || I²C Clock (Serial clock)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND || Ground&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 400 kbit/s Fast mode&lt;br /&gt;
* 100 kbit/s Standard mode&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The I²C bus uses 3 signals, '''I2C_SDA''', '''I2C_SCL''', and '''GND''' (ground), all of which are present on the [[60pin connector|60-pin Hirose]], [[120pin connector|120-pin MOLEX]] (Verdex only) and [[24pin connector|24-pin flex ribbon]] (Verdex only) connectors. Some daughter cards allow the I²C signals to be accessed directly.&lt;br /&gt;
&lt;br /&gt;
Note that some older versions of the Breakout board have pins labeled incorrectly. See the [http://docwiki.gumstix.org/Breakout breakout page] for more details.&lt;br /&gt;
&lt;br /&gt;
On the robostix board, pin 12 on the UARTS connector is SDA, and pin 16 is SCL. These are both 5v signals and have pullup resistors.&lt;br /&gt;
&lt;br /&gt;
On the Tweener, pin 19 on the hirose connector is SDA, and pin 20 is SCL. The [[JTAG]] connector page has a photo of the hirose connector. The TDO pin shown in the photo is pin 22. The via to the left under the T is pin 21, the one under the O is pin 20, and the one under the D is 19. These are all 3.3v signals and don't have any pullup resistors. &lt;br /&gt;
&lt;br /&gt;
On the back of the waysmall board, amongst the set of 20 pads, the pad closest to the edge of the board and the power connector is the SDA signal, and the one next to it (also by the edge of the board) is the SCL signal. These are both 3.3v signals and don't have any pullup resistors. The waysmall board has a 3.3v regulator on it, just to the left of the power connector. It has LW33 stamped on it. The pin below the 3 (in LW33) is the 3.3v output (see the [[JTAG]] connector page which identifies the Vcc pin on the same type of regulator used on the Tweener).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Pullup resistors ==&lt;br /&gt;
&lt;br /&gt;
The I2C bus requires pullup resistors on the '''I2C_SDA''' and '''I2C_SCL''' lines. The [http://www.semiconductors.philips.com/acrobat/literature/9398/39340011.pdf I2C specification] gives some charts for min and max values (see page 39 and 40). For a 5v or 3.3v bus, the minimum pullup resistance should be around 2k ohms. A typical value to use would be 4.7k ohms.&lt;br /&gt;
&lt;br /&gt;
All of the current daughter cards (except the robostix), need to have pullup resistors added, which pullup the SDA and SCL lines to 3.3v levels.&lt;br /&gt;
&lt;br /&gt;
If you use a robostix, the 3.3v pullup resistors are already included. The SDA and SCL lines on the UARTS connector are at 5v levels, and also have pullup resistors on the robostix board. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The [http://docwiki.gumstix.org/I2C_Max518 I2C Max518] example shows how to connect the Maxim [http://www.maxim-ic.com/quick_view2.cfm/qv_pk/1119 MAX518], which is a dual, i2c, digital to analog converter.&lt;br /&gt;
&lt;br /&gt;
The [http://docwiki.gumstix.org/I2C_DS1307 I2C DS1307] example shows how to connect the [http://www.maxim-ic.com/quick_view2.cfm/qv_pk/2688 DS1307], which is an i2c real time clock and nvram chip. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Related ==&lt;br /&gt;
&lt;br /&gt;
[http://www.nxp.com/acrobat_download/literature/9398/39340011.pdf The I²C Bus Specification V.2.1, Philips Semiconductors]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----------------------------&lt;br /&gt;
&lt;br /&gt;
Related pages on the old wiki:&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/I2C_on_the_Gumstix&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/Sample_code/C/I2C&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/I2C_Max518&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/I2C_DS1307&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=USB&amp;diff=424</id>
		<title>USB</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=USB&amp;diff=424"/>
				<updated>2008-04-05T23:43:08Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:100px;background:limegreen;&amp;quot; | USBH_PWR1 || colspan=&amp;quot;2&amp;quot; | Over-current indicator (input, active low)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_PEN1 || colspan=&amp;quot;2&amp;quot; |  Power enable USB port (output)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_P1 || rowspan=&amp;quot;4&amp;quot; align=&amp;quot;center&amp;quot; | USB port || USB D+&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_N1 || USB D-&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:tomato;&amp;quot; | V_BATT || USB VBUS&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND || USB DGND&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The [[24pin_connector|24-pin flex ribbon]] connector has '''USB port 1''' on it. '''USB port 2''' is on the [[60pin_connector|60-pin Hirose connector]] &lt;br /&gt;
&lt;br /&gt;
The pinouts you need for USB port 1 are:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* V_BATT (pin 24) - USB power&lt;br /&gt;
* USBH_N1 (pin 18) - USB D-&lt;br /&gt;
* USBH_P1 (pin 17) - USB D+&lt;br /&gt;
* GND (pin 8) - USB Ground&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In addition, you need to pull USBH_PWR1 (pin 20) up to 3.3 volts to enable the port. You need to provide a stable 3.3 volt supply, which is fairly simple to do by adding a small SOT23 package voltage regulator (like the [http://www.national.com/mpf/LM/LM3480.html LM3480]), with the power input coming from V_BATT (pin 24) and the output going to USBH_PWR1 (pin 20).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''WARNING:''' This page is at this moment incomplete/inaccurate! D+/D- require 15K pull-down resistors, 10-25 ohm series resistors and 68-75pF capacitors. ESD and overcurrent protection is suggested. check PXA270 Design Guide, P. 202 (link on the bottom of this page)&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:24-pin-usb-example.png]]&lt;br /&gt;
&lt;br /&gt;
'''U1''': LM3480 3.3V Voltage regulator&lt;br /&gt;
&lt;br /&gt;
'''C1,C2''': 0.1uF Capacitors&lt;br /&gt;
&lt;br /&gt;
(*this example may not work, read warning above)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:24pin-connector-usb-example.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Related ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Design%20Guide%20%5b280001-002%5d.pdf PXA270 Design Guide, P. 202]&lt;br /&gt;
&lt;br /&gt;
[http://www.usb.org/developers/docs/usb_20_092407.zip Universal Serial Bus Revision 2.0 specification]&lt;br /&gt;
&lt;br /&gt;
[ftp://ftp.compaq.com/pub/supportinformation/papers/hcir1_0a.pdf Open HCI—Open Host controller Specification for USB]&lt;br /&gt;
&lt;br /&gt;
[http://www.fairchildsemi.com/an/AN/AN-5052.pdf Implementing the Physical Layer in a USB 2.0 Compliant System, AN-5052, Fairchild Semiconductor]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=File:24pin-connector-usb-example.png&amp;diff=423</id>
		<title>File:24pin-connector-usb-example.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=File:24pin-connector-usb-example.png&amp;diff=423"/>
				<updated>2008-04-05T23:35:19Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=UARTs&amp;diff=422</id>
		<title>UARTs</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=UARTs&amp;diff=422"/>
				<updated>2008-04-05T01:11:29Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== UARTs ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Note! Current kernels use ttyS3 (HWUART) for bluetooth. This is available on the BTUART pins by setting GPIO42 and 43 to AF3 - and this is the default configuration. This can be very confusing if you want to use the HWUART for something else! To re-enable HWUART on ttyS3, make bluetooth use ttyS1 (see /etc/default/bluetooth) and then set GPIO42 to AF1 in and GPIO43 to AF2 out. You can then set GPIO48 to AF1 out (HWUART TXD) and GPIO49 to AF1 in (HWUART RXD).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== FFUART ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:100px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:lightblue;&amp;quot; | FF_CTS&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:lightblue;&amp;quot; | FF_RTS&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:lightblue;&amp;quot; | FF_TXD&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:lightblue;&amp;quot; | FF_RXD&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Logic level (3.3V) signals&lt;br /&gt;
* Speeds to 230 kbps &lt;br /&gt;
* Normally mapped to ttyS0 in the kernel and Y0 in some schematics&lt;br /&gt;
* FFUART pins are located on the [[60pin connector|60-pin Hirose]] connector&lt;br /&gt;
* [http://www.gumstix.org/schematics/B00002-FFUART.png?nocache=1 Schematic diagram for the FFUART]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== HWUART ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:100px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:aquamarine;&amp;quot; | HW_CTS&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:aquamarine;&amp;quot; | HW_RTS&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:aquamarine;&amp;quot; | HW_TXD&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:aquamarine;&amp;quot; | HW_RXD&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Logic level (3.3V) signals&lt;br /&gt;
* Speeds to 921 kbps&lt;br /&gt;
* Normally mapped to ttyS3 in the kernel and Y1 in some schematics&lt;br /&gt;
* HWUART pins are located on the [[60pin connector|60-pin Hirose]] (Connex and Basix only) &lt;br /&gt;
* [http://www.gumstix.org/schematics/B00002-HWUART.png?nocache=1 Schematic diagram for the HWUART]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== STUART ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Logic level (3.3V) signals&lt;br /&gt;
* Speeds to 230 kbps&lt;br /&gt;
* Normally mapped to ttyS2&lt;br /&gt;
* [http://www.gumstix.org/schematics/B00003-FF_ST_UARTS.png?nocache=1 Schematic diagram for the STUART]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== BTUART ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:dodgerblue;width:100px;&amp;quot; | BT_CTS&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:dodgerblue;&amp;quot; | BT_RTS&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:dodgerblue;&amp;quot; | BT_TXD&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:dodgerblue;&amp;quot; | BT_RXD&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:dodgerblue;width:100px;&amp;quot; | BT_NRESET || Bluetooth reset (output, active low)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:dodgerblue;&amp;quot; | CLK_32 || 32.768 kHz Clock output&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Logic level (3.3V) signals&lt;br /&gt;
* BTUART pins are located on the [[60pin connector|60-pin Hirose]] and [[24pin connector|24-pin flex ribbon]] (Verdex only) connectors.&lt;br /&gt;
* It is not an exposed interface; mapped to ttyS1 by the kernel and connected physically to the bluetooth module if one is present.&lt;br /&gt;
* BT_NRESET and CLK_32 are for an optional Bluetooth module IC ([[24pin connector|24-pin flex ribbon]] only)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----------------------------&lt;br /&gt;
&lt;br /&gt;
Related pages on the old wiki:&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/Gumstix_UARTs&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/Gumstix_motherboard_I/O#UART&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/Tips_and_tricks#UARTs&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=I%C2%B2C&amp;diff=421</id>
		<title>I²C</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=I%C2%B2C&amp;diff=421"/>
				<updated>2008-04-05T01:02:54Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:100px;background:darkgoldenrod;&amp;quot; | I2C_SDA || I²C Data (Serial data/address bus)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:darkgoldenrod;&amp;quot; | I2C_SCL || I²C Clock (Serial clock)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND || Ground&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The I²C bus uses 3 signals, '''I2C_SDA''', '''I2C_SCL''', and '''GND''' (ground), all of which are present on the [[60pin connector|60-pin Hirose]], [[120pin connector|120-pin MOLEX]] (Verdex only) and [[24pin connector|24-pin flex ribbon]] (Verdex only) connectors. Some daughter cards allow the I²C signals to be accessed directly.&lt;br /&gt;
&lt;br /&gt;
Note that some older versions of the Breakout board have pins labeled incorrectly. See the [http://docwiki.gumstix.org/Breakout breakout page] for more details.&lt;br /&gt;
&lt;br /&gt;
On the robostix board, pin 12 on the UARTS connector is SDA, and pin 16 is SCL. These are both 5v signals and have pullup resistors.&lt;br /&gt;
&lt;br /&gt;
On the Tweener, pin 19 on the hirose connector is SDA, and pin 20 is SCL. The [[JTAG]] connector page has a photo of the hirose connector. The TDO pin shown in the photo is pin 22. The via to the left under the T is pin 21, the one under the O is pin 20, and the one under the D is 19. These are all 3.3v signals and don't have any pullup resistors. &lt;br /&gt;
&lt;br /&gt;
On the back of the waysmall board, amongst the set of 20 pads, the pad closest to the edge of the board and the power connector is the SDA signal, and the one next to it (also by the edge of the board) is the SCL signal. These are both 3.3v signals and don't have any pullup resistors. The waysmall board has a 3.3v regulator on it, just to the left of the power connector. It has LW33 stamped on it. The pin below the 3 (in LW33) is the 3.3v output (see the [[JTAG]] connector page which identifies the Vcc pin on the same type of regulator used on the Tweener).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Pullup resistors ==&lt;br /&gt;
&lt;br /&gt;
The I2C bus requires pullup resistors on the '''I2C_SDA''' and '''I2C_SCL''' lines. The [http://www.semiconductors.philips.com/acrobat/literature/9398/39340011.pdf I2C specification] gives some charts for min and max values (see page 39 and 40). For a 5v or 3.3v bus, the minimum pullup resistance should be around 2k ohms. A typical value to use would be 4.7k ohms.&lt;br /&gt;
&lt;br /&gt;
All of the current daughter cards (except the robostix), need to have pullup resistors added, which pullup the SDA and SCL lines to 3.3v levels.&lt;br /&gt;
&lt;br /&gt;
If you use a robostix, the 3.3v pullup resistors are already included. The SDA and SCL lines on the UARTS connector are at 5v levels, and also have pullup resistors on the robostix board. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The [http://docwiki.gumstix.org/I2C_Max518 I2C Max518] example shows how to connect the Maxim [http://www.maxim-ic.com/quick_view2.cfm/qv_pk/1119 MAX518], which is a dual, i2c, digital to analog converter.&lt;br /&gt;
&lt;br /&gt;
The [http://docwiki.gumstix.org/I2C_DS1307 I2C DS1307] example shows how to connect the [http://www.maxim-ic.com/quick_view2.cfm/qv_pk/2688 DS1307], which is an i2c real time clock and nvram chip. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Related ==&lt;br /&gt;
&lt;br /&gt;
[http://www.nxp.com/acrobat_download/literature/9398/39340011.pdf The I²C Bus Specification V.2.1, Philips Semiconductors]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----------------------------&lt;br /&gt;
&lt;br /&gt;
Related pages on the old wiki:&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/I2C_on_the_Gumstix&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/Gumstix_motherboard_I/O#I2C&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/Sample_code/C/I2C&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/I2C_Max518&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/I2C_DS1307&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=420</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=420"/>
				<updated>2008-04-05T00:43:40Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;big&amp;gt;''Welcome to the gumstix users wiki''&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This site is provided so that users of the gumstix OpenEmbedded build system can share their knowledge, showcase their gumstix based projects, and pass on links to other sources of information and materials.  This information is entirely user generated and supported.  Please contribute your know-how to help your fellow developers.&lt;br /&gt;
&lt;br /&gt;
  '''Customer additions and edits are encouraged, but please read the help page before you make any major edits.'''&lt;br /&gt;
  ''Note:  you will need to create a new user account if you would like to contribute or edit content on this site.''&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
{|cellpadding=&amp;quot;2&amp;quot; cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;vertical-align:top;background-color:#f5fffa;border:1px solid #bcc&amp;quot;&lt;br /&gt;
! style=&amp;quot;margin:0;background:#cef2e0;font-size:120%;font-weight:bold;border:1px solid #a3b0bf;text-align:left;color:#000;padding:0.2em 0.4em;&amp;quot; | [[:Category:How-tos |User how to's]]&lt;br /&gt;
! style=&amp;quot;margin:0;background:#cef2e0;font-size:120%;font-weight:bold;border:1px solid #a3b0bf;text-align:left;color:#000;padding:0.2em 0.4em;&amp;quot; | [[:Category:projects|User projects]]&lt;br /&gt;
! style=&amp;quot;margin:0;background:#cef2e0;font-size:120%;font-weight:bold;border:1px solid #a3b0bf;text-align:left;color:#000;padding:0.2em 0.4em;&amp;quot; | [[:Category:literature|Literature]]&lt;br /&gt;
! style=&amp;quot;margin:0;background:#cef2e0;font-size:120%;font-weight:bold;border:1px solid #a3b0bf;text-align:left;color:#000;padding:0.2em 0.4em;&amp;quot; | [[:Category:resources|Resources]]&lt;br /&gt;
! style=&amp;quot;margin:0;background:#cef2e0;font-size:120%;font-weight:bold;border:1px solid #a3b0bf;text-align:left;color:#000;padding:0.2em 0.4em;&amp;quot; | [[:Category:faqs|FAQs]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[:Category:how to - general|General]]&lt;br /&gt;
* [[:Category:how to - linux|Linux]]&lt;br /&gt;
* [[:Category:how to - displays|Displays]]&lt;br /&gt;
* [[:Category:how to - audio|Audio]]&lt;br /&gt;
* [[:Category:how to - wifi|Wifi]]&lt;br /&gt;
* [[:Category:how to - bluetooth|Bluetooth]]&lt;br /&gt;
* [[:Category:how to - gps|GPS]]&lt;br /&gt;
* [[:Category:how to - serial|Serial]]&lt;br /&gt;
* [[:Category:how to - gpio|GPIO]]&lt;br /&gt;
* [[:Category:how to - gui|GUI]]&lt;br /&gt;
* [[:Category:how to - i2c|I²C]]&lt;br /&gt;
* [[:Category:how to - spi|SPI]]&lt;br /&gt;
* [[:Category:how to - usb|USB]]&lt;br /&gt;
* [[:Category:how to - robotics|Robotics]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[:Category:projects - audio|Audio]]&lt;br /&gt;
* [[:Category:projects - competitions|Competitions]]&lt;br /&gt;
* [[:Category:projects - displays|Displays]]&lt;br /&gt;
* [[:Category:projects - education|Education]]&lt;br /&gt;
* [[:Category:projects - monitoring and control|Monitoring and Control]]&lt;br /&gt;
* [[:Category:projects - robotics|Robotics]]&lt;br /&gt;
* [[:Category:projects - uav's|UAV's]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[Motherboard information]]&lt;br /&gt;
* [[Motherboard specifications]]&lt;br /&gt;
* [[Expansion board information]]&lt;br /&gt;
* [[Expansion board specifications]]&lt;br /&gt;
* [[Software information]]&lt;br /&gt;
* [[Supported hardware]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[Manufacturer's specifications]]&lt;br /&gt;
* [[:Category:component suppliers|Component suppliers]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[Frequent Problems]]&lt;br /&gt;
* [[GUI on Gumstix FAQ]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For official Gumstix supported documentation on OpenEmbedded and other information of interest to developers:&lt;br /&gt;
[http://www.gumstix.net www.gumstix.net]&lt;br /&gt;
&lt;br /&gt;
For company and product information, pricing, and to place an order:&lt;br /&gt;
[http://www.gumstix.com www.gumstix.com]&lt;br /&gt;
&lt;br /&gt;
To use the gumstix users mailing list: &lt;br /&gt;
[https://lists.sourceforge.net/lists/listinfo/gumstix-users Signup page]&lt;br /&gt;
[http://www.nabble.com/Gumstix-f22543.html Archive search]&lt;br /&gt;
&lt;br /&gt;
For information and support for the legacy gumstix buildroot build system:&lt;br /&gt;
[http://docwiki.gumstix.org/Main_Page docwiki.gumstix.org]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=419</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=419"/>
				<updated>2008-04-05T00:42:53Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;big&amp;gt;''Welcome to the gumstix users wiki''&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This site is provided so that users of the gumstix OpenEmbedded build system can share their knowledge, showcase their gumstix based projects, and pass on links to other sources of information and materials.  This information is entirely user generated and supported.  Please contribute your know-how to help your fellow developers.&lt;br /&gt;
&lt;br /&gt;
  '''Customer additions and edits are encouraged, but please read the help page before you make any major edits.'''&lt;br /&gt;
  ''Note:  you will need to create a new user account if you would like to contribute or edit content on this site.''&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
{|cellpadding=&amp;quot;2&amp;quot; cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;vertical-align:top;background-color:#f5fffa;border:1px solid #bcc&amp;quot;&lt;br /&gt;
! style=&amp;quot;margin:0;background:#cef2e0;font-size:120%;font-weight:bold;border:1px solid #a3b0bf;text-align:left;color:#000;padding:0.2em 0.4em;&amp;quot; | [[:Category:How-tos |User how to's]]&lt;br /&gt;
! style=&amp;quot;margin:0;background:#cef2e0;font-size:120%;font-weight:bold;border:1px solid #a3b0bf;text-align:left;color:#000;padding:0.2em 0.4em;&amp;quot; | [[:Category:projects|User projects]]&lt;br /&gt;
! style=&amp;quot;margin:0;background:#cef2e0;font-size:120%;font-weight:bold;border:1px solid #a3b0bf;text-align:left;color:#000;padding:0.2em 0.4em;&amp;quot; | [[:Category:literature|Literature]]&lt;br /&gt;
! style=&amp;quot;margin:0;background:#cef2e0;font-size:120%;font-weight:bold;border:1px solid #a3b0bf;text-align:left;color:#000;padding:0.2em 0.4em;&amp;quot; | [[:Category:resources|Resources]]&lt;br /&gt;
! style=&amp;quot;margin:0;background:#cef2e0;font-size:120%;font-weight:bold;border:1px solid #a3b0bf;text-align:left;color:#000;padding:0.2em 0.4em;&amp;quot; | [[:Category:faqs|FAQs]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[:Category:how to - general|General]]&lt;br /&gt;
* [[:Category:how to - linux|Linux]]&lt;br /&gt;
* [[:Category:how to - displays|Displays]]&lt;br /&gt;
* [[:Category:how to - audio|Audio]]&lt;br /&gt;
* [[:Category:how to - wifi|Wifi]]&lt;br /&gt;
* [[:Category:how to - bluetooth|Bluetooth]]&lt;br /&gt;
* [[:Category:how to - gps|GPS]]&lt;br /&gt;
* [[:Category:how to - serial|Serial]]&lt;br /&gt;
* [[:Category:how to - gpio|GPIO]]&lt;br /&gt;
* [[:Category:how to - gui|GUI]]&lt;br /&gt;
* [[:Category:how to - i2c|i2c]]&lt;br /&gt;
* [[:Category:how to - spi|SPI]]&lt;br /&gt;
* [[:Category:how to - usb|USB]]&lt;br /&gt;
* [[:Category:how to - robotics|Robotics]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[:Category:projects - audio|Audio]]&lt;br /&gt;
* [[:Category:projects - competitions|Competitions]]&lt;br /&gt;
* [[:Category:projects - displays|Displays]]&lt;br /&gt;
* [[:Category:projects - education|Education]]&lt;br /&gt;
* [[:Category:projects - monitoring and control|Monitoring and Control]]&lt;br /&gt;
* [[:Category:projects - robotics|Robotics]]&lt;br /&gt;
* [[:Category:projects - uav's|UAV's]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[Motherboard information]]&lt;br /&gt;
* [[Motherboard specifications]]&lt;br /&gt;
* [[Expansion board information]]&lt;br /&gt;
* [[Expansion board specifications]]&lt;br /&gt;
* [[Software information]]&lt;br /&gt;
* [[Supported hardware]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[Manufacturer's specifications]]&lt;br /&gt;
* [[:Category:component suppliers|component suppliers]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[Frequent Problems]]&lt;br /&gt;
* [[GUI on Gumstix FAQ]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For official Gumstix supported documentation on OpenEmbedded and other information of interest to developers:&lt;br /&gt;
[http://www.gumstix.net www.gumstix.net]&lt;br /&gt;
&lt;br /&gt;
For company and product information, pricing, and to place an order:&lt;br /&gt;
[http://www.gumstix.com www.gumstix.com]&lt;br /&gt;
&lt;br /&gt;
To use the gumstix users mailing list: &lt;br /&gt;
[https://lists.sourceforge.net/lists/listinfo/gumstix-users Signup page]&lt;br /&gt;
[http://www.nabble.com/Gumstix-f22543.html Archive search]&lt;br /&gt;
&lt;br /&gt;
For information and support for the legacy gumstix buildroot build system:&lt;br /&gt;
[http://docwiki.gumstix.org/Main_Page docwiki.gumstix.org]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Change_boot_logo&amp;diff=418</id>
		<title>Change boot logo</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Change_boot_logo&amp;diff=418"/>
				<updated>2008-04-05T00:36:24Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: New page: custom logo by the following method:   The gumstix-fb-logo.patch is a diff between a custom image and the default Penguin 'logo_linux_clut224.ppm'. This image can be found in (for a Verdex...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;custom logo by the following method:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The gumstix-fb-logo.patch is a diff between a custom image and the default Penguin 'logo_linux_clut224.ppm'. This image can be found in (for a Verdex):&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
gumstix-oe/tmp/work/gumstix-custom-verdex-angstrom-linux-gnueabi/gumstix-kernel-2.6.21-r1/linux-2.6.21/drivers/video/logo&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You'll need the original image, so you can perform the following steps to get a pre-patched kernel:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
bitbake -c clean gumstix-kernel&lt;br /&gt;
&lt;br /&gt;
bitbake -c unpack gumstix-kernel&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After you implement your patch, do:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
bitbake gumstix-kernel&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
to finish the build.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can then copy uImage over, and hopefully have a pretty, custom logo.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If the compile fails, it's likely due to a problem with your PPM. In Gimp, you need to set the palette to 224 colors and make sure you save it as ascii. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:How_to_-_gui]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=USB&amp;diff=414</id>
		<title>USB</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=USB&amp;diff=414"/>
				<updated>2008-04-05T00:26:05Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:100px;background:limegreen;&amp;quot; | USBH_PWR1 || colspan=&amp;quot;2&amp;quot; | Over-current indicator (input, active low)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_PEN1 || colspan=&amp;quot;2&amp;quot; |  Power enable USB port (output)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_P1 || rowspan=&amp;quot;4&amp;quot; align=&amp;quot;center&amp;quot; | USB port || USB D+&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_N1 || USB D-&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:tomato;&amp;quot; | V_BATT || USB VBUS&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND || USB DGND&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The [[24pin_connector|24-pin flex ribbon]] connector has '''USB port 1''' on it. '''USB port 2''' is on the [[60pin_connector|60-pin Hirose connector]] &lt;br /&gt;
&lt;br /&gt;
The pinouts you need for USB port 1 are:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* V_BATT (pin 24) - USB power&lt;br /&gt;
* USBH_N1 (pin 18) - USB D-&lt;br /&gt;
* USBH_P1 (pin 17) - USB D+&lt;br /&gt;
* GND (pin 8) - USB Ground&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In addition, you need to pull USBH_PWR1 (pin 20) up to 3.3 volts to enable the port. You need to provide a stable 3.3 volt supply, which is fairly simple to do by adding a small SOT23 package voltage regulator (like the [http://www.national.com/mpf/LM/LM3480.html LM3480]), with the power input coming from V_BATT (pin 24) and the output going to USBH_PWR1 (pin 20).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''WARNING:''' This page is at this moment incomplete/inaccurate! &lt;br /&gt;
&lt;br /&gt;
'''TODO:''' D+/D- pull-down resistors (software?), termination resistors and capacitors for EMI suppresion, ESD protection, USBH_PEN1 and USBH_PWR1 (power switch)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:24-pin-usb-example.png]]&lt;br /&gt;
&lt;br /&gt;
'''U1''': LM3480 3.3V Voltage regulator&lt;br /&gt;
&lt;br /&gt;
'''C1,C2''': 0.1uF Capacitors&lt;br /&gt;
&lt;br /&gt;
(*this example may not work, read warning above)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Related ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Design%20Guide%20%5b280001-002%5d.pdf PXA270 Design Guide, P. 202]&lt;br /&gt;
&lt;br /&gt;
[http://www.usb.org/developers/docs/usb_20_092407.zip Universal Serial Bus Revision 2.0 specification]&lt;br /&gt;
&lt;br /&gt;
[ftp://ftp.compaq.com/pub/supportinformation/papers/hcir1_0a.pdf Open HCI—Open Host controller Specification for USB]&lt;br /&gt;
&lt;br /&gt;
[http://www.fairchildsemi.com/an/AN/AN-5052.pdf Implementing the Physical Layer in a USB 2.0 Compliant System, AN-5052, Fairchild Semiconductor]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=USB&amp;diff=412</id>
		<title>USB</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=USB&amp;diff=412"/>
				<updated>2008-04-05T00:20:05Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:100px;background:limegreen;&amp;quot; | USBH_PWR1 || colspan=&amp;quot;2&amp;quot; | Over-current indicator (input, active low)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_PEN1 || colspan=&amp;quot;2&amp;quot; |  Power enable USB port (output)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_P1 || rowspan=&amp;quot;4&amp;quot; align=&amp;quot;center&amp;quot; | USB port || USB D+&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_N1 || USB D-&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:tomato;&amp;quot; | V_BATT || USB VBUS&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND || USB DGND&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The [[24pin_connector|24-pin flex ribbon]] connector has '''USB port 1''' on it. '''USB port 2''' is on the [[60pin_connector|60-pin Hirose connector]] &lt;br /&gt;
&lt;br /&gt;
The pinouts you need for USB port 1 are:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* V_BATT (pin 24) - USB power&lt;br /&gt;
* USBH_N1 (pin 18) - USB D-&lt;br /&gt;
* USBH_P1 (pin 17) - USB D+&lt;br /&gt;
* GND (pin 8) - USB Ground&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In addition, you need to pull USBH_PWR1 (pin 20) up to 3.3 volts to enable the port. You need to provide a stable 3.3 volt supply, which is fairly simple to do by adding a small SOT23 package voltage regulator (like the [http://www.national.com/mpf/LM/LM3480.html LM3480]), with the power input coming from V_BATT (pin 24) and the output going to USBH_PWR1 (pin 20).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''WARNING:''' This page is at this moment incomplete/inaccurate! &lt;br /&gt;
&lt;br /&gt;
'''TODO:''' D+/D- pull-down resistors (software?), termination resistors and capacitors for EMI suppresion, ESD protection, USBH_PEN1 and USBH_PWR1 (power switch)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:24-pin-usb-example.png]]&lt;br /&gt;
&lt;br /&gt;
U1: LM3480 3.3V Voltage regulator&lt;br /&gt;
&lt;br /&gt;
C1,C2: 0.1uF Capacitors&lt;br /&gt;
&lt;br /&gt;
(*this example may not work, read warning above)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Related ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Design%20Guide%20%5b280001-002%5d.pdf PXA270 Design Guide, P. 202]&lt;br /&gt;
&lt;br /&gt;
[http://www.usb.org/developers/docs/usb_20_092407.zip Universal Serial Bus Revision 2.0 specification]&lt;br /&gt;
&lt;br /&gt;
[ftp://ftp.compaq.com/pub/supportinformation/papers/hcir1_0a.pdf Open HCI—Open Host controller Specification for USB]&lt;br /&gt;
&lt;br /&gt;
[http://www.fairchildsemi.com/an/AN/AN-5052.pdf Implementing the Physical Layer in a USB 2.0 Compliant System, AN-5052, Fairchild Semiconductor]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Supply&amp;diff=411</id>
		<title>Supply</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Supply&amp;diff=411"/>
				<updated>2008-04-05T00:08:26Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== V_BATT ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:120px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:tomato;&amp;quot; | V_BATT&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Supply voltage: 3.6V - 5.0V (max. 6.0V)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This net powers the gumstix motherboard and all expansion boards. '''V_BATT''' is located on all modular connectors.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== V_BACKUP_BATT ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:120px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:salmon;&amp;quot; | V_BACKUP_BATT&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Supply voltage: 3.0V&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This net connects to the pin 'VBACKUP' of the power management chip [http://www.ti.com/lit/gpn/tps65022 TPS65022].&lt;br /&gt;
&amp;lt;br&amp;gt;It exists to source power from an off-board backup battery. V_BACKUP_BATT is located on the [[24pin connector|24-pin flex ribbon]] (Verdex only) connector&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If your application needs a backup battery, connect a 3V Li-Ion cell directly to '''V_BACKUP_BATT''' and '''GND''' and remove R9 (0 Ohm resistor to ground). &lt;br /&gt;
&lt;br /&gt;
Use a boost converter (ex. [http://www.ti.com/lit/gpn/tps61070 TPS61070]) if you use a single NiMH battery&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In systems where no backup battery is used, this net is connected to GROUND.&amp;lt;br&amp;gt;&lt;br /&gt;
On the verdex, this is done with R9 (0 Ohm resistor), which is populated by default on our website-sale boards.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== SYS_EN ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:120px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:lightpink;&amp;quot; | SYS_EN&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Power Management ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Powering Gumstix from batteries ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----------------------------&lt;br /&gt;
&lt;br /&gt;
Related pages on the gumstix website:&lt;br /&gt;
&lt;br /&gt;
http://pubs.gumstix.org/documents/Powering_a_Gumstix.pdf&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----------------------------&lt;br /&gt;
&lt;br /&gt;
Related pages on the old wiki:&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/Gumstix_motherboard_I/O#Batteries_and_power&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/Batteries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Supply&amp;diff=410</id>
		<title>Supply</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Supply&amp;diff=410"/>
				<updated>2008-04-05T00:07:18Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== V_BATT ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:120px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:tomato;&amp;quot; | V_BATT&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Supply voltage: 3.6V - 5.0V (max. 6.0V)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This net powers the gumstix motherboard and all expansion boards. '''V_BATT''' is located on all modular connectors.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== V_BACKUP_BATT ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:120px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:salmon;&amp;quot; | V_BACKUP_BATT&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Supply voltage: 3.0V&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This net connects to the pin 'VBACKUP' of the power management chip [http://www.ti.com/lit/gpn/tps65022 TPS65022].&lt;br /&gt;
&amp;lt;br&amp;gt;It exists to source power from an off-board backup battery. V_BACKUP_BATT is located on the [[24pin connector|24-pin flex ribbon]] (Verdex only) connector&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If your application needs a backup battery, connect a 3V Li-Ion cell directly to '''V_BACKUP_BATT''' and '''GND''' and remove R9 (0 Ohm resistor to ground). &lt;br /&gt;
&lt;br /&gt;
Use a boost converter (ex. [http://www.ti.com/lit/gpn/tps61070 TPS61070]) if you use a single NiMH battery&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In systems where no backup battery is used, this net is connected to GROUND.&amp;lt;br&amp;gt;&lt;br /&gt;
On the verdex, this is done with R9 (0 Ohm resistor), which is populated by default on our website-sale boards.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== SYS_EN ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:120px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:lightpink;&amp;quot; | SYS_EN&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Powering Gumstix from batteries ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----------------------------&lt;br /&gt;
&lt;br /&gt;
Related pages on the gumstix website:&lt;br /&gt;
&lt;br /&gt;
http://pubs.gumstix.org/documents/Powering_a_Gumstix.pdf&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----------------------------&lt;br /&gt;
&lt;br /&gt;
Related pages on the old wiki:&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/Gumstix_motherboard_I/O#Batteries_and_power&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/Batteries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Supply&amp;diff=409</id>
		<title>Supply</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Supply&amp;diff=409"/>
				<updated>2008-04-05T00:06:27Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== V_BATT ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:120px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:tomato;&amp;quot; | V_BATT&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Supply voltage: 3.6V - 5.0V (max. 6.0V)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This net powers the gumstix motherboard and all expansion boards. '''V_BATT''' is located on all modular connectors.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== V_BACKUP_BATT ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:120px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:salmon;&amp;quot; | V_BACKUP_BATT&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Supply voltage: 3.0V&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This net connects to the pin 'VBACKUP' of the power management chip [http://focus.ti.com/docs/prod/folders/print/tps65022.html TPS65022].&lt;br /&gt;
&amp;lt;br&amp;gt;It exists to source power from an off-board backup battery. V_BACKUP_BATT is located on the [[24pin connector|24-pin flex ribbon]] (Verdex only) connector&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If your application needs a backup battery, connect a 3V Li-Ion cell directly to '''V_BACKUP_BATT''' and '''GND''' and remove R9 (0 Ohm resistor to ground). &lt;br /&gt;
&lt;br /&gt;
Use a boost converter (ex. [http://www.ti.com/lit/gpn/tps61070 TPS61070]) if you use a single NiMH battery&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In systems where no backup battery is used, this net is connected to GROUND.&amp;lt;br&amp;gt;&lt;br /&gt;
On the verdex, this is done with R9 (0 Ohm resistor), which is populated by default on our website-sale boards.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== SYS_EN ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:120px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:lightpink;&amp;quot; | SYS_EN&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Powering Gumstix from batteries ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----------------------------&lt;br /&gt;
&lt;br /&gt;
Related pages on the gumstix website:&lt;br /&gt;
&lt;br /&gt;
http://pubs.gumstix.org/documents/Powering_a_Gumstix.pdf&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----------------------------&lt;br /&gt;
&lt;br /&gt;
Related pages on the old wiki:&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/Gumstix_motherboard_I/O#Batteries_and_power&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/Batteries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Qt/Qtopia/Qtopia_Core/Qt-Embedded_Explained&amp;diff=408</id>
		<title>Qt/Qtopia/Qtopia Core/Qt-Embedded Explained</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Qt/Qtopia/Qtopia_Core/Qt-Embedded_Explained&amp;diff=408"/>
				<updated>2008-04-05T00:03:47Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
There are several products by Trolltech with similar names. This page tries to clear up common confusion people have with these names.&lt;br /&gt;
&lt;br /&gt;
==Qt==&lt;br /&gt;
Qt is a library &amp;amp; API for writing applications in. It is well-known for KDE, which is based on Qt.&lt;br /&gt;
&lt;br /&gt;
Qt, and applications written using Qt, are cross-platform. This means you write your code once and just compile it for the platform you want. Currently, the supported platforms are: Windows, OS X, X11, WindowsCE &amp;amp; Embedded Linux.&lt;br /&gt;
&lt;br /&gt;
On the Gumstix, there are 2 platforms of interest: X11 and Embedded Linux. If you want to run GTK+ applications and Qt applications at the same time, install the KDrive X Server and use Qt/X11. This is included as an OpenEmbedded recipe.&lt;br /&gt;
&lt;br /&gt;
If all you want to do is run Qt applications, or write your own application with Qt, then Qt/Embedded Linux is probably what you want. This provides the complete Qt library &amp;amp; API, using its own, built-in window system (QWS). The binary size of Qt/X11 and Qt/Embedded Linux are roughly the same, but with Qt/Embedded Linux you don't need an X installation, greatly reducing the amount of flash needed. Qt/Embedded also works flawlessly on 18-bit LCDs and is generally faster and less memory-hungery than X. Note that before Qt 4.4.0, Qt/Embedded Linux was called Qtopia Core.&lt;br /&gt;
&lt;br /&gt;
==Qtopia==&lt;br /&gt;
Trolltech also has a number of products under the name of Qtopia. These are suites of applications written by Trolltech using Qt/Embedded Linux. Qtopia comes in several &amp;quot;Editions&amp;quot;, the most common of which is the Phone Edition. Qtopia Phone Edition contains all the applications you would expect to see on a mobile phone, things like a launcher, dialer, web browser, contact list, etc. There are currently community efforts to get Qtopia Phone Eddition applications working with Qt/X11 instead of Qt/Embedded Linux to allow them to run on the OpenMoko phone.&lt;br /&gt;
&lt;br /&gt;
==Summary==&lt;br /&gt;
Qt - A library you use in your applications&amp;lt;br /&amp;gt;&lt;br /&gt;
Qtopia - A suite of applications which use Qt&amp;lt;br /&amp;gt;&lt;br /&gt;
Qtopia Core - The old name of Qt/Embedded Linux&amp;lt;br /&amp;gt;&lt;br /&gt;
Qt/Embedded Linux - The Qt library with a built-in window system&amp;lt;br /&amp;gt;&lt;br /&gt;
QWS - The Qt Window System, part of Qt/Embedded Linux (Formally Qtopia Core)&lt;br /&gt;
&lt;br /&gt;
==Licencing==&lt;br /&gt;
Qt is released under the GPLv2 and the GPLv3. This means if you write applications using Qt, you are legally obliged to publish the source code to your application. If you do not wish to release your application's source code to the public, you must purchase a commercial license from Trolltech before you start development.&lt;br /&gt;
&lt;br /&gt;
[[Category:How_to_-_gui]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Supply&amp;diff=404</id>
		<title>Supply</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Supply&amp;diff=404"/>
				<updated>2008-04-04T23:46:25Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== V_BATT ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:120px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:tomato;&amp;quot; | V_BATT&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Supply voltage: 3.6V - 5.0V (max. 6.0V)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This net powers the gumstix motherboard and all expansion boards. '''V_BATT''' is located on all modular connectors.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== V_BACKUP_BATT ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:120px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:salmon;&amp;quot; | V_BACKUP_BATT&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Supply voltage: 3.0V&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This net connects to the pin 'VBACKUP' of the power management chip [http://focus.ti.com/docs/prod/folders/print/tps65022.html TPS65022].&lt;br /&gt;
&amp;lt;br&amp;gt;It exists to source power from an off-board backup battery. V_BACKUP_BATT is located on the [[24pin connector|24-pin flex ribbon]] (Verdex only) connector&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If your application needs a backup battery, connect a 3V Li-Ion cell directly to '''V_BACKUP_BATT''' and '''GND''' and remove R9 (0 Ohm resistor to ground). &lt;br /&gt;
&lt;br /&gt;
Use a boost converter (ex. [http://focus.ti.com/docs/prod/folders/print/tps61070.html TPS61070]) if you use a single NiMH battery&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In systems where no backup battery is used, this net is connected to GROUND.&amp;lt;br&amp;gt;&lt;br /&gt;
On the verdex, this is done with R9 (0 Ohm resistor), which is populated by default on our website-sale boards.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== SYS_EN ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:120px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:lightpink;&amp;quot; | SYS_EN&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Powering Gumstix from batteries ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----------------------------&lt;br /&gt;
&lt;br /&gt;
Related pages on the gumstix website:&lt;br /&gt;
&lt;br /&gt;
http://pubs.gumstix.org/documents/Powering_a_Gumstix.pdf&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----------------------------&lt;br /&gt;
&lt;br /&gt;
Related pages on the old wiki:&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/Gumstix_motherboard_I/O#Batteries_and_power&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/Batteries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=UARTs&amp;diff=401</id>
		<title>UARTs</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=UARTs&amp;diff=401"/>
				<updated>2008-04-04T23:27:31Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Logic level (3.3V)  signals&lt;br /&gt;
* FFUART speeds to 230 kbps  (normally mapped to ttyS0 in the kernel and Y0 in some schematics )&lt;br /&gt;
* HWUART speeds to 921 kbps (normally mapped to ttyS3 in the kernel and Y1 in some schematics)&lt;br /&gt;
* Both can use RxD, TxD, RTS, CTS.&lt;br /&gt;
* STUART speeds to 230 kbps (normally mapped to ttyS2)&lt;br /&gt;
* BTUART is not an exposed interface; mapped to ttyS1 by the kernel and connected physically to the bluetooth module if one is present.&lt;br /&gt;
&lt;br /&gt;
* Note! Current kernels use ttyS3 (HWUART) for bluetooth. This is available on the BTUART pins by setting GPIO42 and 43 to AF3 - and this is the default configuration. This can be very confusing if you want to use the HWUART for something else! To re-enable HWUART on ttyS3, make bluetooth use ttyS1 (see /etc/default/bluetooth) and then set GPIO42 to AF1 in and GPIO43 to AF2 out. You can then set GPIO48 to AF1 out (HWUART TXD) and GPIO49 to AF1 in (HWUART RXD).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/Gumstix_UARTs&lt;br /&gt;
&lt;br /&gt;
== UARTs ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== FFUART ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:100px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:lightblue;&amp;quot; | FF_CTS&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:lightblue;&amp;quot; | FF_RTS&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:lightblue;&amp;quot; | FF_TXD&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:lightblue;&amp;quot; | FF_RXD&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Logic level (3.3V) signals&lt;br /&gt;
* Speeds to 230 kbps &lt;br /&gt;
* Normally mapped to ttyS0 in the kernel and Y0 in some schematics&lt;br /&gt;
* FFUART pins are located on the [[60pin connector|60-pin Hirose]] connector&lt;br /&gt;
* [http://www.gumstix.org/schematics/B00002-FFUART.png?nocache=1 Schematic diagram for the FFUART]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== HWUART ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:100px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:aquamarine;&amp;quot; | HW_CTS&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:aquamarine;&amp;quot; | HW_RTS&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:aquamarine;&amp;quot; | HW_TXD&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:aquamarine;&amp;quot; | HW_RXD&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Logic level (3.3V) signals&lt;br /&gt;
* Speeds to 921 kbps&lt;br /&gt;
* Normally mapped to ttyS3 in the kernel and Y1 in some schematics&lt;br /&gt;
* HWUART pins are located on the [[60pin connector|60-pin Hirose]] (Connex and Basix only) &lt;br /&gt;
* [http://www.gumstix.org/schematics/B00002-HWUART.png?nocache=1 Schematic diagram for the HWUART]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== STUART ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [http://www.gumstix.org/schematics/B00003-FF_ST_UARTS.png?nocache=1 Schematic diagram for the STUART]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== BTUART ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:dodgerblue;width:100px;&amp;quot; | BT_CTS&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:dodgerblue;&amp;quot; | BT_RTS&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:dodgerblue;&amp;quot; | BT_TXD&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:dodgerblue;&amp;quot; | BT_RXD&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:dodgerblue;width:100px;&amp;quot; | BT_NRESET || Bluetooth reset (output, active low)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:dodgerblue;&amp;quot; | CLK_32 || 32.768 kHz Clock output&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* BTUART pins are located on the [[60pin connector|60-pin Hirose]] and [[24pin connector|24-pin flex ribbon]] (Verdex only) connectors.&lt;br /&gt;
* It is not an exposed interface; mapped to ttyS1 by the kernel and connected physically to the bluetooth module if one is present.&lt;br /&gt;
* BT_NRESET and CLK_32 are for an optional Bluetooth module IC ([[24pin connector|24-pin flex ribbon]] only)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----------------------------&lt;br /&gt;
&lt;br /&gt;
Related pages on the old wiki:&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/Gumstix_UARTs&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/Gumstix_motherboard_I/O#UART&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/Tips_and_tricks#UARTs&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=USB&amp;diff=400</id>
		<title>USB</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=USB&amp;diff=400"/>
				<updated>2008-04-04T22:08:39Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:100px;background:limegreen;&amp;quot; | USBH_PWR1 || colspan=&amp;quot;2&amp;quot; | Over-current indicator (input, active low)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_PEN1 || colspan=&amp;quot;2&amp;quot; |  Power enable USB port (output)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_P1 || rowspan=&amp;quot;4&amp;quot; align=&amp;quot;center&amp;quot; | USB port || USB D+&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_N1 || USB D-&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:tomato;&amp;quot; | V_BATT || USB VBUS&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND || USB DGND&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The [[24pin_connector|24-pin flex ribbon]] connector has '''USB port 1''' on it. '''USB port 2''' is on the [[60pin_connector|60-pin Hirose connector]] &lt;br /&gt;
&lt;br /&gt;
The pinouts you need for USB port 1 are:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* V_BATT (pin 24) - USB power&lt;br /&gt;
* USBH_N1 (pin 18) - USB D-&lt;br /&gt;
* USBH_P1 (pin 17) - USB D+&lt;br /&gt;
* GND (pin 8) - USB Ground&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In addition, you need to pull USBH_PWR1 (pin 20) up to 3.3 volts to enable the port. You need to provide a stable 3.3 volt supply, which is fairly simple to do by adding a small SOT23 package voltage regulator (like the [http://www.national.com/mpf/LM/LM3480.html LM3480]), with the power input coming from V_BATT (pin 24) and the output going to USBH_PWR1 (pin 20).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''WARNING:''' This information could be yet inaccurate. '''TODO:''' D+/D- pull-down resistors (software?), termination resistors and capacitors for EMI suppresion, plus USBH_PEN1 and USBH_PWR1&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:24-pin-usb-example.png]]&lt;br /&gt;
&lt;br /&gt;
U1: LM3480&lt;br /&gt;
&lt;br /&gt;
C1,C2: 0.1uF&lt;br /&gt;
&lt;br /&gt;
(*read warning above)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Related ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Design%20Guide%20%5b280001-002%5d.pdf PXA270 Design Guide, P. 202]&lt;br /&gt;
&lt;br /&gt;
[http://www.usb.org/developers/docs/usb_20_092407.zip Universal Serial Bus Revision 2.0 specification]&lt;br /&gt;
&lt;br /&gt;
[ftp://ftp.compaq.com/pub/supportinformation/papers/hcir1_0a.pdf Open HCI—Open Host controller Specification for USB]&lt;br /&gt;
&lt;br /&gt;
[http://www.fairchildsemi.com/an/AN/AN-5052.pdf Implementing the Physical Layer in a USB 2.0 Compliant System, AN-5052, Fairchild Semiconductor]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=USB&amp;diff=398</id>
		<title>USB</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=USB&amp;diff=398"/>
				<updated>2008-04-04T21:04:04Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:100px;background:limegreen;&amp;quot; | USBH_PWR1 || colspan=&amp;quot;2&amp;quot; | Pull-up to 3.3 volts to enable USB port&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_PEN1 || colspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_P1 || rowspan=&amp;quot;4&amp;quot; align=&amp;quot;center&amp;quot; | USB port || USB D+&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_N1 || USB D-&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:tomato;&amp;quot; | V_BATT || USB VBUS&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND || USB DGND&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The [[24pin_connector|24-pin flex ribbon]] connector has USB port 1 on it. USB port 2 is on the [[60pin_connector|60-pin Hirose connector]] &lt;br /&gt;
&lt;br /&gt;
The pinouts you need for USB port 1 are:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* V_BATT (pin 24) - USB power&lt;br /&gt;
* USBH_N1 (pin 18) - USB D-&lt;br /&gt;
* USBH_P1 (pin 17) - USB D+&lt;br /&gt;
* GND (pin 8) - USB Ground&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In addition, you need to pull USBH_PWR1 (pin 20) up to 3.3 volts to enable the port. You need to provide a stable 3.3 volt supply, which is fairly simple to do by adding a small SOT23 package voltage regulator (like the [http://www.national.com/mpf/LM/LM3480.html LM3480]), with the power input coming from V_BATT (pin 24) and the output going to USBH_PWR1 (pin 20).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''WARNING:''' This information could be yet inaccurate. '''TODO:''' D+/D- pull-down resistors (software?), termination resistors and capacitors for EMI suppresion, plus USBH_PEN1 and USBH_PWR1&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:24-pin-usb-example.png]]&lt;br /&gt;
&lt;br /&gt;
U1: LM3480&lt;br /&gt;
&lt;br /&gt;
C1,C2: 0.1uF&lt;br /&gt;
&lt;br /&gt;
(read warning above)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Related ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.usb.org/developers/docs/usb_20_092407.zip Universal Serial Bus Revision 2.0 specification]&lt;br /&gt;
&lt;br /&gt;
[ftp://ftp.compaq.com/pub/supportinformation/papers/hcir1_0a.pdf Open HCI—Open Host controller Specification for USB]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=USB&amp;diff=396</id>
		<title>USB</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=USB&amp;diff=396"/>
				<updated>2008-04-04T20:58:45Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:100px;background:limegreen;&amp;quot; | USBH_PWR1 || colspan=&amp;quot;2&amp;quot; | Pull-up to 3.3 volts to enable USB port&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_PEN1 || colspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_P1 || rowspan=&amp;quot;4&amp;quot; align=&amp;quot;center&amp;quot; | USB port || USB D+&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_N1 || USB D-&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:tomato;&amp;quot; | V_BATT || USB VBUS&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND || USB DGND&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The [[24pin_connector|24-pin flex ribbon]] connector has USB port 1 on it. &lt;br /&gt;
The pinouts you need are:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* V_BATT (pin 24) - USB power&lt;br /&gt;
* USBH_N1 (pin 18) - USB D-&lt;br /&gt;
* USBH_P1 (pin 17) - USB D+&lt;br /&gt;
* GND (pin 8) - USB Ground&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In addition, you need to pull USBH_PWR1 (pin 20) up to 3.3 volts to enable the port. You need to provide a stable 3.3 volt supply, which is fairly simple to do by adding a small SOT23 package voltage regulator (like the [http://www.national.com/mpf/LM/LM3480.html LM3480]), with the power input coming from V_BATT (pin 24) and the output going to USBH_PWR1 (pin 20).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''WARNING:''' This information could be yet inaccurate. '''TODO:''' D+/D- pull-down resistors (software?), termination resistors and capacitors for EMI suppresion, plus USBH_PEN1 and USBH_PWR1&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:24-pin-usb-example.png]]&lt;br /&gt;
&lt;br /&gt;
U1: LM3480&lt;br /&gt;
&lt;br /&gt;
C1,C2: 0.1uF&lt;br /&gt;
&lt;br /&gt;
(read warning above)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Related ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.usb.org/developers/docs/usb_20_092407.zip Universal Serial Bus Revision 2.0 specification]&lt;br /&gt;
&lt;br /&gt;
[ftp://ftp.compaq.com/pub/supportinformation/papers/hcir1_0a.pdf Open HCI—Open Host controller Specification for USB]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=USB&amp;diff=395</id>
		<title>USB</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=USB&amp;diff=395"/>
				<updated>2008-04-04T20:57:56Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:100px;background:limegreen;&amp;quot; | USBH_PWR1 || colspan=&amp;quot;2&amp;quot; | Pull-up to 3.3 volts to enable USB port&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_PEN1 || colspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_P1 || rowspan=&amp;quot;4&amp;quot; align=&amp;quot;center&amp;quot; | USB port || USB D+&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_N1 || USB D-&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:tomato;&amp;quot; | V_BATT || USB VBUS&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND || USB DGND&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The [[24pin_connector|24-pin flex ribbon]] connector has USB port 1 on it. &lt;br /&gt;
The pinouts you need are:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* V_BATT (pin 24) - USB power&lt;br /&gt;
* USBH_N1 (pin 18) - USB D-&lt;br /&gt;
* USBH_P1 (pin 17) - USB D+&lt;br /&gt;
* GND (pin 8) - USB Ground&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In addition, you need to pull USBH_PWR1 (pin 20) up to 3.3 volts to enable the port. You need to provide a stable 3.3 volt supply, which is fairly simple to do by adding a small SOT23 package voltage regulator (like the [http://www.national.com/mpf/LM/LM3480.html LM3480]), with the power input coming from V_BATT (pin 24) and the output going to USBH_PWR1 (pin 20).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''WARNING:''' This information could be yet inaccurate. '''TODO:''' D+/D- pull-down resistors (software?), termination resistors and capacitors for EMI suppresion, plus USBH_PEN1 and USBH_PWR1&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:24-pin-usb-example.png]]&lt;br /&gt;
&lt;br /&gt;
U1: LM3480&lt;br /&gt;
&lt;br /&gt;
C1,C2: 0.1uF&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Related ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.usb.org/developers/docs/usb_20_092407.zip Universal Serial Bus Revision 2.0 specification]&lt;br /&gt;
&lt;br /&gt;
[ftp://ftp.compaq.com/pub/supportinformation/papers/hcir1_0a.pdf Open HCI—Open Host controller Specification for USB]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=USB&amp;diff=394</id>
		<title>USB</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=USB&amp;diff=394"/>
				<updated>2008-04-04T20:35:46Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:100px;background:limegreen;&amp;quot; | USBH_PWR1 || colspan=&amp;quot;2&amp;quot; | Pull-up to 3.3 volts to enable USB port&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_PEN1 || colspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_P1 || rowspan=&amp;quot;4&amp;quot; align=&amp;quot;center&amp;quot; | USB port || USB D+&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_N1 || USB D-&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:tomato;&amp;quot; | V_BATT || USB VBUS&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND || USB DGND&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The [[24pin_connector|24-pin flex ribbon]] connector has USB port 1 on it. &lt;br /&gt;
The pinouts you need are:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* V_BATT (pin 24) - USB power&lt;br /&gt;
* USBH_N1 (pin 18) - USB D-&lt;br /&gt;
* USBH_P1 (pin 17) - USB D+&lt;br /&gt;
* GND (pin 8) - USB Ground&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In addition, you need to pull USBH_PWR1 (pin 20) up to 3.3 volts to enable the port. You need to provide a stable 3.3 volt supply, which is fairly simple to do by adding a small SOT23 package voltage regulator (like the [http://www.national.com/mpf/LM/LM3480.html LM3480]), with the power input coming from V_BATT (pin 24) and the output going to USBH_PWR1 (pin 20).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:24-pin-usb-example.png]]&lt;br /&gt;
&lt;br /&gt;
U1: LM3480&lt;br /&gt;
&lt;br /&gt;
C1,C2: 0.1uF&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Related ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.usb.org/developers/docs/usb_20_092407.zip Universal Serial Bus Revision 2.0 specification]&lt;br /&gt;
&lt;br /&gt;
[ftp://ftp.compaq.com/pub/supportinformation/papers/hcir1_0a.pdf Open HCI—Open Host controller Specification for USB]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=File:24-pin-usb-example.png&amp;diff=393</id>
		<title>File:24-pin-usb-example.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=File:24-pin-usb-example.png&amp;diff=393"/>
				<updated>2008-04-04T20:33:04Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: uploaded a new version of &amp;quot;Image:24-pin-usb-example.png&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=File:24-pin-usb-example.png&amp;diff=392</id>
		<title>File:24-pin-usb-example.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=File:24-pin-usb-example.png&amp;diff=392"/>
				<updated>2008-04-04T20:32:06Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: uploaded a new version of &amp;quot;Image:24-pin-usb-example.png&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=USB&amp;diff=391</id>
		<title>USB</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=USB&amp;diff=391"/>
				<updated>2008-04-04T20:01:20Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:100px;background:limegreen;&amp;quot; | USBH_PWR1 || colspan=&amp;quot;2&amp;quot; | Pull-up to 3.3 volts to enable USB port&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_PEN1 || colspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_P1 || rowspan=&amp;quot;4&amp;quot; align=&amp;quot;center&amp;quot; | USB port || USB D+&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_N1 || USB D-&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:tomato;&amp;quot; | V_BATT || USB VBUS&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND || USB DGND&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The [[24pin_connector|24-pin flex ribbon]] connector has USB port 1 on it. &lt;br /&gt;
The pinouts you need are:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* V_BATT (pin 24) - USB power&lt;br /&gt;
* USBH_N1 (pin 18) - USB D-&lt;br /&gt;
* USBH_P1 (pin 17) - USB D+&lt;br /&gt;
* GND (pin 8) - USB Ground&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In addition, you need to pull USBH_PWR1 (pin 20) up to 3.3 volts to enable the port. You need to provide a stable 3.3 volt supply, which is fairly simple to do by adding a small SOT23 package voltage regulator (like the [http://www.national.com/mpf/LM/LM3480.html LM3480]), with the power input coming from V_BATT (pin 24) and the output going to USBH_PWR1 (pin 20).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:24-pin-usb-example.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Related ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.usb.org/developers/docs/usb_20_092407.zip Universal Serial Bus Revision 2.0 specification]&lt;br /&gt;
&lt;br /&gt;
[ftp://ftp.compaq.com/pub/supportinformation/papers/hcir1_0a.pdf Open HCI—Open Host controller Specification for USB]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=385</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=385"/>
				<updated>2008-03-29T22:54:29Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;big&amp;gt;''Welcome to the gumstix users wiki''&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This site is provided so that users of the gumstix OpenEmbedded build system can share their knowledge, showcase their gumstix based projects, and pass on links to other sources of information and materials.  This information is entirely user generated and supported.  Please contribute your know-how to help your fellow developers.&lt;br /&gt;
&lt;br /&gt;
  '''Customer additions and edits are encouraged, but please read the help page before you make any major edits.'''&lt;br /&gt;
  ''Note:  you will need to create a new user account if you would like to contribute or edit content on this site.''&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
{|cellpadding=&amp;quot;2&amp;quot; cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;vertical-align:top;background-color:#f5fffa;border:1px solid #bcc&amp;quot;&lt;br /&gt;
! style=&amp;quot;margin:0;background:#cef2e0;font-size:120%;font-weight:bold;border:1px solid #a3b0bf;text-align:left;color:#000;padding:0.2em 0.4em;&amp;quot; | [[:Category:How-tos |User how to's]]&lt;br /&gt;
! style=&amp;quot;margin:0;background:#cef2e0;font-size:120%;font-weight:bold;border:1px solid #a3b0bf;text-align:left;color:#000;padding:0.2em 0.4em;&amp;quot; | [[:Category:projects|User projects]]&lt;br /&gt;
! style=&amp;quot;margin:0;background:#cef2e0;font-size:120%;font-weight:bold;border:1px solid #a3b0bf;text-align:left;color:#000;padding:0.2em 0.4em;&amp;quot; | [[:Category:literature|Literature]]&lt;br /&gt;
! style=&amp;quot;margin:0;background:#cef2e0;font-size:120%;font-weight:bold;border:1px solid #a3b0bf;text-align:left;color:#000;padding:0.2em 0.4em;&amp;quot; | [[:Category:resources|Resources]]&lt;br /&gt;
! style=&amp;quot;margin:0;background:#cef2e0;font-size:120%;font-weight:bold;border:1px solid #a3b0bf;text-align:left;color:#000;padding:0.2em 0.4em;&amp;quot; | [[:Category:faqs|FAQs]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[:Category:how to - general|general]]&lt;br /&gt;
* [[:Category:how to - linux|linux]]&lt;br /&gt;
* [[:Category:how to - displays|displays]]&lt;br /&gt;
* [[:Category:how to - audio|audio]]&lt;br /&gt;
* [[:Category:how to - wifi|wifi]]&lt;br /&gt;
* [[:Category:how to - bluetooth|bluetooth]]&lt;br /&gt;
* [[:Category:how to - gps|gps]]&lt;br /&gt;
* [[:Category:how to - serial|serial]]&lt;br /&gt;
* [[:Category:how to - gpio|gpio]]&lt;br /&gt;
* [[:Category:how to - gui|gui]]&lt;br /&gt;
* [[:Category:how to - i2c|i2c]]&lt;br /&gt;
* [[:Category:how to - spi|spi]]&lt;br /&gt;
* [[:Category:how to - usb|usb]]&lt;br /&gt;
* [[:Category:how to - robotics|robotics]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[:Category:projects - audio|audio]]&lt;br /&gt;
* [[:Category:projects - competitions|competitions]]&lt;br /&gt;
* [[:Category:projects - displays|displays]]&lt;br /&gt;
* [[:Category:projects - education|education]]&lt;br /&gt;
* [[:Category:projects - monitoring and control|monitoring and control]]&lt;br /&gt;
* [[:Category:projects - robotics|robotics]]&lt;br /&gt;
* [[:Category:projects - uav's|uav's]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[Motherboard information]]&lt;br /&gt;
* [[Motherboard specifications]]&lt;br /&gt;
* [[Expansion board information]]&lt;br /&gt;
* [[Expansion board specifications]]&lt;br /&gt;
* [[Software information]]&lt;br /&gt;
* [[Supported hardware]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[Manufacturer's specifications]]&lt;br /&gt;
* [[:Category:component suppliers|component suppliers]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[Frequent Problems]]&lt;br /&gt;
* [[GUI on Gumstix FAQ]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For official Gumstix supported documentation on OpenEmbedded and other information of interest to developers:&lt;br /&gt;
[http://www.gumstix.net www.gumstix.net]&lt;br /&gt;
&lt;br /&gt;
For company and product information, pricing, and to place an order:&lt;br /&gt;
[http://www.gumstix.com www.gumstix.com]&lt;br /&gt;
&lt;br /&gt;
To use the gumstix users mailing list: &lt;br /&gt;
[https://lists.sourceforge.net/lists/listinfo/gumstix-users Signup page]&lt;br /&gt;
[http://www.nabble.com/Gumstix-f22543.html Archive search]&lt;br /&gt;
&lt;br /&gt;
For information and support for the legacy gumstix buildroot build system:&lt;br /&gt;
[http://docwiki.gumstix.org/Main_Page docwiki.gumstix.org]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Manufacturer%27s_specifications&amp;diff=384</id>
		<title>Manufacturer's specifications</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Manufacturer%27s_specifications&amp;diff=384"/>
				<updated>2008-03-29T22:50:04Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Processor documentation ==&lt;br /&gt;
&lt;br /&gt;
Marvell® PXA270 with XScale™ Processor documentation:&lt;br /&gt;
&lt;br /&gt;
* [http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Processor%20Developer's%20Manual%20%5b280000-002%5d.pdf PXA270 Processor Developer's Manual]&lt;br /&gt;
&lt;br /&gt;
* [http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Electrical,%20Mechanical,%20and%20Thermal%20Specification%20%5b280002-005%5d.pdf PXA270 Electrical, Mechanical, and Thermal Specifications]&lt;br /&gt;
&lt;br /&gt;
* [http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Specification%20Update%20%5b280071-009%5d.pdf PXA270 Specification Update]&lt;br /&gt;
&lt;br /&gt;
* [http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Processor%20Optimization%20Guide%20%5b280004-002%5d.pdf PXA270 Processor Optimization Guide]&lt;br /&gt;
&lt;br /&gt;
* [http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Design%20Guide%20%5b280001-002%5d.pdf PXA270 Design Guide]&lt;br /&gt;
&lt;br /&gt;
* [http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Connecting%20NAND%20Flash%20%5b28014402%5d.pdf PXA270 Connecting NAND Flash]&lt;br /&gt;
&lt;br /&gt;
* [http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Connecting%20to%20HD%20via%20VLIO%20%5b30842202%5d.pdf PXA270 Connecting to HD via VLIO]&lt;br /&gt;
&lt;br /&gt;
* [http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Video%20Decoder%20Performance%20Optimization%20%5b28000601%5d.pdf PXA270 Video Decoder Performance Optimization]&lt;br /&gt;
&lt;br /&gt;
* [http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Smart%20LCD%20Panel%20%5b30968801%5d.pdf PXA270 Smart LCD Panel]&lt;br /&gt;
&lt;br /&gt;
* [http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Checklist%20%5b280013-001%5d.pdf PXA270 Checklist]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Bluetooth: PBA31308 ==&lt;br /&gt;
Infineon publishes [http://www.infineon.com/cms/en/product/channel.html?channel=ff80808112ab681d0112ab6aac4105c1&amp;amp;showAllDocuments=true&amp;amp;tab=2&amp;amp;ipt=false&amp;amp;documentGroup=db3a304412b407950112b408f713001d this PBA31308 documentation] for the Infineon PBA31308 module RoHS-compliant (Class 2 Bluetooth™) used in gumstix&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Ethernet: SMSC module==&lt;br /&gt;
As of the Spring 2007, Gumstix uses the SMSC LAN91C111 ethernet module for the various 92-pin and 120-pin expansion boards. The manufacturer specs for the SMSC module are [http://www.smsc.com/main/catalog/lan91c111.html posted here].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Antenna: Wistron antenna used for wifi and verdex Bluetooth ==&lt;br /&gt;
The document has been [http://pubs.gumstix.com/documents/Approvals/ posted here].&lt;br /&gt;
&lt;br /&gt;
Posting of this document to a gumstix wiki page was approved in February, 2007 by Kenny Young of &lt;br /&gt;
W-Neweb Corporation in San Jose, California.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Motherboard Connectors ==&lt;br /&gt;
&lt;br /&gt;
=== part numbers for the 120pin connector ===&lt;br /&gt;
&lt;br /&gt;
- The [[120pin connector]] that goes on the gumstix is the part #55686-1274 from Molex.&lt;br /&gt;
&lt;br /&gt;
- the mating connector from Molex is part #54876-1274 (discontinued)&lt;br /&gt;
&lt;br /&gt;
- The new mating connector from Molex is part # 0546841204 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== part numbers for the 24-pin flex connector ===&lt;br /&gt;
&lt;br /&gt;
FH12A-24S-0.5SH(55) Digikey part HFK124CT-ND&lt;br /&gt;
&lt;br /&gt;
The [[24pin connector]] was added to the verdex motherboard in response to customer demands for a daughtercard on the 120-pin side of the motherboard that provides UART, USB host etc function on the 24pin/120pin side of the verdex motherboard as these functions are normally &amp;quot;60-pin&amp;quot; type functions.&lt;br /&gt;
&lt;br /&gt;
With a flat flex cable, it should be easy to bring those functions from the 24-pin flex connector onto a custom board on the120-pin side of the verdex motherboard in order to reduce the thickness of the board &amp;quot;sandwich&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Additionally, for very simple gumstix implementation scenarios, (e.g. connecting say an I2C sensor to a gumstix), the 24-pin flex connector is lower cost &amp;amp; easier to integrate than the 60- or 120-pin connectors.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Gumstix added the 24-pin flex connector to address several issues:&lt;br /&gt;
&lt;br /&gt;
1) being able to get a console while the motherboard is otherwise in use without the physical limitations of the tweener.&lt;br /&gt;
&lt;br /&gt;
2) USB Host.&lt;br /&gt;
&lt;br /&gt;
3) Battery for RTC.&lt;br /&gt;
&lt;br /&gt;
4) Daughtercards that need a flex connector. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== part numbers for the 60-pin connector ===&lt;br /&gt;
&lt;br /&gt;
Hirose DF12D(3.0)60DP0.5V80.&lt;br /&gt;
&lt;br /&gt;
The [[60pin connector]] is 0.5mm pitch and has an interboard distance of 3mm, so working with it really requires using surface mount pads and techniques.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Resources]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=383</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=383"/>
				<updated>2008-03-29T22:49:17Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;big&amp;gt;''Welcome to the gumstix users wiki''&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This site is provided so that users of the gumstix OpenEmbedded build system can share their knowledge, showcase their gumstix based projects, and pass on links to other sources of information and materials.  This information is entirely user generated and supported.  Please contribute your know-how to help your fellow developers.&lt;br /&gt;
&lt;br /&gt;
  '''Customer additions and edits are encouraged, but please read the help page before you make any major edits.'''&lt;br /&gt;
  ''Note:  you will need to create a new user account if you would like to contribute or edit content on this site.''&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
{|cellpadding=&amp;quot;2&amp;quot; cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;vertical-align:top;background-color:#f5fffa;border:1px solid #bcc&amp;quot;&lt;br /&gt;
! style=&amp;quot;margin:0;background:#cef2e0;font-size:120%;font-weight:bold;border:1px solid #a3b0bf;text-align:left;color:#000;padding:0.2em 0.4em;&amp;quot; | [[:Category:How-tos |User how to's]]&lt;br /&gt;
! style=&amp;quot;margin:0;background:#cef2e0;font-size:120%;font-weight:bold;border:1px solid #a3b0bf;text-align:left;color:#000;padding:0.2em 0.4em;&amp;quot; | [[:Category:projects|User projects]]&lt;br /&gt;
! style=&amp;quot;margin:0;background:#cef2e0;font-size:120%;font-weight:bold;border:1px solid #a3b0bf;text-align:left;color:#000;padding:0.2em 0.4em;&amp;quot; | [[:Category:literature|Literature]]&lt;br /&gt;
! style=&amp;quot;margin:0;background:#cef2e0;font-size:120%;font-weight:bold;border:1px solid #a3b0bf;text-align:left;color:#000;padding:0.2em 0.4em;&amp;quot; | [[:Category:resources|Resources]]&lt;br /&gt;
! style=&amp;quot;margin:0;background:#cef2e0;font-size:120%;font-weight:bold;border:1px solid #a3b0bf;text-align:left;color:#000;padding:0.2em 0.4em;&amp;quot; | [[:Category:faqs|FAQs]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[:Category:how to - general|general]]&lt;br /&gt;
* [[:Category:how to - linux|linux]]&lt;br /&gt;
* [[:Category:how to - displays|displays]]&lt;br /&gt;
* [[:Category:how to - audio|audio]]&lt;br /&gt;
* [[:Category:how to - wifi|wifi]]&lt;br /&gt;
* [[:Category:how to - bluetooth|bluetooth]]&lt;br /&gt;
* [[:Category:how to - gps|gps]]&lt;br /&gt;
* [[:Category:how to - serial|serial]]&lt;br /&gt;
* [[:Category:how to - gpio|gpio]]&lt;br /&gt;
* [[:Category:how to - gui|gui]]&lt;br /&gt;
* [[:Category:how to - i2c|i2c]]&lt;br /&gt;
* [[:Category:how to - spi|spi]]&lt;br /&gt;
* [[:Category:how to - usb|usb]]&lt;br /&gt;
* [[:Category:how to - robotics|robotics]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[:Category:projects - audio|audio]]&lt;br /&gt;
* [[:Category:projects - competitions|competitions]]&lt;br /&gt;
* [[:Category:projects - displays|displays]]&lt;br /&gt;
* [[:Category:projects - education|education]]&lt;br /&gt;
* [[:Category:projects - monitoring and control|monitoring and control]]&lt;br /&gt;
* [[:Category:projects - robotics|robotics]]&lt;br /&gt;
* [[:Category:projects - uav's|uav's]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[Motherboard information]]&lt;br /&gt;
* [[Motherboard specifications]]&lt;br /&gt;
* [[Expansion board information]]&lt;br /&gt;
* [[Expansion board specifications]]&lt;br /&gt;
* [[Software information]]&lt;br /&gt;
* [[Gumstix I/O Interfaces and pinouts]]&lt;br /&gt;
* [[Supported hardware]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[Manufacturer's specifications]]&lt;br /&gt;
* [[:Category:component suppliers|component suppliers]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[Frequent Problems]]&lt;br /&gt;
* [[GUI on Gumstix FAQ]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For official Gumstix supported documentation on OpenEmbedded and other information of interest to developers:&lt;br /&gt;
[http://www.gumstix.net www.gumstix.net]&lt;br /&gt;
&lt;br /&gt;
For company and product information, pricing, and to place an order:&lt;br /&gt;
[http://www.gumstix.com www.gumstix.com]&lt;br /&gt;
&lt;br /&gt;
To use the gumstix users mailing list: &lt;br /&gt;
[https://lists.sourceforge.net/lists/listinfo/gumstix-users Signup page]&lt;br /&gt;
[http://www.nabble.com/Gumstix-f22543.html Archive search]&lt;br /&gt;
&lt;br /&gt;
For information and support for the legacy gumstix buildroot build system:&lt;br /&gt;
[http://docwiki.gumstix.org/Main_Page docwiki.gumstix.org]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Category:Resources&amp;diff=382</id>
		<title>Category:Resources</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Category:Resources&amp;diff=382"/>
				<updated>2008-03-29T22:47:53Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: New page: Please contribute your knowledge to the gumstix community&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Please contribute your knowledge to the gumstix community&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Manufacturer%27s_specifications&amp;diff=381</id>
		<title>Manufacturer's specifications</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Manufacturer%27s_specifications&amp;diff=381"/>
				<updated>2008-03-29T22:45:52Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Processor documentation ==&lt;br /&gt;
&lt;br /&gt;
Marvell® PXA270 with XScale™ Processor documentation:&lt;br /&gt;
&lt;br /&gt;
* [http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Processor%20Developer's%20Manual%20%5b280000-002%5d.pdf PXA270 Processor Developer's Manual]&lt;br /&gt;
&lt;br /&gt;
* [http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Electrical,%20Mechanical,%20and%20Thermal%20Specification%20%5b280002-005%5d.pdf PXA270 Electrical, Mechanical, and Thermal Specifications]&lt;br /&gt;
&lt;br /&gt;
* [http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Specification%20Update%20%5b280071-009%5d.pdf PXA270 Specification Update]&lt;br /&gt;
&lt;br /&gt;
* [http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Processor%20Optimization%20Guide%20%5b280004-002%5d.pdf PXA270 Processor Optimization Guide]&lt;br /&gt;
&lt;br /&gt;
* [http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Design%20Guide%20%5b280001-002%5d.pdf PXA270 Design Guide]&lt;br /&gt;
&lt;br /&gt;
* [http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Connecting%20NAND%20Flash%20%5b28014402%5d.pdf PXA270 Connecting NAND Flash]&lt;br /&gt;
&lt;br /&gt;
* [http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Connecting%20to%20HD%20via%20VLIO%20%5b30842202%5d.pdf PXA270 Connecting to HD via VLIO]&lt;br /&gt;
&lt;br /&gt;
* [http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Video%20Decoder%20Performance%20Optimization%20%5b28000601%5d.pdf PXA270 Video Decoder Performance Optimization]&lt;br /&gt;
&lt;br /&gt;
* [http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Smart%20LCD%20Panel%20%5b30968801%5d.pdf PXA270 Smart LCD Panel]&lt;br /&gt;
&lt;br /&gt;
* [http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Checklist%20%5b280013-001%5d.pdf PXA270 Checklist]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Bluetooth: PBA31308 ==&lt;br /&gt;
Infineon publishes [http://www.infineon.com/cms/en/product/channel.html?channel=ff80808112ab681d0112ab6aac4105c1&amp;amp;showAllDocuments=true&amp;amp;tab=2&amp;amp;ipt=false&amp;amp;documentGroup=db3a304412b407950112b408f713001d this PBA31308 documentation] for the Infineon PBA31308 module RoHS-compliant (Class 2 Bluetooth™) used in gumstix&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Ethernet: SMSC module==&lt;br /&gt;
As of the Spring 2007, Gumstix uses the SMSC LAN91C111 ethernet module for the various 92-pin and 120-pin expansion boards. The manufacturer specs for the SMSC module are [http://www.smsc.com/main/catalog/lan91c111.html posted here].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Wifi: Wistron antenna used for wifi and verdex Bluetooth ==&lt;br /&gt;
The document has been [http://pubs.gumstix.com/documents/Approvals/ posted here].&lt;br /&gt;
&lt;br /&gt;
Posting of this document to a gumstix wiki page was approved in February, 2007 by Kenny Young of &lt;br /&gt;
W-Neweb Corporation in San Jose, California.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Motherboard Connectors ==&lt;br /&gt;
&lt;br /&gt;
=== part numbers for the 120pin connector ===&lt;br /&gt;
&lt;br /&gt;
- The [[120pin connector]] that goes on the gumstix is the part #55686-1274 from Molex.&lt;br /&gt;
&lt;br /&gt;
- the mating connector from Molex is part #54876-1274 (discontinued)&lt;br /&gt;
&lt;br /&gt;
- The new mating connector from Molex is part # 0546841204 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== part numbers for the 24-pin flex connector ===&lt;br /&gt;
&lt;br /&gt;
FH12A-24S-0.5SH(55) Digikey part HFK124CT-ND&lt;br /&gt;
&lt;br /&gt;
The [[24pin connector]] was added to the verdex motherboard in response to customer demands for a daughtercard on the 120-pin side of the motherboard that provides UART, USB host etc function on the 24pin/120pin side of the verdex motherboard as these functions are normally &amp;quot;60-pin&amp;quot; type functions.&lt;br /&gt;
&lt;br /&gt;
With a flat flex cable, it should be easy to bring those functions from the 24-pin flex connector onto a custom board on the120-pin side of the verdex motherboard in order to reduce the thickness of the board &amp;quot;sandwich&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Additionally, for very simple gumstix implementation scenarios, (e.g. connecting say an I2C sensor to a gumstix), the 24-pin flex connector is lower cost &amp;amp; easier to integrate than the 60- or 120-pin connectors.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Gumstix added the 24-pin flex connector to address several issues:&lt;br /&gt;
&lt;br /&gt;
1) being able to get a console while the motherboard is otherwise in use without the physical limitations of the tweener.&lt;br /&gt;
&lt;br /&gt;
2) USB Host.&lt;br /&gt;
&lt;br /&gt;
3) Battery for RTC.&lt;br /&gt;
&lt;br /&gt;
4) Daughtercards that need a flex connector. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== part numbers for the 60-pin connector ===&lt;br /&gt;
&lt;br /&gt;
Hirose DF12D(3.0)60DP0.5V80.&lt;br /&gt;
&lt;br /&gt;
The [[60pin connector]] is 0.5mm pitch and has an interboard distance of 3mm, so working with it really requires using surface mount pads and techniques.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Resources]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Category:Manufacturer%27s_specifications&amp;diff=380</id>
		<title>Category:Manufacturer's specifications</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Category:Manufacturer%27s_specifications&amp;diff=380"/>
				<updated>2008-03-29T22:41:47Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: Removing all content from page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Manufacturer%27s_specifications&amp;diff=379</id>
		<title>Manufacturer's specifications</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Manufacturer%27s_specifications&amp;diff=379"/>
				<updated>2008-03-29T22:40:10Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Processor documentation ==&lt;br /&gt;
&lt;br /&gt;
[http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/ Marvell® PXA270 with XScale™ Processor documentation]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Processor%20Developer's%20Manual%20%5b280000-002%5d.pdf PXA270 Processor Developer's Manual]&lt;br /&gt;
&lt;br /&gt;
* [http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Electrical,%20Mechanical,%20and%20Thermal%20Specification%20%5b280002-005%5d.pdf PXA270 Electrical, Mechanical, and Thermal Specifications]&lt;br /&gt;
&lt;br /&gt;
* [http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Specification%20Update%20%5b280071-009%5d.pdf PXA270 Specification Update]&lt;br /&gt;
&lt;br /&gt;
* [http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Processor%20Optimization%20Guide%20%5b280004-002%5d.pdf PXA270 Processor Optimization Guide]&lt;br /&gt;
&lt;br /&gt;
* [http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Design%20Guide%20%5b280001-002%5d.pdf PXA270 Design Guide]&lt;br /&gt;
&lt;br /&gt;
* [http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Connecting%20NAND%20Flash%20%5b28014402%5d.pdf PXA270 Connecting NAND Flash]&lt;br /&gt;
&lt;br /&gt;
* [http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Connecting%20to%20HD%20via%20VLIO%20%5b30842202%5d.pdf PXA270 Connecting to HD via VLIO]&lt;br /&gt;
&lt;br /&gt;
* [http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Video%20Decoder%20Performance%20Optimization%20%5b28000601%5d.pdf PXA270 Video Decoder Performance Optimization]&lt;br /&gt;
&lt;br /&gt;
* [http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Smart%20LCD%20Panel%20%5b30968801%5d.pdf PXA270 Smart LCD Panel]&lt;br /&gt;
&lt;br /&gt;
* [http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Checklist%20%5b280013-001%5d.pdf PXA270 Checklist]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Bluetooth: PBA31308 ==&lt;br /&gt;
Infineon publishes [http://www.infineon.com/cms/en/product/channel.html?channel=ff80808112ab681d0112ab6aac4105c1&amp;amp;showAllDocuments=true&amp;amp;tab=2&amp;amp;ipt=false&amp;amp;documentGroup=db3a304412b407950112b408f713001d this PBA31308 documentation] for the Infineon PBA31308 module RoHS-compliant (Class 2 Bluetooth™) used in gumstix&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Ethernet: SMSC module==&lt;br /&gt;
As of the Spring 2007, Gumstix uses the SMSC LAN91C111 ethernet module for the various 92-pin and 120-pin expansion boards. The manufacturer specs for the SMSC module are [http://www.smsc.com/main/catalog/lan91c111.html posted here].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Wifi: Wistron antenna used for wifi and verdex Bluetooth ==&lt;br /&gt;
The document has been [http://pubs.gumstix.com/documents/Approvals/ posted here].&lt;br /&gt;
&lt;br /&gt;
Posting of this document to a gumstix wiki page was approved in February, 2007 by Kenny Young of &lt;br /&gt;
W-Neweb Corporation in San Jose, California.&lt;br /&gt;
&lt;br /&gt;
== Motherboard Connectors ==&lt;br /&gt;
&lt;br /&gt;
=== part numbers for the 120-pin connector ===&lt;br /&gt;
&lt;br /&gt;
- The 120 pin connector that goes on the gumstix is the part #55686-1274 from Molex.&lt;br /&gt;
&lt;br /&gt;
- the mating connector from Molex is part #54876-1274 (discontinued)&lt;br /&gt;
&lt;br /&gt;
- The new mating connector from Molex is part # 0546841204 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== part numbers for the 24-pin flex connector ===&lt;br /&gt;
&lt;br /&gt;
FH12A-24S-0.5SH(55) Digikey part HFK124CT-ND&lt;br /&gt;
&lt;br /&gt;
The 24-pin flex connector was added to the verdex motherboard in response to customer demands for a daughtercard on the 120-pin side of the motherboard that provides UART, USB host etc function on the 24pin/120pin side of the verdex motherboard as these functions are normally &amp;quot;60-pin&amp;quot; type functions.&lt;br /&gt;
&lt;br /&gt;
With a flat flex cable, it should be easy to bring those functions from the 24-pin flex connector onto a custom board on the120-pin side of the verdex motherboard in order to reduce the thickness of the board &amp;quot;sandwich&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Additionally, for very simple gumstix implementation scenarios, (e.g. connecting say an I2C sensor to a gumstix), the 24-pin flex connector is lower cost &amp;amp; easier to integrate than the 60- or 120-pin connectors.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Gumstix added the 24-pin flex connector to address several issues:&lt;br /&gt;
&lt;br /&gt;
1) being able to get a console while the motherboard is otherwise in use without the physical limitations of the tweener.&lt;br /&gt;
&lt;br /&gt;
2) USB Host.&lt;br /&gt;
&lt;br /&gt;
3) Battery for RTC.&lt;br /&gt;
&lt;br /&gt;
4) Daughtercards that need a flex connector. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== part numbers for the 60-pin connector ===&lt;br /&gt;
&lt;br /&gt;
Hirose DF12D(3.0)60DP0.5V80.&lt;br /&gt;
&lt;br /&gt;
It is 0.5mm pitch and has an interboard distance of 3mm, so working with it really requires using surface mount pads and techniques.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Resources]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Bluetooth_module&amp;diff=378</id>
		<title>Bluetooth module</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Bluetooth_module&amp;diff=378"/>
				<updated>2008-03-29T22:39:12Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: Removing all content from page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=GPIO&amp;diff=374</id>
		<title>GPIO</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=GPIO&amp;diff=374"/>
				<updated>2008-03-26T23:50:43Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:100px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:yellow;&amp;quot; | GPIO(&amp;lt;i&amp;gt; n &amp;lt;/i&amp;gt;)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 3.3V&lt;br /&gt;
* 3-4mA max&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
all GPIO's information and examples should go here&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
todo&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
According to the PXA270 datasheet:&lt;br /&gt;
http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Electrical,%20Mechanical,%20and%20Thermal%20Specification%20%5b280002-005%5d.pdf&lt;br /&gt;
most of the pins are limited to 3mA, and a few can go upto 4 mA (see page 5-9) &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----------------------------&lt;br /&gt;
&lt;br /&gt;
Related pages on the old wiki:&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/GPIO_event&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/Tips_and_tricks#Access_GPIOs_from_user-space&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/Sample_code/C/gpregs&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/Kernel_programming&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=GPIO&amp;diff=373</id>
		<title>GPIO</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=GPIO&amp;diff=373"/>
				<updated>2008-03-26T23:48:48Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:100px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:yellow;&amp;quot; | GPIO(&amp;lt;i&amp;gt; n &amp;lt;/i&amp;gt;)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
all GPIO's information and examples should go here&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
todo&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
According to the PXA270 datasheet:&lt;br /&gt;
http://pubs.gumstix.com/documents/PXA%20Documentation/PXA270/PXA270%20Electrical,%20Mechanical,%20and%20Thermal%20Specification%20%5b280002-005%5d.pdf&lt;br /&gt;
most of the pins are limited to 3mA, and a few can go upto 4 mA (see page 5-9) &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----------------------------&lt;br /&gt;
&lt;br /&gt;
Related pages on the old wiki:&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/GPIO_event&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/Tips_and_tricks#Access_GPIOs_from_user-space&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/Sample_code/C/gpregs&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/Kernel_programming&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=USB&amp;diff=372</id>
		<title>USB</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=USB&amp;diff=372"/>
				<updated>2008-03-24T23:59:27Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:100px;background:limegreen;&amp;quot; | USBH_PWR1 || colspan=&amp;quot;2&amp;quot; | Pull-up to 3.3 volts to enable USB port&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_PEN1 || colspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_P1 || rowspan=&amp;quot;4&amp;quot; align=&amp;quot;center&amp;quot; | USB port || USB D+&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_N1 || USB D-&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:tomato;&amp;quot; | V_BATT || USB VBUS&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND || USB DGND&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The [[24pin_connector|24-pin flex ribbon]] connector has USB port 1 on it. &lt;br /&gt;
The pinouts you need are:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* V_BATT (pin 24) - USB power&lt;br /&gt;
* USBH_N1 (pin 18) - USB D-&lt;br /&gt;
* USBH_P1 (pin 17) - USB D+&lt;br /&gt;
* GND (pin 8) - USB Ground&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In addition, you need to pull USBH_PWR1 (pin 20) up to 3.3 volts to enable the port. You need to provide a stable 3.3 volt supply, which is fairly simple to do by adding a small SOT23 package voltage regulator (like the [http://www.national.com/mpf/LM/LM3480.html LM3480]), with the power input coming from V_BATT (pin 24) and the output going to USBH_PWR1 (pin 20).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:24-pin-usb-example.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=USB&amp;diff=371</id>
		<title>USB</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=USB&amp;diff=371"/>
				<updated>2008-03-24T23:46:45Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:100px;background:limegreen;&amp;quot; | USBH_PWR1 || colspan=&amp;quot;2&amp;quot; | Pull-up to 3.3 volts to enable USB port&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_PEN1 || colspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_P1 || rowspan=&amp;quot;4&amp;quot; align=&amp;quot;center&amp;quot; | USB port || USB D+&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:limegreen;&amp;quot; | USBH_N1 || USB D-&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:tomato;&amp;quot; | V_BATT || USB VBUS&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND || USB DGND&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The [[24pin_connector|24-pin flex ribbon]] connector has USB port 1 on it. &lt;br /&gt;
The pinouts you need are:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* V_BATT (pin 24) - USB power&lt;br /&gt;
* USBH_N1 (pin 18) - USB D-&lt;br /&gt;
* USBH_P1 (pin 17) - USB D+&lt;br /&gt;
* GND (pin 8) - USB Ground&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In addition, you need to pull USBH_PWR1 (pin 20) up to 3.3 volts to enable the port. You need to provide a stable 3.3 volt supply, which is fairly simple to do by adding a small SOT23 package voltage regulator (like the [http://www.national.com/mpf/LM/LM3480.html LM3480]), with the power input coming from V_BATT (pin 24) and the output going to USBH_PWR1 (pin 20).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:24-pin-usb-example.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=File:24-pin-usb-example.png&amp;diff=370</id>
		<title>File:24-pin-usb-example.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=File:24-pin-usb-example.png&amp;diff=370"/>
				<updated>2008-03-24T23:45:20Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Software_information&amp;diff=346</id>
		<title>Software information</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Software_information&amp;diff=346"/>
				<updated>2008-03-20T17:03:52Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
&lt;br /&gt;
Gumstix uses Linux® OpenEmbedded, a build environment that allows you to build rootfs images, packages and custom software in a easy way.&lt;br /&gt;
&lt;br /&gt;
There are different rootfs images (gumstix images) that provide a software bundle and a base system out-of-the-box with a single command,&lt;br /&gt;
choose one that fits best your application needs!&lt;br /&gt;
&lt;br /&gt;
Extra software not included on gumstix images is installed through software packages with ipkg.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Starting ==&lt;br /&gt;
&lt;br /&gt;
[http://www.gumstix.net/Software/view/Getting-started/Quick-start/111.html Setup the build environment] and bitbake the image of your choice depending on your application needs. After building, the rootfs image, kernel and optionally any software packages are transferred to your gumstix through a serial connection, using compact flash or MMC type cards or ethernet network (assuming your hardware supports the appropriate interface)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Gumstix images ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
! Image || Size || Description || Status&lt;br /&gt;
|-&lt;br /&gt;
| gumstix-minimal-image || ~7.8 MB || Builds a gumstix minimal system  || style=&amp;quot;background:green;&amp;quot; | ok&lt;br /&gt;
|-&lt;br /&gt;
| gumstix-basic-image || ~9.0 MB || Builds a gumstix minimal system (gumstix-minimal-image) + '''cron''', '''ntp''', '''ntpdate''', '''mtd-utils''' and '''boa''' webserver || style=&amp;quot;background:green;&amp;quot; | ok&lt;br /&gt;
|-&lt;br /&gt;
| gumstix-perl-image || ~9.7 MB || Builds gumstix-basic-image + '''perl'''  || style=&amp;quot;background:green;&amp;quot; | ok&lt;br /&gt;
|-&lt;br /&gt;
| gumstix-goliath-image ||  ||  || style=&amp;quot;background:white;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
| gumstix-qtopia-console-image || ~10.9 MB || Builds a basic gumstix root filesystem plus non-GUI Qtopia libraries || style=&amp;quot;background:white;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
| gumstix-qtopia-gui-image || ~15.5 MB || Builds a basic gumstix root filesystem plus Qtopia || style=&amp;quot;background:yellow;&amp;quot; | work-in-progress&lt;br /&gt;
|-&lt;br /&gt;
| gumstix-x11-image || ~14.8 MB || Builds a gumstix minimal system (gumstix-minimal-image) + plus '''KDrive''' (Xserver), the [http://matchbox-project.org/ '''matchbox'''] window manager and '''GTK+'''  || ! style=&amp;quot;background:green;&amp;quot; | ok&lt;br /&gt;
|-&lt;br /&gt;
| gumstix-x11-full-image ||  || gumstix x11 image + midori || style=&amp;quot;background:yellow;&amp;quot; | work-in-progress&lt;br /&gt;
|-&lt;br /&gt;
| gumstix-x11-32mb-image || ~17.7 MB || gumstix x11 image + midori || style=&amp;quot;background:yellow;&amp;quot; | work-in-progress&lt;br /&gt;
|-&lt;br /&gt;
| gumstix-microwindows-image || --- || ---  || style=&amp;quot;background:yellow;&amp;quot; | work-in-progress&lt;br /&gt;
|-&lt;br /&gt;
| gumstix-directfb-image || ~10.8 MB || gumstix-basic-image + DirectFB 1.1.0 (packages '''directfb''' and '''directfb-examples''') || style=&amp;quot;background:green;&amp;quot; | ok&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Recipes to build gumstix images are stored in '''gumstix-oe/com.gumstix.collection/packages/images'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Packages ==&lt;br /&gt;
&lt;br /&gt;
One you have setup the build environment, building a software package is as easy as typing bitbake &amp;lt;app&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Package receipes are stored in '''gumstix-oe/org.openembedded.snapshot/packages'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Supply&amp;diff=339</id>
		<title>Supply</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Supply&amp;diff=339"/>
				<updated>2008-03-18T20:08:59Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== V_BATT ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:120px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:tomato;&amp;quot; | V_BATT&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Supply voltage: 3.6V - 5.0V (max. 6.0V)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This net powers the gumstix motherboard and all expansion boards. '''V_BATT''' is located on all modular connectors.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== V_BACKUP_BATT ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:120px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:salmon;&amp;quot; | V_BACKUP_BATT&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Supply voltage: 3.0V&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This net connects to the pin 'VBACKUP' of the power management chip [http://focus.ti.com/docs/prod/folders/print/tps65022.html TPS65022].&lt;br /&gt;
&amp;lt;br&amp;gt;It exists to source power from an off-board backup battery. V_BACKUP_BATT is located on the [[24pin connector|24-pin flex ribbon]] (Verdex only) connector&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If your application needs a backup battery, connect a 3V Li-Ion cell directly to '''V_BACKUP_BATT''' and '''GND''' and remove R9 (0 Ohm resistor to ground). &lt;br /&gt;
&lt;br /&gt;
Use a boost converter (ex. [http://focus.ti.com/docs/prod/folders/print/tps61070.html TPS61070]) if you use a single NiMH battery&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In systems where no backup battery is used, this net is connected to GROUND.&amp;lt;br&amp;gt;&lt;br /&gt;
On the verdex, this is done with R9 (0 Ohm resistor), which is populated by default on our website-sale boards.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Powering Gumstix from batteries ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----------------------------&lt;br /&gt;
&lt;br /&gt;
Related pages on the gumstix website:&lt;br /&gt;
&lt;br /&gt;
http://pubs.gumstix.org/documents/Powering_a_Gumstix.pdf&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----------------------------&lt;br /&gt;
&lt;br /&gt;
Related pages on the old wiki:&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/Gumstix_motherboard_I/O#Batteries_and_power&lt;br /&gt;
&lt;br /&gt;
http://docwiki.gumstix.org/Batteries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Supply&amp;diff=332</id>
		<title>Supply</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Supply&amp;diff=332"/>
				<updated>2008-03-18T19:32:57Z</updated>
		
		<summary type="html">&lt;p&gt;Zyagon: New page: == V_BATT ==     {| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:120px&amp;quot; |- | style=&amp;quot;background:tomato;&amp;quot; | V_BATT |- | style=&amp;quot;background:grey;&amp;quot; | GND |}      == V_BACKUP_BATT == ...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== V_BATT ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:120px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:tomato;&amp;quot; | V_BATT&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== V_BACKUP_BATT ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;width:120px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:salmon;&amp;quot; | V_BACKUP_BATT&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:grey;&amp;quot; | GND&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This net connects to the pin 'VBACKUP' of the power management chip [http://focus.ti.com/docs/prod/folders/print/tps65022.html TPS65022].&lt;br /&gt;
&amp;lt;br&amp;gt;It exists to source power from an off-board backup battery. V_BACKUP_BATT is located on the [[24pin connector|24-pin flex ribbon]] (Verdex only) connector&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If your application needs a backup battery, connect a 3V Li-Ion cell directly to '''V_BACKUP_BATT''' and '''GND''' and remove R9 (0 Ohm resistor to ground). &lt;br /&gt;
&lt;br /&gt;
Use a boost converter (ex. [http://focus.ti.com/docs/prod/folders/print/tps61070.html TPS61070]) if you use a single NiMH battery&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In systems where no backup battery is used, this net is connected to GROUND.&amp;lt;br&amp;gt;&lt;br /&gt;
On the verdex, this is done with R9 (0 Ohm resistor), which is populated by default on our website-sale boards.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Powering Gumstix from batteries ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
[[Category:Literature]]&lt;/div&gt;</summary>
		<author><name>Zyagon</name></author>	</entry>

	</feed>