<?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=Steve</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=Steve"/>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php/Special:Contributions/Steve"/>
		<updated>2026-06-05T07:32:17Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.25.3</generator>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=MediaWiki:Confirmemail_body&amp;diff=3933</id>
		<title>MediaWiki:Confirmemail body</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=MediaWiki:Confirmemail_body&amp;diff=3933"/>
				<updated>2009-10-14T17:45:29Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: Created page with 'Someone, probably you, from IP address $1, has registered an account &amp;quot;$2&amp;quot; with this e-mail address on {{SITENAME}}.  To confirm that this account really does belong to you, open …'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Someone, probably you, from IP address $1,&lt;br /&gt;
has registered an account &amp;quot;$2&amp;quot; with this e-mail address on {{SITENAME}}.&lt;br /&gt;
&lt;br /&gt;
To confirm that this account really does belong to you, open this link in your browser:&lt;br /&gt;
&lt;br /&gt;
$3&lt;br /&gt;
&lt;br /&gt;
If you did *not* register the account, follow this link&lt;br /&gt;
to cancel the e-mail address confirmation:&lt;br /&gt;
&lt;br /&gt;
$5&lt;br /&gt;
&lt;br /&gt;
This confirmation code will expire at $4.&lt;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Build_Environment_Ubuntu_8.10&amp;diff=3875</id>
		<title>Build Environment Ubuntu 8.10</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Build_Environment_Ubuntu_8.10&amp;diff=3875"/>
				<updated>2009-09-15T22:09:23Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: Undo revision 3874 by 94.143.40.37 (Talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This the current set-up for Ubuntu 8.10 with file modifications as described [http://www.nabble.com/Ubuntu-8.10-and-Open-Embeded-td21136352.html on this thread]. gumstix-oe version is 318.&lt;br /&gt;
&lt;br /&gt;
== Setup Build Environment ==&lt;br /&gt;
1) Get Ubuntu linux 8.10, and install it on your computer; you can install a vmware version of Ubuntu too, but it will be slow during the building process.&lt;br /&gt;
&lt;br /&gt;
Reconfigure sh to point to bash, not dash:&lt;br /&gt;
&lt;br /&gt;
  sudo dpkg-reconfigure dash&lt;br /&gt;
&lt;br /&gt;
Answer no when asked whether you want to install dash as /bin/sh. &lt;br /&gt;
&lt;br /&gt;
2) Install (build-essential, help2man, diffstat, texi2html, texinfo, libncurses5-dev, cvs, gawk, python-dev, python-pysqlite2, python-psyco, ckermit, lrzsz, subversion) by using apt-get. i.e:&lt;br /&gt;
 sudo apt-get install build-essential help2man diffstat texi2html texinfo libncurses5-dev cvs gawk python-dev python-pysqlite2 python-psyco ckermit lrzsz subversion&lt;br /&gt;
&lt;br /&gt;
3) Download the source from svn, caching the source code&lt;br /&gt;
 mkdir ~/gumstix &lt;br /&gt;
 cd ~/gumstix &lt;br /&gt;
 &amp;lt;nowiki&amp;gt;svn co https://gumstix.svn.sourceforge.net/svnroot/gumstix/trunk gumstix-oe&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
 cat gumstix-oe/extras/profile &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 sudo groupadd oe&lt;br /&gt;
 sudo usermod -a -G oe YOUR_CURRENT_USERNAME&lt;br /&gt;
 sudo mkdir /usr/share/sources&lt;br /&gt;
 sudo chgrp oe /usr/share/sources&lt;br /&gt;
 sudo chmod 0775 /usr/share/sources&lt;br /&gt;
 sudo chmod ug+s /usr/share/sources&lt;br /&gt;
&lt;br /&gt;
4) Downgrade to gcc-4.1 and g++-4.1 and change the links:&lt;br /&gt;
&lt;br /&gt;
 sudo aptitude install gcc-4.1 g++-4.1&lt;br /&gt;
 sudo ln -sf /usr/bin/gcc-4.1 /usr/bin/gcc&lt;br /&gt;
 sudo ln -sf /usr/bin/g++-4.1 /usr/bin/g++&lt;br /&gt;
&lt;br /&gt;
Check the links are correct using:&lt;br /&gt;
&lt;br /&gt;
 ls -l /usr/bin/gcc&lt;br /&gt;
 ls -l /usr/bin/g++&lt;br /&gt;
&lt;br /&gt;
5) Log out and log in again.&lt;br /&gt;
&lt;br /&gt;
6) Build the basic image, it will fail with an error in dbus:&lt;br /&gt;
&lt;br /&gt;
 bitbake gumstix-basic-image&lt;br /&gt;
&lt;br /&gt;
Edit &amp;lt;code&amp;gt;gumstix/gumstix-oe/tmp/work/i686-linux/dbus-native-1.0.1-r0/dbus-1.0.1/dbus/dbus-sysdeps-unix.c&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Add this struct,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
struct ucred { &lt;br /&gt;
   unsigned int pid; &lt;br /&gt;
   unsigned int uid; &lt;br /&gt;
   unsigned int gid; &lt;br /&gt;
};&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
after the macros.&lt;br /&gt;
&lt;br /&gt;
7) Build the basic image, it will fail with an error in sumversion:&lt;br /&gt;
&lt;br /&gt;
 bitbake gumstix-basic-image&lt;br /&gt;
&lt;br /&gt;
Edit &amp;lt;code&amp;gt;gumstix/gumstix-oe/tmp/work/gumstix-custom-verdex-angstrom-linux-gnueabi/gumstix-kernel-2.6.21-r1/linux-2.6.21/scripts/mod/sumversion.c&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Add this line, &lt;br /&gt;
&lt;br /&gt;
  #include &amp;lt;limits.h&amp;gt; &lt;br /&gt;
&lt;br /&gt;
after all of the other includes.&lt;br /&gt;
&lt;br /&gt;
8) Build the basic image again, this time it should work:&lt;br /&gt;
&lt;br /&gt;
 bitbake gumstix-basic-image&lt;br /&gt;
&lt;br /&gt;
9) If everything builds ok, it could be a good idea to modify the dbus-sysdeps-unix.c and sumversion.c files is their respective packages in /usr/share/sources as otherwise everytime you do a rebuild they will be wiped.&lt;br /&gt;
&lt;br /&gt;
[[Category:How_to_-_general]]&lt;br /&gt;
[[Category:How_to_-_Ubuntu]]&lt;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=File:Example.png&amp;diff=344</id>
		<title>File:Example.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=File:Example.png&amp;diff=344"/>
				<updated>2008-03-19T04:06:53Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Qtopia_core_howto&amp;diff=108</id>
		<title>Qtopia core howto</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Qtopia_core_howto&amp;diff=108"/>
				<updated>2008-02-18T19:20:07Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''incomplete'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
download and unpack&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  $ wget ftp://ftp.trolltech.com/qt/source/qtopia-core-preview-opensource-src-4.4.0-tp1.tar.gz&lt;br /&gt;
  $ tar xfzv qtopia-core-preview-opensource-src-4.4.0-tp1.tar.gz ; cd qtopia-core-preview-opensource-src-4.4.0-tp1/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
we need qtopia to find the compiler&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  $ ln -s path-to/gumstix-oe/tmp/cross/bin/arm-angstrom-linux-gnueabi-g++ path-to/gumstix-oe/tmp/cross/bin/arm-linux-g++&lt;br /&gt;
  $ PATH=$PATH:path-to/gumstix-oe/tmp/cross/bin/ ; export PATH&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
configure, make and make install&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  $ ./configure -embedded arm -little-endian -prefix /qtopia -nomake examples -nomake tools -nomake demos ; make ; make install&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
remove debug files *.debug&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
tar and move it to gumstix&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  $ tar cfv ~/qtopia-core.tar /qtopia&lt;br /&gt;
&lt;br /&gt;
  gumstix: $ mkdir /qtopia ; tar xfv qtopia-core.tar -C /qtopia&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:How_to_-_gui]]&lt;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Qtopia_core_howto&amp;diff=107</id>
		<title>Qtopia core howto</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Qtopia_core_howto&amp;diff=107"/>
				<updated>2008-02-18T19:19:23Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''incomplete'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
download and unpack&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  $ wget ftp://ftp.trolltech.com/qt/source/qtopia-core-preview-opensource-src-4.4.0-tp1.tar.gz&lt;br /&gt;
  $ tar xfzv qtopia-core-preview-opensource-src-4.4.0-tp1.tar.gz ; cd qtopia-core-preview-opensource-src-4.4.0-tp1/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
we need qtopia to find the compiler&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  $ ln -s path-to/gumstix-oe/tmp/cross/bin/arm-angstrom-linux-gnueabi-g++ path-to/gumstix-oe/tmp/cross/bin/arm-linux-g++&lt;br /&gt;
  $ PATH=$PATH:path-to/gumstix-oe/tmp/cross/bin/ ; export PATH&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
configure, make and make install&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  $ ./configure -embedded arm -little-endian -prefix /qtopia -nomake examples -nomake tools -nomake demos ; make ; make install&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
remove debug files *.debug&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
tar and move it to gumstix&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  $ tar cfv ~/qtopia-core.tar /qtopia&lt;br /&gt;
&lt;br /&gt;
  gumstix: $ mkdir /qtopia ; tar xfv qtopia-core.tar -C /qtopia&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:How to-gui]]&lt;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Category:Projects_-_monitoring_and_control&amp;diff=80</id>
		<title>Category:Projects - monitoring and control</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Category:Projects_-_monitoring_and_control&amp;diff=80"/>
				<updated>2008-01-31T05:18:56Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: New page: Please contribute an article about your project&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Please contribute an article about your project&lt;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Category:Projects_-_displays&amp;diff=78</id>
		<title>Category:Projects - displays</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Category:Projects_-_displays&amp;diff=78"/>
				<updated>2008-01-31T05:18:27Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: New page: Please contribute an article about your project&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Please contribute an article about your project&lt;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Category:Projects_-_competitions&amp;diff=77</id>
		<title>Category:Projects - competitions</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Category:Projects_-_competitions&amp;diff=77"/>
				<updated>2008-01-31T05:18:13Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: New page: Please contribute an article about your project&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Please contribute an article about your project&lt;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Category:Projects_-_audio&amp;diff=76</id>
		<title>Category:Projects - audio</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Category:Projects_-_audio&amp;diff=76"/>
				<updated>2008-01-31T05:18:01Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: New page: Please contribute an article about your project&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Please contribute an article about your project&lt;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=75</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=75"/>
				<updated>2008-01-31T05:14:45Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: &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:resources|Resources]]&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 - 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;
* [[:Category:manufacturer's specifications|manufacturer's specifications]]&lt;br /&gt;
* [[:Category:component suppliers|component suppliers]]&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>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Category:Projects_-_2007&amp;diff=45</id>
		<title>Category:Projects - 2007</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Category:Projects_-_2007&amp;diff=45"/>
				<updated>2008-01-17T21:30:28Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: New page: Below are user projects:&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Below are user projects:&lt;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=42</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=42"/>
				<updated>2008-01-17T21:23:54Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: &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:resources|Resources]]&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 - 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 - 2008|2008]]&lt;br /&gt;
* [[:Category:projects - 2007|2007 and earlier]]&lt;br /&gt;
* [[:Category:projects - robotics|robotics]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[:Category:manufacturer's specifications|manufacturer's specifications]]&lt;br /&gt;
* [[:Category:component suppliers|component suppliers]]&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>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Manufacturer%27s_specifications&amp;diff=40</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=40"/>
				<updated>2008-01-17T19:10:49Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== PBA31308 Rohs-compliant Bluetooth module specifications ==&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]&lt;br /&gt;
&lt;br /&gt;
== SMSC ethernet 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;
== 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;
[[Category:Manufacturer's specifications]]&lt;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=39</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=39"/>
				<updated>2008-01-17T19:09:47Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: &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:resources|Resources]]&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 - 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 - 2008|2008]]&lt;br /&gt;
* [[:Category:projects - 2007|2007 and earlier]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[:Category:manufacturer's specifications|manufacturer's specifications]]&lt;br /&gt;
* [[:Category:component suppliers|component suppliers]]&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>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=38</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=38"/>
				<updated>2008-01-17T19:02:18Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: &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:resources|Resources]]&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 - 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 - 2008|2008]]&lt;br /&gt;
* [[:Category:projects - 2007|2007 and earlier]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[:Category:manufacturer's specifications|manufacturer's specifications]]&lt;br /&gt;
* [[:Category:component suppliers|component suppliers]]&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, please visit [http://www.gumstix.net www.gumstix.net]&lt;br /&gt;
  To join the gumstix users mailing list please visit the [https://lists.sourceforge.net/lists/listinfo/gumstix-users signup page]&lt;br /&gt;
  For company and product information, pricing, and to place an order, please visit [http://www.gumstix.com www.gumstix.com]&lt;br /&gt;
  For information and support for the legacy gumstix buildroot build system, please visit [http://docwiki.gumstix.org/Main_Page docwiki.gumstix.org]&lt;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=37</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=37"/>
				<updated>2008-01-17T17:50:28Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: &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;
''Note:  you will need to create a new user account if you would like to contribute or edit content on this site.  We have not ported user accounts from docwiki.gumstix.org.''&lt;br /&gt;
&lt;br /&gt;
For official Gumstix supported documentation on OpenEmbedded and other information of interest to developers, please visit [http://www.gumstix.net www.gumstix.net]&lt;br /&gt;
&lt;br /&gt;
To join the gumstix users mailing list please visit the [https://lists.sourceforge.net/lists/listinfo/gumstix-users signup page]&lt;br /&gt;
&lt;br /&gt;
For company and product information, pricing, and to place an order, please visit [http://www.gumstix.com www.gumstix.com]&lt;br /&gt;
&lt;br /&gt;
For information and support for the legacy gumstix buildroot build system, please visit [http://docwiki.gumstix.org/Main_Page docwiki.gumstix.org]&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;
{|&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:resources|Resources]]&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 - 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 - 2008|2008]]&lt;br /&gt;
* [[:Category:projects - 2007|2007 and earlier]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[:Category:manufacturer's specifications|manufacturer's specifications]]&lt;br /&gt;
* [[:Category:component suppliers|component suppliers]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Manufacturer%27s_specifications&amp;diff=36</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=36"/>
				<updated>2008-01-17T17:43:10Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== PBA31308 Rohs-compliant Bluetooth module specifications ==&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]&lt;br /&gt;
&lt;br /&gt;
== SMSC ethernet 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;
== 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;
[[Category:Manufacture's specifications]]&lt;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Bluetooth_module&amp;diff=35</id>
		<title>Bluetooth module</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Bluetooth_module&amp;diff=35"/>
				<updated>2008-01-17T17:41:15Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Bluetooth module&lt;br /&gt;
&lt;br /&gt;
Infineon publishes this information for the [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 PBA31308 module]&lt;br /&gt;
&lt;br /&gt;
[[Category:Manufacturer's specifications]]&lt;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Bluetooth_module&amp;diff=34</id>
		<title>Bluetooth module</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Bluetooth_module&amp;diff=34"/>
				<updated>2008-01-17T17:40:49Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Bluetooth module&lt;br /&gt;
Infineon publishes this information for the [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 PBA31308 module]&lt;br /&gt;
&lt;br /&gt;
[[Category:Manufacturer's specifications]]&lt;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Bluetooth_module&amp;diff=33</id>
		<title>Bluetooth module</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Bluetooth_module&amp;diff=33"/>
				<updated>2008-01-17T17:40:31Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Bluetooth module&lt;br /&gt;
Infineon publishes this information for the [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 PBA31308 module&lt;br /&gt;
&lt;br /&gt;
[[Category:Manufacturer's specifications]]&lt;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Bluetooth_module&amp;diff=32</id>
		<title>Bluetooth module</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Bluetooth_module&amp;diff=32"/>
				<updated>2008-01-17T17:36:40Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;PBA31308 Rohs-compliant Bluetooth module specifications&lt;br /&gt;
&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]&lt;br /&gt;
&lt;br /&gt;
[[Category:Manufacturer's specifications]]&lt;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Category:Manufacturer%27s_specifications&amp;diff=31</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=31"/>
				<updated>2008-01-17T17:33:15Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Below are links to specifications provided by device manufacturers:&lt;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Bluetooth_module&amp;diff=30</id>
		<title>Bluetooth module</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Bluetooth_module&amp;diff=30"/>
				<updated>2008-01-17T17:19:40Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;PBA31308 Rohs-compliant Bluetooth module specifications&lt;br /&gt;
&lt;br /&gt;
Infineon publishes this PBA31308 documentation&lt;br /&gt;
&lt;br /&gt;
[[Category:Manufacturer's specifications]]&lt;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Category:Manufacturer%27s_specifications&amp;diff=29</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=29"/>
				<updated>2008-01-17T17:19:22Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: New page: Below are link to specifications provided by device manufacturers:&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Below are link to specifications provided by device manufacturers:&lt;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Bluetooth_module&amp;diff=28</id>
		<title>Bluetooth module</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Bluetooth_module&amp;diff=28"/>
				<updated>2008-01-17T17:18:31Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;PBA31308 Rohs-compliant Bluetooth module specifications&lt;br /&gt;
&lt;br /&gt;
Infineon publishes this PBA31308 documentation&lt;br /&gt;
&lt;br /&gt;
[[Category:Manufacturers specifications]]&lt;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=27</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=27"/>
				<updated>2008-01-17T17:16:13Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: &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;
''Note:  you will need to create a new user account if you would like to contribute or edit content on this site.  We have not ported user accounts from docwiki.gumstix.org.''&lt;br /&gt;
&lt;br /&gt;
For official Gumstix supported documentation on OpenEmbedded and other information of interest to developers, please visit [http://www.gumstix.net www.gumstix.net]&lt;br /&gt;
&lt;br /&gt;
To join the gumstix users mailing list please visit the [https://lists.sourceforge.net/lists/listinfo/gumstix-users signup page]&lt;br /&gt;
&lt;br /&gt;
For company and product information, pricing, and to place an order, please visit [http://www.gumstix.com www.gumstix.com]&lt;br /&gt;
&lt;br /&gt;
For information and support for the legacy gumstix buildroot build system, please visit [http://docwiki.gumstix.org/Main_Page docwiki.gumstix.org]&lt;br /&gt;
&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:resources|Resources]]&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 - 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 - 2008|2008]]&lt;br /&gt;
* [[:Category:projects - 2007|2007 and earlier]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[:Category:manufacturer's specifications|manufacturer's specifications]]&lt;br /&gt;
* [[:Category:component suppliers|component suppliers]]&lt;br /&gt;
|}&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;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Bluetooth_module&amp;diff=26</id>
		<title>Bluetooth module</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Bluetooth_module&amp;diff=26"/>
				<updated>2008-01-17T17:15:22Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: New page: PBA31308 Rohs-compliant Bluetooth module specifications  Infineon publishes this PBA31308 documentation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;PBA31308 Rohs-compliant Bluetooth module specifications&lt;br /&gt;
&lt;br /&gt;
Infineon publishes this PBA31308 documentation&lt;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=23</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=23"/>
				<updated>2008-01-17T06:06:00Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: &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;
''Note:  you will need to create a new user account if you would like to contribute or edit content on this site.  We have not ported user accounts from docwiki.gumstix.org.''&lt;br /&gt;
&lt;br /&gt;
For official Gumstix supported documentation on OpenEmbedded and other information of interest to developers, please visit [http://www.gumstix.net www.gumstix.net]&lt;br /&gt;
&lt;br /&gt;
To join the gumstix users mailing list please visit the [https://lists.sourceforge.net/lists/listinfo/gumstix-users signup page]&lt;br /&gt;
&lt;br /&gt;
For company and product information, pricing, and to place an order, please visit [http://www.gumstix.com www.gumstix.com]&lt;br /&gt;
&lt;br /&gt;
For information and support for the legacy gumstix buildroot build system, please visit [http://docwiki.gumstix.org/Main_Page docwiki.gumstix.org]&lt;br /&gt;
&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:resources|Resources]]&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 - 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 - 2008|2008]]&lt;br /&gt;
* [[:Category:projects - 2007|2007 and earlier]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[manufacturer's specifications|manufacturer's specifications]]&lt;br /&gt;
* [[:Category:component suppliers|component suppliers]]&lt;br /&gt;
|}&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;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=22</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=22"/>
				<updated>2008-01-17T06:04:52Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: &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;
''Note:  you will need to create a new user account if you would like to contribute or edit content on this site.  We have not ported user accounts from docwiki.gumstix.org.''&lt;br /&gt;
&lt;br /&gt;
For official Gumstix supported documentation on OpenEmbedded and other information of interest to developers, please visit [http://www.gumstix.net www.gumstix.net]&lt;br /&gt;
&lt;br /&gt;
To join the gumstix users mailing list please visit the [https://lists.sourceforge.net/lists/listinfo/gumstix-users signup page]&lt;br /&gt;
&lt;br /&gt;
For company and product information, pricing, and to place an order, please visit [http://www.gumstix.com www.gumstix.com]&lt;br /&gt;
&lt;br /&gt;
For information and support for the legacy gumstix buildroot build system, please visit [http://docwiki.gumstix.org/Main_Page docwiki.gumstix.org]&lt;br /&gt;
&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:resources|Resources]]&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 - i2c|i2c]]&lt;br /&gt;
* [[how to - spi|spi]]&lt;br /&gt;
* [[how to - usb|usb]]&lt;br /&gt;
* [[how to - robotics|robotics]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[projects - 2008|2008]]&lt;br /&gt;
* [[projects - 2007|2007 and earlier]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[manufacturer's specifications|manufacturer's specifications]]&lt;br /&gt;
* [[component suppliers|component suppliers]]&lt;br /&gt;
|}&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;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=21</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=21"/>
				<updated>2008-01-17T05:43:04Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: &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;
''Note:  you will need to create a new user account if you would like to contribute or edit content on this site.  We have not ported user accounts from docwiki.gumstix.org.''&lt;br /&gt;
&lt;br /&gt;
For official Gumstix supported documentation on OpenEmbedded and other information of interest to developers, please visit [http://www.gumstix.net www.gumstix.net]&lt;br /&gt;
&lt;br /&gt;
To join the gumstix users mailing list please visit the [https://lists.sourceforge.net/lists/listinfo/gumstix-users signup page]&lt;br /&gt;
&lt;br /&gt;
For company and product information, pricing, and to place an order, please visit [http://www.gumstix.com www.gumstix.com]&lt;br /&gt;
&lt;br /&gt;
For information and support for the legacy gumstix buildroot build system, please visit [http://docwiki.gumstix.org/Main_Page docwiki.gumstix.org]&lt;br /&gt;
&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:resources|Resources]]&lt;br /&gt;
|-&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[:Category:how to - general|general]]&lt;br /&gt;
* [[how to - linux|linux]]&lt;br /&gt;
* [[how to - displays|displays]]&lt;br /&gt;
* [[how to - audio|audio]]&lt;br /&gt;
* [[how to - wifi|wifi]]&lt;br /&gt;
* [[how to - bluetooth|bluetooth]]&lt;br /&gt;
* [[how to - gps|gps]]&lt;br /&gt;
* [[how to - serial|serial]]&lt;br /&gt;
* [[how to - gpio|gpio]]&lt;br /&gt;
* [[how to - i2c|i2c]]&lt;br /&gt;
* [[how to - spi|spi]]&lt;br /&gt;
* [[how to - usb|usb]]&lt;br /&gt;
* [[how to - robotics|robotics]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[projects - 2008|2008]]&lt;br /&gt;
* [[projects - 2007|2007 and earlier]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[manufacturer's specifications|manufacturer's specifications]]&lt;br /&gt;
* [[component suppliers|component suppliers]]&lt;br /&gt;
|}&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;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=17</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=17"/>
				<updated>2008-01-15T20:39:07Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: &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;
''Note:  you will need to create a new user account if you would like to contribute or edit content on this site.  We have not ported user accounts from docwiki.gumstix.org.''&lt;br /&gt;
&lt;br /&gt;
For official Gumstix supported documentation on OpenEmbedded and other information of interest to developers, please visit [http://www.gumstix.net www.gumstix.net]&lt;br /&gt;
&lt;br /&gt;
To join the gumstix users mailing list please visit the [https://lists.sourceforge.net/lists/listinfo/gumstix-users signup page]&lt;br /&gt;
&lt;br /&gt;
For company and product information, pricing, and to place an order, please visit [http://www.gumstix.com www.gumstix.com]&lt;br /&gt;
&lt;br /&gt;
For information and support for the legacy gumstix buildroot build system, please visit [http://docwiki.gumstix.org/Main_Page docwiki.gumstix.org]&lt;br /&gt;
&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:resources|Resources]]&lt;br /&gt;
|-&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[how to - general|general]]&lt;br /&gt;
* [[how to - linux|linux]]&lt;br /&gt;
* [[how to - displays|displays]]&lt;br /&gt;
* [[how to - audio|audio]]&lt;br /&gt;
* [[how to - wifi|wifi]]&lt;br /&gt;
* [[how to - bluetooth|bluetooth]]&lt;br /&gt;
* [[how to - gps|gps]]&lt;br /&gt;
* [[how to - serial|serial]]&lt;br /&gt;
* [[how to - gpio|gpio]]&lt;br /&gt;
* [[how to - i2c|i2c]]&lt;br /&gt;
* [[how to - spi|spi]]&lt;br /&gt;
* [[how to - usb|usb]]&lt;br /&gt;
* [[how to - robotics|robotics]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[projects - 2008|2008]]&lt;br /&gt;
* [[projects - 2007|2007 and earlier]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[manufacturer's specifications|manufacturer's specifications]]&lt;br /&gt;
* [[component suppliers|component suppliers]]&lt;br /&gt;
|}&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;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=16</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=16"/>
				<updated>2008-01-15T20:35:44Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: &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 to allow users of the gumstix OpenEmbedded build system to 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;
''Note:  you will need to create a new user account if you would like to contribute or edit content on this site.  We have not ported user accounts from docwiki.gumstix.net.''&lt;br /&gt;
&lt;br /&gt;
For official Gumstix supported documentation on OpenEmbedded and other information of interest to developers, please visit [http://www.gumstix.net www.gumstix.net]&lt;br /&gt;
&lt;br /&gt;
To join the gumstix users mailing list please visit the [https://lists.sourceforge.net/lists/listinfo/gumstix-users signup page]&lt;br /&gt;
&lt;br /&gt;
For company and product information, pricing, and to place an order, please visit [http://www.gumstix.com www.gumstix.com]&lt;br /&gt;
&lt;br /&gt;
For information and support for the legacy gumstix buildroot build system, please visit [http://docwiki.gumstix.org/Main_Page docwiki.gumstix.org]&lt;br /&gt;
&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:resources|Resources]]&lt;br /&gt;
|-&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[how to - general|general]]&lt;br /&gt;
* [[how to - linux|linux]]&lt;br /&gt;
* [[how to - displays|displays]]&lt;br /&gt;
* [[how to - audio|audio]]&lt;br /&gt;
* [[how to - wifi|wifi]]&lt;br /&gt;
* [[how to - bluetooth|bluetooth]]&lt;br /&gt;
* [[how to - gps|gps]]&lt;br /&gt;
* [[how to - serial|serial]]&lt;br /&gt;
* [[how to - gpio|gpio]]&lt;br /&gt;
* [[how to - i2c|i2c]]&lt;br /&gt;
* [[how to - spi|spi]]&lt;br /&gt;
* [[how to - usb|usb]]&lt;br /&gt;
* [[how to - robotics|robotics]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[projects - 2008|2008]]&lt;br /&gt;
* [[projects - 2007|2007 and earlier]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[manufacturer's specifications|manufacturer's specifications]]&lt;br /&gt;
* [[component suppliers|component suppliers]]&lt;br /&gt;
|}&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;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=15</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=15"/>
				<updated>2008-01-15T20:14:46Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: &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 to allow gumstix users to 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;
For official Gumstix supported documentation and other information of interest to developers, please visit [http://www.gumstix.net www.gumstix.net]&lt;br /&gt;
&lt;br /&gt;
To join the gumstix users mailing list please visit the [https://lists.sourceforge.net/lists/listinfo/gumstix-users signup page]&lt;br /&gt;
&lt;br /&gt;
For company and product information, pricing, and to place an order, please visit [http://www.gumstix.com www.gumstix.com]&lt;br /&gt;
&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:resources|Resources]]&lt;br /&gt;
|-&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[how to - general|general]]&lt;br /&gt;
* [[how to - linux|linux]]&lt;br /&gt;
* [[how to - displays|displays]]&lt;br /&gt;
* [[how to - audio|audio]]&lt;br /&gt;
* [[how to - wifi|wifi]]&lt;br /&gt;
* [[how to - bluetooth|bluetooth]]&lt;br /&gt;
* [[how to - gps|gps]]&lt;br /&gt;
* [[how to - serial|serial]]&lt;br /&gt;
* [[how to - gpio|gpio]]&lt;br /&gt;
* [[how to - i2c|i2c]]&lt;br /&gt;
* [[how to - spi|spi]]&lt;br /&gt;
* [[how to - usb|usb]]&lt;br /&gt;
* [[how to - robotics|robotics]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[projects - 2008|2008]]&lt;br /&gt;
* [[projects - 2007|2007 and earlier]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[manufacturer's specifications|manufacturer's specifications]]&lt;br /&gt;
* [[component suppliers|component suppliers]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=14</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=14"/>
				<updated>2008-01-15T20:13:25Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: &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 to allow gumstix users to 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;
For official Gumstix supported documentation and other information of interest to developers, please visit [http://www.gumstix.net www.gumstix.net]&lt;br /&gt;
&lt;br /&gt;
To join the gumstix users mailing list please visit the [https://lists.sourceforge.net/lists/listinfo/gumstix-users signup page]&lt;br /&gt;
&lt;br /&gt;
For company and product information, pricing, and to place an order, please visit [http://www.gumstix.com www.gumstix.com]&lt;br /&gt;
&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 |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:resources|Resources]]&lt;br /&gt;
|-&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[how to - general|general]]&lt;br /&gt;
* [[how to - linux|linux]]&lt;br /&gt;
* [[how to - displays|displays]]&lt;br /&gt;
* [[how to - audio|audio]]&lt;br /&gt;
* [[how to - wifi|wifi]]&lt;br /&gt;
* [[how to - bluetooth|bluetooth]]&lt;br /&gt;
* [[how to - gps|gps]]&lt;br /&gt;
* [[how to - serial|serial]]&lt;br /&gt;
* [[how to - gpio|gpio]]&lt;br /&gt;
* [[how to - i2c|i2c]]&lt;br /&gt;
* [[how to - spi|spi]]&lt;br /&gt;
* [[how to - usb|usb]]&lt;br /&gt;
* [[how to - robotics|robotics]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[projects - 2008|2008]]&lt;br /&gt;
* [[projects - 2007|2007 and earlier]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
* [[manufacturer's specifications|manufacturer's specifications]]&lt;br /&gt;
* [[component suppliers|component suppliers]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=13</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=13"/>
				<updated>2008-01-15T19:50:42Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: &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 to allow gumstix users to 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;
For official Gumstix supported documentation and other information of interest to developers, please visit [http://www.gumstix.net www.gumstix.net]&lt;br /&gt;
&lt;br /&gt;
To join the gumstix users mailing list please visit the [https://lists.sourceforge.net/lists/listinfo/gumstix-users signup page]&lt;br /&gt;
&lt;br /&gt;
For company and product information, pricing, and to place an order, please visit [http://www.gumstix.com www.gumstix.com]&lt;br /&gt;
&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 Suggestions]]&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|Projects by Users]]&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;
|-&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
Step by step instructions:&lt;br /&gt;
* [[how to - general|general]]&lt;br /&gt;
* [[how to - location sensitive|location sensitive]]&lt;br /&gt;
* [[how to - wireless|wireless]]&lt;br /&gt;
* [[how to - audio|audio]]&lt;br /&gt;
* [[how to - robotics|robotics]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
gumstix users showcase their projects:&lt;br /&gt;
* [[projects - 2008|2008]]&lt;br /&gt;
* [[projects - 2007|2007 and earlier]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
Where to find:&lt;br /&gt;
* [[manufacturer's specifications]]&lt;br /&gt;
* [[where to find parts|where to find parts]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=11</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=11"/>
				<updated>2008-01-15T19:48:02Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: &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 to allow gumstix users to 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;
For official Gumstix supported documentation and other information of interest to developers, please visit [http://www.gumstix.net www.gumstix.net]&lt;br /&gt;
&lt;br /&gt;
To join the gumstix users mailing list please visit the [https://lists.sourceforge.net/lists/listinfo/gumstix-users signup page]&lt;br /&gt;
&lt;br /&gt;
For company and product information, pricing, and to place an order, please visit [http://www.gumstix.com www.gumstix.com]&lt;br /&gt;
&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 Suggestions]]&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|Projects by Users]]&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;
|-&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
provide your input to other users&lt;br /&gt;
* [[how to - general|general]]&lt;br /&gt;
* [[how to - location sensitive|location sensitive]]&lt;br /&gt;
* [[how to - wireless|wireless]]&lt;br /&gt;
* [[how to - audio|audio]]&lt;br /&gt;
* [[how to - robotics|robotics]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
tell the community your gumstix projects&lt;br /&gt;
* [[projects - 2008|2008]]&lt;br /&gt;
* [[projects - 2007|2007 and earlier]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
add your resource links here&lt;br /&gt;
* [[manufacturer's specifications]]&lt;br /&gt;
* [[where to find parts|where to find parts]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=10</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=10"/>
				<updated>2008-01-15T19:47:13Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: &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 to allow gumstix users to 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;
For official Gumstix supported documentation and other information of interest to developers, please visit [http://www.gumstix.netwww.gumstix.net]&lt;br /&gt;
&lt;br /&gt;
To join the gumstix users mailing list please visit the [https://lists.sourceforge.net/lists/listinfo/gumstix-users signup page]&lt;br /&gt;
&lt;br /&gt;
For company and product information, pricing, and to place an order, please visit [http://www.gumstix.com www.gumstix.com]&lt;br /&gt;
&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 Suggestions]]&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|Projects by Users]]&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;
|-&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
provide your input to other users&lt;br /&gt;
* [[how to - general|general]]&lt;br /&gt;
* [[how to - location sensitive|location sensitive]]&lt;br /&gt;
* [[how to - wireless|wireless]]&lt;br /&gt;
* [[how to - audio|audio]]&lt;br /&gt;
* [[how to - robotics|robotics]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
tell the community your gumstix projects&lt;br /&gt;
* [[projects - 2008|2008]]&lt;br /&gt;
* [[projects - 2007|2007 and earlier]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
add your resource links here&lt;br /&gt;
* [[manufacturer's specifications]]&lt;br /&gt;
* [[where to find parts|where to find parts]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=7</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=7"/>
				<updated>2008-01-15T18:17:04Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: &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;
{|&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:resources|Resources]]&lt;br /&gt;
|-&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
provide your input in a section below&lt;br /&gt;
* [[how to - general|general]]&lt;br /&gt;
* [[how to - location sensitive|location sensitive]]&lt;br /&gt;
* [[how to - wireless|wireless]]&lt;br /&gt;
* [[how to - audio|audio]]&lt;br /&gt;
* [[how to - robotics|robotics]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
tell others about your gumstix projects&lt;br /&gt;
* [[projects - 2008|2008]]&lt;br /&gt;
* [[projects - 2007|2007 and earlier]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
if you have some links, add them here&lt;br /&gt;
* [[manufacturer's specifications]]&lt;br /&gt;
* [[where to find parts|where to find parts]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=6</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Main_Page&amp;diff=6"/>
				<updated>2008-01-15T18:16:13Z</updated>
		
		<summary type="html">&lt;p&gt;Steve: &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;
{|&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 Suggestions]]&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:resources|Resources]]&lt;br /&gt;
|-&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
provide your input in a section below&lt;br /&gt;
* [[how to - general|general]]&lt;br /&gt;
* [[how to - location sensitive|location sensitive]]&lt;br /&gt;
* [[how to - wireless|wireless]]&lt;br /&gt;
* [[how to - audio|audio]]&lt;br /&gt;
* [[how to - robotics|robotics]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
tell others about your gumstix projects&lt;br /&gt;
* [[projects - 2008|2008]]&lt;br /&gt;
* [[projects - 2007|2007 and earlier]]&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
if you have some links, add them here&lt;br /&gt;
* [[manufacturer's specifications]]&lt;br /&gt;
* [[where to find parts|where to find parts]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Steve</name></author>	</entry>

	</feed>