<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://wiki.openmoko.org/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.openmoko.org/api.php?action=feedcontributions&amp;user=Techiem2&amp;feedformat=atom</id>
		<title>Openmoko - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.openmoko.org/api.php?action=feedcontributions&amp;user=Techiem2&amp;feedformat=atom"/>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Special:Contributions/Techiem2"/>
		<updated>2013-05-25T22:52:09Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.19.6</generator>

	<entry>
		<id>http://wiki.openmoko.org/wiki/USB_host</id>
		<title>USB host</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/USB_host"/>
				<updated>2008-11-12T16:19:20Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: Linked my name to my profile page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Languages|USB host}}&lt;br /&gt;
The mini-USB port on both the Neo 1973 and the Neo FreeRunner supports both USB host and USB device. This opens up a range of possibilities, such as adding USB cameras and USB input devices.&lt;br /&gt;
&lt;br /&gt;
=== Using USB host mode ===&lt;br /&gt;
==== Selecting USB host modes ====&lt;br /&gt;
&lt;br /&gt;
By default, the mini-USB port is in device mode. To tell the Neo that it is logically a host¹):&lt;br /&gt;
&lt;br /&gt;
echo &amp;quot;host&amp;quot; &amp;gt; /sys/devices/platform/s3c2410-ohci/usb_mode&lt;br /&gt;
&lt;br /&gt;
Independent of the logical mode of the USB port, the Neo FreeRunner can provide 5 volt USB power to an attached USB device. To enable this (not available on Neo 1973):&lt;br /&gt;
&lt;br /&gt;
echo &amp;quot;1&amp;quot; &amp;gt; /sys/devices/platform/neo1973-pm-host.0/hostmode&lt;br /&gt;
&lt;br /&gt;
Note: You may want to run &amp;lt;code&amp;gt;ifconfig usb0 down&amp;lt;/code&amp;gt; prior to switching to USB host mode, as the Neo's USB networking may not like having its USB port disappear. You'll probably want to ssh into your Neo over WiFi or Bluetooth before starting all of this, alternatively use an on screen keyboard.&lt;br /&gt;
&lt;br /&gt;
Note that in full USB host mode the FreeRunner will power the external device. To avoid draining the battery use a powered USB hub, then on the FreeRunner enable logical host mode:&lt;br /&gt;
&lt;br /&gt;
~ - echo host &amp;gt; /sys/devices/platform/s3c2410-ohci/usb_mode&lt;br /&gt;
&lt;br /&gt;
but NOT electrical host mode&lt;br /&gt;
&lt;br /&gt;
~ - echo 0 &amp;gt; /sys/devices/platform/neo1973-pm-host.0/hostmode&lt;br /&gt;
&lt;br /&gt;
Note that powered USB hubs do not send power upstream, that is, into the host. If you wish to power or charge the FreeRunner, you will need a [[Specialized USB cables|special USB cable]].&lt;br /&gt;
&lt;br /&gt;
¹)Debian note: You'll need the ohci-hcd module:&lt;br /&gt;
modprobe ohci-hcd&lt;br /&gt;
&lt;br /&gt;
* NOTE: with [FSO] based distributions one should use the dbus APIs and not the method stated above.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Returning to USB device mode ====&lt;br /&gt;
After doing whatever is needed to safely remove your device and unplugging it you can remove the provision of 5 volt power and return to device mode.&lt;br /&gt;
&lt;br /&gt;
echo &amp;quot;0&amp;quot; &amp;gt; /sys/devices/platform/neo1973-pm-host.0/hostmode&amp;lt;BR&amp;gt;&lt;br /&gt;
echo &amp;quot;device&amp;quot; &amp;gt; /sys/devices/platform/s3c2410-ohci/usb_mode&lt;br /&gt;
&amp;lt;BR&amp;gt;&amp;lt;BR&amp;gt;&lt;br /&gt;
You can now safely restart USB networking.&lt;br /&gt;
&lt;br /&gt;
==== USB-Mode-Script====&lt;br /&gt;
These simple script is useful to switch the USB-Modes:&lt;br /&gt;
&amp;lt;BR&amp;gt;&amp;lt;BR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;#!/bin/sh&amp;lt;/nowiki&amp;gt; &amp;lt;BR&amp;gt;&lt;br /&gt;
grep -q 'host' /sys/devices/platform/s3c2410-ohci/usb_mode&amp;lt;BR&amp;gt;&lt;br /&gt;
if [ $? -eq 0 ]&amp;lt;BR&amp;gt;&lt;br /&gt;
then&amp;lt;BR&amp;gt;&lt;br /&gt;
echo &amp;quot;0&amp;quot; &amp;gt; /sys/devices/platform/neo1973-pm-host.0/hostmode&amp;lt;BR&amp;gt;&lt;br /&gt;
echo &amp;quot;device&amp;quot; &amp;gt; /sys/devices/platform/s3c2410-ohci/usb_mode&amp;lt;BR&amp;gt;&lt;br /&gt;
echo USB-Port is in device-mode now.&amp;lt;BR&amp;gt;&lt;br /&gt;
else&amp;lt;BR&amp;gt;&lt;br /&gt;
ifconfig usb0 down&amp;lt;BR&amp;gt;&lt;br /&gt;
echo &amp;quot;host&amp;quot; &amp;gt; /sys/devices/platform/s3c2410-ohci/usb_mode&amp;lt;BR&amp;gt;&lt;br /&gt;
echo &amp;quot;1&amp;quot; &amp;gt; /sys/devices/platform/neo1973-pm-host.0/hostmode&amp;lt;BR&amp;gt;&lt;br /&gt;
echo USB-Port is in host-mode now.&amp;lt;BR&amp;gt;&lt;br /&gt;
fi&amp;lt;BR&amp;gt;&lt;br /&gt;
&amp;lt;BR&amp;gt;&lt;br /&gt;
You can easily create a push button menu item for this: [http://blogs.thehumanjourney.net/finds/entry/usb_host_mode_the_button Instructions]&lt;br /&gt;
&lt;br /&gt;
==== Using a GUI ====&lt;br /&gt;
* Using the packaged push button derived from the script above: [http://blogs.thehumanjourney.net/finds/resource/usbmode-button_0.1_armv4t.ipk Download]&lt;br /&gt;
* [[User:Techiem2|Mark D. Montgomery II]]'s [http://techiem2.net/index.php?/archives/10-Freerunner-USB-Mode-Control-Program.html application] controls all the various modes through a GUI&lt;br /&gt;
* Thomas Vesely's [http://projects.openmoko.org/projects/usbchmod/ project]&lt;br /&gt;
* Using the gtk+ gui [[Framework-settings]]&lt;br /&gt;
* Using openmoko-panel-plugin (confirmation and link needed)&lt;br /&gt;
&lt;br /&gt;
=== Providing power to connected USB devices while in host mode ===&lt;br /&gt;
&lt;br /&gt;
Normally, USB host ports provide power to any connected USB device.&lt;br /&gt;
&lt;br /&gt;
Available power in host mode is the full maximum of 500mA according to USB-specifications on the Neo FreeRunner, and no power is available in host mode on the Neo 1973. If your USB device respects USB-standards and consumes not more than 500mA, you may connect it directly to your Neo FreeRunner.&lt;br /&gt;
&lt;br /&gt;
To provide power to USB devices attached to your Neo 1973, or to provide power to your Neo FreeRunner while USB-device connected, you can provide power by using a (modified [for powering FreeRunner]) powered USB hub (see below), or by manually injecting power into the attached USB device (and Neo FreeRunner) via one of the [[specialized_USB_cables]].&lt;br /&gt;
&lt;br /&gt;
=== Powered USB hubs known to work with the Neo ===&lt;br /&gt;
&lt;br /&gt;
(please add any known to work)&lt;br /&gt;
&lt;br /&gt;
=== Providing power to run and charge the Neo while in host mode ===&lt;br /&gt;
&lt;br /&gt;
A slightly separate issue is power to run and charge the Neo (both types) itself. When the USB port is in device mode, the Neo FreeRunner/1973 can be powered and recharged via the USB port, but when in standard host mode, the Neo FreeRunner is set to provide power and does not charge. Fortunately, control of the direction of power (in or out) is independent of the personality of the USB port (host or device):&lt;br /&gt;
&lt;br /&gt;
To recap, the direction of power can be controlled:&lt;br /&gt;
&lt;br /&gt;
Set to 0 (default), no power is provided at the USB port, charging is enabled, and host 15K pulldowns are removed from D+ and D-:&lt;br /&gt;
&lt;br /&gt;
echo &amp;quot;0&amp;quot; &amp;gt; /sys/devices/platform/neo1973-pm-host.0/hostmode&lt;br /&gt;
&lt;br /&gt;
Set to 1, provides up to 500mA USB power at the USB port (FreeRunner only), disables charging from USB, and applies 15K pulldowns to USB D+ and D-:&lt;br /&gt;
&lt;br /&gt;
echo &amp;quot;1&amp;quot; &amp;gt; /sys/devices/platform/neo1973-pm-host.0/hostmode&lt;br /&gt;
&lt;br /&gt;
Next, power must somehow be injected. An unmodified powered USB hub only provides power to the connected devices, but not to the connected host, so the only solution here is to modify a USB-hub¹) or to create a custom cable which will inject power into the host. See [[specialized_USB_cables]] for some examples.&lt;br /&gt;
&lt;br /&gt;
Finally, there is the question of charge rate. The charging logic in the Neo will only charge at 100mA by default. Charging at 500mA will take place only if the charging device responds appropriatly to USB negotiation to increase power consumption. Charging at 1000mA will only take place if the Neo detects the appropriate resistor on the ID pins.&lt;br /&gt;
&lt;br /&gt;
You can manually set the charge rate. See [[Forcing_fast_charge_mode]]&lt;br /&gt;
&lt;br /&gt;
¹) often it's sufficient to short a diode in USB-hub to feed power to the host-connector too.&lt;br /&gt;
# Edit 05 Oct. 2008 : Not being able to find any diode on my ([[User:Henrikz|Henrikz]]) USB Hub (Brand: Equip, Type: 4 port, aluminum) I simply connected +5V (pin 1) from one of the downstream ports to pin 1 of the upstream port.&lt;br /&gt;
&lt;br /&gt;
=== Power Concerns ===&lt;br /&gt;
You'll need to force the Neo to go into fast charge mode, since it can't do its usual power negotiation over USB.&lt;br /&gt;
&lt;br /&gt;
echo -n &amp;quot;fast_cccv&amp;quot; &amp;gt;  /sys/devices/platform/s3c2410-i2c/i2c-adapter/i2c-0/0-0008/chgmode&lt;br /&gt;
&lt;br /&gt;
(Also this should be done by kernel when seeing 47K at ID-pin)&lt;br /&gt;
&lt;br /&gt;
=== Working Examples ===&lt;br /&gt;
&lt;br /&gt;
==== USB Keyboard ====&lt;br /&gt;
&lt;br /&gt;
Pictures [http://blogs.thehumanjourney.net/finds/entry/20080716 here]&lt;br /&gt;
&lt;br /&gt;
==== Connecting a USB-Stick ====&lt;br /&gt;
[[Image:connecting-usb-stick-1.jpg|thumb|left]]&lt;br /&gt;
I found this adapter, it has 2 Type A jacks, rather cheap (about 5 &amp;amp;euro;).&lt;br /&gt;
&amp;lt;br clear=&amp;quot;both&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:connecting-usb-stick-2.jpg|thumb|left]]&lt;br /&gt;
I borrowed the cable from a card reader, it has the same pinout like the cable that comes with the Neo.&lt;br /&gt;
&amp;lt;br clear=&amp;quot;both&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:connecting-usb-stick-3.jpg|thumb|left]]&lt;br /&gt;
With the above commands I could mount the memory stick.&lt;br /&gt;
&amp;lt;br clear=&amp;quot;both&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:connecting-usb-stick-4.jpg|thumb|left]]&lt;br /&gt;
&amp;lt;br clear=&amp;quot;both&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Neo1973 Hardware]]&lt;br /&gt;
[[Category:Neo FreeRunner Hardware]]&lt;br /&gt;
[[Category:USB]]&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Neo_USB_charger_specifications_and_compatibility_list</id>
		<title>Neo USB charger specifications and compatibility list</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Neo_USB_charger_specifications_and_compatibility_list"/>
				<updated>2008-11-12T16:11:36Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: Added PowerBullet 2x2&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Languages|USB charger}}&lt;br /&gt;
&lt;br /&gt;
The [[Neo FreeRunner]] and the [[Neo 1973]] can be charged with the supplied USB charger, which is a device that does not comply with the recent  [http://www.usb.org/developers/devclass_docs/batt_charging_1_0.zip USB Battery Charging Specification]. This specification demands for an open circuit on the ID pin and a short circuit between the D+ and D- pins.&lt;br /&gt;
&lt;br /&gt;
Most of the USB chargers around behave the same way as the one supplied with the Openmoko Neo. In fact, up to now no charger has been identified to comply to the specification mentioned above. The differences (incompatibilities) result from the way the USB charger signals the mobile phone that it is present: most of the manufacturers chose to connect a resistor between the &amp;quot;ID&amp;quot; pin and the &amp;quot;GND&amp;quot; pin in the USB connector.&lt;br /&gt;
&lt;br /&gt;
For Openmoko Neo, the value of the resistor is 47.5 kOhms.&lt;br /&gt;
&lt;br /&gt;
Additional details can be found at : (site removed) &amp;lt;del&amp;gt;http://quickstart.openmoko.org/#chargerdetection&amp;lt;/del&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Following USB chargers have been identified and measured:&lt;br /&gt;
&lt;br /&gt;
== AKII Technology Charger (supplied with Neo FreeRunner) ==&lt;br /&gt;
&lt;br /&gt;
This charger comes with the Neo FreeRunner package.&lt;br /&gt;
&lt;br /&gt;
=== Specifications ===&lt;br /&gt;
&lt;br /&gt;
*Model: [http://www.ak2.com.tw/pd_main.asp?sg_id=11 A10P1-05MP]&lt;br /&gt;
*Input: 100-240V~ /0.3A&lt;br /&gt;
*Output: +5v up to 2.0A&lt;br /&gt;
*Signaling: 47.5k 1% resistor between ID pin and ground for openmoko charger identification&lt;br /&gt;
&lt;br /&gt;
=== Compatibility ===&lt;br /&gt;
&lt;br /&gt;
*HTC Polaris (tested on O2 Xda Orbit 2)&lt;br /&gt;
*Openmoko Neo1973&lt;br /&gt;
*Openmoko Neo FreeRunner&lt;br /&gt;
&lt;br /&gt;
== Blackberry PSM05R-050CHW ==&lt;br /&gt;
[[Image:P1040112.jpg|thumb|300px]]&lt;br /&gt;
&lt;br /&gt;
=== Specifications ===&lt;br /&gt;
&lt;br /&gt;
*Model: PSM05R-050CHW&lt;br /&gt;
*Output: DC 5 V - 0.5 A&lt;br /&gt;
&lt;br /&gt;
=== Compatibility ===&lt;br /&gt;
&lt;br /&gt;
*Openmoko Neo FreeRunner, provided the 500 mA charging mode is enabled on the FR (see [[Forcing_fast_charge_mode]]), as otherwise it would only (dis)charge, as the FR would only draw 100 mA out of it.&lt;br /&gt;
&lt;br /&gt;
== ''sold as'' &amp;quot;Essentiel b (Boulanger)&amp;quot; ''Chargeur allume-cigares/USB'' ==&lt;br /&gt;
[[Image:P1040105.jpg|thumb|300px]]&lt;br /&gt;
This car charger is sold at the French appliances superstore ''Boulanger'' but should be available in other stores under different  brands. It is an adapter to a USB cable which can then be connected to any USB-charging device. By default, it will be seen as a &amp;quot;passive&amp;quot; USB port at 100 mA.&lt;br /&gt;
&lt;br /&gt;
=== Specifications ===&lt;br /&gt;
&lt;br /&gt;
*Model: Cod. 779220&lt;br /&gt;
*Input: DC 12-30 V&lt;br /&gt;
*Output: DC 5 V - 850 mA max&lt;br /&gt;
&lt;br /&gt;
=== Compatibility ===&lt;br /&gt;
&lt;br /&gt;
*Openmoko Neo FreeRunner, provided the 500 mA charging mode is enabled on the FR (see [[Forcing_fast_charge_mode]]), as otherwise it would only (dis)charge, as the FR would only draw 100 mA out of it.&lt;br /&gt;
&lt;br /&gt;
== Garmin 362-00043-04 ==&lt;br /&gt;
[[Image:Charger_garmin.jpg|thumb|300px|Garmin 362-00043-04]]&lt;br /&gt;
This charger comes with the Garmin Edge bicycle computers.&lt;br /&gt;
&lt;br /&gt;
=== Specifications ===&lt;br /&gt;
*Manufacturer: probably Phihong Technology Co., Ltd.&lt;br /&gt;
*Model: PSCR05R-050A1&lt;br /&gt;
*Input: 100-240V~ 0.2A 50-60Hz&lt;br /&gt;
*Output: 5V up to 1.0A&lt;br /&gt;
*Signaling: D+ and D- open, 17.4 kOhms resistor between ID pin and ground pin&lt;br /&gt;
&lt;br /&gt;
=== Compatibility ===&lt;br /&gt;
*Garmin Edge&lt;br /&gt;
*HTC Polaris (tested on O2 Xda Orbit 2)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== HTC 79H00051-02M ==&lt;br /&gt;
This charger comes with the tmobile MDA Compact 2 (HTC Charmer).&lt;br /&gt;
=== Specifications ===&lt;br /&gt;
*Manufacturer: Delta Electronics Inc.&lt;br /&gt;
*Model: ADP-5FH C&lt;br /&gt;
*Input: 100-240V~ 0.2A 50-60Hz&lt;br /&gt;
*Output: 5V= 1.0A LPS&lt;br /&gt;
*Signaling: D+ and D- open, short circuit between ID pin and ground pin&lt;br /&gt;
&lt;br /&gt;
=== Compatibility ===&lt;br /&gt;
*HTC Charmer (tested on MDA Compact 2)&lt;br /&gt;
*Openmoko Neo FreeRunner&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== HTC 79H00055-02M ==&lt;br /&gt;
[[Image:Charger_htc.jpg|thumb|300px|HTC 79H00055-02M]]&lt;br /&gt;
This charger comes with the O2 Xda Orbit 2 (HTC Polaris).&lt;br /&gt;
=== Specifications ===&lt;br /&gt;
*Manufacturer: Phihong Technology Co., Ltd.&lt;br /&gt;
*Model: PSAA05E-050 (the letter E denotes the EU power connector. There are also US, UK and AUS variants of this model)&lt;br /&gt;
*Input: 100-240V~ 0.3A&lt;br /&gt;
*Output: 5.15V up to 1.0A (over-current protection at 2A)&lt;br /&gt;
*Signaling: D+ and D- open, short circuit between ID pin and ground pin&lt;br /&gt;
&lt;br /&gt;
=== Compatibility ===&lt;br /&gt;
*HTC Polaris (tested on O2 Xda Orbit 2)&lt;br /&gt;
*Garmin Edge&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== PHIHONG CLM10D-050 ==&lt;br /&gt;
[[Image:Charger__htc_12V.jpg|thumb|300px|PHIHONG CLM10D-050]]&lt;br /&gt;
This 12V cigarette lighter adapter charger comes with the O2 Xda Orbit 2 (HTC Polaris).&lt;br /&gt;
=== Specifications ===&lt;br /&gt;
*Manufacturer: Phihong Technology Co., Ltd.&lt;br /&gt;
*Model: CLM10D-050&lt;br /&gt;
*Input: 10-30V DC&lt;br /&gt;
*Output: 5.0V up to 2.0A&lt;br /&gt;
*Signaling: D+ and D- open, short circuit between ID pin and ground pin&lt;br /&gt;
&lt;br /&gt;
=== Compatibility ===&lt;br /&gt;
*HTC Polaris (tested on O2 Xda Orbit 2)&lt;br /&gt;
*Garmin Edge&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== TomTom car charger ==&lt;br /&gt;
This charger comes with a TomTom2 navigation device&lt;br /&gt;
=== Specifications ===&lt;br /&gt;
*Manufacturer: TomTom&lt;br /&gt;
*Model: 4N00.007&lt;br /&gt;
*Input: 12/24V&lt;br /&gt;
*Output: 5.0V up to 2.0A&lt;br /&gt;
*Signaling: unknown, but most probably D+ and D- open, short circuit between ID pin and ground pin&lt;br /&gt;
&lt;br /&gt;
=== Compatibility ===&lt;br /&gt;
* TomTom navigation devices&lt;br /&gt;
* Openmoko Neo FreeRunner (just plug in, it will charge with 1000mA without forcing fast charge!)&lt;br /&gt;
&lt;br /&gt;
== Varta Digital USB Charger ==&lt;br /&gt;
This device charges 1-4 AA or AAA rechargeable batteries (also in mixed mode) and provides USB output to charge from the cells other gadgets (or even can charge from devices with USB output the cells).&lt;br /&gt;
=== Specifications ===&lt;br /&gt;
*Manufacturer: [http://www.en.varta-consumer.com/content.php?path=/1204126618.html&amp;amp;&amp;amp;domain=www.en.varta-consumer.com Varta]&lt;br /&gt;
*Model: Digital USB Charger&lt;br /&gt;
*Input: 110-240V&lt;br /&gt;
*Output: 5.0V up to ??A&lt;br /&gt;
*Signaling: unknown&lt;br /&gt;
&lt;br /&gt;
=== Compatibility ===&lt;br /&gt;
* Openmoko Neo FreeRunner (just plug in, it will charge with 1000mA without forcing fast charge!)&lt;br /&gt;
&lt;br /&gt;
== ezGear PowerBullet 2x2 ==&lt;br /&gt;
This device is a 2 port car or wall charger for USB devices.&lt;br /&gt;
&lt;br /&gt;
=== Specifications ===&lt;br /&gt;
*Manufacturer: [http://www.ezgear.com/ ezGear]&lt;br /&gt;
*Model: [http://www.ezgear.com/ALL/PowerBullet2x2.htm PowerBullet 2x2]&lt;br /&gt;
*Input: 12-24VDC/100-240VAC&lt;br /&gt;
*Output: 5.0V 1A&lt;br /&gt;
*Signaling: unknown&lt;br /&gt;
&lt;br /&gt;
=== Compatibility ===&lt;br /&gt;
*Most USB chargable devices&lt;br /&gt;
*OpenMoko Neo Freerunner provided you force fast charge mode (I have tested with 500mA but not 1A - I assume the device gives 500mA to each port)&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Supported_microSD_cards</id>
		<title>Supported microSD cards</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Supported_microSD_cards"/>
				<updated>2008-10-30T17:59:13Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: /* Cards by Vendor */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{todo|Maybe reformat table, see discussion page}}&lt;br /&gt;
&lt;br /&gt;
There are a plethora of Transflash / microSD / SDHC (Secure Digital High Capacity) cards out there.&lt;br /&gt;
&lt;br /&gt;
The Neo FreeRunner supports up to 8GB SDHC cards.&lt;br /&gt;
&lt;br /&gt;
Some microSD cards appear to be too slow to work with the current default settings of the glamo driver, so some specific parameters must be set in uboot to use them (see https://docs.openmoko.org/trac/ticket/1743, and corresponding notes in the tables bellow).&lt;br /&gt;
&lt;br /&gt;
There had been a [http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=677 bug] in the SD device driver (s3cmci) which caused some trouble. Please make sure you use a post-september 4th kernel which applies our kernel patchset rev2832 or higher.&lt;br /&gt;
&lt;br /&gt;
Booting from SDHC requires a u-boot from 2008-07-23 or later. '''But pay attention''' : there are problems with SDHC cards at suspend time. More details from [[Booting from SD#Booting_from_SDHC_.2F_suspend_problems|Booting from SD]]&lt;br /&gt;
&lt;br /&gt;
Note that most vendors are using an irritating way of labeling the capacity of their cards (They are using the factor 1000 instead of 1024 for KB and MB). Therefore the real capacity of these cards will be about 5% less than the vendor's specification. For example, cards labelled ''6 GB'' will only have 5.7 GB of storage capacity.&lt;br /&gt;
&lt;br /&gt;
If you use a card not listed here, please add to this table.&lt;br /&gt;
&lt;br /&gt;
== Cards by Vendor ==&lt;br /&gt;
{| border=1 |&lt;br /&gt;
| Vendor || Model || Capacity || Speed || [[u-boot]] 1.1.6 || linux 2.6.17.14-fic5 || [[u-boot]] 1.2.0-moko8 svn1915 || [[u-boot]] 1.3.2-moko12 || linux 2.6.24+git75969 (2008.8 kernel as of Sept. 4, 2008) || OM2008.9's kernel&lt;br /&gt;
|-&lt;br /&gt;
| A-Data || microSDHC-8GB || 8GB (SDHC) || class 4 || ? || {{yes}} || ? || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Corsair || CMFSDMICRO-512 || 512MB || || {{no}} || {{yes}} || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Dane-Elec || DA-SDMC-2048-R || 2GB || ? || ? || ? || ? || ? || {{yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
| extreMemory || AE56-1280R || 128MB || || {{no}} || {{yes}} || {{yes}} || || ||&lt;br /&gt;
|-&lt;br /&gt;
| extreMemory || H256MS05 || 256MB || 60x || {{no}} || {{yes}} || {{yes}} || || ||&lt;br /&gt;
|-&lt;br /&gt;
| hama || 55371 || 256MB || || {{no}} || {{yes}} || {{yes}} || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Intuix || IXMSDM128B60X || 128MB || 60x || {{no}} || {{yes}} || {{yes}} || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Kingston || SD-C512 || 512MB || ? || {{no}} || {{yes}} || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Kingston || SD-C01G || 1GB || ? || {{yes}} || ? || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Kingston || [[Supported_microSD_cards/SD-C02G|SD-C02G]] || 2GB || ? || ? || {{yes}}  || || {{yes}} || {{no}} || {{no}} (see [[Supported_microSD_cards/SD-C02G|SD-C02G]] )&lt;br /&gt;
|-&lt;br /&gt;
| Kingston || SDC4 (N0043-012.A00LF) || 4GB || ? || ? || FSO MS2 / Linux 2.6.24: I/O Errors while formatting [http://wiki.openmoko.org/wiki/Special:Emailuser/varacanero Contact me here] || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Patriot ||  PSF128MCSD-RC || 128MB || ? || {{no}} || ? || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Patriot ||  PSF8GMCSDHC4 || 8GB (SDHC)|| Class 4 || ? || ? || ? || {{yes}} || {{yes}} || {{yes}}&lt;br /&gt;
|-&lt;br /&gt;
| PNY || P-MICROSD512-BX || 512MB || || {{yes}} || {{yes}} || {{yes}} || || ||&lt;br /&gt;
|-&lt;br /&gt;
| PNY || P-MICROSD2GB-BX (card marked with MM8GR02GUACY) || 2GB || slow ? || ? || ? (Some work needed to get it running, see [https://docs.openmoko.org/trac/ticket/1743 #1743] but apparently not enough) || ? || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Pretec || || 128MB || ? || ? || {{yes}} || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| SanDisk || SDSDQ-128 || 128MB || || {{yes}} || {{yes}} || {{yes}} || || ||&lt;br /&gt;
|-&lt;br /&gt;
| SanDisk || unknown || 256MB || || {{yes}} || {{yes}} || {{yes}} || || ||&lt;br /&gt;
|-&lt;br /&gt;
| SanDisk || unknown || 512MB || || {{yes}} || {{yes}} || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| SanDisk || SDSDQ-1024-E10M || 1GB || || {{yes}} || {{yes}} || {{yes}} || || ||&lt;br /&gt;
|-&lt;br /&gt;
| SanDisk || SDSDQU-2048-E10M || 2GB || || {{yes}} || {{yes}} || {{yes}} || || ||&lt;br /&gt;
|-&lt;br /&gt;
| SanDisk || SDSDQ-2048-E11MK || 2GB || || ||  || || detects size incorrectly with U-Boot 1.3.2-moko12 (Aug 26 2008 - 08:24:58) : see http://docs.openmoko.org/trac/ticket/1815#comment:6 || ||&lt;br /&gt;
|-&lt;br /&gt;
| SanDisk || SDSDQ-4096-E11M || 4GB (SDHC) || || ? || {{yes}} || ? || {{yes}} || {{yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
| SanDisk || SDSDQ-6144-E11M || 6GB (SDHC) || || ? || {{yes}} || {{no}} || || ||&lt;br /&gt;
|-&lt;br /&gt;
| SanDisk || SDSDQ-8192-E11M || 7GB (SDHC) || 4 || ? || {{yes}} || ? || || ||&lt;br /&gt;
|-&lt;br /&gt;
| SanDisk || SDSDQY-8192-A11M || 8GB (SDHC) || || ? || {{yes}} || ? || || ||&lt;br /&gt;
|-&lt;br /&gt;
| SanDisk || SDSDQY-8192-E11M || 8GB (SDHC) || class 6 || ? || {{yes}} || ? || || ||&lt;br /&gt;
|-&lt;br /&gt;
| SanDisk || SDSDQR-8192-E12M || 8GB (SDHC) || 4 || ? || {{yes}} || ? || || ||&lt;br /&gt;
|-&lt;br /&gt;
| SanDisk || SDSDQR-8192-???? || 8GB (SDHC) || 6 || ? || {{yes}} || {{yes}} || || ||&lt;br /&gt;
|-&lt;br /&gt;
| SanDisk || SDSDQ-008G-E11M || 8GB (SDHC) || 2 || || || || {{yes}} || {{yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
| SanDisk || SDSDQ-008G-E11M || 8GB (SDHC) || 4 || ? || {{yes}} ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Silicon Power || SP004GBSTH006V10 || 4GB (SDHC) || 4 || ? || ? || ? || {{yes}} || {{yes}} || {{yes}}&lt;br /&gt;
|-&lt;br /&gt;
| Toshiba || SD-512R2W || 512MB || || {{no}} || {{yes}} || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Transcend || TS128MUSD || 128MB || || {{no}} || {{yes}} || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Transcend || TS256MUSD80 || 256MB || 80x || {{no}} || {{yes}} || {{yes}} || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Transcend || TS512MUSD || 512MB || || {{no}} || {{yes}} || {{yes}} || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Transcend || MM4GR512UACY-PA '''(shipped with FreeRunner)''' || 512MB || [http://www.transcendusa.com/Products/ModDetail.asp?ModNo=208&amp;amp;SpNo=2&amp;amp;LangNo=0 4] or [http://www.transcendusa.com/Products/ModDetail.asp?ModNo=195&amp;amp;SpNo=2&amp;amp;LangNo=0 6], which is it? || {{yes}} || {{yes}} || {{yes}} || {{yes}} || {{yes}} || {{yes}}&lt;br /&gt;
|-&lt;br /&gt;
| Transcend || MM4GRO1GUACY || 1GB || || ? || {{yes}} || ? || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Transcend || TS1GUSDC || 1GB (SDC) || || ? || I/O errors while trying to install Om2008.8 rootfs.tar.gz, looks like [https://docs.openmoko.org/trac/ticket/1743 #1743] || ? || ? || ? ||&lt;br /&gt;
|-&lt;br /&gt;
| Transcend || TS4GUSDHC6 (card marked with MM8GR04GUACY) || 4GB (SDHC) || Class 6 || ? || {{yes}} (Some work needed to get it running, see [https://docs.openmoko.org/trac/ticket/1743 #1743]) || ? || || || {{no}}, see [http://docs.openmoko.org/trac/ticket/2025 bug #2025]&lt;br /&gt;
|-&lt;br /&gt;
| Transcend || TS8GUSDHC4 || 8GB (SDHC) || Class 4 || ? || ? || ? || {{yes}} || linux 2.6.24+git37+d744c88c14 (2007.2 kernel as of Aug 28, 2008) ||&lt;br /&gt;
|-&lt;br /&gt;
| Transcend || TS8GUSDHC4 || 8GB (SDHC) || Class 4 || ? || ? || ? || {{yes}} || {{yes}} since kernel of 30-Sep-2008 ||&lt;br /&gt;
|-&lt;br /&gt;
| Verbatim || 47225 || 1GB || || {{no}} || {{yes}} || {{yes}} || || ||&lt;br /&gt;
|-&lt;br /&gt;
| vox-fon || 1 GB || 1GB || || {{no}} || {{yes}} || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| (Intenso) || ? || 4GB (SDHC) || || {{no}} || {{yes}} (Some work needed to get it running, see [https://docs.openmoko.org/trac/ticket/1743 #1743]) || ? || {{yes}} || {{yes}} (Some work needed to get it running, see [https://docs.openmoko.org/trac/ticket/1743 #1743])&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note that cards with a &amp;quot;'''no'''&amp;quot; may still work at times, but that we just have found their behaviour too erratic to consider acceptable.&lt;br /&gt;
(Also note that this is a bug in our version of u-boot. The cards are probably fine.)&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/User:Techiem2</id>
		<title>User:Techiem2</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/User:Techiem2"/>
				<updated>2008-10-22T21:13:11Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: moved section to fix formatting annoycances&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==About Me==&lt;br /&gt;
I live in DuBois, PA.&lt;br /&gt;
&lt;br /&gt;
I'm currently working part time as the Assistant to the CTO at [http://www.dbcollege.com DuBois Business College].&lt;br /&gt;
&lt;br /&gt;
I'm a Gentoo geek.&lt;br /&gt;
&lt;br /&gt;
Mark Montgomery II&lt;br /&gt;
&lt;br /&gt;
Web Site: http://www.techiem2.net&lt;br /&gt;
&lt;br /&gt;
Web Site at home: https://techiem2.no-ip.com&lt;br /&gt;
&lt;br /&gt;
TWiki at Web Site at home: https://techiem2.no-ip.com/twiki/bin/view&lt;br /&gt;
&lt;br /&gt;
Email: [mailto:techiem2@DONTSPAMHEREgmail.com techiem2@DONTSPAMHEREgmail.com]&lt;br /&gt;
&lt;br /&gt;
==My Portable Stuff==&lt;br /&gt;
*'''Work Laptop:'''     Compaq V5101US dual booting Gentoo and Windows XP (that I rarely need to use fortunately)&lt;br /&gt;
*'''Personal Laptop:''' ZaReason UltraLapSR dual booting Gentoo and Windows XP (recently installed in preparation for some upcoming games)&lt;br /&gt;
*'''Cell Phone:'''      Neo Freerunner&lt;br /&gt;
*'''Cell Provider:'''   At&amp;amp;T Prepaid ($.20/minute - put $25 in account every 90 days)&lt;br /&gt;
*'''Media Player:'''    Cowon iAudio X5 dual booting RockBox and original firmware (that I rarely use since RockBox is just plain awesome)&lt;br /&gt;
*'''GPS:'''             Garmin Etrex&lt;br /&gt;
*'''WiFi Scanner:'''    Zyxel AG-225H WiFi Scanner/USB Adapter (uses the zd1211 driver) - I also use this as my WNIC for my work laptop most of the time since the internal antenna doesn't see the AP very reliably from my desk in the corner.&lt;br /&gt;
&lt;br /&gt;
==My Interest in OpenMoko/Neo1973==&lt;br /&gt;
====General====&lt;br /&gt;
I think FLOSS should be used wherever possible and I love the idea of a fully open phone.&lt;br /&gt;
&lt;br /&gt;
I don't appreciate companies that use FLOSS in their devices yet restrict the user from doing anything, thus showing a lack of respect for the community and philosophies of the software they are profiting from.&lt;br /&gt;
&lt;br /&gt;
====Web Device====&lt;br /&gt;
I have recently started looking into WiFi web devices, and the Neo1973 Phase2 should be perfect (assuming WiFi is fully up and running for it).&lt;br /&gt;
&lt;br /&gt;
====SIP Phone====&lt;br /&gt;
I want to use it as a WiFi SIP phone as soon as there's a client written for it (the idea of using it as a SIP handset for the computer is interesting to me as well).  :)&lt;br /&gt;
&lt;br /&gt;
Ideally it should be running a SIP client with SRTP/ZRTP capabilities for secure communications.&lt;br /&gt;
&lt;br /&gt;
====GPS====&lt;br /&gt;
Assuming a good interface is made for it, it should make a much nicer (not to mention just plain cooler) GPS device than my old Etrex.&lt;br /&gt;
&lt;br /&gt;
My ideal would be a program with multiple tabs/pages with varying info.&lt;br /&gt;
*Map/Driving directions page.&lt;br /&gt;
*GPS info page - current coordinates and elevation and such.&lt;br /&gt;
*Movement info page - current heading and speed and such.&lt;br /&gt;
*More?&lt;br /&gt;
Maybe configurable to be able to set how many pages and what is on each page?&lt;br /&gt;
&lt;br /&gt;
====Wireless Network Analysis====&lt;br /&gt;
Wardriving/Warwalking! (or just plain Wireless LAN mapping/troubleshooting in general)&lt;br /&gt;
&lt;br /&gt;
(Come on, admit that you've all been thinking the same thing!)&lt;br /&gt;
&lt;br /&gt;
Since it's running a good WiFi chipset and gpsd already, I'm assuming it would be trivial for someone in the know to port kismet to it.&lt;br /&gt;
&lt;br /&gt;
And of course make sure it works with gpsd and the GPS interface program.&lt;br /&gt;
&lt;br /&gt;
No more driving/walking around with a laptop and GPS for wardriving/warwalking or testing out your corporate WLAN - Just fire up your Neo1973 and go!&lt;br /&gt;
&lt;br /&gt;
====Cell Phone====&lt;br /&gt;
I'm now using my Freerunner as my cell phone on AT&amp;amp;T prepaid.&lt;br /&gt;
My old one is soon to be cancelled.&lt;br /&gt;
&lt;br /&gt;
====Document Reader====&lt;br /&gt;
I would like to use it as a document reader as well.&lt;br /&gt;
&lt;br /&gt;
Primarily for PDF and TXT, but of course other formats (ODF?) would be great.&lt;br /&gt;
&lt;br /&gt;
====Media Player====&lt;br /&gt;
If the quality is good, I might consider using it as a media player (ogg of course!) if I can get a nice big card for it.&lt;br /&gt;
&lt;br /&gt;
My OGG collection is a bit under 4GB as I recall.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Wall/Car Charger==&lt;br /&gt;
I picked up an [http://www.ezgear.com/ALL/PowerBullet2x2.htm ezGear PowerBullet 2x2]  - 2 port Wall/Car USB charger.&lt;br /&gt;
&lt;br /&gt;
It is rated at 5v 1A.&lt;br /&gt;
&lt;br /&gt;
It appears to put out 500mA per port (so reports the Freerunner).&lt;br /&gt;
&lt;br /&gt;
It does not appear to be a &amp;quot;smart&amp;quot; USB device as the Freerunner does not go into fast charge mode when connected to it (it goes into 100mA mode, which as we all know is pretty much useless), so you have to force fast charging to get a 500mA charge going.&lt;br /&gt;
&lt;br /&gt;
This is a minor inconvenience compared to the convenience of having a Wall/Car charger always on hand (just don't forget to have your USB cable on you!).&lt;br /&gt;
&lt;br /&gt;
==Openmoko Projects==&lt;br /&gt;
&lt;br /&gt;
===USB-Mode===&lt;br /&gt;
I wrote a small pygtk application to switch USB Modes on the Freerunner.&lt;br /&gt;
&lt;br /&gt;
You can read my blog entry about it [http://www.techiem2.net/index.php?/archives/10-Freerunner-USB-Mode-Control-Program.html here] or directly download the archive [http://www.techiem2.net/files/usbmode.tar.gz here].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Usbmode.png|thumb|left|240|Upright|Border|USB-Mode]]&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/User:Techiem2</id>
		<title>User:Techiem2</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/User:Techiem2"/>
				<updated>2008-10-22T21:03:23Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==About Me==&lt;br /&gt;
I live in DuBois, PA.&lt;br /&gt;
&lt;br /&gt;
I'm currently working part time as the Assistant to the CTO at [http://www.dbcollege.com DuBois Business College].&lt;br /&gt;
&lt;br /&gt;
I'm a Gentoo geek.&lt;br /&gt;
&lt;br /&gt;
Mark Montgomery II&lt;br /&gt;
&lt;br /&gt;
Web Site: http://www.techiem2.net&lt;br /&gt;
&lt;br /&gt;
Web Site at home: https://techiem2.no-ip.com&lt;br /&gt;
&lt;br /&gt;
TWiki at Web Site at home: https://techiem2.no-ip.com/twiki/bin/view&lt;br /&gt;
&lt;br /&gt;
Email: [mailto:techiem2@DONTSPAMHEREgmail.com techiem2@DONTSPAMHEREgmail.com]&lt;br /&gt;
&lt;br /&gt;
==My Portable Stuff==&lt;br /&gt;
*'''Work Laptop:'''     Compaq V5101US dual booting Gentoo and Windows XP (that I rarely need to use fortunately)&lt;br /&gt;
*'''Personal Laptop:''' ZaReason UltraLapSR dual booting Gentoo and Windows XP (recently installed in preparation for some upcoming games)&lt;br /&gt;
*'''Cell Phone:'''      Neo Freerunner&lt;br /&gt;
*'''Cell Provider:'''   At&amp;amp;T Prepaid ($.20/minute - put $25 in account every 90 days)&lt;br /&gt;
*'''Media Player:'''    Cowon iAudio X5 dual booting RockBox and original firmware (that I rarely use since RockBox is just plain awesome)&lt;br /&gt;
*'''GPS:'''             Garmin Etrex&lt;br /&gt;
*'''WiFi Scanner:'''    Zyxel AG-225H WiFi Scanner/USB Adapter (uses the zd1211 driver) - I also use this as my WNIC for my work laptop most of the time since the internal antenna doesn't see the AP very reliably from my desk in the corner.&lt;br /&gt;
&lt;br /&gt;
==My Interest in OpenMoko/Neo1973==&lt;br /&gt;
====General====&lt;br /&gt;
I think FLOSS should be used wherever possible and I love the idea of a fully open phone.&lt;br /&gt;
&lt;br /&gt;
I don't appreciate companies that use FLOSS in their devices yet restrict the user from doing anything, thus showing a lack of respect for the community and philosophies of the software they are profiting from.&lt;br /&gt;
&lt;br /&gt;
====Web Device====&lt;br /&gt;
I have recently started looking into WiFi web devices, and the Neo1973 Phase2 should be perfect (assuming WiFi is fully up and running for it).&lt;br /&gt;
&lt;br /&gt;
====SIP Phone====&lt;br /&gt;
I want to use it as a WiFi SIP phone as soon as there's a client written for it (the idea of using it as a SIP handset for the computer is interesting to me as well).  :)&lt;br /&gt;
&lt;br /&gt;
Ideally it should be running a SIP client with SRTP/ZRTP capabilities for secure communications.&lt;br /&gt;
&lt;br /&gt;
====GPS====&lt;br /&gt;
Assuming a good interface is made for it, it should make a much nicer (not to mention just plain cooler) GPS device than my old Etrex.&lt;br /&gt;
&lt;br /&gt;
My ideal would be a program with multiple tabs/pages with varying info.&lt;br /&gt;
*Map/Driving directions page.&lt;br /&gt;
*GPS info page - current coordinates and elevation and such.&lt;br /&gt;
*Movement info page - current heading and speed and such.&lt;br /&gt;
*More?&lt;br /&gt;
Maybe configurable to be able to set how many pages and what is on each page?&lt;br /&gt;
&lt;br /&gt;
====Wireless Network Analysis====&lt;br /&gt;
Wardriving/Warwalking! (or just plain Wireless LAN mapping/troubleshooting in general)&lt;br /&gt;
&lt;br /&gt;
(Come on, admit that you've all been thinking the same thing!)&lt;br /&gt;
&lt;br /&gt;
Since it's running a good WiFi chipset and gpsd already, I'm assuming it would be trivial for someone in the know to port kismet to it.&lt;br /&gt;
&lt;br /&gt;
And of course make sure it works with gpsd and the GPS interface program.&lt;br /&gt;
&lt;br /&gt;
No more driving/walking around with a laptop and GPS for wardriving/warwalking or testing out your corporate WLAN - Just fire up your Neo1973 and go!&lt;br /&gt;
&lt;br /&gt;
====Cell Phone====&lt;br /&gt;
I'm now using my Freerunner as my cell phone on AT&amp;amp;T prepaid.&lt;br /&gt;
My old one is soon to be cancelled.&lt;br /&gt;
&lt;br /&gt;
====Document Reader====&lt;br /&gt;
I would like to use it as a document reader as well.&lt;br /&gt;
&lt;br /&gt;
Primarily for PDF and TXT, but of course other formats (ODF?) would be great.&lt;br /&gt;
&lt;br /&gt;
====Media Player====&lt;br /&gt;
If the quality is good, I might consider using it as a media player (ogg of course!) if I can get a nice big card for it.&lt;br /&gt;
&lt;br /&gt;
My OGG collection is a bit under 4GB as I recall.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
==Openmoko Projects==&lt;br /&gt;
&lt;br /&gt;
===USB-Mode===&lt;br /&gt;
I wrote a small pygtk application to switch USB Modes on the Freerunner.&lt;br /&gt;
&lt;br /&gt;
You can read my blog entry about it [http://www.techiem2.net/index.php?/archives/10-Freerunner-USB-Mode-Control-Program.html here] or directly download the archive [http://www.techiem2.net/files/usbmode.tar.gz here].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Usbmode.png|thumb|left|240|Upright|Border|USB-Mode]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Wall/Car Charger==&lt;br /&gt;
I picked up an [http://www.ezgear.com/ALL/PowerBullet2x2.htm ezGear PowerBullet 2x2]  - 2 port Wall/Car USB charger.&lt;br /&gt;
&lt;br /&gt;
It is rated at 5v 1A.&lt;br /&gt;
&lt;br /&gt;
It appears to put out 500mA per port (so reports the Freerunner).&lt;br /&gt;
&lt;br /&gt;
It does not appear to be a &amp;quot;smart&amp;quot; USB device as the Freerunner does not go into fast charge mode when connected to it (it goes into 100mA mode, which as we all know is pretty much useless), so you have to force fast charging to get a 500mA charge going.&lt;br /&gt;
&lt;br /&gt;
This is a minor inconvenience compared to the convenience of having a Wall/Car charger always on hand (just don't forget to have your USB cable on you!).&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/User:Techiem2</id>
		<title>User:Techiem2</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/User:Techiem2"/>
				<updated>2008-10-22T21:02:18Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: /* Wall/Car Charger */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==About Me==&lt;br /&gt;
I live in DuBois, PA.&lt;br /&gt;
&lt;br /&gt;
I'm currently working part time as the Assistant to the CTO at [http://www.dbcollege.com DuBois Business College].&lt;br /&gt;
&lt;br /&gt;
I'm a Gentoo geek.&lt;br /&gt;
&lt;br /&gt;
Mark Montgomery II&lt;br /&gt;
&lt;br /&gt;
Web Site: http://www.techiem2.net&lt;br /&gt;
&lt;br /&gt;
Web Site at home: https://techiem2.no-ip.com&lt;br /&gt;
&lt;br /&gt;
TWiki at Web Site at home: https://techiem2.no-ip.com/twiki/bin/view&lt;br /&gt;
&lt;br /&gt;
Email: [mailto:techiem2@DONTSPAMHEREgmail.com techiem2@DONTSPAMHEREgmail.com]&lt;br /&gt;
&lt;br /&gt;
==My Portable Stuff==&lt;br /&gt;
*'''Work Laptop:'''     Compaq V5101US dual booting Gentoo and Windows XP (that I rarely need to use fortunately)&lt;br /&gt;
*'''Personal Laptop:''' ZaReason UltraLapSR dual booting Gentoo and Windows XP (recently installed in preparation for some upcoming games)&lt;br /&gt;
*'''Cell Phone:'''      Neo Freerunner&lt;br /&gt;
*'''Cell Provider:'''   At&amp;amp;T Prepaid ($.20/minute - put $25 in account every 90 days)&lt;br /&gt;
*'''Media Player:'''    Cowon iAudio X5 dual booting RockBox and original firmware (that I rarely use since RockBox is just plain awesome)&lt;br /&gt;
*'''GPS:'''             Garmin Etrex&lt;br /&gt;
*'''WiFi Scanner:'''    Zyxel AG-225H WiFi Scanner/USB Adapter (uses the zd1211 driver) - I also use this as my WNIC for my work laptop most of the time since the internal antenna doesn't see the AP very reliably from my desk in the corner.&lt;br /&gt;
&lt;br /&gt;
==My Interest in OpenMoko/Neo1973==&lt;br /&gt;
====General====&lt;br /&gt;
I think FLOSS should be used wherever possible and I love the idea of a fully open phone.&lt;br /&gt;
&lt;br /&gt;
I don't appreciate companies that use FLOSS in their devices yet restrict the user from doing anything, thus showing a lack of respect for the community and philosophies of the software they are profiting from.&lt;br /&gt;
&lt;br /&gt;
====Web Device====&lt;br /&gt;
I have recently started looking into WiFi web devices, and the Neo1973 Phase2 should be perfect (assuming WiFi is fully up and running for it).&lt;br /&gt;
&lt;br /&gt;
====SIP Phone====&lt;br /&gt;
I want to use it as a WiFi SIP phone as soon as there's a client written for it (the idea of using it as a SIP handset for the computer is interesting to me as well).  :)&lt;br /&gt;
&lt;br /&gt;
Ideally it should be running a SIP client with SRTP/ZRTP capabilities for secure communications.&lt;br /&gt;
&lt;br /&gt;
====GPS====&lt;br /&gt;
Assuming a good interface is made for it, it should make a much nicer (not to mention just plain cooler) GPS device than my old Etrex.&lt;br /&gt;
&lt;br /&gt;
My ideal would be a program with multiple tabs/pages with varying info.&lt;br /&gt;
*Map/Driving directions page.&lt;br /&gt;
*GPS info page - current coordinates and elevation and such.&lt;br /&gt;
*Movement info page - current heading and speed and such.&lt;br /&gt;
*More?&lt;br /&gt;
Maybe configurable to be able to set how many pages and what is on each page?&lt;br /&gt;
&lt;br /&gt;
====Wireless Network Analysis====&lt;br /&gt;
Wardriving/Warwalking! (or just plain Wireless LAN mapping/troubleshooting in general)&lt;br /&gt;
&lt;br /&gt;
(Come on, admit that you've all been thinking the same thing!)&lt;br /&gt;
&lt;br /&gt;
Since it's running a good WiFi chipset and gpsd already, I'm assuming it would be trivial for someone in the know to port kismet to it.&lt;br /&gt;
&lt;br /&gt;
And of course make sure it works with gpsd and the GPS interface program.&lt;br /&gt;
&lt;br /&gt;
No more driving/walking around with a laptop and GPS for wardriving/warwalking or testing out your corporate WLAN - Just fire up your Neo1973 and go!&lt;br /&gt;
&lt;br /&gt;
====Cell Phone====&lt;br /&gt;
I'm now using my Freerunner as my cell phone on AT&amp;amp;T prepaid.&lt;br /&gt;
My old one is soon to be cancelled.&lt;br /&gt;
&lt;br /&gt;
====Document Reader====&lt;br /&gt;
I would like to use it as a document reader as well.&lt;br /&gt;
&lt;br /&gt;
Primarily for PDF and TXT, but of course other formats (ODF?) would be great.&lt;br /&gt;
&lt;br /&gt;
====Media Player====&lt;br /&gt;
If the quality is good, I might consider using it as a media player (ogg of course!) if I can get a nice big card for it.&lt;br /&gt;
&lt;br /&gt;
My OGG collection is a bit under 4GB as I recall.&lt;br /&gt;
&lt;br /&gt;
==Openmoko Projects==&lt;br /&gt;
&lt;br /&gt;
===USB-Mode===&lt;br /&gt;
I wrote a small pygtk application to switch USB Modes on the Freerunner.&lt;br /&gt;
&lt;br /&gt;
You can read my blog entry about it [http://www.techiem2.net/index.php?/archives/10-Freerunner-USB-Mode-Control-Program.html here] or directly download the archive [http://www.techiem2.net/files/usbmode.tar.gz here].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Usbmode.png|thumb|left|240|Upright|Border|USB-Mode]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Wall/Car Charger==&lt;br /&gt;
I picked up an [http://www.ezgear.com/ALL/PowerBullet2x2.htm ezGear PowerBullet 2x2]  - 2 port Wall/Car USB charger.&lt;br /&gt;
&lt;br /&gt;
It is rated at 5v 1A.&lt;br /&gt;
&lt;br /&gt;
It appears to put out 500mA per port (so reports the Freerunner).&lt;br /&gt;
&lt;br /&gt;
It does not appear to be a &amp;quot;smart&amp;quot; USB device as the Freerunner does not go into fast charge mode when connected to it (it goes into 100mA mode, which as we all know is pretty much useless), so you have to force fast charging to get a 500mA charge going.&lt;br /&gt;
&lt;br /&gt;
This is a minor inconvenience compared to the convenience of having a Wall/Car charger always on hand (just don't forget to have your USB cable on you!).&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/User:Techiem2</id>
		<title>User:Techiem2</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/User:Techiem2"/>
				<updated>2008-10-22T21:01:49Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: Added Wall/Car charger information&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==About Me==&lt;br /&gt;
I live in DuBois, PA.&lt;br /&gt;
&lt;br /&gt;
I'm currently working part time as the Assistant to the CTO at [http://www.dbcollege.com DuBois Business College].&lt;br /&gt;
&lt;br /&gt;
I'm a Gentoo geek.&lt;br /&gt;
&lt;br /&gt;
Mark Montgomery II&lt;br /&gt;
&lt;br /&gt;
Web Site: http://www.techiem2.net&lt;br /&gt;
&lt;br /&gt;
Web Site at home: https://techiem2.no-ip.com&lt;br /&gt;
&lt;br /&gt;
TWiki at Web Site at home: https://techiem2.no-ip.com/twiki/bin/view&lt;br /&gt;
&lt;br /&gt;
Email: [mailto:techiem2@DONTSPAMHEREgmail.com techiem2@DONTSPAMHEREgmail.com]&lt;br /&gt;
&lt;br /&gt;
==My Portable Stuff==&lt;br /&gt;
*'''Work Laptop:'''     Compaq V5101US dual booting Gentoo and Windows XP (that I rarely need to use fortunately)&lt;br /&gt;
*'''Personal Laptop:''' ZaReason UltraLapSR dual booting Gentoo and Windows XP (recently installed in preparation for some upcoming games)&lt;br /&gt;
*'''Cell Phone:'''      Neo Freerunner&lt;br /&gt;
*'''Cell Provider:'''   At&amp;amp;T Prepaid ($.20/minute - put $25 in account every 90 days)&lt;br /&gt;
*'''Media Player:'''    Cowon iAudio X5 dual booting RockBox and original firmware (that I rarely use since RockBox is just plain awesome)&lt;br /&gt;
*'''GPS:'''             Garmin Etrex&lt;br /&gt;
*'''WiFi Scanner:'''    Zyxel AG-225H WiFi Scanner/USB Adapter (uses the zd1211 driver) - I also use this as my WNIC for my work laptop most of the time since the internal antenna doesn't see the AP very reliably from my desk in the corner.&lt;br /&gt;
&lt;br /&gt;
==My Interest in OpenMoko/Neo1973==&lt;br /&gt;
====General====&lt;br /&gt;
I think FLOSS should be used wherever possible and I love the idea of a fully open phone.&lt;br /&gt;
&lt;br /&gt;
I don't appreciate companies that use FLOSS in their devices yet restrict the user from doing anything, thus showing a lack of respect for the community and philosophies of the software they are profiting from.&lt;br /&gt;
&lt;br /&gt;
====Web Device====&lt;br /&gt;
I have recently started looking into WiFi web devices, and the Neo1973 Phase2 should be perfect (assuming WiFi is fully up and running for it).&lt;br /&gt;
&lt;br /&gt;
====SIP Phone====&lt;br /&gt;
I want to use it as a WiFi SIP phone as soon as there's a client written for it (the idea of using it as a SIP handset for the computer is interesting to me as well).  :)&lt;br /&gt;
&lt;br /&gt;
Ideally it should be running a SIP client with SRTP/ZRTP capabilities for secure communications.&lt;br /&gt;
&lt;br /&gt;
====GPS====&lt;br /&gt;
Assuming a good interface is made for it, it should make a much nicer (not to mention just plain cooler) GPS device than my old Etrex.&lt;br /&gt;
&lt;br /&gt;
My ideal would be a program with multiple tabs/pages with varying info.&lt;br /&gt;
*Map/Driving directions page.&lt;br /&gt;
*GPS info page - current coordinates and elevation and such.&lt;br /&gt;
*Movement info page - current heading and speed and such.&lt;br /&gt;
*More?&lt;br /&gt;
Maybe configurable to be able to set how many pages and what is on each page?&lt;br /&gt;
&lt;br /&gt;
====Wireless Network Analysis====&lt;br /&gt;
Wardriving/Warwalking! (or just plain Wireless LAN mapping/troubleshooting in general)&lt;br /&gt;
&lt;br /&gt;
(Come on, admit that you've all been thinking the same thing!)&lt;br /&gt;
&lt;br /&gt;
Since it's running a good WiFi chipset and gpsd already, I'm assuming it would be trivial for someone in the know to port kismet to it.&lt;br /&gt;
&lt;br /&gt;
And of course make sure it works with gpsd and the GPS interface program.&lt;br /&gt;
&lt;br /&gt;
No more driving/walking around with a laptop and GPS for wardriving/warwalking or testing out your corporate WLAN - Just fire up your Neo1973 and go!&lt;br /&gt;
&lt;br /&gt;
====Cell Phone====&lt;br /&gt;
I'm now using my Freerunner as my cell phone on AT&amp;amp;T prepaid.&lt;br /&gt;
My old one is soon to be cancelled.&lt;br /&gt;
&lt;br /&gt;
====Document Reader====&lt;br /&gt;
I would like to use it as a document reader as well.&lt;br /&gt;
&lt;br /&gt;
Primarily for PDF and TXT, but of course other formats (ODF?) would be great.&lt;br /&gt;
&lt;br /&gt;
====Media Player====&lt;br /&gt;
If the quality is good, I might consider using it as a media player (ogg of course!) if I can get a nice big card for it.&lt;br /&gt;
&lt;br /&gt;
My OGG collection is a bit under 4GB as I recall.&lt;br /&gt;
&lt;br /&gt;
==Openmoko Projects==&lt;br /&gt;
&lt;br /&gt;
===USB-Mode===&lt;br /&gt;
I wrote a small pygtk application to switch USB Modes on the Freerunner.&lt;br /&gt;
&lt;br /&gt;
You can read my blog entry about it [http://www.techiem2.net/index.php?/archives/10-Freerunner-USB-Mode-Control-Program.html here] or directly download the archive [http://www.techiem2.net/files/usbmode.tar.gz here].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Usbmode.png|thumb|left|240|Upright|Border|USB-Mode]]&lt;br /&gt;
&lt;br /&gt;
==Wall/Car Charger==&lt;br /&gt;
I picked up an [http://www.ezgear.com/ALL/PowerBullet2x2.htm ezGear PowerBullet 2x2]  - 2 port Wall/Car USB charger.&lt;br /&gt;
&lt;br /&gt;
It is rated at 5v 1A.&lt;br /&gt;
&lt;br /&gt;
It appears to put out 500mA per port (so reports the Freerunner).&lt;br /&gt;
&lt;br /&gt;
It does not appear to be a &amp;quot;smart&amp;quot; USB device as the Freerunner does not go into fast charge mode when connected to it (it goes into 100mA mode, which as we all know is pretty much useless), so you have to force fast charging to get a 500mA charge going.&lt;br /&gt;
&lt;br /&gt;
This is a minor inconvenience compared to the convenience of having a Wall/Car charger always on hand (just don't forget to have your USB cable on you!).&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:Car_phone_holder</id>
		<title>Talk:Car phone holder</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:Car_phone_holder"/>
				<updated>2008-10-19T14:16:36Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Just where does one purchase the HR products (in the US in my case)?&lt;br /&gt;
&lt;br /&gt;
I couldn't find anything on their site.&lt;br /&gt;
&lt;br /&gt;
-- [[User:Techiem2|TechieM2]] 10-19-2008&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:Car_phone_holder</id>
		<title>Talk:Car phone holder</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:Car_phone_holder"/>
				<updated>2008-10-19T14:16:14Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: Where do you buy HR stuff?&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Just where does one purchase the HR products (in the US in my case)?&lt;br /&gt;
I couldn't find anything on their site.&lt;br /&gt;
&lt;br /&gt;
-- [[User:Techiem2|TechieM2]] 10-19-2008&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:USB_host</id>
		<title>Talk:USB host</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:USB_host"/>
				<updated>2008-10-12T14:17:30Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I picked up one of these cables to try:&lt;br /&gt;
&lt;br /&gt;
http://www.cablestogo.com/product.asp?cat_id=1510&amp;amp;sku=28107&lt;br /&gt;
&lt;br /&gt;
I hooked up a USB A female-female adapter to the data/power end and to a dual PS/2 to USB keyboard/mouse adapter with a TypeMatrix 2020 keyboard on it.&lt;br /&gt;
&lt;br /&gt;
I hooked the aux power line to my laptop.&lt;br /&gt;
&lt;br /&gt;
While it worked, eventually the battery drained to deep discharge (I had WiFi enabled and GSM/BT/BPS disabled - Power Management was disabled).&lt;br /&gt;
&lt;br /&gt;
When I looked at the power info on the Freerunner when it was still in normal USB mode, I found that the Aux line only supplies 100mA (charger_type file) and the chgmode file says &amp;quot;play-only&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Also, the directory for the charge info is /sys/devices/platform/s3c2440-i2c/i2c-adapter/i2c-0/0-0073/ on the Freerunner and it appears the setting for fast charge mode is simply &amp;quot;fast&amp;quot; on the Freerunner instead of &amp;quot;fast_cccv&amp;quot; (at least that's what shows up in the chgmode file when hooked up USB).&lt;br /&gt;
&lt;br /&gt;
--[[User:Techiem2|Techiem2]] 23:08, 24 July 2008&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I put together a little pygtk app for changing USB Modes.&lt;br /&gt;
&lt;br /&gt;
[[User:Techiem2#USB-Mode|USB-Mode Intro and external links]]&lt;br /&gt;
&lt;br /&gt;
--[[User:Techiem2|Techiem2]] 10:17, 12 October 2008&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/FreeRunner/Buttons_and_LEDs</id>
		<title>FreeRunner/Buttons and LEDs</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/FreeRunner/Buttons_and_LEDs"/>
				<updated>2008-10-12T13:55:34Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: orang -&amp;gt; orange&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the Software specification for the Openmoko Neo FreeRunner Button and LEDs.&lt;br /&gt;
&lt;br /&gt;
{{InProgress}}&lt;br /&gt;
&lt;br /&gt;
=Taxonomy=&lt;br /&gt;
&lt;br /&gt;
==What's currently implemented==&lt;br /&gt;
 /sys/devices/platform/gta02-led.0/leds/gta02-aux:red/&lt;br /&gt;
 /sys/devices/platform/gta02-led.0/leds/gta02-power:blue/&lt;br /&gt;
 /sys/devices/platform/gta02-led.0/leds/gta02-power:orange/&lt;br /&gt;
Those are all userspace directories for controlling the LEDs. echo 0 &amp;gt; brightness will turn the LED off. echo 1 &amp;gt; brightness will turn it on.&lt;br /&gt;
trigger currently does nothing.&lt;br /&gt;
&lt;br /&gt;
==Buttons==&lt;br /&gt;
* AUX = Button on the left side of the device, upper area&lt;br /&gt;
* POWER = Button on the right side of the device, center area (right below the USB socket)&lt;br /&gt;
&lt;br /&gt;
==Leds==&lt;br /&gt;
{| border=1 cellspacing=0 cellpadding=5&lt;br /&gt;
| EVENT&lt;br /&gt;
|style=&amp;quot;background:#FF0000;color:white;&amp;quot;| '''red'''&lt;br /&gt;
| behind AUX button&lt;br /&gt;
|-&lt;br /&gt;
| HEARTBEAT&lt;br /&gt;
|style=&amp;quot;background:#FF8040;color:white;&amp;quot;| '''orange'''&lt;br /&gt;
| behind POWER button&lt;br /&gt;
|-&lt;br /&gt;
| WIRELESS / BLUETOOTH&lt;br /&gt;
|style=&amp;quot;background:#0000FF;color:white;&amp;quot;| '''blue'''&lt;br /&gt;
| behind POWER button&lt;br /&gt;
|-&lt;br /&gt;
| MIXING TWO LEDS&lt;br /&gt;
|style=&amp;quot;background:#80409F;color:white;&amp;quot;| '''purple'''&lt;br /&gt;
| behind POWER button if turning on the blue and the orange buttons together&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Modes==&lt;br /&gt;
* OFF = Device has no power or has been shutdown&lt;br /&gt;
* ON = Device is fully powered&lt;br /&gt;
* ON+CHARGING = Device is fully powered and has been connected to a USB host or Openmoko charger.&lt;br /&gt;
* LOCK = Device is fully powered, but has screen lock displayed&lt;br /&gt;
* SUSPEND = Device has been suspended to low-power mode&lt;br /&gt;
&lt;br /&gt;
=Basic Button Usage=&lt;br /&gt;
&lt;br /&gt;
This is grouped by mode:&lt;br /&gt;
&lt;br /&gt;
==Mode: OFF==&lt;br /&gt;
&lt;br /&gt;
* To switch the device on: Press and hold POWER until the boot logo appears.&lt;br /&gt;
* To enter the &amp;quot;normal&amp;quot; (NAND) boot menu: Press and hold POWER, one second later press and hold AUX.&lt;br /&gt;
* To enter the &amp;quot;rescue&amp;quot; (NOR) boot menu: Press and hold AUX, then press and hold POWER.&lt;br /&gt;
&lt;br /&gt;
==Mode: ON==&lt;br /&gt;
&lt;br /&gt;
* To suspend the device: Press POWER.&lt;br /&gt;
* To shut down the device: Press and hold POWER for 4 seconds. If the device hangs, press and hold POWER for 8 seconds. If it still hangs, remove the battery and disconnect from USB.&lt;br /&gt;
* To go to the home screen: Press AUX.&lt;br /&gt;
* To display the profile screen: Press and hold AUX until it appears.&lt;br /&gt;
&lt;br /&gt;
==Mode: SUSPEND==&lt;br /&gt;
&lt;br /&gt;
* To wakeup the device: Press POWER.&lt;br /&gt;
&lt;br /&gt;
=Basic LED Usage=&lt;br /&gt;
&lt;br /&gt;
LEDs are very useful in broadcasting valuable basic status information to the user in a way that the user does not have to unlock the device, enable the screen or turning the screen saver off and subsequently search the screen for basic status information.&lt;br /&gt;
&lt;br /&gt;
''This is grouped by mode:''&lt;br /&gt;
&lt;br /&gt;
==Mode: OFF==&lt;br /&gt;
&lt;br /&gt;
* All LEDs will be turned off.&lt;br /&gt;
&lt;br /&gt;
==Mode: ON==&lt;br /&gt;
&lt;br /&gt;
* HEARTBEAT will emit a short blink every 4 seconds.&lt;br /&gt;
* If Bluetooth is powered on, WIRELESS will emit a short blink every 2 seconds.&lt;br /&gt;
* If Wifi is powered on, WIRELESS will emit a long blink every 2 seconds.&lt;br /&gt;
* If Bluetooth and Wifi are powered on, WIRELESS will be lit continuosly.&lt;br /&gt;
&lt;br /&gt;
==Mode: ON+CHARGING==&lt;br /&gt;
&lt;br /&gt;
''Same as ON, with the exception of''&lt;br /&gt;
* HEARTBEAT will increase blinking as the charge level of the battery increases.&lt;br /&gt;
* HEARTBEAT will be continuosly lit, if the battery has been fully charged.&lt;br /&gt;
&lt;br /&gt;
==Mode: SUSPEND==&lt;br /&gt;
&lt;br /&gt;
* All LEDs will be turned off.&lt;br /&gt;
&lt;br /&gt;
=Advanced Button/LED Usage=&lt;br /&gt;
&lt;br /&gt;
* In ON-Mode, EVENT will blink every 2 seconds if there's an event that needs your attention.&lt;br /&gt;
* The more events, the faster EVENT will blink.&lt;br /&gt;
* Pressing AUX will acknowledge the event with the topmost priority and display it to you.&lt;br /&gt;
* EVENT will stop to blink once all events have been acknowledged.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=A first rules implementation=&lt;br /&gt;
A C implementation of these rules has been [http://lists.openmoko.org/pipermail/openmoko-devel/2008-July/003458.html done by smurfy - phil] and is available at http://www.smurfy.de/files/neo/openmoko-led-v1.tar.gz&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Implementations of other LED behaviors =&lt;br /&gt;
&lt;br /&gt;
== Blink LEDs to a user-definable rhythm ==&lt;br /&gt;
&lt;br /&gt;
A Python Script For Blinking Leds By Beats. This script reads beats from a file and blinks FreeRunners LEDs accordingly.&lt;br /&gt;
 &lt;br /&gt;
File format is human readable text, consisting of a simple sequence of integer quartet (4 numbers).  The first number representing status of blue power-led, second means status of orange power-led and third means status of red aux-led. 0=OFF, 1=ON. (If blue=1 and orange=1 then power=lila. This has nothing to do with this python script or this file format.) The last number represents the duration in milliseconds to hold that situation of leds.  Any non digit characters in the file count as a separators between numbers, but are otherwise ignored.&lt;br /&gt;
&lt;br /&gt;
It requires packages python-core and python-re from opkg.&lt;br /&gt;
==== Led blinker ====&lt;br /&gt;
&lt;br /&gt;
 #!/usr/bin/python&lt;br /&gt;
 &amp;quot;&amp;quot;&amp;quot;Led Blinker Player&lt;br /&gt;
 &lt;br /&gt;
 Usage: python leds.py [filename]&lt;br /&gt;
 &amp;quot;&amp;quot;&amp;quot;&lt;br /&gt;
 import sys&lt;br /&gt;
 import time&lt;br /&gt;
 import re&lt;br /&gt;
 &lt;br /&gt;
 def loadFromTextFile(filename):&lt;br /&gt;
    infile = open(filename)&lt;br /&gt;
    contents = infile.read()&lt;br /&gt;
    return re.findall(&amp;quot;(\d+)\D*(\d+)\D*(\d+)\D*(\d+)&amp;quot;, contents)&lt;br /&gt;
 &lt;br /&gt;
 def playNote(blue_value, orange_value, red_value, duration):&lt;br /&gt;
    blue.write(str(blue_value) + &amp;quot;\n&amp;quot;)&lt;br /&gt;
    orange.write(str(orange_value) + &amp;quot;\n&amp;quot;)&lt;br /&gt;
    red.write(str(red_value) + &amp;quot;\n&amp;quot;)&lt;br /&gt;
    time.sleep(float(duration) / 1000.0)&lt;br /&gt;
 &lt;br /&gt;
 def playFile(filename):&lt;br /&gt;
    global blue, orange, red &lt;br /&gt;
    notes = loadFromTextFile(filename)&lt;br /&gt;
    blue = open(&amp;quot;/sys/class/leds/gta02-power:blue/brightness&amp;quot;, &amp;quot;w&amp;quot;, 1)&lt;br /&gt;
    orange = open(&amp;quot;/sys/class/leds/gta02-power:orange/brightness&amp;quot;, &amp;quot;w&amp;quot;, 1)&lt;br /&gt;
    red = open(&amp;quot;/sys/class/leds/gta02-aux:red/brightness&amp;quot;, &amp;quot;w&amp;quot;, 1)&lt;br /&gt;
 &lt;br /&gt;
    for first,second,third, duration in notes:&lt;br /&gt;
        playNote(first,second,third,duration)&lt;br /&gt;
 &lt;br /&gt;
    playNote(0, 0, 0, 0)&lt;br /&gt;
    blue.close()&lt;br /&gt;
    orange.close()&lt;br /&gt;
    red.close()&lt;br /&gt;
 &lt;br /&gt;
 if __name__ == &amp;quot;__main__&amp;quot;:&lt;br /&gt;
    playFile(sys.argv[1])&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Example Beat ====&lt;br /&gt;
The following is an example &amp;quot;fireworks&amp;quot;-file that can be used to test the led blinker.&lt;br /&gt;
&lt;br /&gt;
 1 0 0 100&lt;br /&gt;
 1 0 1 100&lt;br /&gt;
 1 1 0 100&lt;br /&gt;
 0 1 0 100&lt;br /&gt;
 0 1 1 100&lt;br /&gt;
 0 0 1 100&lt;br /&gt;
 1 1 1 100&lt;br /&gt;
 1 0 0 100&lt;br /&gt;
 1 0 1 100&lt;br /&gt;
 1 1 0 100&lt;br /&gt;
 0 1 0 100&lt;br /&gt;
 0 1 1 100&lt;br /&gt;
 0 0 1 100&lt;br /&gt;
 1 1 1 100&lt;br /&gt;
 1 0 0 100&lt;br /&gt;
 1 0 1 100&lt;br /&gt;
 1 1 0 100&lt;br /&gt;
 0 1 0 100&lt;br /&gt;
 0 1 1 100&lt;br /&gt;
 0 0 1 100&lt;br /&gt;
 1 1 1 100&lt;br /&gt;
&lt;br /&gt;
== Charge State and Wi-Fi transfer ==&lt;br /&gt;
&lt;br /&gt;
Seba has written a script called ledd which indicates charging state and transferring data over&lt;br /&gt;
wifi on the LEDs. It is available [http://openmoko.opendevice.org/~dos/ledd here].&lt;br /&gt;
&lt;br /&gt;
== Power Status ==&lt;br /&gt;
&lt;br /&gt;
This Perl Script&lt;br /&gt;
uses the blue and orange LEDs under the power button to show battery power status.  &lt;br /&gt;
&lt;br /&gt;
Install perl using &amp;quot;opkg install perl&amp;quot; to use this script.  The script will indicate high battery with blue, medium battery by purple (blue + orange), and low battery by orange.  Adjust values for your needs.  &lt;br /&gt;
&lt;br /&gt;
You can have it autostart by saving the script as /etc/init.d/lights.pl&amp;lt;br&amp;gt;&lt;br /&gt;
then creating a shell script /etc/init.d/startlights.sh with just one line:&lt;br /&gt;
 /etc/init.d/lights.pl &amp;amp;&lt;br /&gt;
and then create a symlink to it to auto start by running&lt;br /&gt;
 ln -s /etc/init.d/startlights.sh /etc/rc5.d/S15startlights&lt;br /&gt;
&lt;br /&gt;
Don't forget to &amp;quot;chmod +x&amp;quot; all those scripts :)&lt;br /&gt;
&lt;br /&gt;
lights.pl:&lt;br /&gt;
&lt;br /&gt;
 #!/usr/bin/perl&lt;br /&gt;
 my $high_thresh = 75;&lt;br /&gt;
 my $low_thresh = 30;&lt;br /&gt;
 while(1) {&lt;br /&gt;
     my $command = `apm`;&lt;br /&gt;
     if ($command =~ m/battery .*: (\d*)%/) {&lt;br /&gt;
         print(&amp;quot;Value: &amp;quot; . $1 . &amp;quot;\n&amp;quot;);&lt;br /&gt;
     }&lt;br /&gt;
     if($1 &amp;lt; $low_thresh) {&lt;br /&gt;
         print(&amp;quot;Low Battery\n&amp;quot;);&lt;br /&gt;
         $command = `echo 1 &amp;gt; /sys/devices/platform/gta02-led.0/leds/gta02-power:orange/brightness`;&lt;br /&gt;
         $command = `echo 0 &amp;gt; /sys/devices/platform/gta02-led.0/leds/gta02-power:blue/brightness`;&lt;br /&gt;
     } &lt;br /&gt;
     if($1 &amp;gt; $high_thresh) {&lt;br /&gt;
         print(&amp;quot;High Battery\n&amp;quot;);&lt;br /&gt;
         $command = `echo 1 &amp;gt; /sys/devices/platform/gta02-led.0/leds/gta02-power:blue/brightness`;&lt;br /&gt;
         $command = `echo 0 &amp;gt; /sys/devices/platform/gta02-led.0/leds/gta02-power:orange/brightness`;&lt;br /&gt;
     }&lt;br /&gt;
     if(($1 &amp;lt;= $high_thresh) &amp;amp;&amp;amp; ($1 &amp;gt;= $low_thresh)){&lt;br /&gt;
         print(&amp;quot;Mid Battery\n&amp;quot;);&lt;br /&gt;
         $command = `echo 1 &amp;gt; /sys/devices/platform/gta02-led.0/leds/gta02-power:blue/brightness`;&lt;br /&gt;
         $command = `echo 1 &amp;gt; /sys/devices/platform/gta02-led.0/leds/gta02-power:orange/brightness`;&lt;br /&gt;
     }&lt;br /&gt;
     sleep(15);&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-nvanfossen&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Neo FreeRunner Hardware]]&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/User:Techiem2</id>
		<title>User:Techiem2</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/User:Techiem2"/>
				<updated>2008-10-11T01:48:50Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: /* USB-Mode */  Added Screenshot&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==About Me==&lt;br /&gt;
I live in DuBois, PA.&lt;br /&gt;
&lt;br /&gt;
I'm currently working part time as the Assistant to the CTO at [http://www.dbcollege.com DuBois Business College].&lt;br /&gt;
&lt;br /&gt;
I'm a Gentoo geek.&lt;br /&gt;
&lt;br /&gt;
Mark Montgomery II&lt;br /&gt;
&lt;br /&gt;
Web Site: http://www.techiem2.net&lt;br /&gt;
&lt;br /&gt;
Web Site at home: https://techiem2.no-ip.com&lt;br /&gt;
&lt;br /&gt;
TWiki at Web Site at home: https://techiem2.no-ip.com/twiki/bin/view&lt;br /&gt;
&lt;br /&gt;
Email: [mailto:techiem2@DONTSPAMHEREgmail.com techiem2@DONTSPAMHEREgmail.com]&lt;br /&gt;
&lt;br /&gt;
==My Portable Stuff==&lt;br /&gt;
*'''Work Laptop:'''     Compaq V5101US dual booting Gentoo and Windows XP (that I rarely need to use fortunately)&lt;br /&gt;
*'''Personal Laptop:''' ZaReason UltraLapSR dual booting Gentoo and Windows XP (recently installed in preparation for some upcoming games)&lt;br /&gt;
*'''Cell Phone:'''      Neo Freerunner&lt;br /&gt;
*'''Cell Provider:'''   At&amp;amp;T Prepaid ($.20/minute - put $25 in account every 90 days)&lt;br /&gt;
*'''Media Player:'''    Cowon iAudio X5 dual booting RockBox and original firmware (that I rarely use since RockBox is just plain awesome)&lt;br /&gt;
*'''GPS:'''             Garmin Etrex&lt;br /&gt;
*'''WiFi Scanner:'''    Zyxel AG-225H WiFi Scanner/USB Adapter (uses the zd1211 driver) - I also use this as my WNIC for my work laptop most of the time since the internal antenna doesn't see the AP very reliably from my desk in the corner.&lt;br /&gt;
&lt;br /&gt;
==My Interest in OpenMoko/Neo1973==&lt;br /&gt;
====General====&lt;br /&gt;
I think FLOSS should be used wherever possible and I love the idea of a fully open phone.&lt;br /&gt;
&lt;br /&gt;
I don't appreciate companies that use FLOSS in their devices yet restrict the user from doing anything, thus showing a lack of respect for the community and philosophies of the software they are profiting from.&lt;br /&gt;
&lt;br /&gt;
====Web Device====&lt;br /&gt;
I have recently started looking into WiFi web devices, and the Neo1973 Phase2 should be perfect (assuming WiFi is fully up and running for it).&lt;br /&gt;
&lt;br /&gt;
====SIP Phone====&lt;br /&gt;
I want to use it as a WiFi SIP phone as soon as there's a client written for it (the idea of using it as a SIP handset for the computer is interesting to me as well).  :)&lt;br /&gt;
&lt;br /&gt;
Ideally it should be running a SIP client with SRTP/ZRTP capabilities for secure communications.&lt;br /&gt;
&lt;br /&gt;
====GPS====&lt;br /&gt;
Assuming a good interface is made for it, it should make a much nicer (not to mention just plain cooler) GPS device than my old Etrex.&lt;br /&gt;
&lt;br /&gt;
My ideal would be a program with multiple tabs/pages with varying info.&lt;br /&gt;
*Map/Driving directions page.&lt;br /&gt;
*GPS info page - current coordinates and elevation and such.&lt;br /&gt;
*Movement info page - current heading and speed and such.&lt;br /&gt;
*More?&lt;br /&gt;
Maybe configurable to be able to set how many pages and what is on each page?&lt;br /&gt;
&lt;br /&gt;
====Wireless Network Analysis====&lt;br /&gt;
Wardriving/Warwalking! (or just plain Wireless LAN mapping/troubleshooting in general)&lt;br /&gt;
&lt;br /&gt;
(Come on, admit that you've all been thinking the same thing!)&lt;br /&gt;
&lt;br /&gt;
Since it's running a good WiFi chipset and gpsd already, I'm assuming it would be trivial for someone in the know to port kismet to it.&lt;br /&gt;
&lt;br /&gt;
And of course make sure it works with gpsd and the GPS interface program.&lt;br /&gt;
&lt;br /&gt;
No more driving/walking around with a laptop and GPS for wardriving/warwalking or testing out your corporate WLAN - Just fire up your Neo1973 and go!&lt;br /&gt;
&lt;br /&gt;
====Cell Phone====&lt;br /&gt;
I'm now using my Freerunner as my cell phone on AT&amp;amp;T prepaid.&lt;br /&gt;
My old one is soon to be cancelled.&lt;br /&gt;
&lt;br /&gt;
====Document Reader====&lt;br /&gt;
I would like to use it as a document reader as well.&lt;br /&gt;
&lt;br /&gt;
Primarily for PDF and TXT, but of course other formats (ODF?) would be great.&lt;br /&gt;
&lt;br /&gt;
====Media Player====&lt;br /&gt;
If the quality is good, I might consider using it as a media player (ogg of course!) if I can get a nice big card for it.&lt;br /&gt;
&lt;br /&gt;
My OGG collection is a bit under 4GB as I recall.&lt;br /&gt;
&lt;br /&gt;
==Openmoko Projects==&lt;br /&gt;
&lt;br /&gt;
===USB-Mode===&lt;br /&gt;
I wrote a small pygtk application to switch USB Modes on the Freerunner.&lt;br /&gt;
&lt;br /&gt;
You can read my blog entry about it [http://www.techiem2.net/index.php?/archives/10-Freerunner-USB-Mode-Control-Program.html here] or directly download the archive [http://www.techiem2.net/files/usbmode.tar.gz here].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Usbmode.png|thumb|left|240|Upright|Border|USB-Mode]]&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/File:Usbmode.png</id>
		<title>File:Usbmode.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/File:Usbmode.png"/>
				<updated>2008-10-11T01:43:53Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: USB-Mode Screenshot&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;USB-Mode Screenshot&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/User:Techiem2</id>
		<title>User:Techiem2</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/User:Techiem2"/>
				<updated>2008-10-11T01:28:30Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: Added link to USB-Mode USB Mode switching application I wrote today&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==About Me==&lt;br /&gt;
I live in DuBois, PA.&lt;br /&gt;
&lt;br /&gt;
I'm currently working part time as the Assistant to the CTO at [http://www.dbcollege.com DuBois Business College].&lt;br /&gt;
&lt;br /&gt;
I'm a Gentoo geek.&lt;br /&gt;
&lt;br /&gt;
Mark Montgomery II&lt;br /&gt;
&lt;br /&gt;
Web Site: http://www.techiem2.net&lt;br /&gt;
&lt;br /&gt;
Web Site at home: https://techiem2.no-ip.com&lt;br /&gt;
&lt;br /&gt;
TWiki at Web Site at home: https://techiem2.no-ip.com/twiki/bin/view&lt;br /&gt;
&lt;br /&gt;
Email: [mailto:techiem2@DONTSPAMHEREgmail.com techiem2@DONTSPAMHEREgmail.com]&lt;br /&gt;
&lt;br /&gt;
==My Portable Stuff==&lt;br /&gt;
*'''Work Laptop:'''     Compaq V5101US dual booting Gentoo and Windows XP (that I rarely need to use fortunately)&lt;br /&gt;
*'''Personal Laptop:''' ZaReason UltraLapSR dual booting Gentoo and Windows XP (recently installed in preparation for some upcoming games)&lt;br /&gt;
*'''Cell Phone:'''      Neo Freerunner&lt;br /&gt;
*'''Cell Provider:'''   At&amp;amp;T Prepaid ($.20/minute - put $25 in account every 90 days)&lt;br /&gt;
*'''Media Player:'''    Cowon iAudio X5 dual booting RockBox and original firmware (that I rarely use since RockBox is just plain awesome)&lt;br /&gt;
*'''GPS:'''             Garmin Etrex&lt;br /&gt;
*'''WiFi Scanner:'''    Zyxel AG-225H WiFi Scanner/USB Adapter (uses the zd1211 driver) - I also use this as my WNIC for my work laptop most of the time since the internal antenna doesn't see the AP very reliably from my desk in the corner.&lt;br /&gt;
&lt;br /&gt;
==My Interest in OpenMoko/Neo1973==&lt;br /&gt;
====General====&lt;br /&gt;
I think FLOSS should be used wherever possible and I love the idea of a fully open phone.&lt;br /&gt;
&lt;br /&gt;
I don't appreciate companies that use FLOSS in their devices yet restrict the user from doing anything, thus showing a lack of respect for the community and philosophies of the software they are profiting from.&lt;br /&gt;
&lt;br /&gt;
====Web Device====&lt;br /&gt;
I have recently started looking into WiFi web devices, and the Neo1973 Phase2 should be perfect (assuming WiFi is fully up and running for it).&lt;br /&gt;
&lt;br /&gt;
====SIP Phone====&lt;br /&gt;
I want to use it as a WiFi SIP phone as soon as there's a client written for it (the idea of using it as a SIP handset for the computer is interesting to me as well).  :)&lt;br /&gt;
&lt;br /&gt;
Ideally it should be running a SIP client with SRTP/ZRTP capabilities for secure communications.&lt;br /&gt;
&lt;br /&gt;
====GPS====&lt;br /&gt;
Assuming a good interface is made for it, it should make a much nicer (not to mention just plain cooler) GPS device than my old Etrex.&lt;br /&gt;
&lt;br /&gt;
My ideal would be a program with multiple tabs/pages with varying info.&lt;br /&gt;
*Map/Driving directions page.&lt;br /&gt;
*GPS info page - current coordinates and elevation and such.&lt;br /&gt;
*Movement info page - current heading and speed and such.&lt;br /&gt;
*More?&lt;br /&gt;
Maybe configurable to be able to set how many pages and what is on each page?&lt;br /&gt;
&lt;br /&gt;
====Wireless Network Analysis====&lt;br /&gt;
Wardriving/Warwalking! (or just plain Wireless LAN mapping/troubleshooting in general)&lt;br /&gt;
&lt;br /&gt;
(Come on, admit that you've all been thinking the same thing!)&lt;br /&gt;
&lt;br /&gt;
Since it's running a good WiFi chipset and gpsd already, I'm assuming it would be trivial for someone in the know to port kismet to it.&lt;br /&gt;
&lt;br /&gt;
And of course make sure it works with gpsd and the GPS interface program.&lt;br /&gt;
&lt;br /&gt;
No more driving/walking around with a laptop and GPS for wardriving/warwalking or testing out your corporate WLAN - Just fire up your Neo1973 and go!&lt;br /&gt;
&lt;br /&gt;
====Cell Phone====&lt;br /&gt;
I'm now using my Freerunner as my cell phone on AT&amp;amp;T prepaid.&lt;br /&gt;
My old one is soon to be cancelled.&lt;br /&gt;
&lt;br /&gt;
====Document Reader====&lt;br /&gt;
I would like to use it as a document reader as well.&lt;br /&gt;
&lt;br /&gt;
Primarily for PDF and TXT, but of course other formats (ODF?) would be great.&lt;br /&gt;
&lt;br /&gt;
====Media Player====&lt;br /&gt;
If the quality is good, I might consider using it as a media player (ogg of course!) if I can get a nice big card for it.&lt;br /&gt;
&lt;br /&gt;
My OGG collection is a bit under 4GB as I recall.&lt;br /&gt;
&lt;br /&gt;
==Openmoko Projects==&lt;br /&gt;
&lt;br /&gt;
===USB-Mode===&lt;br /&gt;
I wrote a small pygtk application to switch USB Modes on the Freerunner.&lt;br /&gt;
&lt;br /&gt;
You can read my blog entry about it [http://www.techiem2.net/index.php?/archives/10-Freerunner-USB-Mode-Control-Program.html here] or directly download the archive [http://www.techiem2.net/files/usbmode.tar.gz here].&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/User:Techiem2</id>
		<title>User:Techiem2</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/User:Techiem2"/>
				<updated>2008-10-11T01:24:21Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: /* Cell Phone */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==About Me==&lt;br /&gt;
I live in DuBois, PA.&lt;br /&gt;
&lt;br /&gt;
I'm currently working part time as the Assistant to the CTO at [http://www.dbcollege.com DuBois Business College].&lt;br /&gt;
&lt;br /&gt;
I'm a Gentoo geek.&lt;br /&gt;
&lt;br /&gt;
Mark Montgomery II&lt;br /&gt;
&lt;br /&gt;
Web Site: http://www.techiem2.net&lt;br /&gt;
&lt;br /&gt;
Web Site at home: https://techiem2.no-ip.com&lt;br /&gt;
&lt;br /&gt;
TWiki at Web Site at home: https://techiem2.no-ip.com/twiki/bin/view&lt;br /&gt;
&lt;br /&gt;
Email: [mailto:techiem2@DONTSPAMHEREgmail.com techiem2@DONTSPAMHEREgmail.com]&lt;br /&gt;
&lt;br /&gt;
==My Portable Stuff==&lt;br /&gt;
*'''Work Laptop:'''     Compaq V5101US dual booting Gentoo and Windows XP (that I rarely need to use fortunately)&lt;br /&gt;
*'''Personal Laptop:''' ZaReason UltraLapSR dual booting Gentoo and Windows XP (recently installed in preparation for some upcoming games)&lt;br /&gt;
*'''Cell Phone:'''      Neo Freerunner&lt;br /&gt;
*'''Cell Provider:'''   At&amp;amp;T Prepaid ($.20/minute - put $25 in account every 90 days)&lt;br /&gt;
*'''Media Player:'''    Cowon iAudio X5 dual booting RockBox and original firmware (that I rarely use since RockBox is just plain awesome)&lt;br /&gt;
*'''GPS:'''             Garmin Etrex&lt;br /&gt;
*'''WiFi Scanner:'''    Zyxel AG-225H WiFi Scanner/USB Adapter (uses the zd1211 driver) - I also use this as my WNIC for my work laptop most of the time since the internal antenna doesn't see the AP very reliably from my desk in the corner.&lt;br /&gt;
&lt;br /&gt;
==My Interest in OpenMoko/Neo1973==&lt;br /&gt;
====General====&lt;br /&gt;
I think FLOSS should be used wherever possible and I love the idea of a fully open phone.&lt;br /&gt;
&lt;br /&gt;
I don't appreciate companies that use FLOSS in their devices yet restrict the user from doing anything, thus showing a lack of respect for the community and philosophies of the software they are profiting from.&lt;br /&gt;
&lt;br /&gt;
====Web Device====&lt;br /&gt;
I have recently started looking into WiFi web devices, and the Neo1973 Phase2 should be perfect (assuming WiFi is fully up and running for it).&lt;br /&gt;
&lt;br /&gt;
====SIP Phone====&lt;br /&gt;
I want to use it as a WiFi SIP phone as soon as there's a client written for it (the idea of using it as a SIP handset for the computer is interesting to me as well).  :)&lt;br /&gt;
&lt;br /&gt;
Ideally it should be running a SIP client with SRTP/ZRTP capabilities for secure communications.&lt;br /&gt;
&lt;br /&gt;
====GPS====&lt;br /&gt;
Assuming a good interface is made for it, it should make a much nicer (not to mention just plain cooler) GPS device than my old Etrex.&lt;br /&gt;
&lt;br /&gt;
My ideal would be a program with multiple tabs/pages with varying info.&lt;br /&gt;
*Map/Driving directions page.&lt;br /&gt;
*GPS info page - current coordinates and elevation and such.&lt;br /&gt;
*Movement info page - current heading and speed and such.&lt;br /&gt;
*More?&lt;br /&gt;
Maybe configurable to be able to set how many pages and what is on each page?&lt;br /&gt;
&lt;br /&gt;
====Wireless Network Analysis====&lt;br /&gt;
Wardriving/Warwalking! (or just plain Wireless LAN mapping/troubleshooting in general)&lt;br /&gt;
&lt;br /&gt;
(Come on, admit that you've all been thinking the same thing!)&lt;br /&gt;
&lt;br /&gt;
Since it's running a good WiFi chipset and gpsd already, I'm assuming it would be trivial for someone in the know to port kismet to it.&lt;br /&gt;
&lt;br /&gt;
And of course make sure it works with gpsd and the GPS interface program.&lt;br /&gt;
&lt;br /&gt;
No more driving/walking around with a laptop and GPS for wardriving/warwalking or testing out your corporate WLAN - Just fire up your Neo1973 and go!&lt;br /&gt;
&lt;br /&gt;
====Cell Phone====&lt;br /&gt;
I'm now using my Freerunner as my cell phone on AT&amp;amp;T prepaid.&lt;br /&gt;
My old one is soon to be cancelled.&lt;br /&gt;
&lt;br /&gt;
====Document Reader====&lt;br /&gt;
I would like to use it as a document reader as well.&lt;br /&gt;
&lt;br /&gt;
Primarily for PDF and TXT, but of course other formats (ODF?) would be great.&lt;br /&gt;
&lt;br /&gt;
====Media Player====&lt;br /&gt;
If the quality is good, I might consider using it as a media player (ogg of course!) if I can get a nice big card for it.&lt;br /&gt;
&lt;br /&gt;
My OGG collection is a bit under 4GB as I recall.&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/User:Techiem2</id>
		<title>User:Techiem2</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/User:Techiem2"/>
				<updated>2008-10-11T01:23:19Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: /* My Portable Stuff */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==About Me==&lt;br /&gt;
I live in DuBois, PA.&lt;br /&gt;
&lt;br /&gt;
I'm currently working part time as the Assistant to the CTO at [http://www.dbcollege.com DuBois Business College].&lt;br /&gt;
&lt;br /&gt;
I'm a Gentoo geek.&lt;br /&gt;
&lt;br /&gt;
Mark Montgomery II&lt;br /&gt;
&lt;br /&gt;
Web Site: http://www.techiem2.net&lt;br /&gt;
&lt;br /&gt;
Web Site at home: https://techiem2.no-ip.com&lt;br /&gt;
&lt;br /&gt;
TWiki at Web Site at home: https://techiem2.no-ip.com/twiki/bin/view&lt;br /&gt;
&lt;br /&gt;
Email: [mailto:techiem2@DONTSPAMHEREgmail.com techiem2@DONTSPAMHEREgmail.com]&lt;br /&gt;
&lt;br /&gt;
==My Portable Stuff==&lt;br /&gt;
*'''Work Laptop:'''     Compaq V5101US dual booting Gentoo and Windows XP (that I rarely need to use fortunately)&lt;br /&gt;
*'''Personal Laptop:''' ZaReason UltraLapSR dual booting Gentoo and Windows XP (recently installed in preparation for some upcoming games)&lt;br /&gt;
*'''Cell Phone:'''      Neo Freerunner&lt;br /&gt;
*'''Cell Provider:'''   At&amp;amp;T Prepaid ($.20/minute - put $25 in account every 90 days)&lt;br /&gt;
*'''Media Player:'''    Cowon iAudio X5 dual booting RockBox and original firmware (that I rarely use since RockBox is just plain awesome)&lt;br /&gt;
*'''GPS:'''             Garmin Etrex&lt;br /&gt;
*'''WiFi Scanner:'''    Zyxel AG-225H WiFi Scanner/USB Adapter (uses the zd1211 driver) - I also use this as my WNIC for my work laptop most of the time since the internal antenna doesn't see the AP very reliably from my desk in the corner.&lt;br /&gt;
&lt;br /&gt;
==My Interest in OpenMoko/Neo1973==&lt;br /&gt;
====General====&lt;br /&gt;
I think FLOSS should be used wherever possible and I love the idea of a fully open phone.&lt;br /&gt;
&lt;br /&gt;
I don't appreciate companies that use FLOSS in their devices yet restrict the user from doing anything, thus showing a lack of respect for the community and philosophies of the software they are profiting from.&lt;br /&gt;
&lt;br /&gt;
====Web Device====&lt;br /&gt;
I have recently started looking into WiFi web devices, and the Neo1973 Phase2 should be perfect (assuming WiFi is fully up and running for it).&lt;br /&gt;
&lt;br /&gt;
====SIP Phone====&lt;br /&gt;
I want to use it as a WiFi SIP phone as soon as there's a client written for it (the idea of using it as a SIP handset for the computer is interesting to me as well).  :)&lt;br /&gt;
&lt;br /&gt;
Ideally it should be running a SIP client with SRTP/ZRTP capabilities for secure communications.&lt;br /&gt;
&lt;br /&gt;
====GPS====&lt;br /&gt;
Assuming a good interface is made for it, it should make a much nicer (not to mention just plain cooler) GPS device than my old Etrex.&lt;br /&gt;
&lt;br /&gt;
My ideal would be a program with multiple tabs/pages with varying info.&lt;br /&gt;
*Map/Driving directions page.&lt;br /&gt;
*GPS info page - current coordinates and elevation and such.&lt;br /&gt;
*Movement info page - current heading and speed and such.&lt;br /&gt;
*More?&lt;br /&gt;
Maybe configurable to be able to set how many pages and what is on each page?&lt;br /&gt;
&lt;br /&gt;
====Wireless Network Analysis====&lt;br /&gt;
Wardriving/Warwalking! (or just plain Wireless LAN mapping/troubleshooting in general)&lt;br /&gt;
&lt;br /&gt;
(Come on, admit that you've all been thinking the same thing!)&lt;br /&gt;
&lt;br /&gt;
Since it's running a good WiFi chipset and gpsd already, I'm assuming it would be trivial for someone in the know to port kismet to it.&lt;br /&gt;
&lt;br /&gt;
And of course make sure it works with gpsd and the GPS interface program.&lt;br /&gt;
&lt;br /&gt;
No more driving/walking around with a laptop and GPS for wardriving/warwalking or testing out your corporate WLAN - Just fire up your Neo1973 and go!&lt;br /&gt;
&lt;br /&gt;
====Cell Phone====&lt;br /&gt;
I don't know if I would use it as a cell phone or not.&lt;br /&gt;
&lt;br /&gt;
There's only one GSM provider in my area (Cellular One) who apparently is probably being acquired by AT&amp;amp;T.&lt;br /&gt;
&lt;br /&gt;
AT&amp;amp;T and T-Mobile both look like their networks cover here, but they don't offer service here (I wonder if that would change if the AT&amp;amp;T/Cellular One buyout goes through...).&lt;br /&gt;
&lt;br /&gt;
====Document Reader====&lt;br /&gt;
I would like to use it as a document reader as well.&lt;br /&gt;
&lt;br /&gt;
Primarily for PDF and TXT, but of course other formats (ODF?) would be great.&lt;br /&gt;
&lt;br /&gt;
====Media Player====&lt;br /&gt;
If the quality is good, I might consider using it as a media player (ogg of course!) if I can get a nice big card for it.&lt;br /&gt;
&lt;br /&gt;
My OGG collection is a bit under 4GB as I recall.&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:Om_2008.9_Update</id>
		<title>Talk:Om 2008.9 Update</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:Om_2008.9_Update"/>
				<updated>2008-09-21T13:22:53Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Upgrading ==&lt;br /&gt;
Is it possible to upgrade from 2008.8 without flashing the device? Is there a proper upgrade path? --[[User:Kbjorgensen|KB Jørgensen]] 07:59, 20 September 2008 (UTC)&lt;br /&gt;
:Yes, if you had upgraded on 17 sept, you would have om2008.9. If you now update a 2008.8, you will be ahead of 2008.9. You must see the updates as a fluent line (that om is trying to give a name) and openmoko picks every month a new point release out of it. [[User:Dolfje|Dolfje]] 09:45, 20 September 2008 (UTC)&lt;br /&gt;
::Thanks. That cleared things up alot. --[[User:Kbjorgensen|KB Jørgensen]] 11:19, 20 September 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Oddities after upgrading ==&lt;br /&gt;
After doing a flash to 2008.9 and installing illume-config, the carrier info no longer appears and I assume the low battery notification mentioned doesn't work (at least when I left my phone on for 5 hours last night the battery was down to 1 bar and wasn't red [not sure the actual level, I didn't think to check at the time]).&lt;br /&gt;
&lt;br /&gt;
Is there a way to fix this? -- [[User:Techiem2|TechieM2]]&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Supported_microSD_cards</id>
		<title>Supported microSD cards</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Supported_microSD_cards"/>
				<updated>2008-09-05T17:36:45Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: /* Cards by Vendor */  - added card, added a couple updated fields&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are a plethora of Transflash / microSD / SDHC (Secure Digital High Capacity) cards out there.&lt;br /&gt;
&lt;br /&gt;
The Neo FreeRunner supports up to 8GB SDHC cards.&lt;br /&gt;
&lt;br /&gt;
Some microSD cards appear to be too slow to work with the current default settings of the glamo driver, so some specific parameters must be set in uboot to use them (see https://docs.openmoko.org/trac/ticket/1743, and corresponding notes in the tables bellow).&lt;br /&gt;
&lt;br /&gt;
There had been a [http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=677 bug] in the SD device driver (s3cmci) which caused some trouble. Please make sure you use a recent kernel which applies our kernel patchset rev2832 or higher.&lt;br /&gt;
&lt;br /&gt;
Booting from SDHC requires a u-boot from 2008-07-23 or later. '''But pay attention''' : there are problems with SDHC cards at suspend time. More details from [[Booting from SD#Booting_from_SDHC_.2F_suspend_problems|Booting from SD]]&lt;br /&gt;
&lt;br /&gt;
Note that most vendors are using an irritating way of labeling the capacity of their cards (They are using the factor 1000 instead of 1024 for KB and MB). Therefore the real capacity of these cards will be about 5% less than the vendor's specification. For example, cards labelled ''6 GB'' will only have 5.7 GB of storage capacity.&lt;br /&gt;
&lt;br /&gt;
If you use a card not listed here, please add to this table.&lt;br /&gt;
&lt;br /&gt;
== Cards by Vendor ==&lt;br /&gt;
{| border=1 |&lt;br /&gt;
| Vendor || Model || Capacity || Speed || [[u-boot]] 1.1.6 || linux 2.6.17.14-fic5 || [[u-boot]] 1.2.0-moko8 svn1915 || [[u-boot]] 1.3.2-moko12 || linux 2.6.24+git75969 (2008.8 kernel as of Sept. 4, 2008)&lt;br /&gt;
|-&lt;br /&gt;
| A-Data || microSDHC-8GB || 8GB (SDHC) || class 4 || ? || {{yes}} || ? || ||&lt;br /&gt;
|-&lt;br /&gt;
| Corsair || CMFSDMICRO-512 || 512MB || || {{no}} || {{yes}} || || ||&lt;br /&gt;
|-&lt;br /&gt;
| extreMemory || AE56-1280R || 128MB || || {{no}} || {{yes}} || {{yes}} || ||&lt;br /&gt;
|-&lt;br /&gt;
| extreMemory || H256MS05 || 256MB || 60x || {{no}} || {{yes}} || {{yes}} || ||&lt;br /&gt;
|-&lt;br /&gt;
| hama || 55371 || 256MB || || {{no}} || {{yes}} || {{yes}} || ||&lt;br /&gt;
|-&lt;br /&gt;
| Intuix || IXMSDM128B60X || 128MB || 60x || {{no}} || {{yes}} || {{yes}} || ||&lt;br /&gt;
|-&lt;br /&gt;
| Kingston || SD-C512 || 512MB || ? || {{no}} || {{yes}} || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Kingston || SD-C01G || 1GB || ? || {{yes}} || ? || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Kingston || SD-C02G || 2GB || ? || ? || {{yes}}  || {{yes}} || ||&lt;br /&gt;
|-&lt;br /&gt;
| Kingston || SDC4 (N0043-012.A00LF) || 4GB || ? || ? || FSO MS2 / Linux 2.6.24: I/O Errors while formatting [http://wiki.openmoko.org/wiki/Special:Emailuser/varacanero Contact me here] || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Patriot ||  PSF128MCSD-RC || 128MB || ? || {{no}} || ? || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Patriot ||  PSF8GMCSDHC4 || 8GB || Class 4 || ? || ? || ? || {{yes}} || {{yes}}&lt;br /&gt;
|-&lt;br /&gt;
| PNY || P-MICROSD512-BX || 512MB || || {{yes}} || {{yes}} || {{yes}} || ||&lt;br /&gt;
|-&lt;br /&gt;
| PNY || P-MICROSD2GB-BX (card marked with MM8GR02GUACY) || 2GB || slow ? || ? || ? (Some work needed to get it running, see [https://docs.openmoko.org/trac/ticket/1743 #1743] but apparently not enough) || ? || ||&lt;br /&gt;
|-&lt;br /&gt;
| Pretec || || 128MB || ? || ? || {{yes}} || || ||&lt;br /&gt;
|-&lt;br /&gt;
| SanDisk || SDSDQ-128 || 128MB || || {{yes}} || {{yes}} || {{yes}} || ||&lt;br /&gt;
|-&lt;br /&gt;
| SanDisk || unknown || 256MB || || {{yes}} || {{yes}} || {{yes}} || ||&lt;br /&gt;
|-&lt;br /&gt;
| SanDisk || unknown || 512MB || || {{yes}} || {{yes}} || || ||&lt;br /&gt;
|-&lt;br /&gt;
| SanDisk || SDSDQ-1024-E10M || 1GB || || {{yes}} || {{yes}} || {{yes}} || ||&lt;br /&gt;
|-&lt;br /&gt;
| SanDisk || SDSDQU-2048-E10M || 2GB || || {{yes}} || {{yes}} || {{yes}} || ||&lt;br /&gt;
|-&lt;br /&gt;
| SanDisk || SDSDQ-4096-E11M || 4GB (SDHC) || || ? || {{yes}} || ? || ||&lt;br /&gt;
|-&lt;br /&gt;
| SanDisk || SDSDQ-6144-E11M || 6GB (SDHC) || || ? || {{yes}} || {{no}} || ||&lt;br /&gt;
|-&lt;br /&gt;
| SanDisk || SDSDQ-8192-E11M || 7GB (SDHC) || 4 || ? || {{yes}} || ? || ||&lt;br /&gt;
|-&lt;br /&gt;
| SanDisk || SDSDQY-8192-A11M || 8GB (SDHC) || || ? || {{yes}} || ? || ||&lt;br /&gt;
|-&lt;br /&gt;
| SanDisk || SDSDQR-8192-E12M || 8GB (SDHC) || 4 || ? || {{yes}} || ? || ||&lt;br /&gt;
|-&lt;br /&gt;
| SanDisk || SDSDQR-8192-???? || 8GB (SDHC) || 6 || ? || {{yes}} || {{yes}} || ||&lt;br /&gt;
|-&lt;br /&gt;
| Toshiba || SD-512R2W || 512MB || || {{no}} || {{yes}} || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Transcend || TS128MUSD || 128MB || || {{no}} || {{yes}} || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Transcend || TS256MUSD80 || 256MB || 80x || {{no}} || {{yes}} || {{yes}} || ||&lt;br /&gt;
|-&lt;br /&gt;
| Transcend || TS512MUSD || 512MB || || {{no}} || {{yes}} || {{yes}} || ||&lt;br /&gt;
|-&lt;br /&gt;
| Transcend || MM4GRO1GUACY || 1GB || || ? || {{yes}} || ? || ||&lt;br /&gt;
|-&lt;br /&gt;
| Transcend || TS4GUSDHC6 (card marked with MM8GR04GUACY) || 4GB (SDHC) || Class 6 || ? || {{yes}} (Some work needed to get it running, see [https://docs.openmoko.org/trac/ticket/1743 #1743]) || ?|| ||&lt;br /&gt;
|-&lt;br /&gt;
| Verbatim || 47225 || 1GB || || {{no}} || {{yes}} || {{yes}} || ||&lt;br /&gt;
|-&lt;br /&gt;
| vox-fon || 1 GB || 1GB || || {{no}} || {{yes}} || || ||&lt;br /&gt;
|-&lt;br /&gt;
| (Intenso) || ? || 4GB (SDHC) || || {{no}} || {{yes}} (Some work needed to get it running, see [https://docs.openmoko.org/trac/ticket/1743 #1743]) || u-boot from August, 2nd  (1.3.1) boots fine) || ||&lt;br /&gt;
|} &lt;br /&gt;
&lt;br /&gt;
Note that cards with a &amp;quot;'''no'''&amp;quot; may still work at times, but that we just have found their behaviour too erratic to consider acceptable.&lt;br /&gt;
(Also note that this is a bug in our version of u-boot. The cards are probably fine.)&lt;br /&gt;
&lt;br /&gt;
[[Category:Neo1973 Hardware]]&lt;br /&gt;
[[Category:Documentation]]&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:Rotate</id>
		<title>Talk:Rotate</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:Rotate"/>
				<updated>2008-08-24T21:30:43Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: New page: This is a pretty neat little application.  Too bad the screen doesn't recalibrate properly yet.  :(  -- Techiem2&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a pretty neat little application.&lt;br /&gt;
&lt;br /&gt;
Too bad the screen doesn't recalibrate properly yet.  :(&lt;br /&gt;
&lt;br /&gt;
-- Techiem2&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:Carriers/ATT</id>
		<title>Talk:Carriers/ATT</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:Carriers/ATT"/>
				<updated>2008-08-19T21:19:23Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;AT&amp;amp;T/Cingular specifies the artwork so they should all look the same for the same SKU other than the vendor identification so I'm not sure what benefit there is in describing the images.&lt;br /&gt;
&lt;br /&gt;
Except that some of the older SIM cards don't have anything, but markings to help denote what they are.&lt;br /&gt;
&lt;br /&gt;
== AT&amp;amp;T Prepaid Questions ==&lt;br /&gt;
Q: What is the minimum amount you can refill your account with online?&lt;br /&gt;
&lt;br /&gt;
A: $15 according to reps at the AT&amp;amp;T store in our mall.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Q: Can you set your account up to auto-refill?&lt;br /&gt;
&lt;br /&gt;
A: Not with the GoPhone prepay plans.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Refill amounts &amp;lt;$25 extend the account for 30 days past the date of refill.  &lt;br /&gt;
&lt;br /&gt;
Amounts $25+ extend the account for 90 days past the date of refill (so you want to refill near the end of the term).&lt;br /&gt;
&lt;br /&gt;
You can refill in store, by phone, or online.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Q: What's the best way (if any) to ensure you get a SIM that will work with Freerunner?&lt;br /&gt;
-----------------&lt;br /&gt;
&lt;br /&gt;
I picked up the $15 ($30 with $15 instant rebates) GoPhone starter kit at RadioShack.&lt;br /&gt;
&lt;br /&gt;
They setup account/phone/etc.&lt;br /&gt;
&lt;br /&gt;
When I got home I pulled the sim out and put it in my Freerunner and it worked.&lt;br /&gt;
&lt;br /&gt;
SMS doesn't seem to be working on my Freerunner though.&lt;br /&gt;
&lt;br /&gt;
The Messages app doesn't show any even though there should be at least a couple there unread. &lt;br /&gt;
&lt;br /&gt;
- Ok, a minute after this I got a message from ATT.  Still don't know why the others haven't shown up...does Messages have to be running when you get a message?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
--[[User:Techiem2|Techiem2]] updated 17:13, 19 August 2008&lt;br /&gt;
&lt;br /&gt;
== This with Fireball success ==&lt;br /&gt;
&lt;br /&gt;
I wonder if those who have been successful with AT&amp;amp;T 3G cards are only finding 2G access at their locations. I put in my 4020 sim card and get &amp;quot;REGISTRATION DENIED&amp;quot; in 2 seconds. Waiting for a long period of time does not change that.&lt;br /&gt;
--[[User:Sagacis|Sagacis]] 14:47, 6 August 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Non-AT&amp;amp;T not working ==&lt;br /&gt;
How do i find out the SKU? There's a 13-Digit number followed by two letters on the back of my sim...&lt;br /&gt;
&lt;br /&gt;
My provider isn't AT&amp;amp;T - it's O2 Germany and I as well have a 3G card. I've tested two 3G Cards and they both return CME Error 15, while non-3G cards from the same provider work flawless. &lt;br /&gt;
&lt;br /&gt;
Full GSMD log is here: http://pastebin.com/f67ce2c25&lt;br /&gt;
--[[User:Sh|Sh]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Confirmed Some ATT Do work ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I don't know if this will help you guys or not, I was not able to get&lt;br /&gt;
a good picture of the SIM itself, however, I have done a few things:&lt;br /&gt;
&lt;br /&gt;
My old ATT (Cingular SIM) did not work. I wish I had written down its&lt;br /&gt;
model sorry. But I know it is one in the DOES not work list already.&lt;br /&gt;
&lt;br /&gt;
I got another one from the ATT store and it two failed. It was a G3&lt;br /&gt;
Fireball SIM got the model number:    71234G / 3022&lt;br /&gt;
&lt;br /&gt;
Following up on the last post for bug 666, I did notice that my old&lt;br /&gt;
phone, a Nokia which all SIM work with, did only have 6 leads, that&lt;br /&gt;
contact squarely on the SIM, and the Runner has a 8, the last two of&lt;br /&gt;
which (closest to the outside) fall right in between the grooves on&lt;br /&gt;
the cards with the rounded lead face (the circular grooves going around).&lt;br /&gt;
&lt;br /&gt;
I took it up on my self, throwing warranty into the wind, to modify the&lt;br /&gt;
pins, to make them contact at least the two inner rounded leads on SIM (the last set), I&lt;br /&gt;
managed to mangle them enough doing so,  and I want to say I had them&lt;br /&gt;
moved the right place, but it still did not work, I am no electrician,&lt;br /&gt;
and the tools at hand were clubs compared to the intricacy of the device.&lt;br /&gt;
None the less, I am confident they were close enough to touch, and as&lt;br /&gt;
I said, it still did not seem to work.&lt;br /&gt;
&lt;br /&gt;
After having spent all day doing no work and not getting this working,&lt;br /&gt;
I decided to go boogie boarding, and blow off the waisted day. On my&lt;br /&gt;
way home, I decided to stop off at the Santa Monica ATT store, and&lt;br /&gt;
after waiting through a 45 min line of people hopeless for IPOD's (and&lt;br /&gt;
me showing off my new Moko :D ) I got a different SIM card:&lt;br /&gt;
&lt;br /&gt;
71234O / 4022&lt;br /&gt;
&lt;br /&gt;
As I crossed the street, cars crashing into phone poles, with my only&lt;br /&gt;
attention on the flickering screen. my momentary fall into the black&lt;br /&gt;
hole of despair, was quickly shattered when I restarted the gsmd.&lt;br /&gt;
Yaaaaaayyy!!!!, there was much rejoicing, jumping in the air, and&lt;br /&gt;
dancing ludicrously in the middle of the street. To which I am sure&lt;br /&gt;
people thought I was crazy!&lt;br /&gt;
&lt;br /&gt;
--I, on the other hand have a 71234G/3022 that will only register sometimes, sometimes jostling it around in its slot works, sometimes not, however, as a commenter mentioned in the bug report, that may be a false lead.  If you have any of these cards that has this behavior, or a card that has been noted to have problems, think about posting on the bug comments, as to your experience.[[User:Sirkha|sirkha]] 16:29, 8 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm lovin' it!!!!!!!!!!!!!!!!!!!!!!!!!&lt;br /&gt;
&lt;br /&gt;
'''Edit by UndrWater'''&lt;br /&gt;
''71234G / 3022:'' &lt;br /&gt;
There was a bad batch of these cards made with the copper leads offset on the paper (copper completely to the edge of the paper, not centered).  What would happen is the copper on the edge would touch the OM's SIM card holder tab.  I don't know if this shorted the card, or just didn't allow enough pins for service on the OM...but replacing the card with another that has the copper centered on paper was key.&lt;br /&gt;
&lt;br /&gt;
I just picked up the 71234O / 3022 with the centered copper, and it registered within 30 seconds of OM loading.  Bonus: better reception than my Treo.  AT&amp;amp;T staff may try to charge you $25 for a replacement SIM...but if you can demonstrate the bad manufacture of the SIM, you'll probably not have to fight too hard. ;)&lt;br /&gt;
&lt;br /&gt;
-Russell&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
This seems to not be AT&amp;amp;T specific. How about moving the information to [GSM network registration]?&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:Carriers/ATT</id>
		<title>Talk:Carriers/ATT</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:Carriers/ATT"/>
				<updated>2008-08-19T21:16:08Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;AT&amp;amp;T/Cingular specifies the artwork so they should all look the same for the same SKU other than the vendor identification so I'm not sure what benefit there is in describing the images.&lt;br /&gt;
&lt;br /&gt;
Except that some of the older SIM cards don't have anything, but markings to help denote what they are.&lt;br /&gt;
&lt;br /&gt;
== AT&amp;amp;T Prepaid Questions ==&lt;br /&gt;
Q: What is the minimum amount you can refill your account with online?&lt;br /&gt;
&lt;br /&gt;
A: $15 according to reps at the AT&amp;amp;T store in our mall.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Q: Can you set your account up to auto-refill?&lt;br /&gt;
&lt;br /&gt;
A: Not with the GoPhone prepay plans.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Refill amounts &amp;lt;$25 extend the account for 30 days past the date of refill.  &lt;br /&gt;
&lt;br /&gt;
Amounts $25+ extend the account for 90 days past the date of refill (so you want to refill near the end of the term).&lt;br /&gt;
&lt;br /&gt;
You can refill in store, by phone, or online.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Q: What's the best way (if any) to ensure you get a SIM that will work with Freerunner?&lt;br /&gt;
-----------------&lt;br /&gt;
&lt;br /&gt;
I picked up the $15 ($30 with $15 instant rebates) GoPhone starter kit at RadioShack.&lt;br /&gt;
&lt;br /&gt;
They setup account/phone/etc.&lt;br /&gt;
&lt;br /&gt;
When I got home I pulled the sim out and put it in my Freerunner and it worked.&lt;br /&gt;
&lt;br /&gt;
SMS doesn't seem to be working on my Freerunner though.&lt;br /&gt;
&lt;br /&gt;
The Messages app doesn't show any even though there should be at least a couple there unread. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
--[[User:Techiem2|Techiem2]] updated 17:13, 19 August 2008&lt;br /&gt;
&lt;br /&gt;
== This with Fireball success ==&lt;br /&gt;
&lt;br /&gt;
I wonder if those who have been successful with AT&amp;amp;T 3G cards are only finding 2G access at their locations. I put in my 4020 sim card and get &amp;quot;REGISTRATION DENIED&amp;quot; in 2 seconds. Waiting for a long period of time does not change that.&lt;br /&gt;
--[[User:Sagacis|Sagacis]] 14:47, 6 August 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Non-AT&amp;amp;T not working ==&lt;br /&gt;
How do i find out the SKU? There's a 13-Digit number followed by two letters on the back of my sim...&lt;br /&gt;
&lt;br /&gt;
My provider isn't AT&amp;amp;T - it's O2 Germany and I as well have a 3G card. I've tested two 3G Cards and they both return CME Error 15, while non-3G cards from the same provider work flawless. &lt;br /&gt;
&lt;br /&gt;
Full GSMD log is here: http://pastebin.com/f67ce2c25&lt;br /&gt;
--[[User:Sh|Sh]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Confirmed Some ATT Do work ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I don't know if this will help you guys or not, I was not able to get&lt;br /&gt;
a good picture of the SIM itself, however, I have done a few things:&lt;br /&gt;
&lt;br /&gt;
My old ATT (Cingular SIM) did not work. I wish I had written down its&lt;br /&gt;
model sorry. But I know it is one in the DOES not work list already.&lt;br /&gt;
&lt;br /&gt;
I got another one from the ATT store and it two failed. It was a G3&lt;br /&gt;
Fireball SIM got the model number:    71234G / 3022&lt;br /&gt;
&lt;br /&gt;
Following up on the last post for bug 666, I did notice that my old&lt;br /&gt;
phone, a Nokia which all SIM work with, did only have 6 leads, that&lt;br /&gt;
contact squarely on the SIM, and the Runner has a 8, the last two of&lt;br /&gt;
which (closest to the outside) fall right in between the grooves on&lt;br /&gt;
the cards with the rounded lead face (the circular grooves going around).&lt;br /&gt;
&lt;br /&gt;
I took it up on my self, throwing warranty into the wind, to modify the&lt;br /&gt;
pins, to make them contact at least the two inner rounded leads on SIM (the last set), I&lt;br /&gt;
managed to mangle them enough doing so,  and I want to say I had them&lt;br /&gt;
moved the right place, but it still did not work, I am no electrician,&lt;br /&gt;
and the tools at hand were clubs compared to the intricacy of the device.&lt;br /&gt;
None the less, I am confident they were close enough to touch, and as&lt;br /&gt;
I said, it still did not seem to work.&lt;br /&gt;
&lt;br /&gt;
After having spent all day doing no work and not getting this working,&lt;br /&gt;
I decided to go boogie boarding, and blow off the waisted day. On my&lt;br /&gt;
way home, I decided to stop off at the Santa Monica ATT store, and&lt;br /&gt;
after waiting through a 45 min line of people hopeless for IPOD's (and&lt;br /&gt;
me showing off my new Moko :D ) I got a different SIM card:&lt;br /&gt;
&lt;br /&gt;
71234O / 4022&lt;br /&gt;
&lt;br /&gt;
As I crossed the street, cars crashing into phone poles, with my only&lt;br /&gt;
attention on the flickering screen. my momentary fall into the black&lt;br /&gt;
hole of despair, was quickly shattered when I restarted the gsmd.&lt;br /&gt;
Yaaaaaayyy!!!!, there was much rejoicing, jumping in the air, and&lt;br /&gt;
dancing ludicrously in the middle of the street. To which I am sure&lt;br /&gt;
people thought I was crazy!&lt;br /&gt;
&lt;br /&gt;
--I, on the other hand have a 71234G/3022 that will only register sometimes, sometimes jostling it around in its slot works, sometimes not, however, as a commenter mentioned in the bug report, that may be a false lead.  If you have any of these cards that has this behavior, or a card that has been noted to have problems, think about posting on the bug comments, as to your experience.[[User:Sirkha|sirkha]] 16:29, 8 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm lovin' it!!!!!!!!!!!!!!!!!!!!!!!!!&lt;br /&gt;
&lt;br /&gt;
'''Edit by UndrWater'''&lt;br /&gt;
''71234G / 3022:'' &lt;br /&gt;
There was a bad batch of these cards made with the copper leads offset on the paper (copper completely to the edge of the paper, not centered).  What would happen is the copper on the edge would touch the OM's SIM card holder tab.  I don't know if this shorted the card, or just didn't allow enough pins for service on the OM...but replacing the card with another that has the copper centered on paper was key.&lt;br /&gt;
&lt;br /&gt;
I just picked up the 71234O / 3022 with the centered copper, and it registered within 30 seconds of OM loading.  Bonus: better reception than my Treo.  AT&amp;amp;T staff may try to charge you $25 for a replacement SIM...but if you can demonstrate the bad manufacture of the SIM, you'll probably not have to fight too hard. ;)&lt;br /&gt;
&lt;br /&gt;
-Russell&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
This seems to not be AT&amp;amp;T specific. How about moving the information to [GSM network registration]?&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Carriers/ATT</id>
		<title>Carriers/ATT</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Carriers/ATT"/>
				<updated>2008-08-19T21:08:08Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [http://www.wireless.att.com/ AT&amp;amp;T] ==&lt;br /&gt;
&lt;br /&gt;
The current status of the SIM cards provided by AT&amp;amp;T is that many 3G SIM cards are problematic with the neo1973 SH1. This issue is known and there is a bug report for tracking progress: http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=666)&lt;br /&gt;
&lt;br /&gt;
Below are two tables to help users report their success or failure. If your card is not listed or have different results, please update the tables below.&lt;br /&gt;
&lt;br /&gt;
(Note: When adding to the tables, please do not include the 20 digit ICCID, as this is your SIM's unique id. If you do your phone company will be able to track you down and 1984 may overpower 1973)&lt;br /&gt;
&lt;br /&gt;
'''SIM cards that do NOT work:'''&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;margin: 0em &amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;3&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!5 Digit SKU  !! Manufacturer Code !! 4 digit Vendor/Version !! Badge !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| 63510 || G || 3001 || 64k smartchip || On Freerunner: +CME ERROR: 10 for AT+CFUN=`, +CME Error 13 for AT+CIMI, and EVENT: Netreg searching for network &lt;br /&gt;
EVENT: Netreg registration denied &lt;br /&gt;
cme error: 32&lt;br /&gt;
RSTR=`+CME ERROR: 32'&lt;br /&gt;
EVENT: Signal Quality: 31&lt;br /&gt;
for AT+COPS&lt;br /&gt;
|-&lt;br /&gt;
| 63512 || G || 3001 || 64k smartchip || +CME Error 10 for AT+CFUN=1 and +CME Error 13 for AT+CIMI&lt;br /&gt;
|-&lt;br /&gt;
| 63513 || G || 3001 || 64k smartchip || does not respond to at+cimi&lt;br /&gt;
|-&lt;br /&gt;
| 63698 || G || 3002 || 64K smartchip || does not respond to at+cimi&lt;br /&gt;
|-&lt;br /&gt;
| 64205 || G || 3020 || 64K smartchip 3G(c) on back || does not respond to at+cimi&lt;br /&gt;
|-&lt;br /&gt;
| 63698 || G || 4004 || 64k smartchip || +CME Error 10 for AT+CFUN=1 and +CME Error 13 for AT+CIMI&lt;br /&gt;
|-&lt;br /&gt;
| 64205 || O || 4020 || 64K smartchip || Has 3Gc on back&lt;br /&gt;
|-&lt;br /&gt;
| 71234 || D || 2022 || blazing 3G fireball || CME ERROR 10 and 13, with three different cards.  This seems to be the SIM type currently used for AT&amp;amp;T Gophones.  :(&lt;br /&gt;
|-&lt;br /&gt;
| 71234 || G || 3022 || blazing 3G fireball ||&lt;br /&gt;
|-&lt;br /&gt;
| 71234 || G || 3022 || blazing 3G fireball || libgsmd -m shell; CME Error: 32 &lt;br /&gt;
|-&lt;br /&gt;
| 71234 || G || 3022 || blazing 3G fireball || Does not register, suspect mis-aligned pins [http://s292.photobucket.com/albums/mm27/SchadowScythe/?action=view&amp;amp;current=3gFireball.png Screenshot]&lt;br /&gt;
|-&lt;br /&gt;
| 71234 || O || 4021 || blazing 3G fireball ||&lt;br /&gt;
|-&lt;br /&gt;
| 73000 || O || 4021 || blazing 3G fireball || This sim will not work for me, although a user has gotten it to work below.  Those steps only produce CME ERROR 13, regardless of amount of waiting.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''SIM cards that DO work:'''&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;margin: 0em &amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;3&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!5 Digit SKU  !! Manufacturer Code !! 4 digit Vendor/Version !! Badge !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| ???|| ? || ??? || AT&amp;amp;T || Old cingular/AT&amp;amp;T  &amp;quot;AT&amp;amp;T Wireless&amp;quot; written on it, blue SIM, no other info on it (except 20 digit id)&lt;br /&gt;
|-&lt;br /&gt;
| 62095 || A  ||  ? || 32K GT || at+cimi works, found NEW card on ebay and registered fine with AT&amp;amp;T&lt;br /&gt;
|-&lt;br /&gt;
| 63698 || A  ||  1002 || 64K smartchip || Returns proper info with at+cimi &lt;br /&gt;
|-&lt;br /&gt;
| 63698 || A  ||  1003 || 64K smartchip || Returns proper info with at+cimi &lt;br /&gt;
|-&lt;br /&gt;
| 63698 || G  ||  3003 || 64K smartchip || Returns proper info with at+cimi &lt;br /&gt;
|-&lt;br /&gt;
| 63698 || G  ||  3003 || 64K smartchip || registers with FreeRunner right out of the box (2007.2)&lt;br /&gt;
|-&lt;br /&gt;
| 63698 || G  ||  3004 || 64K smartchip || Returns proper info with at+cimi &lt;br /&gt;
|-&lt;br /&gt;
| 71234 || G  ||  3022 || blazing 3G fireball || registers, sends/receives calls with FreeRunner right out of the box. &lt;br /&gt;
|-&lt;br /&gt;
| 71234 || G  ||  3022 || blazing 3G fireball || usually registers/sends/receives instantly-- sometime needs a reboot and then registers. AT&amp;amp;T corporate suggested I go to a true AT&amp;amp;T store that sells iPhones, for the SIM that worked!&lt;br /&gt;
|-&lt;br /&gt;
| 71234 || G || 3022 || blazing 3G fireball ||  $15 ($30 with $15 instant rebates) GoPhone kit at RadioShack.  Pulled the sim out of the kit phone when I got home, stuck it in my Freerunner, and it worked.  SMS doesn't seem to be working though (nothing shows up in the messages app).&lt;br /&gt;
|-&lt;br /&gt;
| 71234 || O || 4022 || blazing 3G fireball || WalMart/RadioShack $18 Cingular Go phone package. This chip was also given with a contract plan. (Three confirmed working.)[17 July 08 confirmed 4th working w/Family 500 anytime]  &lt;br /&gt;
|-&lt;br /&gt;
| 71234 || O || 4022 || blazing 3G fireball || Two more confirmed working with FreeRunner.  Previous 4021 chip did not work properly.&lt;br /&gt;
|-&lt;br /&gt;
| 71234 || O || 4022 || blazing 3G fireball || It only partially worked, at first. (I had reception, but it always said &amp;quot;Registering...&amp;quot; in the upper-left of the screen.) After wiggling the sim card slightly, and rebooting the phone, it eventually changed from &amp;amp;quot;Registering&amp;amp;quot; to &amp;amp;quot;AT&amp;amp;amp;T&amp;amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| 73000 || O || 4021 || blazing 3G fireball || tried it using libgsm-tool -m shell (O, R). Just have to wait for 30-40 sec after registering. Then you can make calls consistently.&lt;br /&gt;
|-&lt;br /&gt;
| 73000 || G || 3021 || blazing 3G fireball || Works with Freerunner, but placement of SIM is the key. Shifted it slightly down and it registers reliably&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Vendor Codes:&lt;br /&gt;
* O = Oberthur Card Systems&lt;br /&gt;
* G = Gemalto (formerly Gemplus)&lt;br /&gt;
* A = Axalto&lt;br /&gt;
* D = Giesecke &amp;amp; Devrient&lt;br /&gt;
&lt;br /&gt;
For info on the 71234 4021 see http://www.oberthurcs.com/getpage.aspx?id=65#application&lt;br /&gt;
&lt;br /&gt;
I had a non-compatible SIM card, but it took only a few minutes in an AT&amp;amp;T Store to have them bring up my account, give me a new card, and double check that it works. They generally seem friendly, and it's pretty easy. Just say &amp;quot;Hi, I have an unlocked phone, and my current SIM card doesn't work. Is there any way that I can get another one?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Note: AT&amp;amp;T claims they cannot reactivate a previously deactivated SIM card. The CSR may give you the choice to force the activation at the risk of losing the current phone number! A word of warning.&lt;br /&gt;
&lt;br /&gt;
Question: Suppose you have a SIM card listed on the does NOT work chart.  How can one buy one of the SIM cards that does work?&lt;br /&gt;
&lt;br /&gt;
Answer: A 71234(O)/4022 SIM can be had on ebay for $4 including shipping at&lt;br /&gt;
http://cgi.ebay.com/ATT-3G-SIM-CARD-4-SALE-BRAND-NEW-COMMISSIONABLE-SWAP_W0QQitemZ270245436267QQihZ017QQcategoryZ29778QQrdZ1QQssPageNameZWD1VQQcmdZViewItem&lt;br /&gt;
I have received this SIM and it works. Yay.&lt;br /&gt;
&lt;br /&gt;
I also bought this same SIM card, the eBay seller has prompt shipping and good prices.  When you get the SIM card simply call customer support on a different phone and have your old and new sim cards out of the phone so you can give the 20 digit ID number to activate the new card.  The activation is almost instantaneous.  I highly recommend this cheap and easy solution if you have an unsupported SIM.&lt;br /&gt;
&lt;br /&gt;
I'm one more person that bought this card, except that I did not have one yet and I wanted to get one that I knew would work.  You don't have to call customer support to activate it if you are not swapping, you can just go here https://www.wireless.att.com/activations/.&lt;br /&gt;
&lt;br /&gt;
== Compatible Plans ==&lt;br /&gt;
&lt;br /&gt;
AT&amp;amp;T Wireless (formerly Cingular ) offers the following plans:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;margin: 0em &amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;3&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|Plan Name&lt;br /&gt;
|Monthly Cost (USD)&lt;br /&gt;
|Anytime Minutes&lt;br /&gt;
|Nights/Weekend Minutes&lt;br /&gt;
|Mobile to Mobile Minutes &lt;br /&gt;
|-&lt;br /&gt;
|Nation 450 w/Rollover&lt;br /&gt;
|$39.99&lt;br /&gt;
|450&lt;br /&gt;
|5000&lt;br /&gt;
|Unlimited&lt;br /&gt;
|-&lt;br /&gt;
|Nation 900 w/Rollover&lt;br /&gt;
|$59.99&lt;br /&gt;
|900&lt;br /&gt;
|Unlimited&lt;br /&gt;
|Unlimited&lt;br /&gt;
|-&lt;br /&gt;
|Nation 1350 w/Rollover&lt;br /&gt;
|$79.99&lt;br /&gt;
|1350&lt;br /&gt;
|Unlimited&lt;br /&gt;
|Unlimited&lt;br /&gt;
|-&lt;br /&gt;
|Nation 2000 w/Rollover&lt;br /&gt;
|$99.99&lt;br /&gt;
|2000&lt;br /&gt;
|Unlimited&lt;br /&gt;
|Unlimited&lt;br /&gt;
|-&lt;br /&gt;
|Nation 4000 w/Rollover&lt;br /&gt;
|$149.99&lt;br /&gt;
|4000&lt;br /&gt;
|Unlimited&lt;br /&gt;
|Unlimited&lt;br /&gt;
|-&lt;br /&gt;
|Nation 6000 w/Rollover&lt;br /&gt;
|$199.99&lt;br /&gt;
|6000&lt;br /&gt;
|Unlimited&lt;br /&gt;
|Unlimited&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;anytime minutes&amp;quot; roll over from month to month if you do not use all of them.&lt;br /&gt;
&lt;br /&gt;
AT&amp;amp;T also offers discounts on plans for students and corporate partners (IE: If you work for Microsoft, IBM, etc).&lt;br /&gt;
&lt;br /&gt;
== Prepay Options ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;margin: 0em &amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;3&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|Rate&lt;br /&gt;
|Daily Access Fee*&lt;br /&gt;
|Mobile to Mobile Minutes&lt;br /&gt;
|-&lt;br /&gt;
|$.10/minute&lt;br /&gt;
|$1.00 per day, ONLY on days you use your phone&lt;br /&gt;
|Unlimited&lt;br /&gt;
|-&lt;br /&gt;
|$.25/minute&lt;br /&gt;
|N/A 	 &lt;br /&gt;
| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
All Pay As You Go Plans include:&lt;br /&gt;
&lt;br /&gt;
    * Rollover® Balance&lt;br /&gt;
    * Nationwide Long Distance&lt;br /&gt;
    * $10 of airtime&lt;br /&gt;
&lt;br /&gt;
This information was found at this site:&lt;br /&gt;
http://www.wireless.att.com/cell-phone-service/go-phones/pyg-plans-phones.jsp&lt;br /&gt;
&lt;br /&gt;
== Pick Your Plan Options ==&lt;br /&gt;
ATT's GoPhones also have a &amp;quot;Pick Your Plan&amp;quot; option described here:&lt;br /&gt;
http://www.wireless.att.com/cell-phone-service/go-phones/pyp-plans-phones.jsp&lt;br /&gt;
&lt;br /&gt;
These plans require no contract and have an option to get unlimited data transfer for $19.99/mo.  &lt;br /&gt;
This may be the cheapest non-contract method to get unlimited data.&lt;br /&gt;
&lt;br /&gt;
I bought the AT&amp;amp;T GoPhone package from Best Buy for $14.99 that includes the Motorola c168i. This phone came with the Blazing Fireball 3G SIM 71234 O 4022, and it works with my FreeRunner.  I have made and received calls and have received SMS text messages using this SIM card on AT&amp;amp;T's Pick Your Plan service.&lt;br /&gt;
--[[User:Brianwc|Brianwc]] 06:43, 11 July 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Data Access Plans ==&lt;br /&gt;
&lt;br /&gt;
Browse Data Access Plans - http://www.wireless.att.com/cell-phone-service/cell-phone-plans/data-cell-phone-plans.jsp?zipPass=true&lt;br /&gt;
&lt;br /&gt;
* Media Max 200 Bundle: Includes unlimited data and 200 text messages for $19.99/month. This is in addition to regular voice service and is tied to a specific SIM card and phone number (doesn't give all family plan members unlimited data).&lt;br /&gt;
* ATT offers data access on *Every* plan, '''including prepay'''. If you don't have a data access &amp;quot;plan&amp;quot;, you are billed $0.01/KB for transfer. Expect all transfers to be rounded in the carriers favor.&lt;br /&gt;
&lt;br /&gt;
[[Category:Carriers]]&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:USB_host</id>
		<title>Talk:USB host</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:USB_host"/>
				<updated>2008-07-25T03:19:20Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I picked up one of these cables to try:&lt;br /&gt;
&lt;br /&gt;
http://www.cablestogo.com/product.asp?cat_id=1510&amp;amp;sku=28107&lt;br /&gt;
&lt;br /&gt;
I hooked up a USB A female-female adapter to the data/power end and to a dual PS/2 to USB keyboard/mouse adapter with a TypeMatrix 2020 keyboard on it.&lt;br /&gt;
&lt;br /&gt;
I hooked the aux power line to my laptop.&lt;br /&gt;
&lt;br /&gt;
While it worked, eventually the battery drained to deep discharge (I had WiFi enabled and GSM/BT/BPS disabled - Power Management was disabled).&lt;br /&gt;
&lt;br /&gt;
When I looked at the power info on the Freerunner when it was still in normal USB mode, I found that the Aux line only supplies 100mA (charger_type file) and the chgmode file says &amp;quot;play-only&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Also, the directory for the charge info is /sys/devices/platform/s3c2440-i2c/i2c-adapter/i2c-0/0-0073/ on the Freerunner and it appears the setting for fast charge mode is simply &amp;quot;fast&amp;quot; on the Freerunner instead of &amp;quot;fast_cccv&amp;quot; (at least that's what shows up in the chgmode file when hooked up USB).&lt;br /&gt;
&lt;br /&gt;
--[[User:Techiem2|Techiem2]] 23:08, 24 July 2008&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:USB_host</id>
		<title>Talk:USB host</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:USB_host"/>
				<updated>2008-07-25T03:14:29Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: Cable and keyboard test on Freerunner&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I picked up one of these cables to try:&lt;br /&gt;
&lt;br /&gt;
http://www.cablestogo.com/product.asp?cat_id=1510&amp;amp;sku=28107&lt;br /&gt;
&lt;br /&gt;
I hooked up a USB A female-female adapter to the data/power end and to a dual PS/2 to USB keyboard/mouse adapter with a TypeMatrix 2020 keyboard on it.&lt;br /&gt;
&lt;br /&gt;
I hooked the aux power line to my laptop.&lt;br /&gt;
&lt;br /&gt;
While it worked, eventually the battery drained to deep discharge (I had WiFi enabled and GSM/BT/BPS disabled - Power Management was disabled).&lt;br /&gt;
&lt;br /&gt;
When I looked at the power info on the Freerunner when it was still in normal USB mode, I found that the Aux line only supplies 100mA (charger_type file) and the chgstate file says &amp;quot;play only&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Also, the directory for the charge info is /sys/devices/platform/s3c2440-i2c/i2c-adapter/i2c-0/0-0073/ on the Freerunner and it appears the setting for fast charge mode is simply &amp;quot;fast&amp;quot; on the Freerunner instead of &amp;quot;fast_cccv&amp;quot; (at least that's what shows up in the chgmode file when hooked up USB).&lt;br /&gt;
&lt;br /&gt;
--[[User:Techiem2|Techiem2]] 23:08, 24 July 2008&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:Carriers/ATT</id>
		<title>Talk:Carriers/ATT</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:Carriers/ATT"/>
				<updated>2008-07-23T23:34:41Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;AT&amp;amp;T/Cingular specifies the artwork so they should all look the same for the same SKU other than the vendor identification so I'm not sure what benefit there is in describing the images.&lt;br /&gt;
&lt;br /&gt;
Except that some of the older SIM cards don't have anything, but markings to help denote what they are.&lt;br /&gt;
&lt;br /&gt;
== AT&amp;amp;T Prepaid Questions ==&lt;br /&gt;
Q: What is the minimum amount you can refill your account with online?&lt;br /&gt;
&lt;br /&gt;
A: $15 according to reps at the AT&amp;amp;T store in our mall.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Q: Can you set your account up to auto-refill?&lt;br /&gt;
&lt;br /&gt;
A: Not with the GoPhone prepay plans.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Refill amounts &amp;lt;$25 extend the account for 30 days past the date of refill.  &lt;br /&gt;
&lt;br /&gt;
Amounts $25+ extend the account for 90 days past the date of refill (so you want to refill near the end of the term).&lt;br /&gt;
&lt;br /&gt;
You can refill in store, by phone, or online.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Q: What's the best way (if any) to ensure you get a SIM that will work with Freerunner?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
--[[User:Techiem2|Techiem2]] updated 19:19, 23 July 2008&lt;br /&gt;
&lt;br /&gt;
== This with Fireball success ==&lt;br /&gt;
&lt;br /&gt;
I wonder if those who have been successful with AT&amp;amp;T 3G cards are only finding 2G access at their locations. I put in my 4020 sim card and get &amp;quot;REGISTRATION DENIED&amp;quot; in 2 seconds. Waiting for a long period of time does not change that.&lt;br /&gt;
--[[User:Sagacis|Sagacis]] 14:47, 6 August 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Non-AT&amp;amp;T not working ==&lt;br /&gt;
How do i find out the SKU? There's a 13-Digit number followed by two letters on the back of my sim...&lt;br /&gt;
&lt;br /&gt;
My provider isn't AT&amp;amp;T - it's O2 Germany and I as well have a 3G card. I've tested two 3G Cards and they both return CME Error 15, while non-3G cards from the same provider work flawless. &lt;br /&gt;
&lt;br /&gt;
Full GSMD log is here: http://pastebin.com/f67ce2c25&lt;br /&gt;
--[[User:Sh|Sh]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Confirmed Some ATT Do work ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I don't know if this will help you guys or not, I was not able to get&lt;br /&gt;
a good picture of the SIM itself, however, I have done a few things:&lt;br /&gt;
&lt;br /&gt;
My old ATT (Cingular SIM) did not work. I wish I had written down its&lt;br /&gt;
model sorry. But I know it is one in the DOES not work list already.&lt;br /&gt;
&lt;br /&gt;
I got another one from the ATT store and it two failed. It was a G3&lt;br /&gt;
Fireball SIM got the model number:    71234G / 3022&lt;br /&gt;
&lt;br /&gt;
Following up on the last post for bug 666, I did notice that my old&lt;br /&gt;
phone, a Nokia which all SIM work with, did only have 6 leads, that&lt;br /&gt;
contact squarely on the SIM, and the Runner has a 8, the last two of&lt;br /&gt;
which (closest to the outside) fall right in between the grooves on&lt;br /&gt;
the cards with the rounded lead face (the circular grooves going around).&lt;br /&gt;
&lt;br /&gt;
I took it up on my self, throwing warranty into the wind, to modify the&lt;br /&gt;
pins, to make them contact at least the two inner rounded leads on SIM (the last set), I&lt;br /&gt;
managed to mangle them enough doing so,  and I want to say I had them&lt;br /&gt;
moved the right place, but it still did not work, I am no electrician,&lt;br /&gt;
and the tools at hand were clubs compared to the intricacy of the device.&lt;br /&gt;
None the less, I am confident they were close enough to touch, and as&lt;br /&gt;
I said, it still did not seem to work.&lt;br /&gt;
&lt;br /&gt;
After having spent all day doing no work and not getting this working,&lt;br /&gt;
I decided to go boogie boarding, and blow off the waisted day. On my&lt;br /&gt;
way home, I decided to stop off at the Santa Monica ATT store, and&lt;br /&gt;
after waiting through a 45 min line of people hopeless for IPOD's (and&lt;br /&gt;
me showing off my new Moko :D ) I got a different SIM card:&lt;br /&gt;
&lt;br /&gt;
71234O / 4022&lt;br /&gt;
&lt;br /&gt;
As I crossed the street, cars crashing into phone poles, with my only&lt;br /&gt;
attention on the flickering screen. my momentary fall into the black&lt;br /&gt;
hole of despair, was quickly shattered when I restarted the gsmd.&lt;br /&gt;
Yaaaaaayyy!!!!, there was much rejoicing, jumping in the air, and&lt;br /&gt;
dancing ludicrously in the middle of the street. To which I am sure&lt;br /&gt;
people thought I was crazy!&lt;br /&gt;
&lt;br /&gt;
I'm lovin' it!!!!!!!!!!!!!!!!!!!!!!!!!&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Where_is_my_Freerunner%3F</id>
		<title>Where is my Freerunner?</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Where_is_my_Freerunner%3F"/>
				<updated>2008-07-19T00:44:27Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Where is my FreeRunner?  In order to give you an idea of when your FreeRunner will be shipped, this is a list of order numbers against shipping confirmation email dates.  These numbers have been taken from the community mailing list and the #openmoko IRC channel.   &lt;br /&gt;
&lt;br /&gt;
Note that there may be gaps in the order numbers, and the assumption here is that lower order numbers ship first.  Also note that the tracking email has a subject similar to &amp;quot;UPS Ship Notification, Tracking Number ...&amp;quot; and is from &amp;quot;auto-notify@ups.com&amp;quot; or &amp;quot;pkginfo@ups.com&amp;quot; so you may miss it if you're searching for &amp;quot;moko&amp;quot; as a keyword.&lt;br /&gt;
&lt;br /&gt;
Here are example mail headers:&lt;br /&gt;
&lt;br /&gt;
 From pkginfo@ups.com  Fri Jul 11 21:10:55 2008&lt;br /&gt;
 Return-Path: pkginfo@ups.com&lt;br /&gt;
 From: UPS Quantum View &amp;lt;auto-notify@ups.com&amp;gt;&lt;br /&gt;
 Reply-To: auto-notify@ups.com&lt;br /&gt;
 Subject: UPS Ship Notification, TraNumber 1Z0000000000000000&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;6&amp;quot; width=100% border=1&lt;br /&gt;
!Order Number&lt;br /&gt;
!Confirmation/Shipping Date&lt;br /&gt;
!Bulk Order?&lt;br /&gt;
|-&lt;br /&gt;
|1068&lt;br /&gt;
|2008-07-09&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1087&lt;br /&gt;
|2008-07-08&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1089&lt;br /&gt;
|2008-07-08&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1134&lt;br /&gt;
|Confirmed: 2008-07-03, Shipped: 2008-07-09, Scheduled: 2008-07-16, Delivered: Not yet&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1161&lt;br /&gt;
|2008-07-09&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1167&lt;br /&gt;
|Confirmed: 2008-07-03, Shipped: 2008-07-10, Scheduled: 2008-07-17 (@Atlanta, GA), Delivered: Not yet&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1203&lt;br /&gt;
|2008-07-09&lt;br /&gt;
|[[GroupSales#Ohio_.2F_Michigan|Yes]]&lt;br /&gt;
|-&lt;br /&gt;
|1207&lt;br /&gt;
|Confirmed: 2008-07-03, Shipped: 2008-07-15, Scheduled: 2008-07-22.  No idea why the weird delay.  No response from OM when I asked them why all my friends had tracking numbers and I didn't (unless finally getting a tracking number was a response).&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1210&lt;br /&gt;
|2008-07-09&lt;br /&gt;
|[[GroupSales#Midwest|Yes]]&lt;br /&gt;
|-&lt;br /&gt;
|1220&lt;br /&gt;
|2008-07-09&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1294&lt;br /&gt;
|2008-07-09&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1326&lt;br /&gt;
|2008-07-09&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1328&lt;br /&gt;
|2008-07-10 (Scheduled Delivery: 2008-07-16)&lt;br /&gt;
|[[GroupSales#Texas|Yes]]&lt;br /&gt;
|-&lt;br /&gt;
|1345&lt;br /&gt;
|2008-07-10 Notification by Phone from UPS&lt;br /&gt;
|Yes&lt;br /&gt;
|-&lt;br /&gt;
|1356&lt;br /&gt;
|2008-07-09&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1363&lt;br /&gt;
|2008-07-10&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1390&lt;br /&gt;
|2008-07-09&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1396&lt;br /&gt;
|2008-07-10; Delivered 2008-07-17&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1421&lt;br /&gt;
|2008-07-10, expected delivery: 2008-07-17&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1437&lt;br /&gt;
|2008-07-10, delivery target 2008-07-16 in DFW area, ground&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1459&lt;br /&gt;
|2008-07-10[http://wwwapps.ups.com/WebTracking/processRequest?HTMLVersion=5.0&amp;amp;Requester=NES&amp;amp;AgreeToTermsAndConditions=yes&amp;amp;loc=en_US&amp;amp;tracknum=1Z5VX0383554559523]&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1488&lt;br /&gt;
|Received tracking/shipment info 2008-07-10 @ 5:58 PM (GMT-7)&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1513&lt;br /&gt;
|Received tracking/shipment info 2008-07-10 @ 19:58 EDT&lt;br /&gt;
|[[GroupSales#Pacific_Northwest|Yes]]&lt;br /&gt;
|-&lt;br /&gt;
|1539&lt;br /&gt;
|2008-07-10 @ 4:58 PM (GMT-8)[http://wwwapps.ups.com/WebTracking/processRequest?HTMLVersion=5.0&amp;amp;Requester=NES&amp;amp;AgreeToTermsAndConditions=yes&amp;amp;loc=en_US&amp;amp;tracknum=1Z5VX0384254800060] Delived on 2008-07-14&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1547&lt;br /&gt;
|UPS Delivered Northern CA, 2008-07-11 @ AM (PST)&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1562&lt;br /&gt;
|UPS Notification shipped 07/10/08, due 07/15/08 Ground to Boulder. Delivered.&lt;br /&gt;
|[[GroupSales#Boulder|Yes]]&lt;br /&gt;
|-&lt;br /&gt;
|1669&lt;br /&gt;
|2008-07-10&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1676&lt;br /&gt;
|UPS Notification received 10 July/To Be Delivered by 11 July, Ground&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1692&lt;br /&gt;
|Picked up from Fremont on 10 July 2008&lt;br /&gt;
|Yes&lt;br /&gt;
|-&lt;br /&gt;
|1694&lt;br /&gt;
|UPS Notification received 10 July/To Be Delivered by 14 July, 2nd day air&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1702&lt;br /&gt;
|UPS Notification received 10 July/To Be Delivered by 16 July, Ground&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1713&lt;br /&gt;
|Order confirmation on 2008/07/03-23:34:53 UTC. Tracking info sent 2008/07/15-23:55:20 UTC.&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1724&lt;br /&gt;
|UPS Notification received July 14, 17:06 -0700 -- Expected July 16 to Vancouver&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1750&lt;br /&gt;
|Yes 10-July-2008, expected delivery: 15-July-2008&lt;br /&gt;
|Yes&lt;br /&gt;
|-&lt;br /&gt;
|1773&lt;br /&gt;
|2008-07-03 10:07PM EST Order confirmed and nothing else as of July 11 8:35PM EST&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1781&lt;br /&gt;
|2008-07-03 Order confirmed. Recieved email about confirm phone number, quoted ship date of July 14 but still nothing.&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1787&lt;br /&gt;
|Received tracking/shipment info 2008-07-10 @ 4:58 PM &lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1796&lt;br /&gt;
|Received tracking/shipment info 2008-07-10 @ 7:58PM edt, estimated delivery date 7/17/08 via UPS Ground&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1812&lt;br /&gt;
|Ordered July 4@00:20 (Eastern).  Charged July 8.  Shipping notice: July 15@19:55.   &lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1813&lt;br /&gt;
|UPS Notification received 10 July/To Be Delivered by 14 July, 2nd day air&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1827&lt;br /&gt;
|Received tracking/shipment info 2008-07-10, scheduled delivery 7/17/2008&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1828&lt;br /&gt;
|Received tracking/shipment info 2008-07-10 @ 5:20 PM (Pacific Time), delivery date: 7/17/2008&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1843&lt;br /&gt;
|Ordered July 3rd, 10:15pm PST, Tracking notice came in July 11 5:10pm PST, Arrived 10am July 15 2008, right on schedule&lt;br /&gt;
|[[GroupSales#Los_Angeles|Yes]]&lt;br /&gt;
|-&lt;br /&gt;
|1944&lt;br /&gt;
|Ordered July 4th, 6:47am EST, tracking notice came in July 11 8:10pm EST, ETA: 7/16/2008&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2014&lt;br /&gt;
|2008-07-11&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2049&lt;br /&gt;
|Tracking as of 2008-07-11 17:00 MST sched for 7/15 -&amp;gt; Got it! &lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2054&lt;br /&gt;
|Received tracking/shipment info 2008-07-11, scheduled delivery 7/17/2008&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2165&lt;br /&gt;
|Ordered: 2008-07-04 / Shipping Notice: 2008-07-11 / Scheduled Delivery: 2008-07-15&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2204&lt;br /&gt;
|Delivery Confirmed July 14, 2008&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2237&lt;br /&gt;
|Ordered 2008-07-04 18:21 EST5EDT. Shipping notice: 2008-07-11 20:10. Scheduled Delivery: 2007-07-18.  2007-07-18: UPS somehow missed the 2 people in the house when they came to deliver it.  I drove over and picked it up myself @19:30 (I live a mile from the warehouse).&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2243&lt;br /&gt;
|Ordered 2008-07-04 19:09 -0400.  Shipping notice: 2008-07-11 20:10:25 -0400 Scheduled Delivery: 2007-07-16 (2nd day Air)  Tracking:  [http://wwwapps.ups.com/WebTracking/processRequest?HTMLVersion=5.0&amp;amp;Requester=NES&amp;amp;AgreeToTermsAndConditions=yes&amp;amp;loc=en_US&amp;amp;tracknum=1Z5VX0383553094821]&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2267&lt;br /&gt;
|Received tracking information 2008-07-10 19:58 -0400. We ordered 2nd Day but they're shipping Ground. :(&lt;br /&gt;
|Yes&lt;br /&gt;
|-&lt;br /&gt;
|2278&lt;br /&gt;
|Ordered 2008-07-04 20:58 -0700. Ship notification received 2008-07-11 17:12 -0700. Scheduled Delivery: 15-July-2008&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2318&lt;br /&gt;
|Not Yet&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2340&lt;br /&gt;
|Not Yet/NA (Picked up in Fremont)&lt;br /&gt;
|Yes&lt;br /&gt;
|-&lt;br /&gt;
|2435&lt;br /&gt;
|Received tracking information 2008-07-11 17:12 -0700.  Shipping to Canada&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2442&lt;br /&gt;
|Ship notification received 2008-07-11 21:10 -0300. Scheduled Delivery: 18-July-2008 / Reprogrammed Scheduled Delivery: 21-July-2008&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2488&lt;br /&gt;
|Not Yet (Ordered Sunday, Jul 06, 2008)&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2491&lt;br /&gt;
|Ordered Sunday, Jul 06, 2008. Received UPS tracking number 2008-07-14. Scheduled Delivery 2008-07-17&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2607&lt;br /&gt;
|2008-07-11 Received UPS tracking number  ETA 2008-07-21&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2712&lt;br /&gt;
|2008-07-11 Received UPS tracking number  ETA 2008-07-17&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2741&lt;br /&gt;
|Ordered Monday, Jul 7, 2008; Ship notification received 2008-07-11 8:10 PM ET; Scheduled Delivery: 15-July-2008 2nd day Air&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|3007&lt;br /&gt;
|Ordered late Tuesday, Jul 8, 2008; CC charged late that week. 2008-07-18: Still no shipping notification, but UPS tried to deliver something today. Have to wait all weekend to find out if this was it, but am assuming so.&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|3107&lt;br /&gt;
|Ordered/Confirmed 2008-07-09, CC charged 2008-07-11, shipping notification on 7/14, delivered on 7/17. (3-day)&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|3032&lt;br /&gt;
|2008-07-11 Received UPS tracking number&lt;br /&gt;
|Yes&lt;br /&gt;
|-&lt;br /&gt;
|3133&lt;br /&gt;
|Ordered and Confirmed 2008-07-09; Credit card debit 2008-07-12; no shipping notification yet.&lt;br /&gt;
|No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Community]]&lt;br /&gt;
[[category:Purchase]]&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/User:Techiem2</id>
		<title>User:Techiem2</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/User:Techiem2"/>
				<updated>2008-07-15T15:38:29Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: /* My Portable Stuff */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==About Me==&lt;br /&gt;
I live in DuBois, PA.&lt;br /&gt;
&lt;br /&gt;
I'm currently working part time as the Assistant to the CTO at [http://www.dbcollege.com DuBois Business College].&lt;br /&gt;
&lt;br /&gt;
I'm a Gentoo geek.&lt;br /&gt;
&lt;br /&gt;
Mark Montgomery II&lt;br /&gt;
&lt;br /&gt;
Web Site: http://www.techiem2.net&lt;br /&gt;
&lt;br /&gt;
Web Site at home: https://techiem2.no-ip.com&lt;br /&gt;
&lt;br /&gt;
TWiki at Web Site at home: https://techiem2.no-ip.com/twiki/bin/view&lt;br /&gt;
&lt;br /&gt;
Email: [mailto:techiem2@DONTSPAMHEREgmail.com techiem2@DONTSPAMHEREgmail.com]&lt;br /&gt;
&lt;br /&gt;
==My Portable Stuff==&lt;br /&gt;
*'''Work Laptop:'''     Compaq V5101US dual booting Gentoo and Windows XP (that I rarely need to use fortunately)&lt;br /&gt;
*'''Personal Laptop:''' ZaReason UltraLapSR dual booting Gentoo and Windows XP (recently installed in preparation for some upcoming games)&lt;br /&gt;
*'''Cell Phone:'''      Audiovox Snapper&lt;br /&gt;
*'''Cell Provider:'''   Virgin Mobile Prepaid ($5.30/month with taxes charged every 90 days, $.18/min - I don't use my phone much)&lt;br /&gt;
*'''Media Player:'''    Cowon iAudio X5 dual booting RockBox and original firmware (that I rarely use since RockBox is just plain awesome)&lt;br /&gt;
*'''GPS:'''             Garmin Etrex&lt;br /&gt;
*'''WiFi Scanner:'''    Zyxel AG-225H WiFi Scanner/USB Adapter (uses the zd1211 driver) - I also use this as my WNIC for my work laptop most of the time since the internal antenna doesn't see the AP very reliably from my desk in the corner.&lt;br /&gt;
&lt;br /&gt;
==My Interest in OpenMoko/Neo1973==&lt;br /&gt;
====General====&lt;br /&gt;
I think FLOSS should be used wherever possible and I love the idea of a fully open phone.&lt;br /&gt;
&lt;br /&gt;
I don't appreciate companies that use FLOSS in their devices yet restrict the user from doing anything, thus showing a lack of respect for the community and philosophies of the software they are profiting from.&lt;br /&gt;
&lt;br /&gt;
====Web Device====&lt;br /&gt;
I have recently started looking into WiFi web devices, and the Neo1973 Phase2 should be perfect (assuming WiFi is fully up and running for it).&lt;br /&gt;
&lt;br /&gt;
====SIP Phone====&lt;br /&gt;
I want to use it as a WiFi SIP phone as soon as there's a client written for it (the idea of using it as a SIP handset for the computer is interesting to me as well).  :)&lt;br /&gt;
&lt;br /&gt;
Ideally it should be running a SIP client with SRTP/ZRTP capabilities for secure communications.&lt;br /&gt;
&lt;br /&gt;
====GPS====&lt;br /&gt;
Assuming a good interface is made for it, it should make a much nicer (not to mention just plain cooler) GPS device than my old Etrex.&lt;br /&gt;
&lt;br /&gt;
My ideal would be a program with multiple tabs/pages with varying info.&lt;br /&gt;
*Map/Driving directions page.&lt;br /&gt;
*GPS info page - current coordinates and elevation and such.&lt;br /&gt;
*Movement info page - current heading and speed and such.&lt;br /&gt;
*More?&lt;br /&gt;
Maybe configurable to be able to set how many pages and what is on each page?&lt;br /&gt;
&lt;br /&gt;
====Wireless Network Analysis====&lt;br /&gt;
Wardriving/Warwalking! (or just plain Wireless LAN mapping/troubleshooting in general)&lt;br /&gt;
&lt;br /&gt;
(Come on, admit that you've all been thinking the same thing!)&lt;br /&gt;
&lt;br /&gt;
Since it's running a good WiFi chipset and gpsd already, I'm assuming it would be trivial for someone in the know to port kismet to it.&lt;br /&gt;
&lt;br /&gt;
And of course make sure it works with gpsd and the GPS interface program.&lt;br /&gt;
&lt;br /&gt;
No more driving/walking around with a laptop and GPS for wardriving/warwalking or testing out your corporate WLAN - Just fire up your Neo1973 and go!&lt;br /&gt;
&lt;br /&gt;
====Cell Phone====&lt;br /&gt;
I don't know if I would use it as a cell phone or not.&lt;br /&gt;
&lt;br /&gt;
There's only one GSM provider in my area (Cellular One) who apparently is probably being acquired by AT&amp;amp;T.&lt;br /&gt;
&lt;br /&gt;
AT&amp;amp;T and T-Mobile both look like their networks cover here, but they don't offer service here (I wonder if that would change if the AT&amp;amp;T/Cellular One buyout goes through...).&lt;br /&gt;
&lt;br /&gt;
====Document Reader====&lt;br /&gt;
I would like to use it as a document reader as well.&lt;br /&gt;
&lt;br /&gt;
Primarily for PDF and TXT, but of course other formats (ODF?) would be great.&lt;br /&gt;
&lt;br /&gt;
====Media Player====&lt;br /&gt;
If the quality is good, I might consider using it as a media player (ogg of course!) if I can get a nice big card for it.&lt;br /&gt;
&lt;br /&gt;
My OGG collection is a bit under 4GB as I recall.&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:Carriers/ATT</id>
		<title>Talk:Carriers/ATT</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:Carriers/ATT"/>
				<updated>2008-07-15T15:37:00Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: /* ATT Prepaid Questions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;AT&amp;amp;T/Cingular specifies the artwork so they should all look the same for the same SKU other than the vendor identification so I'm not sure what benefit there is in describing the images.&lt;br /&gt;
&lt;br /&gt;
Except that some of the older SIM cards don't have anything, but markings to help denote what they are.&lt;br /&gt;
&lt;br /&gt;
== ATT Prepaid Questions ==&lt;br /&gt;
What is the minimum amount you can refill your account with online?&lt;br /&gt;
&lt;br /&gt;
Can you set your account up to auto-refill?&lt;br /&gt;
&lt;br /&gt;
What's the best way (if any) to ensure you get a SIM that will work with Freerunner?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Since cards &amp;lt; $25 expire after 30 days, but your account balance rolls over when you refill, it would be good for those of us who rarely use our phones to be able to drop say $5/month into their account (this is basically how my current Virgin Mobile prepaid works - $15 auto-charged every 90 days - bus VM isn't GSM....).&lt;br /&gt;
&lt;br /&gt;
--[[User:Techiem2|Techiem2]] 11:36, 15 July 2008&lt;br /&gt;
&lt;br /&gt;
== This with Fireball success ==&lt;br /&gt;
&lt;br /&gt;
I wonder if those who have been successful with AT&amp;amp;T 3G cards are only finding 2G access at their locations. I put in my 4020 sim card and get &amp;quot;REGISTRATION DENIED&amp;quot; in 2 seconds. Waiting for a long period of time does not change that.&lt;br /&gt;
--[[User:Sagacis|Sagacis]] 14:47, 6 August 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Non-AT&amp;amp;T not working ==&lt;br /&gt;
How do i find out the SKU? There's a 13-Digit number followed by two letters on the back of my sim...&lt;br /&gt;
&lt;br /&gt;
My provider isn't AT&amp;amp;T - it's O2 Germany and I as well have a 3G card. I've tested two 3G Cards and they both return CME Error 15, while non-3G cards from the same provider work flawless. &lt;br /&gt;
&lt;br /&gt;
Full GSMD log is here: http://pastebin.com/f67ce2c25&lt;br /&gt;
--[[User:Sh|Sh]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Confirmed Some ATT Do work ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I don't know if this will help you guys or not, I was not able to get&lt;br /&gt;
a good picture of the SIM itself, however, I have done a few things:&lt;br /&gt;
&lt;br /&gt;
My old ATT (Cingular SIM) did not work. I wish I had written down its&lt;br /&gt;
model sorry. But I know it is one in the DOES not work list already.&lt;br /&gt;
&lt;br /&gt;
I got another one from the ATT store and it two failed. It was a G3&lt;br /&gt;
Fireball SIM got the model number:    71234G / 3022&lt;br /&gt;
&lt;br /&gt;
Following up on the last post for bug 666, I did notice that my old&lt;br /&gt;
phone, a Nokia which all SIM work with, did only have 6 leads, that&lt;br /&gt;
contact squarely on the SIM, and the Runner has a 8, the last two of&lt;br /&gt;
which (closest to the outside) fall right in between the grooves on&lt;br /&gt;
the cards with the rounded lead face (the circular grooves going around).&lt;br /&gt;
&lt;br /&gt;
I took it up on my self, throwing warranty into the wind, to modify the&lt;br /&gt;
pins, to make them contact at least the two inner rounded leads on SIM (the last set), I&lt;br /&gt;
managed to mangle them enough doing so,  and I want to say I had them&lt;br /&gt;
moved the right place, but it still did not work, I am no electrician,&lt;br /&gt;
and the tools at hand were clubs compared to the intricacy of the device.&lt;br /&gt;
None the less, I am confident they were close enough to touch, and as&lt;br /&gt;
I said, it still did not seem to work.&lt;br /&gt;
&lt;br /&gt;
After having spent all day doing no work and not getting this working,&lt;br /&gt;
I decided to go boogie boarding, and blow off the waisted day. On my&lt;br /&gt;
way home, I decided to stop off at the Santa Monica ATT store, and&lt;br /&gt;
after waiting through a 45 min line of people hopeless for IPOD's (and&lt;br /&gt;
me showing off my new Moko :D ) I got a different SIM card:&lt;br /&gt;
&lt;br /&gt;
71234O / 4022&lt;br /&gt;
&lt;br /&gt;
As I crossed the street, cars crashing into phone poles, with my only&lt;br /&gt;
attention on the flickering screen. my momentary fall into the black&lt;br /&gt;
hole of despair, was quickly shattered when I restarted the gsmd.&lt;br /&gt;
Yaaaaaayyy!!!!, there was much rejoicing, jumping in the air, and&lt;br /&gt;
dancing ludicrously in the middle of the street. To which I am sure&lt;br /&gt;
people thought I was crazy!&lt;br /&gt;
&lt;br /&gt;
I'm lovin' it!!!!!!!!!!!!!!!!!!!!!!!!!&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:Carriers/ATT</id>
		<title>Talk:Carriers/ATT</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:Carriers/ATT"/>
				<updated>2008-07-15T15:36:22Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: /* ATT Prepaid Questions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;AT&amp;amp;T/Cingular specifies the artwork so they should all look the same for the same SKU other than the vendor identification so I'm not sure what benefit there is in describing the images.&lt;br /&gt;
&lt;br /&gt;
Except that some of the older SIM cards don't have anything, but markings to help denote what they are.&lt;br /&gt;
&lt;br /&gt;
== ATT Prepaid Questions ==&lt;br /&gt;
What is the minimum amount you can refill your account with online?&lt;br /&gt;
&lt;br /&gt;
Can you set your account up to auto-refill?&lt;br /&gt;
&lt;br /&gt;
What's the best way (if any) to ensure you get a SIM that will work with Freerunner?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Since cards &amp;lt; $25 expire after 30 days, but your account balance rolls over when you refill, it would be good for those of us who rarely use their phones to be able to drop say $5/month into their account (this is basically how my current Virgin Mobile prepaid works - $15 auto-charged every 90 days - bus VM isn't GSM....).&lt;br /&gt;
&lt;br /&gt;
--[[User:Techiem2|Techiem2]] 11:36, 15 July 2008&lt;br /&gt;
&lt;br /&gt;
== This with Fireball success ==&lt;br /&gt;
&lt;br /&gt;
I wonder if those who have been successful with AT&amp;amp;T 3G cards are only finding 2G access at their locations. I put in my 4020 sim card and get &amp;quot;REGISTRATION DENIED&amp;quot; in 2 seconds. Waiting for a long period of time does not change that.&lt;br /&gt;
--[[User:Sagacis|Sagacis]] 14:47, 6 August 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Non-AT&amp;amp;T not working ==&lt;br /&gt;
How do i find out the SKU? There's a 13-Digit number followed by two letters on the back of my sim...&lt;br /&gt;
&lt;br /&gt;
My provider isn't AT&amp;amp;T - it's O2 Germany and I as well have a 3G card. I've tested two 3G Cards and they both return CME Error 15, while non-3G cards from the same provider work flawless. &lt;br /&gt;
&lt;br /&gt;
Full GSMD log is here: http://pastebin.com/f67ce2c25&lt;br /&gt;
--[[User:Sh|Sh]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Confirmed Some ATT Do work ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I don't know if this will help you guys or not, I was not able to get&lt;br /&gt;
a good picture of the SIM itself, however, I have done a few things:&lt;br /&gt;
&lt;br /&gt;
My old ATT (Cingular SIM) did not work. I wish I had written down its&lt;br /&gt;
model sorry. But I know it is one in the DOES not work list already.&lt;br /&gt;
&lt;br /&gt;
I got another one from the ATT store and it two failed. It was a G3&lt;br /&gt;
Fireball SIM got the model number:    71234G / 3022&lt;br /&gt;
&lt;br /&gt;
Following up on the last post for bug 666, I did notice that my old&lt;br /&gt;
phone, a Nokia which all SIM work with, did only have 6 leads, that&lt;br /&gt;
contact squarely on the SIM, and the Runner has a 8, the last two of&lt;br /&gt;
which (closest to the outside) fall right in between the grooves on&lt;br /&gt;
the cards with the rounded lead face (the circular grooves going around).&lt;br /&gt;
&lt;br /&gt;
I took it up on my self, throwing warranty into the wind, to modify the&lt;br /&gt;
pins, to make them contact at least the two inner rounded leads on SIM (the last set), I&lt;br /&gt;
managed to mangle them enough doing so,  and I want to say I had them&lt;br /&gt;
moved the right place, but it still did not work, I am no electrician,&lt;br /&gt;
and the tools at hand were clubs compared to the intricacy of the device.&lt;br /&gt;
None the less, I am confident they were close enough to touch, and as&lt;br /&gt;
I said, it still did not seem to work.&lt;br /&gt;
&lt;br /&gt;
After having spent all day doing no work and not getting this working,&lt;br /&gt;
I decided to go boogie boarding, and blow off the waisted day. On my&lt;br /&gt;
way home, I decided to stop off at the Santa Monica ATT store, and&lt;br /&gt;
after waiting through a 45 min line of people hopeless for IPOD's (and&lt;br /&gt;
me showing off my new Moko :D ) I got a different SIM card:&lt;br /&gt;
&lt;br /&gt;
71234O / 4022&lt;br /&gt;
&lt;br /&gt;
As I crossed the street, cars crashing into phone poles, with my only&lt;br /&gt;
attention on the flickering screen. my momentary fall into the black&lt;br /&gt;
hole of despair, was quickly shattered when I restarted the gsmd.&lt;br /&gt;
Yaaaaaayyy!!!!, there was much rejoicing, jumping in the air, and&lt;br /&gt;
dancing ludicrously in the middle of the street. To which I am sure&lt;br /&gt;
people thought I was crazy!&lt;br /&gt;
&lt;br /&gt;
I'm lovin' it!!!!!!!!!!!!!!!!!!!!!!!!!&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:Carriers/ATT</id>
		<title>Talk:Carriers/ATT</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:Carriers/ATT"/>
				<updated>2008-07-15T15:35:59Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: prepaid questions&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;AT&amp;amp;T/Cingular specifies the artwork so they should all look the same for the same SKU other than the vendor identification so I'm not sure what benefit there is in describing the images.&lt;br /&gt;
&lt;br /&gt;
Except that some of the older SIM cards don't have anything, but markings to help denote what they are.&lt;br /&gt;
&lt;br /&gt;
== ATT Prepaid Questions ==&lt;br /&gt;
What is the minimum amount you can refill your account with online?&lt;br /&gt;
Can you set your account up to auto-refill?&lt;br /&gt;
What's the best way (if any) to ensure you get a SIM that will work with Freerunner?&lt;br /&gt;
&lt;br /&gt;
Since cards &amp;lt; $25 expire after 30 days, but your account balance rolls over when you refill, it would be good for those of us who rarely use their phones to be able to drop say $5/month into their account (this is basically how my current Virgin Mobile prepaid works - $15 auto-charged every 90 days - bus VM isn't GSM....).&lt;br /&gt;
--[[User:Techiem2|Techiem2]] 11:36, 15 July 2008&lt;br /&gt;
&lt;br /&gt;
== This with Fireball success ==&lt;br /&gt;
&lt;br /&gt;
I wonder if those who have been successful with AT&amp;amp;T 3G cards are only finding 2G access at their locations. I put in my 4020 sim card and get &amp;quot;REGISTRATION DENIED&amp;quot; in 2 seconds. Waiting for a long period of time does not change that.&lt;br /&gt;
--[[User:Sagacis|Sagacis]] 14:47, 6 August 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Non-AT&amp;amp;T not working ==&lt;br /&gt;
How do i find out the SKU? There's a 13-Digit number followed by two letters on the back of my sim...&lt;br /&gt;
&lt;br /&gt;
My provider isn't AT&amp;amp;T - it's O2 Germany and I as well have a 3G card. I've tested two 3G Cards and they both return CME Error 15, while non-3G cards from the same provider work flawless. &lt;br /&gt;
&lt;br /&gt;
Full GSMD log is here: http://pastebin.com/f67ce2c25&lt;br /&gt;
--[[User:Sh|Sh]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Confirmed Some ATT Do work ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I don't know if this will help you guys or not, I was not able to get&lt;br /&gt;
a good picture of the SIM itself, however, I have done a few things:&lt;br /&gt;
&lt;br /&gt;
My old ATT (Cingular SIM) did not work. I wish I had written down its&lt;br /&gt;
model sorry. But I know it is one in the DOES not work list already.&lt;br /&gt;
&lt;br /&gt;
I got another one from the ATT store and it two failed. It was a G3&lt;br /&gt;
Fireball SIM got the model number:    71234G / 3022&lt;br /&gt;
&lt;br /&gt;
Following up on the last post for bug 666, I did notice that my old&lt;br /&gt;
phone, a Nokia which all SIM work with, did only have 6 leads, that&lt;br /&gt;
contact squarely on the SIM, and the Runner has a 8, the last two of&lt;br /&gt;
which (closest to the outside) fall right in between the grooves on&lt;br /&gt;
the cards with the rounded lead face (the circular grooves going around).&lt;br /&gt;
&lt;br /&gt;
I took it up on my self, throwing warranty into the wind, to modify the&lt;br /&gt;
pins, to make them contact at least the two inner rounded leads on SIM (the last set), I&lt;br /&gt;
managed to mangle them enough doing so,  and I want to say I had them&lt;br /&gt;
moved the right place, but it still did not work, I am no electrician,&lt;br /&gt;
and the tools at hand were clubs compared to the intricacy of the device.&lt;br /&gt;
None the less, I am confident they were close enough to touch, and as&lt;br /&gt;
I said, it still did not seem to work.&lt;br /&gt;
&lt;br /&gt;
After having spent all day doing no work and not getting this working,&lt;br /&gt;
I decided to go boogie boarding, and blow off the waisted day. On my&lt;br /&gt;
way home, I decided to stop off at the Santa Monica ATT store, and&lt;br /&gt;
after waiting through a 45 min line of people hopeless for IPOD's (and&lt;br /&gt;
me showing off my new Moko :D ) I got a different SIM card:&lt;br /&gt;
&lt;br /&gt;
71234O / 4022&lt;br /&gt;
&lt;br /&gt;
As I crossed the street, cars crashing into phone poles, with my only&lt;br /&gt;
attention on the flickering screen. my momentary fall into the black&lt;br /&gt;
hole of despair, was quickly shattered when I restarted the gsmd.&lt;br /&gt;
Yaaaaaayyy!!!!, there was much rejoicing, jumping in the air, and&lt;br /&gt;
dancing ludicrously in the middle of the street. To which I am sure&lt;br /&gt;
people thought I was crazy!&lt;br /&gt;
&lt;br /&gt;
I'm lovin' it!!!!!!!!!!!!!!!!!!!!!!!!!&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Where_is_my_Freerunner%3F</id>
		<title>Where is my Freerunner?</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Where_is_my_Freerunner%3F"/>
				<updated>2008-07-12T00:49:13Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Where is my FreeRunner?  In order to give you an idea of when your FreeRunner will be shipped, this is a list of order numbers against shipping confirmation email dates.  These numbers have been taken from the community mailing list and the #openmoko IRC channel.   &lt;br /&gt;
&lt;br /&gt;
Note that there may be gaps in the order numbers, and the assumption here is that lower order numbers ship first.  Also note that the tracking email has a subject similar to &amp;quot;UPS Ship Notification, Tracking Number ...&amp;quot; and is from &amp;quot;auto-notify@ups.com&amp;quot; or &amp;quot;pkginfo@ups.com&amp;quot; so you may miss it if you're searching for &amp;quot;moko&amp;quot; as a keyword.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;6&amp;quot; width=100% border=1&lt;br /&gt;
!Order Number&lt;br /&gt;
!Confirmation/Shipping Date&lt;br /&gt;
!Bulk Order?&lt;br /&gt;
|-&lt;br /&gt;
|1068&lt;br /&gt;
|2008-07-09&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1087&lt;br /&gt;
|2008-07-08&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1089&lt;br /&gt;
|2008-07-08&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1134&lt;br /&gt;
|Confirmed: 2008-07-03, Shipped: 2008-07-09, Scheduled: 2008-07-16, Delivered: Not yet&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1161&lt;br /&gt;
|2008-07-09&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1167&lt;br /&gt;
|Confirmed: 2008-07-03, Shipped: 2008-07-10, Scheduled: 2008-07-17 (@Atlanta, GA), Delivered: Not yet&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1203&lt;br /&gt;
|2008-07-09&lt;br /&gt;
|[[GroupSales#Ohio_.2F_Michigan|Yes]]&lt;br /&gt;
|-&lt;br /&gt;
|1207&lt;br /&gt;
|Not Yet&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1210&lt;br /&gt;
|2008-07-09&lt;br /&gt;
|[[GroupSales#Midwest|Yes]]&lt;br /&gt;
|-&lt;br /&gt;
|1220&lt;br /&gt;
|2008-07-09&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1294&lt;br /&gt;
|2008-07-09&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1326&lt;br /&gt;
|2008-07-09&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1328&lt;br /&gt;
|2008-07-10 (Scheduled Delivery: 2008-07-16)&lt;br /&gt;
|[[GroupSales#Texas|Yes]]&lt;br /&gt;
|-&lt;br /&gt;
|1345&lt;br /&gt;
|2008-07-10 Notification by Phone from UPS&lt;br /&gt;
|Yes&lt;br /&gt;
|-&lt;br /&gt;
|1356&lt;br /&gt;
|2008-07-09&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1363&lt;br /&gt;
|2008-07-10&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1390&lt;br /&gt;
|2008-07-09&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1396&lt;br /&gt;
|2008-07-10&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1421&lt;br /&gt;
|2008-07-10, expected delivery: 2008-07-17&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1437&lt;br /&gt;
|2008-07-10, delivery target 2008-07-16 in DFW area, ground&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1459&lt;br /&gt;
|2008-07-10[http://wwwapps.ups.com/WebTracking/processRequest?HTMLVersion=5.0&amp;amp;Requester=NES&amp;amp;AgreeToTermsAndConditions=yes&amp;amp;loc=en_US&amp;amp;tracknum=1Z5VX0383554559523]&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1488&lt;br /&gt;
|Received tracking/shipment info 2008-07-10 @ 5:58 PM (GMT-7)&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1513&lt;br /&gt;
|Received tracking/shipment info 2008-07-10 @ 19:58 EDT&lt;br /&gt;
|[[GroupSales#Pacific_Northwest|Yes]]&lt;br /&gt;
|-&lt;br /&gt;
|1539&lt;br /&gt;
|2008-07-10 @ 4:58 PM (GMT-8)[http://wwwapps.ups.com/WebTracking/processRequest?HTMLVersion=5.0&amp;amp;Requester=NES&amp;amp;AgreeToTermsAndConditions=yes&amp;amp;loc=en_US&amp;amp;tracknum=1Z5VX0384254800060]&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1547&lt;br /&gt;
|UPS Delivered Northern CA, 2008-07-11 @ AM (PST)&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1562&lt;br /&gt;
|Not Yet, probably eaten by spam blocker 2008-07-10 :-(&lt;br /&gt;
|[[GroupSales#Boulder|Yes]]&lt;br /&gt;
|-&lt;br /&gt;
|1669&lt;br /&gt;
|2008-07-10&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1676&lt;br /&gt;
|UPS Notification received 10 July/To Be Delivered by 11 July, Ground&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1692&lt;br /&gt;
|Picked up from Fremont on 10 July 2008&lt;br /&gt;
|Yes&lt;br /&gt;
|-&lt;br /&gt;
|1694&lt;br /&gt;
|UPS Notification received 10 July/To Be Delivered by 14 July, 2nd day air&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1702&lt;br /&gt;
|UPS Notification received 10 July/To Be Delivered by 16 July, Ground&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1724&lt;br /&gt;
|Not Yet&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1750&lt;br /&gt;
|Yes 10-July-2008, expected delivery: 15-July-2008&lt;br /&gt;
|Yes&lt;br /&gt;
|-&lt;br /&gt;
|1773&lt;br /&gt;
|2008-07-03 10:07PM EST Order confirmed and nothing else as of July 11 8:35PM EST&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1787&lt;br /&gt;
|Received tracking/shipment info 2008-07-10 @ 4:58 PM &lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1813&lt;br /&gt;
|UPS Notification received 10 July/To Be Delivered by 14 July, 2nd day air&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1827&lt;br /&gt;
|Received tracking/shipment info 2008-07-10, scheduled delivery 7/17/2008&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1828&lt;br /&gt;
|Received tracking/shipment info 2008-07-10 @ 5:20 PM (Pacific Time), delivery date: 7/17/2008&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1843&lt;br /&gt;
|Ordered July 3rd, 10:15pm PST, tracking notice came in July 11 5:10pm PST, ETA: 7/15/2008&lt;br /&gt;
|[[GroupSales#Los_Angeles|Yes]]&lt;br /&gt;
|-&lt;br /&gt;
|2014&lt;br /&gt;
|Not yet&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2049&lt;br /&gt;
|No tracking as of 2008-07-11 14:00 MST&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2054&lt;br /&gt;
|Not Yet&lt;br /&gt;
|Nope&lt;br /&gt;
|-&lt;br /&gt;
|2165&lt;br /&gt;
|Ordered: 2008-07-04 / Shipping Notice: 2008-07-11 / Scheduled Delivery: 2008-07-15&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2204&lt;br /&gt;
|Received tracking/shipment info 2008-07-10, scheduled delivery 7/15/2008&lt;br /&gt;
|Nope&lt;br /&gt;
|-&lt;br /&gt;
|2237&lt;br /&gt;
|Ordered 2008-07-04 18:21 EST5EDT. Shipping notice: 2008-07-11 20:10. Scheduled Delivery: 2007-07-18.&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2243&lt;br /&gt;
|Ordered 2008-07-04 19:09 -0400.  No shipment notice yet.&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2267&lt;br /&gt;
|Received tracking information 2008-07-10 19:58 -0400. We ordered 2nd Day but they're shipping Ground. :(&lt;br /&gt;
|Yes&lt;br /&gt;
|-&lt;br /&gt;
|2278&lt;br /&gt;
|Ordered 2008-07-04 20:58 -0700. Ship notification received 2008-07-11 17:12 -0700. Scheduled Delivery: 15-July-2008&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2318&lt;br /&gt;
|Not Yet&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2340&lt;br /&gt;
|Not Yet/NA (Picked up in Fremont)&lt;br /&gt;
|Yes&lt;br /&gt;
|-&lt;br /&gt;
|2435&lt;br /&gt;
|Received tracking information 2008-07-11 17:12 -0700.  Shipping to Canada&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2442&lt;br /&gt;
|Not Yet (Ordered Sat, Jul 5, 2008 at 3:57 PM - Shipping to Argentina)&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2488&lt;br /&gt;
|Not Yet (Ordered Sunday, Jul 06, 2008&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2607&lt;br /&gt;
|Not yet&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2712&lt;br /&gt;
|Not Yet&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2741&lt;br /&gt;
|Not Yet&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|3007&lt;br /&gt;
|Not Yet&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|3032&lt;br /&gt;
|Not yet&lt;br /&gt;
|Yes&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Community]]&lt;br /&gt;
[[category:Purchase]]&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Where_is_my_Freerunner%3F</id>
		<title>Where is my Freerunner?</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Where_is_my_Freerunner%3F"/>
				<updated>2008-07-11T13:47:12Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Where is my FreeRunner?  In order to give you an idea of when your FreeRunner will be shipped, this is a list of order numbers against shipping confirmation email dates.  These numbers have been taken from the community mailing list and the #openmoko IRC channel.   &lt;br /&gt;
&lt;br /&gt;
Note that there may be gaps in the order numbers, and the assumption here is that lower order numbers ship first.  Also note that the tracking email has a subject similar to &amp;quot;UPS Ship Notification, Tracking Number ...&amp;quot; and is from &amp;quot;auto-notify@ups.com&amp;quot; or &amp;quot;pkginfo@ups.com&amp;quot; so you may miss it if you're searching for &amp;quot;moko&amp;quot; as a keyword.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;6&amp;quot; width=100% border=1&lt;br /&gt;
!Order Number&lt;br /&gt;
!Confirmation/Shipping Date&lt;br /&gt;
!Bulk Order?&lt;br /&gt;
|-&lt;br /&gt;
|1068&lt;br /&gt;
|2008-07-09&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1087&lt;br /&gt;
|2008-07-08&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1089&lt;br /&gt;
|2008-07-08&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1134&lt;br /&gt;
|Confirmed: 2008-07-03, Shipped: 2008-07-09, Scheduled: 2008-07-16, Delivered: Not yet&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1161&lt;br /&gt;
|2008-07-09&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1167&lt;br /&gt;
|Confirmed: 2008-07-03, Shipped: 2008-07-10, Scheduled: 2008-07-17 (@Atlanta, GA), Delivered: Not yet&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1203&lt;br /&gt;
|2008-07-09&lt;br /&gt;
|[[GroupSales#Ohio_.2F_Michigan|Yes]]&lt;br /&gt;
|-&lt;br /&gt;
|1207&lt;br /&gt;
|Not Yet&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1210&lt;br /&gt;
|2008-07-09&lt;br /&gt;
|[[GroupSales#Midwest|Yes]]&lt;br /&gt;
|-&lt;br /&gt;
|1220&lt;br /&gt;
|2008-07-09&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1294&lt;br /&gt;
|2008-07-09&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1326&lt;br /&gt;
|2008-07-09&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1328&lt;br /&gt;
|2008-07-10 (Scheduled Delivery: 2008-07-16)&lt;br /&gt;
|[[GroupSales#Texas|Yes]]&lt;br /&gt;
|-&lt;br /&gt;
|1345&lt;br /&gt;
|2008-07-10 Notification by Phone from UPS&lt;br /&gt;
|Yes&lt;br /&gt;
|-&lt;br /&gt;
|1356&lt;br /&gt;
|2008-07-09&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1363&lt;br /&gt;
|2008-07-10&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1390&lt;br /&gt;
|2008-07-09&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1396&lt;br /&gt;
|2008-07-10&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1421&lt;br /&gt;
|2008-07-10, expected delivery: 2008-07-17&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1437&lt;br /&gt;
|2008-07-10, delivery target 2008-07-16 in DFW area, ground&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1459&lt;br /&gt;
|2008-07-10[http://wwwapps.ups.com/WebTracking/processRequest?HTMLVersion=5.0&amp;amp;Requester=NES&amp;amp;AgreeToTermsAndConditions=yes&amp;amp;loc=en_US&amp;amp;tracknum=1Z5VX0383554559523]&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1488&lt;br /&gt;
|Received tracking/shipment info 2008-07-10 @ 5:58 PM (GMT-7)&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1513&lt;br /&gt;
|Not Yet&lt;br /&gt;
|[[GroupSales#Pacific_Northwest|Yes]]&lt;br /&gt;
|-&lt;br /&gt;
|1539&lt;br /&gt;
|2008-07-10 @ 4:58 PM (GMT-8)[http://wwwapps.ups.com/WebTracking/processRequest?HTMLVersion=5.0&amp;amp;Requester=NES&amp;amp;AgreeToTermsAndConditions=yes&amp;amp;loc=en_US&amp;amp;tracknum=1Z5VX0384254800060]&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1562&lt;br /&gt;
|Not Yet, probably eaten by spam blocker 2008-07-10 :-(&lt;br /&gt;
|[[GroupSales#Boulder|Yes]]&lt;br /&gt;
|-&lt;br /&gt;
|1669&lt;br /&gt;
|2008-07-10&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1676&lt;br /&gt;
|UPS Notification received 10 July/To Be Delivered by 11 July, Ground&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1692&lt;br /&gt;
|Picked up from Fremont on 10 July 2008&lt;br /&gt;
|Yes&lt;br /&gt;
|-&lt;br /&gt;
|1694&lt;br /&gt;
|UPS Notification received 10 July/To Be Delivered by 14 July, 2nd day air&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1702&lt;br /&gt;
|UPS Notification received 10 July/To Be Delivered by 16 July, Ground&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1724&lt;br /&gt;
|Not Yet&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1750&lt;br /&gt;
|Yes 10-July-2008, expected delivery: 15-July-2008&lt;br /&gt;
|Yes&lt;br /&gt;
|-&lt;br /&gt;
|1787&lt;br /&gt;
|Received tracking/shipment info 2008-07-10 @ 4:58 PM &lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1813&lt;br /&gt;
|UPS Notification received 10 July/To Be Delivered by 14 July, 2nd day air&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1827&lt;br /&gt;
|Received tracking/shipment info 2008-07-10, scheduled delivery 7/17/2008&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1828&lt;br /&gt;
|Received tracking/shipment info 2008-07-10 @ 5:20 PM (Pacific Time), delivery date: 7/17/2008&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|1843&lt;br /&gt;
|Not Yet&lt;br /&gt;
|[[GroupSales#Los_Angeles|Yes]]&lt;br /&gt;
|-&lt;br /&gt;
|2054&lt;br /&gt;
|Not Yet&lt;br /&gt;
|Nope&lt;br /&gt;
|-&lt;br /&gt;
|2204&lt;br /&gt;
|Not Yet&lt;br /&gt;
|Nope&lt;br /&gt;
|-&lt;br /&gt;
|2237&lt;br /&gt;
|Ordered 2008-07-04 18:21 EST5EDT. No shipment notice yet.&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2243&lt;br /&gt;
|Ordered 2008-07-04 19:09 -0400.  No shipment notice yet.&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2267&lt;br /&gt;
|Received tracking information 2008-07-10 19:58 -0400. We ordered 2nd Day but they're shipping Ground. :(&lt;br /&gt;
|Yes&lt;br /&gt;
|-&lt;br /&gt;
|2318&lt;br /&gt;
|Not Yet&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2340&lt;br /&gt;
|Not Yet/NA (Picked up in Fremont)&lt;br /&gt;
|Yes&lt;br /&gt;
|-&lt;br /&gt;
|2435&lt;br /&gt;
|Not Yet&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2442&lt;br /&gt;
|Not Yet (Ordered Sat, Jul 5, 2008 at 3:57 PM - Shipping to Argentina)&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2488&lt;br /&gt;
|Not Yet (Ordered Sunday, Jul 06, 2008&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2607&lt;br /&gt;
|Not yet&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2712&lt;br /&gt;
|Not Yet&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|2741&lt;br /&gt;
|Not Yet&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|3007&lt;br /&gt;
|Not Yet&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|3032&lt;br /&gt;
|Not yet&lt;br /&gt;
|Yes&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Community]]&lt;br /&gt;
[[category:Purchase]]&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:Neo_FreeRunner_Wifi</id>
		<title>Talk:Neo FreeRunner Wifi</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:Neo_FreeRunner_Wifi"/>
				<updated>2008-07-03T19:12:28Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: password hash creation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Passphrase issues:&lt;br /&gt;
&lt;br /&gt;
I have noticed that with wireless sometimes it works better to use the password hash in the wpa_supplicant.conf instead of the ascii text.&lt;br /&gt;
You can use the wpa_passphrase utility (I don't know if this is included in the GTA02 or not as I don't have one) to generate the hash for the passphrase.&lt;br /&gt;
&lt;br /&gt;
 techiem2@escape-pod ~ $ wpa_passphrase MYWIFI &amp;quot;my passphrase&amp;quot; &lt;br /&gt;
 network={&lt;br /&gt;
         ssid=&amp;quot;MYWIFI&amp;quot;&lt;br /&gt;
         #psk=&amp;quot;my passphrase&amp;quot;&lt;br /&gt;
         psk=a4c08e767704a66d3fb27d4bf072e2da279f76adc568722b9a6f97964b982620&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
Of course you would probably want to redirect output to the end of your wpa_supplicant.conf (wpa_passphrase MYWIFI &amp;quot;my passphrase&amp;quot;&amp;gt;&amp;gt;/etc/wpa_supplicant/wpa_supplicant.conf).&lt;br /&gt;
&lt;br /&gt;
--[[User:Techiem2|techiem2]] 19:12, 3 July 2008 (UTC)&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:Main_Page</id>
		<title>Talk:Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:Main_Page"/>
				<updated>2008-04-23T20:02:20Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= 23rd of April 2008 =&lt;br /&gt;
[[User:techiem2|techiem2]]: In Firefox 3 (beta 5 currently, though the issue has been in all I've tried so far), the navigation column shows up between the page content and the page footer instead of at the top next to the content as it should.&lt;br /&gt;
I do like the latest update to the front page, it looks great.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= 17th of September 2007 = &lt;br /&gt;
&lt;br /&gt;
== Security ==&lt;br /&gt;
[[User:mikl-dk|mikl-dk]]: Triggered by the question whether every execution of an application is done by the root-user, I started to wondering about the security in OpenMoko in general. Actually I found very little - near to nothing - and I personally think that's inappropriate for this project. We simply have to focus very much on security so that isn't going to be a pitfall. So please, let's focus on this! If desired, I'll be glad to join such a ''task-force''. &lt;br /&gt;
&lt;br /&gt;
== Additional Applications Portal ==&lt;br /&gt;
[[User:mikl-dk|mikl-dk]]: Since OpenMoko is open and is (going to be very, very, very) popular, a positive problem with lots of third part application is going to arise: the quality can vary a lot. I know there is a projects-section of this portal, but that's targeted to the developers and not the end-users. Maybe it would be a idea to create a repository of recommended applications by the OpenMoko-team.&lt;br /&gt;
&lt;br /&gt;
= Archive = &lt;br /&gt;
&lt;br /&gt;
== Navigating a Wiki ==&lt;br /&gt;
[[User:Tony guan|Tony guan]] 01:39, 14 September 2006 (UTC):&lt;br /&gt;
''Q: Dear all, who knows how to surf this wiki website without repeatly clicking the 'HomePage' and then going down to the page I want? Is there anything like 'Upper Layer'&lt;br /&gt;
&lt;br /&gt;
== Wiki Frontpage Facelift ==&lt;br /&gt;
Not sure who refactored the wiki's front page, but it looks awesome!  Great job! == Anonymous&lt;br /&gt;
&lt;br /&gt;
Yeah, much better, I like too. [[User:Micktaiwan|micktaiwan]] 22:03, 26 September 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
== Question about programming ==&lt;br /&gt;
If I wanted to learn how to write applications for the Neo1973, and have a couple years of C++ classes under my belt, where do I start? I'm not talking about creating a whole e-mail application or anything, but I know nothing about the software and how it operates. Thanks!&lt;br /&gt;
&lt;br /&gt;
== Question about Java programming ==&lt;br /&gt;
[[User:CathodioN|Geert Schuring]]: How can i help? Im a java programmer and would really like to get involved!&lt;br /&gt;
&lt;br /&gt;
== Developer available ==&lt;br /&gt;
&lt;br /&gt;
[[User:Huan|Huan]]: I'm a flight student with a CS degree and I don't have time to create and implement my own project. I am interested in developing and implementing encryption algorithms and other features to make openmoko users harder to track. If anyone has a project they need help on I can code, comment, and Debug. I also am familiar with UML specifically OOP in Java, C,++,#, Perl, I can even dive into the assembly. I use Eclipse as my primary development platform. If anyone could use a part time contributer to their project I would be honored to be a part.&lt;br /&gt;
&lt;br /&gt;
== hardware changes ==&lt;br /&gt;
&lt;br /&gt;
is there any word on if the hardware will change from the dev version currently being offered, and the retail version in october?&lt;br /&gt;
&lt;br /&gt;
== Kalra asked on the main page : ==&lt;br /&gt;
&lt;br /&gt;
i am an IT student from India , i have an experience of working on C,C++,Java now i want to join an open source project , can anybody please help , currently i am working on an image compression project. [[User:Kalra]]&lt;br /&gt;
&lt;br /&gt;
== Mediawiki Skin ==&lt;br /&gt;
&lt;br /&gt;
I run a mediawiki site also, and am wondering if anyone knows of the skin on this site being available for use? I appreciate any ideas on this. Thanks.--[[http://www.usome.com]] 22:29, 7 September 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
== Other supported hardware (Sony Ericsson) ==&lt;br /&gt;
&lt;br /&gt;
Hello,&lt;br /&gt;
&lt;br /&gt;
I have an old sony ericsson P800 that I would be willing to try OpenMoko on. How do I get started? I am a C++ programmer so technical stuff does not bother me. What do I read, where do look? Can I even think of using other hardware?&lt;br /&gt;
&lt;br /&gt;
Thanks&lt;br /&gt;
&lt;br /&gt;
== OpenMoko t-shirt ? ==&lt;br /&gt;
&lt;br /&gt;
Should we add a section for OpenMoko stuff, like t-shirts, hats etc ?&lt;br /&gt;
I found this link that offers OpenMoko t-shirts but they do not deliver in the U.S or Canada :(&lt;br /&gt;
Dam dam dam !&lt;br /&gt;
http://211795.spreadshirt.net/en/DE/Shop/Article/Index/article/openmoko-logo-front-t-shirt-5189143&lt;br /&gt;
&lt;br /&gt;
--[[User:Cribe|Cribe]] 17:55, 5 November 2007 (CET)&lt;br /&gt;
&lt;br /&gt;
=== OpenMoko t-shirt and stuff ? ===&lt;br /&gt;
&lt;br /&gt;
Hi again, I was wondering who should contact if I want to use the openmoko logo to put on t-shirts, mouse pads etc ?&lt;br /&gt;
I would like to give the profits to the openmoko cause...Anyone ???&lt;br /&gt;
&lt;br /&gt;
Thanks&lt;br /&gt;
--[[User:Cribe|Cribe]] 06:17, 29 November 2007 (CET)&lt;br /&gt;
&lt;br /&gt;
== Google Phone, OpenHandset Alliance, and Android... ==&lt;br /&gt;
&lt;br /&gt;
From what has been released so far, there seems to be quite an overlap:&lt;br /&gt;
Linux based, open SDK, and a few years worth of development sunk into the project.&lt;br /&gt;
&lt;br /&gt;
So, what's the impact on OpenMoko? Will OpenMoko end up being the open hardware side, or will the two projects compete, or will OpenMoko become redundant? Will OpenMoko join the OHA, and simply refine, brand, extend that platform?&lt;br /&gt;
&lt;br /&gt;
Further, the OpenMoko Neo phone might be able to run the android software within weeks, so it could be the first phone available to the public running that software platform.&lt;br /&gt;
&lt;br /&gt;
Somehow, there are lots of questions that should be answered.&lt;br /&gt;
&lt;br /&gt;
== Cellular Internet ==&lt;br /&gt;
&lt;br /&gt;
I suggest include information about access to the Internet using the cell phone. It would include a USB port to connect the computer to the Internet, using HSPA data standards (3.5 and 3.75G). And the possibility include a WiFi port to connect to a WiFi Router, to share the Internet connection. --[[User:Mac|Mac]] 12:18, 30 November 2007 (CET)&lt;br /&gt;
&lt;br /&gt;
== OpenMoko and Subversion, can anyone answer my question ? ==&lt;br /&gt;
&lt;br /&gt;
[[Talk:Using_Subversion | How are the OpenMoko developers using Subversion ?]]&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:November_6,_2007_Community_Update</id>
		<title>Talk:November 6, 2007 Community Update</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:November_6,_2007_Community_Update"/>
				<updated>2007-11-06T21:11:06Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;How many of you must have 850 MHz support, and would be satisfied with an 850/1800/1900MHz variant, and how many of you must have full quad-band?&lt;br /&gt;
&lt;br /&gt;
Note that by asking this question we do not promise to provide these options.&lt;br /&gt;
&lt;br /&gt;
Please put your answers below:&lt;br /&gt;
&lt;br /&gt;
'''Must have an 850/1800/1900MHz variant'''&lt;br /&gt;
* -- [[User:Mwester]] 06:46, 6 November 2007 (CST) - This thing is nothing but an extremely expensive PDA without 850 support.  It should do what it was claimed it could do when it was sold (quad-band), but I can live with taking a real phone with me when travelling internationally.&lt;br /&gt;
* -- [[User:ShakataGaNai|ShakataGaNai]] 03:34, 6 November 2007 (CET)&lt;br /&gt;
* -- [[User:Aking|Aking]] 21:55 EST, 2007-11-05 - Live/work in a Rogers 850 only zone&lt;br /&gt;
* -- [[User:Matt|Mattdawg]] 19:57 MST, 6 November 2007&lt;br /&gt;
* -- [[User:Writchie|Wally Ritchie]] 10:02 EST, 6 November 2007 - GTA02 MUST support largest US GSM carrier.&lt;br /&gt;
* -- [[User:Digger|Digger]] 04:15, 6 November 2007 (CET) - But for the money would prefer quad-band&lt;br /&gt;
* -- [[User:Wisp|wisp]] 04:29, 6 November 2007 (CET) - But for the money would greatly prefer quad-band &lt;br /&gt;
* -- [[User:WJCarpenter|WJCarpenter]] 19:45, 6 November 2007 (PST)&lt;br /&gt;
* -- [[User:Angus|Angus]] 20:59, 5 November 2007 (MST) - Required for Rogers in Canada&lt;br /&gt;
* -- [[User:Montgoss|Montgoss]] 22:34 CST, 5 November 2007 - Frequently in areas that use 850 band.&lt;br /&gt;
* -- [[User:Xaid|Xaid]] 21:12, November 5th, 2007 (MST) - Rogers Wireless in Edmonton uses both 850/1900 bands.&lt;br /&gt;
* -- [[User:Mmontour|Mmontour]] 06:45, 6 November 2007 (CET) - So far I've been able to use my phone with 1900 only (Fido in Vancouver, BC) but I do sometimes travel to 850-only areas.&lt;br /&gt;
* -- [[User:Romulus|Romulus]] 07:31, November 6th, 2007 (PST) - I'm with Rogers and will need 850 when on the road.&lt;br /&gt;
* -- [[User:Mary|Mary]] 11:24, November 6th, 2007 (EST)&lt;br /&gt;
* -- [[User:Algo|Algo]] 13:17, November 6th, 2007 (EST) - I'm with Rogers too and i need the 850 band to get a full coverage. It's a no go no show until the phone can support it.&lt;br /&gt;
* -- [[User:GaidinTS|GaidinTS]] 13:52, November 6th, 2007 (CST) - I'd have to start looking for a new phone, if this one didn't support 850.&lt;br /&gt;
* -- [[User:wurp|wurp]] 14:27, November 6th, 2007 (CST)&lt;br /&gt;
* -- [[User:Techiem2|Techiem2]] 16:03, November 6th, 2007 (EST) - This would be the minimum for me to use as a phone as I live in an 850 /1900 area.  Ideally quad band so I could use it if I ever travel.&lt;br /&gt;
&lt;br /&gt;
'''Is OK with the current 900/1800/1900MHz variant'''&lt;br /&gt;
* -- [[User:BlueStar88|BlueStar88]] 11:50, 6 November 2007 (CET) - 900 (D1-, D2- and O2-Network) and 1800 (E- and O2-Network) are essential in Germany&lt;br /&gt;
* -- (Most of Europe? From my quick bit of research, it seems 850Mhz is only needed for the US, Canada, Anguilla, Ecuador, Montserrat, Panama, St. Kitts and Nevis, Turks and Caicos Islands )&lt;br /&gt;
* -- [[User:C.M|C.M]] 06:44 CST, 6 November 2007 - 850 would be nice, but I don't need it.&lt;br /&gt;
* -- [[User:Avanc|Avanc]] 08:52 CET, 6 November 2007 - 850 would be nice, but I don't want to miss 900&lt;br /&gt;
* -- [[User:PT|PT]] 08:27 GMT, 6 November 2007 - 850 would be nice but the other three are more important for me&lt;br /&gt;
* -- [[User:s.decken|s.decken]] 10:49 GMT, 6 November 2007 - 850 would be nice but not required&lt;br /&gt;
* -- [[User:PiotrDuda|_alcik_]] 11:55 GMT, 6 November 2007 - I really need the 900.&lt;br /&gt;
* -- [[User:Mic|Mic]] 12:15 CET, 6 November 2007 - in Europe is 900 essential&lt;br /&gt;
* -- [[User:Mockenh|Mockenh]] 12:45 CET, 6 November 2007 - need 900 (Germany)&lt;br /&gt;
* -- [[User:Psmears|Psmears]] 14:55, 6 November 2007 (CET) 900/1800 covers most of the world; 1900 covers enough of USA/Canada to be useful for short trips.&lt;br /&gt;
* -- [[User:Placid|Placid]] 18:52, 6 November 2007 (CET) - UK, T-Mobile, OK with tri-band.&lt;br /&gt;
* -- [[User:Vegar|Vegar]] 16:46, 6 November 2007 (CET) - 850 would be nice, but the other three are much more important&lt;br /&gt;
* -- [[User:einalex|einalex]] 17:04 CET, 6 November 2007 - in Germany/Europe GSM 900 is a must-have. For me, 850 is optional.&lt;br /&gt;
* -- [[User:PBeck|PatrickBeck]] 17:45, 6 November 2007 (CET)  I live in germany, so is 850 optional for me. But quadband would be nice.&lt;br /&gt;
* -- [[User:AVee]] Same as above, having a hardware/software switch for 850/900 would help as well.&lt;br /&gt;
* -- [[User:Dread|Dread]] I'm from Germany too, for me, 850 is optional.&lt;br /&gt;
* -- [[User:Haakeyar|Haakeyar]] 19:42, 6 November 2007 (CET) I live in Norway.&lt;br /&gt;
* -- [[User:Henrikw|Henrikw]] 20:57, 6 November 2007 (CET) I live in Norway.&lt;br /&gt;
* -- [[User:lizardb0y|lizardb0y]] 08:35, 7 November 2007 (NZDT) I could personally live with the 900/1800/1900 variant but this would limit it's use to 1 of 2 New Zealand GSM providers.  Being able to switch between 850/900 would be extremely beneficial to the NZ market as we have providers on both.   See [http://www.gsmworld.com/roaming/gsminfo/cou_nz.shtml] for details.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Must have full quad-band support''' (note that this is not for GTA01 or GTA02)&lt;br /&gt;
* -- [[User:Elektrolott|Elektrolott]] 18:45 (PST), 2007-11-05 - I live in the US and travel to Europe, so Quad Band is a must. As you noted this will not be for GTA02, so when (if at all) can we expect the promised 4 Band?&lt;br /&gt;
* -- [[User:ClashTheBunny|ClashTheBunny]] 04:03, 6 November 2007 (CET) - Right now I live on the North Shore of Boston and most places are 850&lt;br /&gt;
* -- [[User:Sagacis|Sagacis]] 04:16, 6 November 2007 (CET) - The phone is a brick to me without 850.  International travel means I need all four bands.&lt;br /&gt;
* -- [[User:Davemaster|Davemaster]] 21:47, 5 November 2007 (ET) - International travelers,  Me and my group (company) deals all over. We need all four bands.&lt;br /&gt;
*-- [[User:Rakshat|Rakshat]] 05:40, 6 November 2007 (CET) - For travel in the US, otherwise I am ok with the 900/1800/1900Mhz variant&lt;br /&gt;
* --[[User:NeilenMarais|NeilenMarais]] 15:37, 6 November 2007 (CET) - For travel to US also&lt;br /&gt;
* -- [[User:Jaebird|Jaebird]] 09:00, 6 November 2007 (CST) - The phone should be refundable to me without 850 (It was sold as a quad band phone, it is NOT).  International travel means I need all four bands.&lt;br /&gt;
* -- [[User:Mmanjos|Mmanjos]] 21:25, 6 November 2007 (CET) - I absolutely need 850 or else the phone is useless to me, but for the money, it should support quad-band.&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:Video_Player</id>
		<title>Talk:Video Player</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:Video_Player"/>
				<updated>2007-09-23T16:37:48Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I think the Neo has potential as a video player even with the weak CPU it has right now (that's one of the things I do with my Palm TX). Come on, is anyone going to care if a 2.8&amp;quot; screen is displaying 240x320 or 480x640 video? You can't see a thing anyway ;-)&lt;br /&gt;
&lt;br /&gt;
That said, the chief issue is making sure that the video is transcoded (scaled and pre-rotated) in advance, just as you outline. This *could* be done as a batch job invoked on the phone, or handled by whatever desktop app handles communication with the Moko. There is going to be some sort of app or function that does this transcoding.&lt;br /&gt;
&lt;br /&gt;
Anyhow, I propose that a file extension be created (.mkv, for Moko Video), which is simply MPEG-1 at 240x320 or some resolution like that. This renaming would be done by whatever app did the transformation, and it becomes much easier to explain to grandma why her movie is running at 10fps. (.mkv is taken by Matroska Video, but some custom extension [omv?] may be a good way to emphasize the Moko-spesificness of a clip --[[User:Mjr|Mjr]] 01:54, 19 April 2007 (CEST))&lt;br /&gt;
&lt;br /&gt;
Even if the movie player turns out crappy, you can still watch Charlie Chaplin vids at a resolution of 150x200 without panic.&lt;br /&gt;
&lt;br /&gt;
Couldn't the video files be encoded in a way that may increase the filesize significantly, but would require less CPU processing for 480x640 playback?  I'm not extremely familiar but video encoding but it seems to me that this is a possible solution. -- [[User:machee|machee]] 14:31, 9 May 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I would say that even video at 640x480@25 might be possible if it is in a pre converted format. The ipodlinux.org project has managed to play 220x176@18fps on one 80mhz ARM core while running linux. This is using a new format which doesn't compress as well as mpeg2. However rockbox.org has managed to play mpeg2 video at reasonable speed utilizing both cores of the ipod.&lt;br /&gt;
If you have to preconvert the video anyways, you could either pre-rotate it or even convert it into a different video format. Alternatively if you don't port an existing player, but implement a new one the rotation could also be done while decoding. [[User:NsN|NsN]] 19:58, 11 July 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I checked the information for the video capabilities of the [http://www.rockbox.org/twiki/bin/view/Main/PluginMpegplayer Rockbox mpegplayer plugin] in relation to my iAudio X5 (since that's what I have).&lt;br /&gt;
&lt;br /&gt;
The X5 is running a  Motorola SCF5250 (120Mhz) and supports playing video at 160x128 (the full screen res on the device) at 18 fps - which seems to work fine the time or two I've tested it.&lt;br /&gt;
&lt;br /&gt;
The question I would have relating to the Neo1973 is, why does the video need to be rotated (or stretched)?&lt;br /&gt;
&lt;br /&gt;
Would it be easier to simply play a decently sized (i.e. whatever the cpu could handle easily) video in the default screen orientation with no stretching, just with the classic black bar borders(or at least a stretch/no stretch option?)? -- [[User:Techiem2|Techiem2]]&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:MokoMakefile</id>
		<title>Talk:MokoMakefile</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:MokoMakefile"/>
				<updated>2007-09-19T17:22:25Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Fails trying to fetch uboot == &lt;br /&gt;
on ubuntu edgy (with all the required sofware installed):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
( cd build ; . ../setup-env ; \&lt;br /&gt;
          bitbake openmoko-devel-image )&lt;br /&gt;
NOTE: Using cache in '/content/build/tmp/cache/fic-gta01'&lt;br /&gt;
NOTE: Handling BitBake files: \ (4333/4333) [100 %]&lt;br /&gt;
NOTE: Parsing finished. 4149 cached, 0 parsed, 184 skipped, 0 masked.&lt;br /&gt;
&lt;br /&gt;
NOTE: build 200704240008: started&lt;br /&gt;
&lt;br /&gt;
OE Build Configuration:&lt;br /&gt;
BB_VERSION     = &amp;quot;1.6.7&amp;quot;&lt;br /&gt;
OE_REVISION    = &amp;quot;&amp;lt;unknown&amp;gt;&amp;quot;&lt;br /&gt;
TARGET_ARCH    = &amp;quot;arm&amp;quot;&lt;br /&gt;
TARGET_OS      = &amp;quot;linux&amp;quot;&lt;br /&gt;
MACHINE        = &amp;quot;fic-gta01&amp;quot;&lt;br /&gt;
DISTRO         = &amp;quot;openmoko&amp;quot;&lt;br /&gt;
DISTRO_VERSION = &amp;quot;.dev-snapshot-20070423&amp;quot;&lt;br /&gt;
TARGET_FPU     = &amp;quot;soft&amp;quot;&lt;br /&gt;
&lt;br /&gt;
NOTE: preferred version 2.4 of glibc not available&lt;br /&gt;
NOTE: preferred version 2.4 of glibc-intermediate not available&lt;br /&gt;
NOTE: preferred version 2.4 of glibc not available&lt;br /&gt;
NOTE: Retrieved remote revisions: ['0', '1754', '0']&lt;br /&gt;
NOTE: Retrieved remote revisions: ['14da5f7675bbb427c469e3f45006e027b6e21db9', '0', '1811']&lt;br /&gt;
NOTE: package uboot-gta01-1.2.0+svnnow: started&lt;br /&gt;
NOTE: package uboot-gta01-1.2.0+svnnow-r4_14da5f7675bbb427c469e3f45006e027b6e21db9_0_1811: task do_fetch: started&lt;br /&gt;
fatal: corrupted pack file .git/objects/pack/pack-a146bcbc18f4826d6bf2a7f63be5dd77bbb5b2f5.pack&lt;br /&gt;
Fetch failure: git://www.denx.de/git/u-boot.git/&lt;br /&gt;
NOTE: Task failed: Fetch failed: Git: export PATH=/content/build/tmp/staging/i686-linux/bin/arm-linux:/content/build/tmp/staging/i686-linux/bin:/content/build/tmp/cross/bin:/content/bitbake/bin:/home/philip/work/trac/install/0.10-stable/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11:/usr/games; git pull git://www.denx.de/git/u-boot.git/ failed&lt;br /&gt;
NOTE: package uboot-gta01-1.2.0+svnnow-r4_14da5f7675bbb427c469e3f45006e027b6e21db9_0_1811: task do_fetch: failed&lt;br /&gt;
ERROR: TaskFailed event exception, aborting&lt;br /&gt;
NOTE: package uboot-gta01-1.2.0+svnnow: failed&lt;br /&gt;
ERROR: Build of openmoko-devel-image failed&lt;br /&gt;
make: *** [openmoko-devel-image] Fout 1&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To fix this, upgrade git to 1.5.x. (1.4.x currently installed.)&lt;br /&gt;
&lt;br /&gt;
== Fails trying to download a TTF fonts. Workaround Below  ==&lt;br /&gt;
&lt;br /&gt;
Trying to build with the latest MokoMakefile fails with the following output:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;...&lt;br /&gt;
NOTE: fetch http://downloads.openmoko.org/sources/dejavu-ttf-2.15.tar.bz2&lt;br /&gt;
--10:32:52--  http://downloads.openmoko.org/sources/dejavu-ttf-2.15.tar.bz2&lt;br /&gt;
           =&amp;gt; `/home/nat/moko/sources/dejavu-ttf-2.15.tar.bz2'&lt;br /&gt;
Resolving downloads.openmoko.org... 88.198.93.219&lt;br /&gt;
Connecting to downloads.openmoko.org|88.198.93.219|:80... connected.&lt;br /&gt;
HTTP request sent, awaiting response... 404 Not Found&lt;br /&gt;
10:32:52 ERROR 404: Not Found.&lt;br /&gt;
&lt;br /&gt;
NOTE: Task failed: Fetch failed: http://heanet.dl.sf.net/dejavu/dejavu-ttf-2.15.tar.bz2&lt;br /&gt;
NOTE: package ttf-dejavu-2.15-r0: task do_fetch: failed&lt;br /&gt;
ERROR: TaskFailed event exception, aborting&lt;br /&gt;
NOTE: package ttf-dejavu-2.15: failed&lt;br /&gt;
ERROR: Build of openmoko-devel-image failed&lt;br /&gt;
make: *** [openmoko-devel-image] Error 1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To work around this problem, download from here http://dejavu.sourceforge.net/wiki/index.php/Download and save into the sources/ subdirectory beneath where you are running make.  Then create a file named dejavu-ttf-2.15.tar.bz2.md5 alongside the tar.bz2 file that contains the MD5 checksum on that download page. Then issue the make command again and the build will pick up where it left off.&lt;br /&gt;
&lt;br /&gt;
== do_compile fails with unreconized option '-Qy' ==&lt;br /&gt;
&lt;br /&gt;
I use bash for my shell and this seems to be caused by something in my .bashrc For now, I have just commented out my .bashrc for my builds. It has something to do with the PATH variable. Try using &lt;br /&gt;
&lt;br /&gt;
  PATH=/bin:/usr/bin:/usr/local/bin make openmoko-devel-image&amp;quot; &lt;br /&gt;
&lt;br /&gt;
to get around it.&lt;br /&gt;
&lt;br /&gt;
== (NOT FIXED) Fails on a 32bit machine ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;| make[5]: Entering directory `/usr/local/oe/build/tmp/work/armv4t-linux/binutil&lt;br /&gt;
s-cross-2.17-r0/binutils-2.17/build.x86_64-linux.arm-linux/bfd'&lt;br /&gt;
| /bin/sh ./libtool --mode=compile ccache  gcc -DHAVE_CONFIG_H -I. -I/usr/local/&lt;br /&gt;
oe/build/tmp/work/armv4t-linux/binutils-cross-2.17-r0/binutils-2.17/bfd -I. -I. &lt;br /&gt;
-I/usr/local/oe/build/tmp/work/armv4t-linux/binutils-cross-2.17-r0/binutils-2.17&lt;br /&gt;
/bfd -I/usr/local/oe/build/tmp/work/armv4t-linux/binutils-cross-2.17-r0/binutils&lt;br /&gt;
-2.17/bfd/../include  -I/usr/local/oe/build/tmp/work/armv4t-linux/binutils-cross&lt;br /&gt;
-2.17-r0/binutils-2.17/bfd/../intl -I../intl  -isystem/usr/local/oe/build/tmp/st&lt;br /&gt;
aging/x86_64-linux/include -W -Wall -Wstrict-prototypes -Wmissing-prototypes -We&lt;br /&gt;
rror -isystem/usr/local/oe/build/tmp/staging/x86_64-linux/include -O2 -c -o libb&lt;br /&gt;
fd.lo /usr/local/oe/build/tmp/work/armv4t-linux/binutils-cross-2.17-r0/binutils-&lt;br /&gt;
2.17/bfd/libbfd.c&lt;br /&gt;
| ccache gcc -DHAVE_CONFIG_H -I. -I/usr/local/oe/build/tmp/work/armv4t-linux/bin&lt;br /&gt;
utils-cross-2.17-r0/binutils-2.17/bfd -I. -I. -I/usr/local/oe/build/tmp/work/arm&lt;br /&gt;
v4t-linux/binutils-cross-2.17-r0/binutils-2.17/bfd -I/usr/local/oe/build/tmp/wor&lt;br /&gt;
k/armv4t-linux/binutils-cross-2.17-r0/binutils-2.17/bfd/../include -I/usr/local/&lt;br /&gt;
oe/build/tmp/work/armv4t-linux/binutils-cross-2.17-r0/binutils-2.17/bfd/../intl &lt;br /&gt;
-I../intl -isystem/usr/local/oe/build/tmp/staging/x86_64-linux/include -W -Wall &lt;br /&gt;
-Wstrict-prototypes -Wmissing-prototypes -Werror -isystem/usr/local/oe/build/tmp&lt;br /&gt;
/staging/x86_64-linux/include -O2 -c /usr/local/oe/build/tmp/work/armv4t-linux/b&lt;br /&gt;
inutils-cross-2.17-r0/binutils-2.17/bfd/libbfd.c -o libbfd.o&lt;br /&gt;
| cc1: warnings being treated as errors&lt;br /&gt;
| /usr/local/oe/build/tmp/work/armv4t-linux/binutils-cross-2.17-r0/binutils-2.17&lt;br /&gt;
/bfd/libbfd.c: In function 'bfd_getb_signed_64':&lt;br /&gt;
| /usr/local/oe/build/tmp/work/armv4t-linux/binutils-cross-2.17-r0/binutils-2.17&lt;br /&gt;
/bfd/libbfd.c:662: warning: left shift count &amp;gt;= width of type&lt;br /&gt;
| /usr/local/oe/build/tmp/work/armv4t-linux/binutils-cross-2.17-r0/binutils-2.17&lt;br /&gt;
/bfd/libbfd.c:662: warning: left shift count &amp;gt;= width of type&lt;br /&gt;
| /usr/local/oe/build/tmp/work/armv4t-linux/binutils-cross-2.17-r0/binutils-2.17&lt;br /&gt;
/bfd/libbfd.c: In function 'bfd_getl_signed_64':&lt;br /&gt;
| /usr/local/oe/build/tmp/work/armv4t-linux/binutils-cross-2.17-r0/binutils-2.17&lt;br /&gt;
/bfd/libbfd.c:685: warning: left shift count &amp;gt;= width of type&lt;br /&gt;
| /usr/local/oe/build/tmp/work/armv4t-linux/binutils-cross-2.17-r0/binutils-2.17&lt;br /&gt;
/bfd/libbfd.c:685: warning: left shift count &amp;gt;= width of type&lt;br /&gt;
| /usr/local/oe/build/tmp/work/armv4t-linux/binutils-cross-2.17-r0/binutils-2.17&lt;br /&gt;
/bfd/libbfd.c: In function 'bfd_putb64':&lt;br /&gt;
| /usr/local/oe/build/tmp/work/armv4t-linux/binutils-cross-2.17-r0/binutils-2.17&lt;br /&gt;
/bfd/libbfd.c:717: warning: right shift count &amp;gt;= width of type&lt;br /&gt;
| /usr/local/oe/build/tmp/work/armv4t-linux/binutils-cross-2.17-r0/binutils-2.17&lt;br /&gt;
/bfd/libbfd.c:718: warning: right shift count &amp;gt;= width of type&lt;br /&gt;
| /usr/local/oe/build/tmp/work/armv4t-linux/binutils-cross-2.17-r0/binutils-2.17&lt;br /&gt;
/bfd/libbfd.c:719: warning: right shift count &amp;gt;= width of type&lt;br /&gt;
| /usr/local/oe/build/tmp/work/armv4t-linux/binutils-cross-2.17-r0/binutils-2.17&lt;br /&gt;
/bfd/libbfd.c:720: warning: right shift count &amp;gt;= width of type&lt;br /&gt;
| /usr/local/oe/build/tmp/work/armv4t-linux/binutils-cross-2.17-r0/binutils-2.17&lt;br /&gt;
/bfd/libbfd.c: In function 'bfd_putl64':&lt;br /&gt;
| /usr/local/oe/build/tmp/work/armv4t-linux/binutils-cross-2.17-r0/binutils-2.17&lt;br /&gt;
/bfd/libbfd.c:735: warning: right shift count &amp;gt;= width of type&lt;br /&gt;
| /usr/local/oe/build/tmp/work/armv4t-linux/binutils-cross-2.17-r0/binutils-2.17&lt;br /&gt;
/bfd/libbfd.c:736: warning: right shift count &amp;gt;= width of type&lt;br /&gt;
| /usr/local/oe/build/tmp/work/armv4t-linux/binutils-cross-2.17-r0/binutils-2.17&lt;br /&gt;
/bfd/libbfd.c:737: warning: right shift count &amp;gt;= width of type&lt;br /&gt;
| /usr/local/oe/build/tmp/work/armv4t-linux/binutils-cross-2.17-r0/binutils-2.17&lt;br /&gt;
/bfd/libbfd.c:738: warning: right shift count &amp;gt;= width of type&lt;br /&gt;
| make[5]: *** [libbfd.lo] Error 1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Any insight here? --[[User:Adam|Adam]] 23:10, 15 May 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
== Building on Fedora Core 6 ==&lt;br /&gt;
&lt;br /&gt;
Install stuff needed for OpenMoko:&lt;br /&gt;
  # yum install python m4 make wget curl ftp cvs monotone subversion \&lt;br /&gt;
    tar bzip2 gzip unzip python-psyco ccache perl texinfo texi2html \&lt;br /&gt;
    diffstat openjade docbook-style-dsssl docbook-style-xsl docbook-dtds \&lt;br /&gt;
    docbook-utils sed bison bc glibc-devel gcc binutils pcre pcre-devel git \&lt;br /&gt;
    quilt groff linuxdoc-tools patch compat-gcc-34 lynx netpbm&lt;br /&gt;
(notice ''compat-gcc-34'' wich was needed for FC6 (gcc 4 installed), and ''lynx'' which is needed by ''qemu'' (no fallback to ''wget'', ''curl'', or ''links'' at the moment and no check for it, resulting in strange &amp;quot;sleep&amp;quot; errors when trying to build without ''lynx'').&lt;br /&gt;
&lt;br /&gt;
Build it:&lt;br /&gt;
  $ make setup&lt;br /&gt;
  $ make openmoko-devel-image&lt;br /&gt;
  $ unset LD_LIBRARY_PATH&lt;br /&gt;
  $ make update-makefile &amp;amp;&amp;amp; make update &amp;amp;&amp;amp; make setup &amp;amp;&amp;amp; make openmoko-devel-image&lt;br /&gt;
&lt;br /&gt;
I have also done a&lt;br /&gt;
  $ unset LD_LIBRARY_PATH; make update-makefile &amp;amp;&amp;amp; nice  make update &amp;amp;&amp;amp; nice make setup &amp;amp;&amp;amp; nice make all&lt;br /&gt;
(This takes several hours)&lt;br /&gt;
&lt;br /&gt;
Build qemu:&lt;br /&gt;
  $ make qemu&lt;br /&gt;
&lt;br /&gt;
Run it:&lt;br /&gt;
  # echo 1024 &amp;gt; /proc/sys/dev/rtc/max-user-freq&lt;br /&gt;
  $ make run-qemu&lt;br /&gt;
This will bring up the OpenMoko :) Use SPACE for AUX and ENTER for POWER.&lt;br /&gt;
Not quite the same as holding a Neo1973 in your hands I would guess, but this is the best we can do for now. Thanks!&lt;br /&gt;
&lt;br /&gt;
== Building on Ubuntu Feisty ==&lt;br /&gt;
&lt;br /&gt;
MokoMakefile requires more than 512 MB of RAM + Swap space (around 1GB?).&lt;br /&gt;
&lt;br /&gt;
If you need swap, please '''check that its size under Feisty is not null'''!&lt;br /&gt;
&lt;br /&gt;
[https://bugs.launchpad.net/ubuntu/+bug/105490 Bug #105490] describes the current issue and offers a workaround (23 Jul 07).&lt;br /&gt;
&lt;br /&gt;
== Fails trying to build bluez-utils == &lt;br /&gt;
on Gentoo Linux, it fails compiling bluez-utils (I've tried also &amp;quot;make clean-package-bluez-utils&amp;quot; before the following command)&lt;br /&gt;
&lt;br /&gt;
do a &amp;quot;make build-package-libusb; make clean-package-bluez-utils&amp;quot; and it should continue (the bluez-utils .bb is missing the libusb dependency)&lt;br /&gt;
&lt;br /&gt;
== openSUSE 10.1 and 10.2 workarounds ==&lt;br /&gt;
&lt;br /&gt;
ltrace package fails to build with error: &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
...&lt;br /&gt;
checking for pid_t... yes&lt;br /&gt;
checking for getopt... yes&lt;br /&gt;
checking for getopt_long... yes&lt;br /&gt;
checking gelf.h usability... no&lt;br /&gt;
checking gelf.h presence... no&lt;br /&gt;
checking for gelf.h... no&lt;br /&gt;
configure: error: ***** gelf.h not found *****&lt;br /&gt;
FATAL: oe_runconf failed&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''FIX: '''&lt;br /&gt;
edit ''/home/moko/build/tmp/work/armv4t-linux/ltrace-0.4-r0/ltrace-0.4/configure.ac''&lt;br /&gt;
at line 44: remove the following block:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
for path in /usr/include/elfutils /usr/local/include/elfutils \&lt;br /&gt;
       /usr/include/libelf /usr/local/include/libelf; do&lt;br /&gt;
   if test -f ${path}/gelf.h; then&lt;br /&gt;
       CPPFLAGS=&amp;quot;$CPPFLAGS -I ${path}&amp;quot;&lt;br /&gt;
   fi&lt;br /&gt;
done&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
( it adds /usr/include/elfutils to path, which causes cross-compile badness error )&lt;br /&gt;
&lt;br /&gt;
=== QEMU build fails to compile USB code ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
/usr/include/linux/usbdevice_fs.h:116: error: variable or field `__user' declared void&lt;br /&gt;
/usr/include/linux/usbdevice_fs.h:116: error: syntax error before '*' token&lt;br /&gt;
/home/moko/openmoko/trunk/src/host/qemu-neo1973/usb-linux.c: In function `usb_host_handle_control':&lt;br /&gt;
/home/moko/openmoko/trunk/src/host/qemu-neo1973/usb-linux.c:103: error: invalid application of `sizeof' to incomplete type `usbdevfs_ctrltran&lt;br /&gt;
sfer'&lt;br /&gt;
/home/moko/openmoko/trunk/src/host/qemu-neo1973/usb-linux.c: In function `usb_host_handle_data':&lt;br /&gt;
/home/moko/openmoko/trunk/src/host/qemu-neo1973/usb-linux.c:120: error: storage size of 'bt' isn't known&lt;br /&gt;
/home/moko/openmoko/trunk/src/host/qemu-neo1973/usb-linux.c:132: error: invalid application of `sizeof' to incomplete type `usbdevfs_bulktran&lt;br /&gt;
sfer'&lt;br /&gt;
/home/moko/openmoko/trunk/src/host/qemu-neo1973/usb-linux.c:120: warning: unused variable `bt'&lt;br /&gt;
/home/moko/openmoko/trunk/src/host/qemu-neo1973/usb-linux.c: In function `usb_host_device_open':&lt;br /&gt;
/home/moko/openmoko/trunk/src/host/qemu-neo1973/usb-linux.c:199: error: storage size of 'ctrl' isn't known&lt;br /&gt;
/home/moko/openmoko/trunk/src/host/qemu-neo1973/usb-linux.c:202: error: invalid application of `sizeof' to incomplete type `usbdevfs_ioctl'&lt;br /&gt;
/home/moko/openmoko/trunk/src/host/qemu-neo1973/usb-linux.c:199: warning: unused variable `ctrl'&lt;br /&gt;
make[2]: *** [usb-linux.o] Error 1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''FIX: '''&lt;br /&gt;
edit ''/home/moko/openmoko/trunk/src/host/qemu-neo1973/usb-linux.c''&lt;br /&gt;
at line 29 add the following (before ''#include &amp;lt;linux/usbdevice_fs.h&amp;gt;'')&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#include &amp;lt;linux/compiler.h&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
hint: there is a copy of the file in ''/home/moko/build/tmp/work/i686-linux/qemu-native-0.9.0+cvs20070613-r5/qemu/usb-linux.c''&lt;br /&gt;
&lt;br /&gt;
''see: http://osdir.com/ml/emulators.kvm.devel/2007-01/msg00101.html''&lt;br /&gt;
&lt;br /&gt;
== Cannot satisfy fstests ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  make openmoko-devel-image&lt;br /&gt;
...&lt;br /&gt;
| Collected errors:&lt;br /&gt;
| ERROR: Cannot satisfy the following dependencies for task-openmoko-debug:&lt;br /&gt;
|        fstests&lt;br /&gt;
NOTE: Task failed: /no-backup/Moko/build/tmp/work/fic-gta01-linux/openmoko-devel-image-1.0-r0/temp/log.do_rootfs.25036&lt;br /&gt;
NOTE: package openmoko-devel-image-1.0-r0: task do_rootfs: failed&lt;br /&gt;
ERROR: TaskFailed event exception, aborting&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Failed on debian etch 2007-07-20&lt;br /&gt;
Solution from mailing list post from hardskinone, report of an irc chat&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
I got help in IRC channel. I do following steps&lt;br /&gt;
     * remove fstest from oe/packages/tasks/task-openmoko.bb ,&lt;br /&gt;
     * increase PR field by one&lt;br /&gt;
     * make openmoko-devel-image&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== conflicting types for 'futimens' ==&lt;br /&gt;
&lt;br /&gt;
if you encounter the following error:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 | In file included from utimecmp.c:40:&lt;br /&gt;
 | utimens.h:2: error: conflicting types for 'futimens'&lt;br /&gt;
 | /usr/include/sys/stat.h:370: error: previous declaration of 'futimens' was here&lt;br /&gt;
&lt;br /&gt;
a patch is needed because your glibc is too new. grab &amp;amp; enable the patch as follows &lt;br /&gt;
&lt;br /&gt;
 cd openembedded/packages/coreutils&lt;br /&gt;
 mv coreutils_5.3.0.bb coreutils_5.3.0.orig&lt;br /&gt;
 wget http://www.openembedded.org/repo/org.openembedded.dev/packages/coreutils/coreutils_5.3.0.bb&lt;br /&gt;
 cd -&lt;br /&gt;
 cd openembedded/packages/coreutils/coreutils-5.3.0&lt;br /&gt;
 wget http://www.openembedded.org/repo/org.openembedded.dev/packages/coreutils/coreutils-5.3.0/futimens.patch&lt;br /&gt;
 cd -&lt;br /&gt;
&lt;br /&gt;
== Workaround for problems compiling mtd-utils ==&lt;br /&gt;
&lt;br /&gt;
Change the line on &amp;lt;code&amp;gt;openembedded/packages/mtd/mtd-utils_1.0.0+git.bb&amp;lt;/code&amp;gt; which reads:&lt;br /&gt;
&lt;br /&gt;
 SRC_URI = &amp;quot;git://git.infradead.org/mtd-utils.git;protocol=git;tag=master \&lt;br /&gt;
&lt;br /&gt;
to:&lt;br /&gt;
&lt;br /&gt;
 SRC_URI = &amp;quot;git://git.infradead.org/mtd-utils.git;protocol=git;tag=a6fa706fe9e7696b4b2045edf9698c3bac07e3e3 \&lt;br /&gt;
&lt;br /&gt;
which forces the recipe to use an older revision (the one which worked last time I built the image on my computer).&lt;br /&gt;
&lt;br /&gt;
Be sure to remember to undo the change later, or else you will not get any new changes to that package. --[[User:CesarB|CesarB]] 04:48, 25 July 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
Note: these patches should be updated - the lzo patch is included in the current version, so backing off to the previous version and repatching seems silly.   I was able to make it through this part of the build by applying the remaining patches manually. --[[User:Mellon|Ted Lemon]] 15:44, 29 July 2007 (CDT)&lt;br /&gt;
&lt;br /&gt;
== Monotone segfaulting on Ubuntu Feisty Fawn/PPC ==&lt;br /&gt;
If you are running Ubuntu Feisty Fawn on a PowerPC computer you will experience problems running monotone. To fix this issue you need to install monotone as well as the libboost packages from Gutsy. The easiest way to accomplish this is to add the gutsy repositories to your sources.list&lt;br /&gt;
and change the preferences to look like this:&lt;br /&gt;
&lt;br /&gt;
 Package: *&lt;br /&gt;
 Pin: release a=feisty&lt;br /&gt;
 Pin-Priority: 700&lt;br /&gt;
 &lt;br /&gt;
 Package: *&lt;br /&gt;
 Pin: release a=gutsy&lt;br /&gt;
 Pin-Priority: -100&lt;br /&gt;
 &lt;br /&gt;
 Package: libc6 libc6-dev tzdata util-linux libgcc1 libstdc++6 monotone   &lt;br /&gt;
 Pin: release a=gutsy&lt;br /&gt;
 Pin-Priority: 800&lt;br /&gt;
 &lt;br /&gt;
 Package: libboost-*&lt;br /&gt;
 Pin: release a=gutsy&lt;br /&gt;
 Pin-Priority: 800&lt;br /&gt;
&lt;br /&gt;
After doing this install monotone in this way:&lt;br /&gt;
 apt-get -t gutsy install monotone.&lt;br /&gt;
That should install monotone 0.35 with updated (and working) boost libraries.&lt;br /&gt;
&lt;br /&gt;
== Add count ==&lt;br /&gt;
&lt;br /&gt;
Can the count of downloads be put on the page?&lt;br /&gt;
&lt;br /&gt;
== Fails on ncurses install in Fedora 7 with a &amp;quot;tic -x&amp;quot; message ==&lt;br /&gt;
Adjust the following command to your system, then run it:&lt;br /&gt;
 export LD_LIBRARY_PATH=/home/moko/build/tmp/work/x86_64-linux/ncurses-native-5.4-r8/ncurses-5.4/lib&lt;br /&gt;
Then start make again and it should pick up where it left off.&lt;br /&gt;
&lt;br /&gt;
You can get a list of potential paths to use with the following command from you main moko directory:&lt;br /&gt;
 find . | grep libncurses&lt;br /&gt;
&lt;br /&gt;
The basic problem is that it is linking against your main system libraries instead of the OpenEmbedded ones.&lt;br /&gt;
&lt;br /&gt;
There's probably a cleaner way of handling this - please update this entry if you know it.&lt;br /&gt;
&lt;br /&gt;
This has been fixed in Openembedded, see [http://bugs.openembedded.org/show_bug.cgi?id=2554 Openembedded Bug #2554] for further details.&lt;br /&gt;
&lt;br /&gt;
== uboot-gta01 fails to build ==&lt;br /&gt;
Changes in the GIT of U-Boot make the OpenMoko patches unapplyable. For the use of Revision ''cc3023b9f95d7ac959a764471a65001062aecf41'' and everything will be fine for now.&lt;br /&gt;
&lt;br /&gt;
== Perl fails to build ==&lt;br /&gt;
After following every bit of advice I can find to 'make clean' and nuke the perl build directories, every build comes up with:&lt;br /&gt;
&lt;br /&gt;
 | make[1]: Entering directory `/src/openmoko/build/tmp/work/i686-linux/perl-native-5.8.7-r3/perl-5.8.7'&lt;br /&gt;
 | make[1]: *** No rule to make target `&amp;lt;command-line&amp;gt;', needed by `miniperlmain.o'.  Stop.&lt;br /&gt;
 | make[1]: Leaving directory `/src/openmoko/build/tmp/work/i686-linux/perl-native-5.8.7-r3/perl-5.8.7'&lt;br /&gt;
 | FATAL: oe_runmake failed&lt;br /&gt;
 NOTE: Task failed: /src/openmoko/build/tmp/work/i686-linux/perl-native-5.8.7-r3/temp/log.do_compile.19531&lt;br /&gt;
 NOTE: package perl-native-5.8.7-r3: task do_compile: failed&lt;br /&gt;
&lt;br /&gt;
Solution turned out to be editing &lt;br /&gt;
/src/openmoko/build/tmp/work/i686-linux/perl-native-5.8.7-r3/perl-5.8.7/makedepend.SH and at line 169 change the regexp to eat references to &amp;quot;&amp;lt;command.line&amp;gt;&amp;quot; to catch what was leaking through.&lt;br /&gt;
&lt;br /&gt;
== Gettext fails to build ==&lt;br /&gt;
Gettext's build is broken unless you have emacs installed. Crazy though it seems. You will see an error like:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
| WARNING: Warnings can be ignored. :-)&lt;br /&gt;
| if test &amp;quot;no&amp;quot; != no; then \&lt;br /&gt;
|         set x; \&lt;br /&gt;
|         list='po-mode.el po-compat.el'; for p in $list; do \&lt;br /&gt;
|           if test -f &amp;quot;$p&amp;quot;; then d=; else d=&amp;quot;./&amp;quot;; fi; \&lt;br /&gt;
|           set x &amp;quot;$@&amp;quot; &amp;quot;$d$p&amp;quot;; shift; \&lt;br /&gt;
|         done; \&lt;br /&gt;
|         shift; \&lt;br /&gt;
|         EMACS=&amp;quot;no&amp;quot; /bin/bash ../../config/elisp-comp &amp;quot;$@&amp;quot; || exit 1; \&lt;br /&gt;
| if test &amp;quot;no&amp;quot; != no; then \&lt;br /&gt;
|         set x; \&lt;br /&gt;
|         list='po-mode.el po-compat.el'; for p in $list; do \&lt;br /&gt;
|           if test -f &amp;quot;$p&amp;quot;; then d=; else d=&amp;quot;./&amp;quot;; fi; \&lt;br /&gt;
|           set x &amp;quot;$@&amp;quot; &amp;quot;$d$p&amp;quot;; shift; \&lt;br /&gt;
|         done; \&lt;br /&gt;
|         shift; \&lt;br /&gt;
|         EMACS=&amp;quot;no&amp;quot; /bin/bash ../../config/elisp-comp &amp;quot;$@&amp;quot; || exit 1; \&lt;br /&gt;
|       else : ; fi&lt;br /&gt;
| mv: cannot move `elc-temp' to `elc-stamp': No such file or directory&lt;br /&gt;
| make[5]: Leaving directory `/home/raster/moko/build/tmp/work/i686-linux/gettext-native-0.14.1-r5/gettext-0.14.1/gettext-tools/misc'&lt;br /&gt;
| make[5]: *** [elc-stamp] Error 1&lt;br /&gt;
| make[5]: Leaving directory `/home/raster/moko/build/tmp/work/i686-linux/gettext-native-0.14.1-r5/gettext-0.14.1/gettext-tools/misc'&lt;br /&gt;
| make[4]: *** [po-mode.elc] Error 2&lt;br /&gt;
| make[4]: *** Waiting for unfinished jobs....&lt;br /&gt;
| make[4]: Leaving directory `/home/raster/moko/build/tmp/work/i686-linux/gettext-native-0.14.1-r5/gettext-0.14.1/gettext-tools/misc'&lt;br /&gt;
| make[3]: *** [all-recursive] Error 1&lt;br /&gt;
| make[3]: Leaving directory `/home/raster/moko/build/tmp/work/i686-linux/gettext-native-0.14.1-r5/gettext-0.14.1/gettext-tools'&lt;br /&gt;
| make[2]: *** [all] Error 2&lt;br /&gt;
| make[2]: Leaving directory `/home/raster/moko/build/tmp/work/i686-linux/gettext-native-0.14.1-r5/gettext-0.14.1/gettext-tools'&lt;br /&gt;
| make[1]: *** [all-recursive] Error 1&lt;br /&gt;
| make[1]: Leaving directory `/home/raster/moko/build/tmp/work/i686-linux/gettext-native-0.14.1-r5/gettext-0.14.1'&lt;br /&gt;
| FATAL: oe_runmake failed&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The solution is simple - install emacs (example below for debian/ubuntu) and try again:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
sudo apt-get install emacs&lt;br /&gt;
make clean-package-gettext-native-0.14.1-r5&lt;br /&gt;
make openmoko-devel-image                  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Fails compiling binutils-cross on Gentoo/AMD64 ==&lt;br /&gt;
&lt;br /&gt;
make setup works fine, but when running make openmoko-devel-image it fails with the following:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
| make[4]: Entering directory `/home/techiem2/Moko/build/tmp/work/armv4t-angstrom-linux-gnueabi/binutils-cross-2.18-r0/binutils-2.18/build.x86_64-linux.arm-angstrom-linux-gnueabi/libiberty/testsuite'&lt;br /&gt;
| make[4]: Nothing to be done for `install'.&lt;br /&gt;
| make[4]: Leaving directory `/home/techiem2/Moko/build/tmp/work/armv4t-angstrom-linux-gnueabi/binutils-cross-2.18-r0/binutils-2.18/build.x86_64-linux.arm-angstrom-linux-gnueabi/libiberty/testsuite'&lt;br /&gt;
| make[3]: Leaving directory `/home/techiem2/Moko/build/tmp/work/armv4t-angstrom-linux-gnueabi/binutils-cross-2.18-r0/binutils-2.18/build.x86_64-linux.arm-angstrom-linux-gnueabi/libiberty'&lt;br /&gt;
| make[2]: Nothing to be done for `install-target'.&lt;br /&gt;
| make[2]: Leaving directory `/home/techiem2/Moko/build/tmp/work/armv4t-angstrom-linux-gnueabi/binutils-cross-2.18-r0/binutils-2.18/build.x86_64-linux.arm-angstrom-linux-gnueabi'&lt;br /&gt;
| make[1]: Leaving directory `/home/techiem2/Moko/build/tmp/work/armv4t-angstrom-linux-gnueabi/binutils-cross-2.18-r0/binutils-2.18/build.x86_64-linux.arm-angstrom-linux-gnueabi'&lt;br /&gt;
| rmdir: /home/techiem2/Moko/build/tmp/cross//home/techiem2/Moko/build/tmp/cross/lib/gcc-lib: No such file or directory&lt;br /&gt;
| rmdir: /home/techiem2/Moko/build/tmp/cross//home/techiem2/Moko/build/tmp/cross/lib: No such file or directory&lt;br /&gt;
| rmdir: /home/techiem2/Moko/build/tmp/cross//home/techiem2/Moko/build/tmp/cross: No such file or directory&lt;br /&gt;
| mv: cannot stat `/home/techiem2/Moko/build/tmp/cross/lib/libiberty.a': No such file or directory&lt;br /&gt;
NOTE: Task failed: /home/techiem2/Moko/build/tmp/work/armv4t-angstrom-linux-gnueabi/binutils-cross-2.18-r0/temp/log.do_stage.9730&lt;br /&gt;
NOTE: package binutils-cross-2.18-r0: task do_populate_staging: failed&lt;br /&gt;
ERROR: TaskFailed event exception, aborting&lt;br /&gt;
NOTE: package binutils-cross-2.18: failed&lt;br /&gt;
ERROR: Build of /home/techiem2/Moko/openembedded/packages/binutils/binutils-cross_2.18.bb do_populate_staging failed&lt;br /&gt;
ERROR: Task 1641 (/home/techiem2/Moko/openembedded/packages/binutils/binutils-cross_2.18.bb, do_populate_staging) failed&lt;br /&gt;
NOTE: Tasks Summary: Attempted 107 tasks of which 107 didn't need to be rerun and 1 failed.&lt;br /&gt;
ERROR: '/home/techiem2/Moko/openembedded/packages/binutils/binutils-cross_2.18.bb' failed&lt;br /&gt;
make: *** [openmoko-devel-image] Error 1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:Qtopia_on_Neo1973</id>
		<title>Talk:Qtopia on Neo1973</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:Qtopia_on_Neo1973"/>
				<updated>2007-09-19T17:06:48Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: /* Dual Booting? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*How responsive is the Qtopia UI on the Neo? --[[User:Denis std|denis_std]] 13:12, 18 September 2007 (CEST)****&lt;br /&gt;
**From watching the videos Qtopia seems quite responsive. --[[User:Denis std|denis_std]] 16:42, 18 September 2007 (CEST)&lt;br /&gt;
***Confirmed: quite responsive in gta-01. [[User:Kresp0|kresp0]] 11:45, 19 September 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
== Where do I find / how do I install?? ==&lt;br /&gt;
&lt;br /&gt;
*Are calls/SMSs working?&lt;br /&gt;
**Yes, but you need to do &amp;quot;alsactl -f /etc/alsa/gsmhandset.state restore&amp;quot; to get audio. [[User:Kresp0|kresp0]] 11:45, 19 September 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
*How do you input characters other than letters?&lt;br /&gt;
**Do a quick flick up or down over the keyboard to access numbers/symbols/capitals.&lt;br /&gt;
&lt;br /&gt;
== Where can I find/install applications for Qtopia? ==&lt;br /&gt;
&lt;br /&gt;
== Dual Booting? ==&lt;br /&gt;
Being the geek I am, I just have to ask, will we be able to dual boot Qtopia and OpenMoko? :)  (feel free to move this if I'm asking in the wrong place) &lt;br /&gt;
&lt;br /&gt;
[[User:Techiem2|Techiem2]] 13:00, 19 September 2007 (EST)&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:Qtopia_on_Neo1973</id>
		<title>Talk:Qtopia on Neo1973</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:Qtopia_on_Neo1973"/>
				<updated>2007-09-19T17:06:34Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: /* Dual Booting? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*How responsive is the Qtopia UI on the Neo? --[[User:Denis std|denis_std]] 13:12, 18 September 2007 (CEST)****&lt;br /&gt;
**From watching the videos Qtopia seems quite responsive. --[[User:Denis std|denis_std]] 16:42, 18 September 2007 (CEST)&lt;br /&gt;
***Confirmed: quite responsive in gta-01. [[User:Kresp0|kresp0]] 11:45, 19 September 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
== Where do I find / how do I install?? ==&lt;br /&gt;
&lt;br /&gt;
*Are calls/SMSs working?&lt;br /&gt;
**Yes, but you need to do &amp;quot;alsactl -f /etc/alsa/gsmhandset.state restore&amp;quot; to get audio. [[User:Kresp0|kresp0]] 11:45, 19 September 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
*How do you input characters other than letters?&lt;br /&gt;
**Do a quick flick up or down over the keyboard to access numbers/symbols/capitals.&lt;br /&gt;
&lt;br /&gt;
== Where can I find/install applications for Qtopia? ==&lt;br /&gt;
&lt;br /&gt;
== Dual Booting? ==&lt;br /&gt;
Being the geek I am, I just have to ask, will we be able to dual boot Qtopia and OpenMoko? :)  (feel free to move this if I'm asking in the wrong place) &lt;br /&gt;
[[User:Techiem2|Techiem2]] 13:00, 19 September 2007 (EST)&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:Qtopia_on_Neo1973</id>
		<title>Talk:Qtopia on Neo1973</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:Qtopia_on_Neo1973"/>
				<updated>2007-09-19T17:06:15Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: /* Dual Booting? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*How responsive is the Qtopia UI on the Neo? --[[User:Denis std|denis_std]] 13:12, 18 September 2007 (CEST)****&lt;br /&gt;
**From watching the videos Qtopia seems quite responsive. --[[User:Denis std|denis_std]] 16:42, 18 September 2007 (CEST)&lt;br /&gt;
***Confirmed: quite responsive in gta-01. [[User:Kresp0|kresp0]] 11:45, 19 September 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
== Where do I find / how do I install?? ==&lt;br /&gt;
&lt;br /&gt;
*Are calls/SMSs working?&lt;br /&gt;
**Yes, but you need to do &amp;quot;alsactl -f /etc/alsa/gsmhandset.state restore&amp;quot; to get audio. [[User:Kresp0|kresp0]] 11:45, 19 September 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
*How do you input characters other than letters?&lt;br /&gt;
**Do a quick flick up or down over the keyboard to access numbers/symbols/capitals.&lt;br /&gt;
&lt;br /&gt;
== Where can I find/install applications for Qtopia? ==&lt;br /&gt;
&lt;br /&gt;
== Dual Booting? ==&lt;br /&gt;
Being the geek I am, I just have to ask, will we be able to dual boot Qtopia and OpenMoko? :)  (feel free to move this if I'm asking in the wrong place) [[User:Techiem2|Techiem2]] 13:00, 19 September 2007 (EST)&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:Qtopia_on_Neo1973</id>
		<title>Talk:Qtopia on Neo1973</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:Qtopia_on_Neo1973"/>
				<updated>2007-09-19T17:04:11Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*How responsive is the Qtopia UI on the Neo? --[[User:Denis std|denis_std]] 13:12, 18 September 2007 (CEST)****&lt;br /&gt;
**From watching the videos Qtopia seems quite responsive. --[[User:Denis std|denis_std]] 16:42, 18 September 2007 (CEST)&lt;br /&gt;
***Confirmed: quite responsive in gta-01. [[User:Kresp0|kresp0]] 11:45, 19 September 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
== Where do I find / how do I install?? ==&lt;br /&gt;
&lt;br /&gt;
*Are calls/SMSs working?&lt;br /&gt;
**Yes, but you need to do &amp;quot;alsactl -f /etc/alsa/gsmhandset.state restore&amp;quot; to get audio. [[User:Kresp0|kresp0]] 11:45, 19 September 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
*How do you input characters other than letters?&lt;br /&gt;
**Do a quick flick up or down over the keyboard to access numbers/symbols/capitals.&lt;br /&gt;
&lt;br /&gt;
== Where can I find/install applications for Qtopia? ==&lt;br /&gt;
&lt;br /&gt;
== Dual Booting? ==&lt;br /&gt;
Being the geek I am, I just have to ask, will we be able to dual boot Qtopia and OpenMoko? :) [[User:Techiem2|Techiem2]] 13:00, 19 September 2007 (EST)&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/User:Techiem2</id>
		<title>User:Techiem2</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/User:Techiem2"/>
				<updated>2007-09-14T20:44:08Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: /* About Me */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==About Me==&lt;br /&gt;
I live in DuBois, PA.&lt;br /&gt;
&lt;br /&gt;
I'm currently working part time as the Assistant to the CTO at [http://www.dbcollege.com DuBois Business College].&lt;br /&gt;
&lt;br /&gt;
I'm a Gentoo geek.&lt;br /&gt;
&lt;br /&gt;
Mark Montgomery II&lt;br /&gt;
&lt;br /&gt;
Web Site: http://www.techiem2.net&lt;br /&gt;
&lt;br /&gt;
Web Site at home: https://techiem2.no-ip.com&lt;br /&gt;
&lt;br /&gt;
TWiki at Web Site at home: https://techiem2.no-ip.com/twiki/bin/view&lt;br /&gt;
&lt;br /&gt;
Email: [mailto:techiem2@DONTSPAMHEREgmail.com techiem2@DONTSPAMHEREgmail.com]&lt;br /&gt;
&lt;br /&gt;
==My Portable Stuff==&lt;br /&gt;
*'''Work Laptop:'''     Compaq V5101US dual booting Gentoo and Windows XP (that I rarely need to use fortunately)&lt;br /&gt;
*'''Cell Phone:'''      Audiovox Snapper&lt;br /&gt;
*'''Cell Provider:'''   Virgin Mobile Prepaid ($5.30/month with taxes charged every 90 days, $.18/min - I don't use my phone much)&lt;br /&gt;
*'''Media Player:'''    Cowon iAudio X5 dual booting RockBox and original firmware (that I rarely use since RockBox is just plain awesome)&lt;br /&gt;
*'''GPS:'''             Garmin Etrex&lt;br /&gt;
*'''WiFi Scanner:'''    Zyxel AG-225H WiFi Scanner/USB Adapter (uses the zd1211 driver) - I also use this as my WNIC for my laptop most of the time since the internal antenna doesn't see the AP very reliably from my desk in the corner.&lt;br /&gt;
&lt;br /&gt;
==My Interest in OpenMoko/Neo1973==&lt;br /&gt;
====General====&lt;br /&gt;
I think FLOSS should be used wherever possible and I love the idea of a fully open phone.&lt;br /&gt;
&lt;br /&gt;
I don't appreciate companies that use FLOSS in their devices yet restrict the user from doing anything, thus showing a lack of respect for the community and philosophies of the software they are profiting from.&lt;br /&gt;
&lt;br /&gt;
====Web Device====&lt;br /&gt;
I have recently started looking into WiFi web devices, and the Neo1973 Phase2 should be perfect (assuming WiFi is fully up and running for it).&lt;br /&gt;
&lt;br /&gt;
====SIP Phone====&lt;br /&gt;
I want to use it as a WiFi SIP phone as soon as there's a client written for it (the idea of using it as a SIP handset for the computer is interesting to me as well).  :)&lt;br /&gt;
&lt;br /&gt;
Ideally it should be running a SIP client with SRTP/ZRTP capabilities for secure communications.&lt;br /&gt;
&lt;br /&gt;
====GPS====&lt;br /&gt;
Assuming a good interface is made for it, it should make a much nicer (not to mention just plain cooler) GPS device than my old Etrex.&lt;br /&gt;
&lt;br /&gt;
My ideal would be a program with multiple tabs/pages with varying info.&lt;br /&gt;
*Map/Driving directions page.&lt;br /&gt;
*GPS info page - current coordinates and elevation and such.&lt;br /&gt;
*Movement info page - current heading and speed and such.&lt;br /&gt;
*More?&lt;br /&gt;
Maybe configurable to be able to set how many pages and what is on each page?&lt;br /&gt;
&lt;br /&gt;
====Wireless Network Analysis====&lt;br /&gt;
Wardriving/Warwalking! (or just plain Wireless LAN mapping/troubleshooting in general)&lt;br /&gt;
&lt;br /&gt;
(Come on, admit that you've all been thinking the same thing!)&lt;br /&gt;
&lt;br /&gt;
Since it's running a good WiFi chipset and gpsd already, I'm assuming it would be trivial for someone in the know to port kismet to it.&lt;br /&gt;
&lt;br /&gt;
And of course make sure it works with gpsd and the GPS interface program.&lt;br /&gt;
&lt;br /&gt;
No more driving/walking around with a laptop and GPS for wardriving/warwalking or testing out your corporate WLAN - Just fire up your Neo1973 and go!&lt;br /&gt;
&lt;br /&gt;
====Cell Phone====&lt;br /&gt;
I don't know if I would use it as a cell phone or not.&lt;br /&gt;
&lt;br /&gt;
There's only one GSM provider in my area (Cellular One) who apparently is probably being acquired by AT&amp;amp;T.&lt;br /&gt;
&lt;br /&gt;
AT&amp;amp;T and T-Mobile both look like their networks cover here, but they don't offer service here (I wonder if that would change if the AT&amp;amp;T/Cellular One buyout goes through...).&lt;br /&gt;
&lt;br /&gt;
====Document Reader====&lt;br /&gt;
I would like to use it as a document reader as well.&lt;br /&gt;
&lt;br /&gt;
Primarily for PDF and TXT, but of course other formats (ODF?) would be great.&lt;br /&gt;
&lt;br /&gt;
====Media Player====&lt;br /&gt;
If the quality is good, I might consider using it as a media player (ogg of course!) if I can get a nice big card for it.&lt;br /&gt;
&lt;br /&gt;
My OGG collection is a bit under 4GB as I recall.&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Wishlist/Games</id>
		<title>Wishlist/Games</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Wishlist/Games"/>
				<updated>2007-09-14T18:35:26Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: /* Candidates for porting/cross compiling */  - Alphabetized and added TOME&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Wishlist}}&lt;br /&gt;
&lt;br /&gt;
=== Games on OpenMoko ===&lt;br /&gt;
&lt;br /&gt;
This is the page to centralize the suggestions for creating games on the OpenMoko device.&lt;br /&gt;
&lt;br /&gt;
===== Existing game concepts that could be realized =====&lt;br /&gt;
* Simple Flash games like [http://www.albinoblacksheep.com/flash/squares2.php  Squares2] are often very addicting and good for short playing sessions. Other examples: Bejewelled, Zoo Keeper, [http://novelconcepts.co.uk/FlashElementTD/ Flash Element TD ],  ... &lt;br /&gt;
* A classic shooter can work well with continous fire and touchscreen controls. An example is Kenta Cho's Java version of [http://www.asahi-net.or.jp/~cs8k-cyu/java/noiz2_e.html Noiz2]   &lt;br /&gt;
* Same is true for a 3D shooter with no/seldom used additional controls. For example a combat flying game like Hunt for the [http://www.smallrockets.com/pc/baron/ Red Baron]. You can control the speed with a slider, shoot rockets and drop bombs with special buttons but those are things you only need from time to time. Most of the time you are shooting continously and aiming which can be done in the corner of the touchscreen (so it doesn't obstruct your view). Use accelerators for steering?&lt;br /&gt;
* Osu! Tatakae! Ouendan/Elite Beat Agents - Rhythm-based touching of circles and paths on the screen is a great concept and shouldn't be that difficult to pull off if you leave out some of the great presentation.&lt;br /&gt;
* Pac Pix - The necessary shape-recognition would probably be difficult to manage with a small budget but the general idea is quite cool.&lt;br /&gt;
* Kirby Canvas Curse - Again, not easy to do with a small budget.&lt;br /&gt;
* Burning Sand/Falling Sand- already supported on a DS [http://siebn.de/]&lt;br /&gt;
* Breakout - all you need to do is move the paddle back and forth&lt;br /&gt;
* Pong - same as above&lt;br /&gt;
* [http://de.wikipedia.org/wiki/Bridge_Builder Bridge Builder] - setting up Architectures, with a limited Budget and see if it can withstand. Doesn't have to be limited on Bridges.&lt;br /&gt;
* Volfied - you cut pieces of the screen while dodging baddies and you win when you get to X%&lt;br /&gt;
&lt;br /&gt;
===== Candidates for porting/cross compiling =====&lt;br /&gt;
* [http://www.fade-team.com/acedior.htm Acedior] - A classic graphic adventure game.&lt;br /&gt;
* Checkers, Chess, Minesweeper (interesting touchscreen variation: [http://toyspring.com/3dm/ 3D Mines] by Toyspring, Solitaire, Mahjong, Connect Four, Tic-tac-toe, Black Jack&lt;br /&gt;
* Command &amp;amp; Conquer and Red Alert - [http://sourceforge.net/projects/freera/ FreeRA]&lt;br /&gt;
* Creating a Nethack port could be done. Tony said on the list: &amp;quot;I'm not entirely sure yet. I imagine I'll first do a text port with a &amp;quot;portal&amp;quot; view (in which you only see a part of the screen at a time), and a user-selected font size. Then I'd try a tiles-based port. It all depends on how readable the text is on the small screen.&amp;quot;&lt;br /&gt;
* [http://dosbox.sourceforge.net/ DOSBox] - would give the Opportunity to play dozens of DOS Games, like [http://www.abandonia.com/games/en/466/LandsofLore.htm Lands of Lore]&lt;br /&gt;
* [http://www.nongnu.org/enigma/ Enigma] A tilt maze-like puzzle game with 1000 levels (requires LUA).&lt;br /&gt;
* [http://www.frozen-bubble.org/ Frozen Bubble] &lt;br /&gt;
* [http://www.tucows.com/preview/9259 Gem Drop]&lt;br /&gt;
* GJeweled&lt;br /&gt;
* [http://www.aeonflame.com/ Gloop Zero] - A little like physics-based Lemmings. Get the liquid from one part of the level to another with tools like path-drawing, bombs, anti-gravity...&lt;br /&gt;
* [http://gnome-sudoku.sourceforge.net/ Gnome Sudoku]&lt;br /&gt;
* [http://web.mit.edu/xiphmont/Public/gPlanarity.html gPlanarity] would be a nice stylus game.&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Heroes_of_Might_and_Magic Heroes of Might and Magic] maybe can be port this [http://www.pocketheroes.net/ Pocket Heroes] for PocketPC&lt;br /&gt;
* [http://redshift.hu/ Legacy] (and successor The Quest) - Classic first person turn based RPG. Movement and menus can completely be controlled with the touchscreen.&lt;br /&gt;
* [http://www.ufoot.org/liquidwar Liquid War] Liquid War is a unique multiplayer wargame.&lt;br /&gt;
* [http://www.mame.net/ MAME] - Multiple Arcade Machine Emulator.  This versatile emulator turns a given platform into a powerful gaming system.  It has been ported to WinCE and many UNIX flavors as well.  It would be wonderul to have this on the OpenMoko.&lt;br /&gt;
* [http://www.mess.org/ MESS] - Multiple Emulator Super System. To emulate old computers like TI 99/4A, C64, ...&lt;br /&gt;
* Nethack, you could move just touching the direction you want to go.&lt;br /&gt;
* [http://www.openttd.com Open Transport Tycoon Deluxe]. Very possible, in fact the author of the Palm &amp;amp; GP2X ports of the game is already interested in OpenMoko.&lt;br /&gt;
* [http://treacle.hewwo.com/jazz/oj/ OpenJazz] Jazz Jackrabbit clone, needs original data. Would need some external controller or [http://wiki.openmoko.org/wiki/Hardware:Neo1973:Alternate_Cases:Digital_gaming that] alternate case&lt;br /&gt;
* Pipe Dreams&lt;br /&gt;
* [http://www.clickgamer.com/moreinfo.htm?pid=4188&amp;amp;section=PALM Plazmoids!] - A space game with screen-size levels. Move your ship around by touching where it should go. Collect the plazmoids (asteroids) by catching them in your elastic tractor beam (lots of simple physics again), shoot enemies with a button or double tap.&lt;br /&gt;
* Racing Games, like [http://xmoto.sourceforge.net/ XMoto], [http://vdrift.net/ VDrift], [http://ecksdee.sourceforge.net/ Ecksdee] or more likely [http://www.emhsoft.com/ttrooper/ Torus Trooper]&lt;br /&gt;
* [http://www.scummvm.org/ ScummVM] - Allows you to run certain classic graphical point-and-click adventure games '''Done - see [[Scummvm]]'''&lt;br /&gt;
* [http://www.chiark.greenend.org.uk/~sgtatham/puzzles/ Simon Tatham's Portable Puzzle Collection] is GTK based and includes, among others, both Sudoku and Planarity style games called Solo and Untangle.&lt;br /&gt;
* That addictive Photo game where you have to spot the 5 differences in x seconds&lt;br /&gt;
* [http://www.t-o-m-e.net TOME] - Roguelike set in Tolkein universe (2.x is current, 3.0 is in devel) that makes wide use of lua scripting, TOME and maybe some modules or other standalone versions such as [http://www.furytech.net/furyband/furyband.php Furyband] should be playable with a virtual keyboard on the go or with a real usb/bluetooth keyboard.&lt;br /&gt;
* [http://www.warfareincorporated.com/ Warfare Inc.] - A full real time strategy game is no problem with a touchscreen. In fact, it's a lot of fun!&lt;br /&gt;
* [http://www.widelands.org/ Widelands] A Settlers 2 clone&lt;br /&gt;
&lt;br /&gt;
===== General ideas about games on OpenMoko =====&lt;br /&gt;
* A easy network library for Bluetooth and/or GPRS connectivity.&lt;br /&gt;
* Every turn-based game should be possible with on screen buttons. &lt;br /&gt;
* Action games should need only one main control action most of the time such as moving somewhere on a 2D plane, aiming in 3D, drawing a path. Special items and actions are possible but should only be needed from time to time. Moving and aiming independently could be done by using the accelerometers for walking and the touchscreen for aiming.&lt;br /&gt;
* The finger getting into the way of seeing what's going on is a problem. Most games would probably need a stylus. Games with first person aiming can be controlled with a thumb in one corner of the screen, however you'd probably need one of them thumbstraps they make for the DS so that your thumb glides over the screen with ease.&lt;br /&gt;
* GPS can be used for location based games. An example is [http://codeninja.de/tron/ Tron]. Links to location-based/Alternate Reality games in these [http://del.icio.us/tallpaul/games+street del.icio.us pages]&lt;br /&gt;
* Bluetooth controllers should be supported. I am especially thinking about the Nintendo Wii remote.&lt;br /&gt;
* Virtually Real Games; the OpenMoko, with it's network connectivity and loads of basic features, could be used to invent/encourage a new(ish) style of game that mixes reality and tech. A basic version would be urban tag; you get close to someone and the buzzer beeps faster, say. There's so many more creative possibilities though.&lt;br /&gt;
&lt;br /&gt;
What is not possible without magic tricks / an external controller*:&lt;br /&gt;
* Classic first person shooters, action adventures, jump 'n' runs&lt;br /&gt;
* Emulators for classic systems&lt;br /&gt;
* Network lib for easy Bluetooth and/or GPRS connections.&lt;br /&gt;
* Bluetooth controllers should be supported. I am especially thinking about the Nintendo Wii remote.&lt;br /&gt;
* If version 2 of the hardware has an accelerometer a [http://www.rubylane.com/shops/molotov/item/SUN1769 tilt maze ball game] is possible.&lt;br /&gt;
&lt;br /&gt;
===== Accelerometer based games =====&lt;br /&gt;
* Sliding block games, to reassemble pictures.&lt;br /&gt;
* Rolling ball games, where you navigate a ball or balls through a maze.&lt;br /&gt;
** Multiplayer versions of the above - who can get the ball to the hole first?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Reallife RPG Firstpersonshooter&lt;br /&gt;
&lt;br /&gt;
**RL-RPG-FPS&lt;br /&gt;
**Neo as board computers&lt;br /&gt;
&lt;br /&gt;
**Bluetooth DEVICE with:&lt;br /&gt;
***3d Accerometer&lt;br /&gt;
***3d compass&lt;br /&gt;
*** various buttons to fire etc.&lt;br /&gt;
&lt;br /&gt;
**wlan servers as gamarea&lt;br /&gt;
*** with shot direction becomes via compass&lt;br /&gt;
*** own psoition via gps&lt;br /&gt;
*** kind of the weapon&lt;br /&gt;
*** over wlan transfer &lt;br /&gt;
*** and enemydevice announces hit&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt;Much of this could be accomplished with [http://wiki.openmoko.org/wiki/Wish_List#More.2FCustom_Input_Method_Widgets Custom Input Method Widgets] for the keyboard.&lt;br /&gt;
&lt;br /&gt;
[[Category:Games]]&lt;br /&gt;
[[Category:Accelerometer]]&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/User:Techiem2</id>
		<title>User:Techiem2</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/User:Techiem2"/>
				<updated>2007-09-09T07:06:53Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: /* SIP Phone */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==About Me==&lt;br /&gt;
I live in DuBois, PA.&lt;br /&gt;
&lt;br /&gt;
I'm currently working part time as the Assistant to the CTO at [http://www.dbcollege.com DuBois Business College].&lt;br /&gt;
&lt;br /&gt;
I'm a Gentoo geek.&lt;br /&gt;
&lt;br /&gt;
Mark Montgomery II&lt;br /&gt;
&lt;br /&gt;
Web Site: http://www.techiem2.net&lt;br /&gt;
&lt;br /&gt;
Email: [mailto:techiem2@DONTSPAMHEREgmail.com techiem2@DONTSPAMHEREgmail.com]&lt;br /&gt;
&lt;br /&gt;
==My Portable Stuff==&lt;br /&gt;
*'''Work Laptop:'''     Compaq V5101US dual booting Gentoo and Windows XP (that I rarely need to use fortunately)&lt;br /&gt;
*'''Cell Phone:'''      Audiovox Snapper&lt;br /&gt;
*'''Cell Provider:'''   Virgin Mobile Prepaid ($5.30/month with taxes charged every 90 days, $.18/min - I don't use my phone much)&lt;br /&gt;
*'''Media Player:'''    Cowon iAudio X5 dual booting RockBox and original firmware (that I rarely use since RockBox is just plain awesome)&lt;br /&gt;
*'''GPS:'''             Garmin Etrex&lt;br /&gt;
*'''WiFi Scanner:'''    Zyxel AG-225H WiFi Scanner/USB Adapter (uses the zd1211 driver) - I also use this as my WNIC for my laptop most of the time since the internal antenna doesn't see the AP very reliably from my desk in the corner.&lt;br /&gt;
&lt;br /&gt;
==My Interest in OpenMoko/Neo1973==&lt;br /&gt;
====General====&lt;br /&gt;
I think FLOSS should be used wherever possible and I love the idea of a fully open phone.&lt;br /&gt;
&lt;br /&gt;
I don't appreciate companies that use FLOSS in their devices yet restrict the user from doing anything, thus showing a lack of respect for the community and philosophies of the software they are profiting from.&lt;br /&gt;
&lt;br /&gt;
====Web Device====&lt;br /&gt;
I have recently started looking into WiFi web devices, and the Neo1973 Phase2 should be perfect (assuming WiFi is fully up and running for it).&lt;br /&gt;
&lt;br /&gt;
====SIP Phone====&lt;br /&gt;
I want to use it as a WiFi SIP phone as soon as there's a client written for it (the idea of using it as a SIP handset for the computer is interesting to me as well).  :)&lt;br /&gt;
&lt;br /&gt;
Ideally it should be running a SIP client with SRTP/ZRTP capabilities for secure communications.&lt;br /&gt;
&lt;br /&gt;
====GPS====&lt;br /&gt;
Assuming a good interface is made for it, it should make a much nicer (not to mention just plain cooler) GPS device than my old Etrex.&lt;br /&gt;
&lt;br /&gt;
My ideal would be a program with multiple tabs/pages with varying info.&lt;br /&gt;
*Map/Driving directions page.&lt;br /&gt;
*GPS info page - current coordinates and elevation and such.&lt;br /&gt;
*Movement info page - current heading and speed and such.&lt;br /&gt;
*More?&lt;br /&gt;
Maybe configurable to be able to set how many pages and what is on each page?&lt;br /&gt;
&lt;br /&gt;
====Wireless Network Analysis====&lt;br /&gt;
Wardriving/Warwalking! (or just plain Wireless LAN mapping/troubleshooting in general)&lt;br /&gt;
&lt;br /&gt;
(Come on, admit that you've all been thinking the same thing!)&lt;br /&gt;
&lt;br /&gt;
Since it's running a good WiFi chipset and gpsd already, I'm assuming it would be trivial for someone in the know to port kismet to it.&lt;br /&gt;
&lt;br /&gt;
And of course make sure it works with gpsd and the GPS interface program.&lt;br /&gt;
&lt;br /&gt;
No more driving/walking around with a laptop and GPS for wardriving/warwalking or testing out your corporate WLAN - Just fire up your Neo1973 and go!&lt;br /&gt;
&lt;br /&gt;
====Cell Phone====&lt;br /&gt;
I don't know if I would use it as a cell phone or not.&lt;br /&gt;
&lt;br /&gt;
There's only one GSM provider in my area (Cellular One) who apparently is probably being acquired by AT&amp;amp;T.&lt;br /&gt;
&lt;br /&gt;
AT&amp;amp;T and T-Mobile both look like their networks cover here, but they don't offer service here (I wonder if that would change if the AT&amp;amp;T/Cellular One buyout goes through...).&lt;br /&gt;
&lt;br /&gt;
====Document Reader====&lt;br /&gt;
I would like to use it as a document reader as well.&lt;br /&gt;
&lt;br /&gt;
Primarily for PDF and TXT, but of course other formats (ODF?) would be great.&lt;br /&gt;
&lt;br /&gt;
====Media Player====&lt;br /&gt;
If the quality is good, I might consider using it as a media player (ogg of course!) if I can get a nice big card for it.&lt;br /&gt;
&lt;br /&gt;
My OGG collection is a bit under 4GB as I recall.&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/User:Techiem2</id>
		<title>User:Techiem2</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/User:Techiem2"/>
				<updated>2007-09-09T07:00:14Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: /* About Me */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==About Me==&lt;br /&gt;
I live in DuBois, PA.&lt;br /&gt;
&lt;br /&gt;
I'm currently working part time as the Assistant to the CTO at [http://www.dbcollege.com DuBois Business College].&lt;br /&gt;
&lt;br /&gt;
I'm a Gentoo geek.&lt;br /&gt;
&lt;br /&gt;
Mark Montgomery II&lt;br /&gt;
&lt;br /&gt;
Web Site: http://www.techiem2.net&lt;br /&gt;
&lt;br /&gt;
Email: [mailto:techiem2@DONTSPAMHEREgmail.com techiem2@DONTSPAMHEREgmail.com]&lt;br /&gt;
&lt;br /&gt;
==My Portable Stuff==&lt;br /&gt;
*'''Work Laptop:'''     Compaq V5101US dual booting Gentoo and Windows XP (that I rarely need to use fortunately)&lt;br /&gt;
*'''Cell Phone:'''      Audiovox Snapper&lt;br /&gt;
*'''Cell Provider:'''   Virgin Mobile Prepaid ($5.30/month with taxes charged every 90 days, $.18/min - I don't use my phone much)&lt;br /&gt;
*'''Media Player:'''    Cowon iAudio X5 dual booting RockBox and original firmware (that I rarely use since RockBox is just plain awesome)&lt;br /&gt;
*'''GPS:'''             Garmin Etrex&lt;br /&gt;
*'''WiFi Scanner:'''    Zyxel AG-225H WiFi Scanner/USB Adapter (uses the zd1211 driver) - I also use this as my WNIC for my laptop most of the time since the internal antenna doesn't see the AP very reliably from my desk in the corner.&lt;br /&gt;
&lt;br /&gt;
==My Interest in OpenMoko/Neo1973==&lt;br /&gt;
====General====&lt;br /&gt;
I think FLOSS should be used wherever possible and I love the idea of a fully open phone.&lt;br /&gt;
&lt;br /&gt;
I don't appreciate companies that use FLOSS in their devices yet restrict the user from doing anything, thus showing a lack of respect for the community and philosophies of the software they are profiting from.&lt;br /&gt;
&lt;br /&gt;
====Web Device====&lt;br /&gt;
I have recently started looking into WiFi web devices, and the Neo1973 Phase2 should be perfect (assuming WiFi is fully up and running for it).&lt;br /&gt;
&lt;br /&gt;
====SIP Phone====&lt;br /&gt;
I want to use it as a WiFi SIP phone as soon as there's a client written for it (the idea of using it as a SIP handset for the computer is interesting to me as well).  :)&lt;br /&gt;
&lt;br /&gt;
====GPS====&lt;br /&gt;
Assuming a good interface is made for it, it should make a much nicer (not to mention just plain cooler) GPS device than my old Etrex.&lt;br /&gt;
&lt;br /&gt;
My ideal would be a program with multiple tabs/pages with varying info.&lt;br /&gt;
*Map/Driving directions page.&lt;br /&gt;
*GPS info page - current coordinates and elevation and such.&lt;br /&gt;
*Movement info page - current heading and speed and such.&lt;br /&gt;
*More?&lt;br /&gt;
Maybe configurable to be able to set how many pages and what is on each page?&lt;br /&gt;
&lt;br /&gt;
====Wireless Network Analysis====&lt;br /&gt;
Wardriving/Warwalking! (or just plain Wireless LAN mapping/troubleshooting in general)&lt;br /&gt;
&lt;br /&gt;
(Come on, admit that you've all been thinking the same thing!)&lt;br /&gt;
&lt;br /&gt;
Since it's running a good WiFi chipset and gpsd already, I'm assuming it would be trivial for someone in the know to port kismet to it.&lt;br /&gt;
&lt;br /&gt;
And of course make sure it works with gpsd and the GPS interface program.&lt;br /&gt;
&lt;br /&gt;
No more driving/walking around with a laptop and GPS for wardriving/warwalking or testing out your corporate WLAN - Just fire up your Neo1973 and go!&lt;br /&gt;
&lt;br /&gt;
====Cell Phone====&lt;br /&gt;
I don't know if I would use it as a cell phone or not.&lt;br /&gt;
&lt;br /&gt;
There's only one GSM provider in my area (Cellular One) who apparently is probably being acquired by AT&amp;amp;T.&lt;br /&gt;
&lt;br /&gt;
AT&amp;amp;T and T-Mobile both look like their networks cover here, but they don't offer service here (I wonder if that would change if the AT&amp;amp;T/Cellular One buyout goes through...).&lt;br /&gt;
&lt;br /&gt;
====Document Reader====&lt;br /&gt;
I would like to use it as a document reader as well.&lt;br /&gt;
&lt;br /&gt;
Primarily for PDF and TXT, but of course other formats (ODF?) would be great.&lt;br /&gt;
&lt;br /&gt;
====Media Player====&lt;br /&gt;
If the quality is good, I might consider using it as a media player (ogg of course!) if I can get a nice big card for it.&lt;br /&gt;
&lt;br /&gt;
My OGG collection is a bit under 4GB as I recall.&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Wish_List</id>
		<title>Wish List</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Wish_List"/>
				<updated>2007-09-02T14:32:34Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: /* VOIP */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article is a place to collect various thoughts about the future of the [[OpenMoko]] software platform.  Most wish list ideas have been linked from this page, but you may also wish to check all pages [http://wiki.openmoko.org/wiki/Category:Ideas that have a category of 'Ideas'].&lt;br /&gt;
&lt;br /&gt;
== Development ==&lt;br /&gt;
=== Painless SDK installation &amp;amp; Setup ===&lt;br /&gt;
Our goal should be a completely painless setup for somebody wanting to develop using [[OpenMoko]]&lt;br /&gt;
&lt;br /&gt;
* one command for installation (apt-get install openmoko)&lt;br /&gt;
* one command to start Xnest (openmoko-xephyr?)&lt;br /&gt;
* one command to start an i386 shell (openmoko-386-shell)&lt;br /&gt;
* one command to start an armel shell (openmoko-armel-shell)&lt;br /&gt;
&lt;br /&gt;
No extra configuration required.&lt;br /&gt;
&lt;br /&gt;
==== IDE Plugins ====&lt;br /&gt;
People like to see plugins for&lt;br /&gt;
* [http://anjuta.sourceforge.net Anjuta]&lt;br /&gt;
* [http://www.eclipse.org Eclipse]&lt;br /&gt;
* Game engine - Game Creation plugins&lt;br /&gt;
evaluate eclipse project [http://www.eclipse.org/dsdp/index.php Device Software Development Platform Project from eclipse] and subproject [http://www.eclipse.org/proposals/tml/ Tool for Mobile Linux]&lt;br /&gt;
* [http://www.kdevelop.org KDevelop]&lt;br /&gt;
* [http://developer.apple.com/tools/xcode/ XCode]&lt;br /&gt;
* [http://msdn.microsoft.com/vstudio/ Microsoft Visual Studio 2005]&lt;br /&gt;
&lt;br /&gt;
==== UI Designer ====&lt;br /&gt;
Glade code generation is deprecated, so we don't want to use it. The Gtk+ powers told me that the plan is to have gtk 2.12 (out early 2007) with support for GtkBuilder, a libglade derivative which breaks a bit the XML definition in order to support all the new widgets and properties; as soon as it's in the other ui builders will add support for this format. See also [http://bugzilla.gnome.org/show_bug.cgi?id=172535 the relevant bug entry]&lt;br /&gt;
* Possibly a Landscape (rotated) view for the screen (480x640 *or* 640x480)?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Built-in Scripting Language ====&lt;br /&gt;
{{Main|Wishlist:BuiltInScriptingLanguage}}&lt;br /&gt;
There was a [http://lists.openmoko.org/pipermail/community/2007-January/001909.html fruitful discussion about a built-in scripting language on the mailing list in January.]  Many people feel that it is very important for OpenMoko to choose a scripting language to ship as default in the standard OpenMoko firmware.  &lt;br /&gt;
&lt;br /&gt;
===Foreign Widget Set Bindings ===&lt;br /&gt;
==== Qt Integration ====&lt;br /&gt;
The Trolltech folks have a great widget library. I'd like to interface OpenMoko with Qt4, so that we can write Qt4 applications for the phone which don't look alienated.&lt;br /&gt;
&lt;br /&gt;
==== Maemo Integration ====&lt;br /&gt;
The Maemo folks have created a successful standard for Webpad applications. I'd like to have a set of MaemoMoko and MokoMaemo wrapper classes that allow me add support for running OpenMoko applications on Maemo and vice versa. Perhaps we can get help from the Nokia OSS folks for that.&lt;br /&gt;
&lt;br /&gt;
==== wxWidgets Integration ====&lt;br /&gt;
wxWidgets is a cross-platform application framework that's very popular (I'd say, #3 after Qt and Gtk+). On Linux, wxWidgets uses Gtk+ to implement the widgets. It shouldn't be hard to add support for the additional OpenMoko classes to wxWidgets hence supporting the native OpenMoko look and feel for wxWidgets applications.&lt;br /&gt;
&lt;br /&gt;
wxWidgets team wants OpenMoko classes too and we (wxWidgets) plan to include this project as one of our ideas for  [http://google-code-updates.blogspot.com/2007/02/speaking-of-summer.html GSoC 2007]&lt;br /&gt;
&lt;br /&gt;
==== SDL Integration ====&lt;br /&gt;
SDL is ''the'' game developer library. There are tons of SDL games out there. We should add OpenMoko support into SDL.&lt;br /&gt;
&lt;br /&gt;
=== Software: Language bindings ===&lt;br /&gt;
==== Python bindings ====&lt;br /&gt;
Python bindings seem to be a commonly requested feature.  &lt;br /&gt;
&lt;br /&gt;
[[User:Mickey]] says, &amp;quot;They are kind of usable on the [http://www.maemo.org Nokia 770], but it's at the lower end of being bearable. We should keep this in mind -- Gtk+ already comes with Python Bindings, so we &amp;quot;just&amp;quot; would need to wrap libmoko*. I would prefer to leave this to the community do though, since it doesn't make sense to start wrapping the API until we have a stable API -- and I can imagine it will take us a couple of months after going open until we can start with stabilizing the libmoko API.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==== C++ bindings ====&lt;br /&gt;
There is a whole skilled C++ community coming from the [http://qtopia.net Qtopia] and [http://opie.handhelds.org Opie] projects. If we would consider basing OpenMoko C++ Bindings on [http://www.gtkmm.org/ Gtkmm], then we could drag these guys in.&lt;br /&gt;
&lt;br /&gt;
==== Other bindings ====&lt;br /&gt;
* Perl&lt;br /&gt;
* Ruby&lt;br /&gt;
* C#&lt;br /&gt;
* I think you could skip a bunch of these by binding to Dbus; most languages already have Dbus bindings&lt;br /&gt;
&lt;br /&gt;
== Community Support ==&lt;br /&gt;
&lt;br /&gt;
=== [http://projects.openmoko.org projects.openmoko.org] ===&lt;br /&gt;
Infrastructure for developers with&lt;br /&gt;
* One bugzilla for all projects (makes moving bugs forth and backwards between projects ''very'' easy)&lt;br /&gt;
* One mailing list for project&lt;br /&gt;
&lt;br /&gt;
== Platform ==&lt;br /&gt;
=== Community Images ===&lt;br /&gt;
In the future there could be complete, unofficial &amp;quot;product images&amp;quot; that are created by the community, for example maybe one that incorporates only free software (in the GNU or OSI sense). Or images build with a particular niche market in mind -- a student for example.&lt;br /&gt;
&lt;br /&gt;
=== Wishlist voting ===&lt;br /&gt;
There could be a kind of voting system like they have at one of those big computer manufacturers homepage. Then the community could vote for the ideas that are most important to them. This would especially make sense for the hardware wishlist, because the hardware is still the part which can't be done by the community that easily.&lt;br /&gt;
&lt;br /&gt;
== Software: Additional features ==&lt;br /&gt;
===Calling===&lt;br /&gt;
&lt;br /&gt;
==== Mask ID based on dialed numbers ====&lt;br /&gt;
It would be nice if my number only showed up when I call people in my address book and was otherwise masked. The phone I have now either always shows my number or never or can be set on a per call basis. Having it done automatically based on the number dialed would be good.&lt;br /&gt;
&lt;br /&gt;
==== Use calling cards and similar routing techniques for lower-cost calling ====&lt;br /&gt;
Many people use calling cards, low-cost numbers and similar ways of reducing the costs of their calls.  It would be nice to have a single panel that would allow you to configure the rules of dialing a number taking in to account such systems.&lt;br /&gt;
&lt;br /&gt;
==== Outgoing black/white lists ====&lt;br /&gt;
The ability to allow or deny outoging calls to certain numbers can be useful in a number of situations (e.g. the holder of the 'phone is a child, untrusted, etc.).  This could be related to entries in the contact list, for example a user is only allowed to call people who are in their contact list.&lt;br /&gt;
&lt;br /&gt;
Also lists for incoming calls? Some friends always come through, unknown numbers get rejected automatically.&lt;br /&gt;
&lt;br /&gt;
==== Time-based blocking/unblocking of calls ====&lt;br /&gt;
Allowing or disallowing outgoing calls at certain times of the day could be useful, e.g. blocking a business phone from making calls outside of business hours.&lt;br /&gt;
&lt;br /&gt;
====Speaker-phone====&lt;br /&gt;
* A speaker-phone is more than simply connecting the speakers to GSM audio, it's also echo cancellation, and eliminating the feedback that will otherwise happen between the speakers and the mic. This software has not been written.&lt;br /&gt;
&lt;br /&gt;
====Advanced Airtime Tracking====&lt;br /&gt;
Many phone users have complicated plans, things like unlimited incoming, 100 anytime minutes, 1000 evening minutes, etc.  It would be nice if a user could input the various monthly airtime chunks their plan gives them, and then the phone could track how much is left in each chunk, i.e. How much anytime minutes are left this month? Optionally, the software could warn when someone is close to the monthly limit, to help avoid bigger bills.&lt;br /&gt;
&lt;br /&gt;
==== Anti-stutter software ====&lt;br /&gt;
Delayed Auditory Feedback (DAF) has shown to reduce stuttering in individuals by 70%. By using the microphone, it should be pretty simple to implement this on the OpenMoko. The DAF functionality should also be present during phone calls. See http://en.wikipedia.org/wiki/Delayed_auditory_feedback for more information.&lt;br /&gt;
&lt;br /&gt;
====Minimize In-Call mode (check address book while in call)====&lt;br /&gt;
On my locked phones I always find it annoying that one can not use other features while a call is in progress. In particular, I'd like to access the address book so that we can (1) give a caller someone else's phone number (or other info) and (2) lookup a phone number when using a calling card or some other proxy.&lt;br /&gt;
&lt;br /&gt;
Similar request when using the browser (lookup passwords, todo list, etc).&lt;br /&gt;
&lt;br /&gt;
====Hold Music (Ringback Tone)====&lt;br /&gt;
On some cellphone networks you can pay to change the normal [http://en.wikipedia.org/wiki/Ringback_tone Ringback Tone] that the caller hears when ringing, to a customised sound.&lt;br /&gt;
This can partially be implemented on the phone.&lt;br /&gt;
Issues are:&lt;br /&gt;
*In countries where callers pay, this will make you unpopular.&lt;br /&gt;
*In countries where the called party pays, it will use your minutes, or cost you money.&lt;br /&gt;
**A list of people to activate this function for would alleviate this.&lt;br /&gt;
*[[GPRS]] internet connection will stall while the hold music is being played.&lt;br /&gt;
*Extra battery used when playing music.&lt;br /&gt;
&lt;br /&gt;
Also see [[Answering Machine]].&lt;br /&gt;
&lt;br /&gt;
====Play sound clips over the air====&lt;br /&gt;
Dialer could have a tab with big buttons which, when push, send sound clips over GSM to the person on the other end of the call.  This feature is included in GizmoProject and is called sound blasts: http://support.gizmoproject.com/index.php?_a=knowledgebase&amp;amp;_j=questiondetails&amp;amp;_i=104&lt;br /&gt;
The buttons can have default sounds, but also have the ability to be customized.&lt;br /&gt;
&lt;br /&gt;
It would also be useful to loop a pre-recorded sound in the background so you can lie about where you are, and have the ability to simulate a really bad connection.&lt;br /&gt;
&lt;br /&gt;
==== Conversation Recorder ====&lt;br /&gt;
&lt;br /&gt;
An option to record phone conversations.  Would be helpful to have the device always recording for every call, with the sound data encoded to low quality Ogg Vorbis or SPEEX and stored in RAM.  At the end of the conversation the user would have the option to save to flash or discard the conversation.  This idea could also be applied to voicemail so you could save voicemails locally.&lt;br /&gt;
&lt;br /&gt;
====Unlicensed Mobile Access (UMA)====&lt;br /&gt;
T-Mobile recently rolled out a UMA service that hands off calls between the GSM network and WiFi access points. Only a few phones support it right now, this could be a rather unique feature if OpenMoko can implement it.&lt;br /&gt;
&lt;br /&gt;
==== Ignore-Call Button ====&lt;br /&gt;
{{Main|Wishlist:Ignore Call Button}}&lt;br /&gt;
&lt;br /&gt;
Shut up a ringing phone, without accepting or rejecting the call.&lt;br /&gt;
&lt;br /&gt;
Another alternative might be to use microphone to recognize when the user gives an audible &amp;quot;Shhh!&amp;quot; command.  This could prove difficult to determine with the simultaneous ringing, and possible in-pocket shuffling noises.&lt;br /&gt;
&lt;br /&gt;
==== Voice Mailbox ====&lt;br /&gt;
{{Main|Voice Mailbox}}&lt;br /&gt;
On-Phone voice mailbox that records calls on the phone and retrieves voice messages from your mobile service provider's voice mailbox and saves them locally.&lt;br /&gt;
Can act profile-dependent.&lt;br /&gt;
&lt;br /&gt;
==== Hold Button ====&lt;br /&gt;
&lt;br /&gt;
Similar to mute, but plays a sound file for the user on the other end while they wait.  The sound file could be chosen in some setup beforehand.&lt;br /&gt;
&lt;br /&gt;
==== Unanswered Call, Fast Call ====&lt;br /&gt;
&lt;br /&gt;
In Greece because of the various bill programs some people call a mobile phone, rings one time and then hangup.&lt;br /&gt;
Then the user of the mobile phone calls the other user(using the CallerID recognition).&lt;br /&gt;
&lt;br /&gt;
===Audio===&lt;br /&gt;
&lt;br /&gt;
==== Ambient Noise Detection ====&lt;br /&gt;
{{Main|Wishlist:Ambient Noise Detection}}&lt;br /&gt;
&lt;br /&gt;
Using the microphone to detect ambient noise the ringtone volume could be adjusted automatically.&lt;br /&gt;
&lt;br /&gt;
Detection of ambient noise could also be used to subtract the noise from the audio signal. However this approach is best performed using two Microphones, one for the voice and the other to detect the noise.&lt;br /&gt;
&lt;br /&gt;
==== Active noise control ====&lt;br /&gt;
&lt;br /&gt;
Using the microphone to do [http://en.wikipedia.org/wiki/Anti-noise active noise control] on media player playback or telephone calls. This should be an independent module/library which can be used by any application which might require this feature. also provide a way to easily alter the parameters of the active noise control.&lt;br /&gt;
&lt;br /&gt;
==== Hear Impaired Mode ====&lt;br /&gt;
&lt;br /&gt;
Hearing impaired people need louder speaker(but with less volume than hands free) and equalized sound, based on their hearing problems(example 20dB hearing loss from 2KHz to 4KHz).&lt;br /&gt;
Older people 50+ years old need slower speech rate(time stretch, cut the big speech gups) and cleaner voice.&lt;br /&gt;
&lt;br /&gt;
Please note also the Hearing Aid Compatibility regulations in the US. I have tried to summarize and clarify them [http://quux.wiki.zoho.com/WhereAreHACphones.html here]. I haven't yet discovered whether the FIC device is M or T rated. For many hearing impaired users, a tcoil coupling to their hearing aid (t3/T4 rating) would be preferable to manipulating sound output in other ways.&lt;br /&gt;
&lt;br /&gt;
==== Mute Button ====&lt;br /&gt;
&lt;br /&gt;
Button to temporarily disable microphone while talking for applications such as telephone, audio recording and (when available) movie recording.&lt;br /&gt;
&lt;br /&gt;
===Media===&lt;br /&gt;
====Music/Video Software====&lt;br /&gt;
A real good programming area for competition with the iPhone, a singular video/music player would be great for multimedia. A seamless integration system, a la iTunes and iPod, would be extremely popular. &lt;br /&gt;
&lt;br /&gt;
Using the Wi-Fi connectivity, a separate music program that supports wireless music sharing/ streaming (similar to what can be done when two computer running iTunes that are both on the same network) and that also supports internet radio.&lt;br /&gt;
&lt;br /&gt;
==== Reading Support ====&lt;br /&gt;
It would be really great to be able to read :&lt;br /&gt;
&lt;br /&gt;
*PDF&lt;br /&gt;
*Open Document files&lt;br /&gt;
*Text / RTF files&lt;br /&gt;
*MS Office files&lt;br /&gt;
*Aportis Doc (pdb)&lt;br /&gt;
*DjVu&lt;br /&gt;
*...&lt;br /&gt;
&lt;br /&gt;
In both landscape and portrait&lt;br /&gt;
&lt;br /&gt;
==== Wikipedia Mirror ====&lt;br /&gt;
{{Main|Wishlist:Wikipedia_Mirror}}&lt;br /&gt;
&lt;br /&gt;
==== Blog ScribblePad ====&lt;br /&gt;
&lt;br /&gt;
Draw an image (and maybe add some text), then post to your blog.&lt;br /&gt;
&lt;br /&gt;
==== E-Book Reader ====&lt;br /&gt;
* Neos brilliant ultra-sharp screen makes for a very good e-book reading device. All it takes is a good e-book reader with touch-screen page turning / scrolling. FBReader could probably be adjusted easily by an experienced GTK hacker. Note that e-book reading is different to pure text/pdf displaying as it requires at least auto-bookmarking of the last read page, proper text and image scaling and text formatting.&lt;br /&gt;
&lt;br /&gt;
==== Personal Wiki ====&lt;br /&gt;
{{Main|Wishlist:PersonalWiki}}&lt;br /&gt;
&lt;br /&gt;
Display the notes database as a Wiki.  Inspiration:  [http://www.acrocat.com/AcroWiki/default.asp?lang=en AcroWiki].&lt;br /&gt;
&lt;br /&gt;
[http://www.didiwiki.org/ Didiwiki]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Dictionary, thesaurus, translator and flashcards ====&lt;br /&gt;
Native lookup dictionary and thesaurus and foreign translation dictionaries, also with support for Asian languages. Optional custom configurable (though preconfigured) interface with on-line versions of dictionaries, thesaurus and translation services.&lt;br /&gt;
&lt;br /&gt;
Support for vocabulary training with flashcard system (also usable for other content than foreign language words!)&lt;br /&gt;
&lt;br /&gt;
===PIM (Personal Information Managment)===&lt;br /&gt;
====Context Sensitivity====&lt;br /&gt;
Any email or sms message or application that contains a telephone number should be click to dial, eg [http://123567890 1234567890]. Addresses link to mapping software too?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Address Book ====&lt;br /&gt;
&lt;br /&gt;
* Option to search not just the stored list of addresses, but one or more of the online phonebooks. Probably should be modular to make adding/changing phonebook sites easy.  Also allows for future integration with LDAP&lt;br /&gt;
servers or whatever.&lt;br /&gt;
* Also the possibility to search all info on the contact, like number, email, postal address and so on, in case someone asks you to identify a known number.&lt;br /&gt;
* Web-based map-lookup. 'How do I get there from here? (here = current GPS location)'  This could also be done&lt;br /&gt;
by integrating with whatever on-phone GPS mapping software the Neo ends up using.&lt;br /&gt;
* Random text input 'notes' about a contact&lt;br /&gt;
* Overall, this should more resemble a Palm-pilot's address-book than your average cellphone's&lt;br /&gt;
* Automated Daily backup of phone book to a website archive (similar to Verizon's Back-up Assistant&lt;br /&gt;
*Ability to integrate address book with web-based email (such as gmail) account, for those who use web based email as their primary account&lt;br /&gt;
* '''[[Wishlist:Tagging|Tagging]]''' Place tags for contacts. Enhance message application to send messages to all contacts tagged with ... . Enhance other application(GPS, ...) with tags.&lt;br /&gt;
* Support for:&lt;br /&gt;
**[http://en.wikipedia.org/wiki/SyncML SyncML]&lt;br /&gt;
**[http://en.wikipedia.org/wiki/Ldap LDAP] address book&lt;br /&gt;
**[http://en.wikipedia.org/wiki/LDIF LDIF], [http://en.wikipedia.org/wiki/Xml XML] and [http://en.wikipedia.org/wiki/Comma-separated_values CSV] export and import (when possible).&lt;br /&gt;
*Store Bluetooth IDs of friends and notify (configurable only on this device or on both devices) when a one of these Bluetooth ID has been detected (this is more a separate application but has requirements on the address book. Should also be able to create an address book entry from a Bluetooth ID. Could be used as a nice tool to detect people who you're avoiding.&lt;br /&gt;
&lt;br /&gt;
==== Database/List Display/Edit ====&lt;br /&gt;
{{Main|Wishlist:PilotDB}}&lt;br /&gt;
&lt;br /&gt;
One of the most useful apps on my Palm Pilot for me is [http://pilot-db.sourceforge.net/ pilot-db].  It's GPL'd.&lt;br /&gt;
&lt;br /&gt;
==== Joe's Goals ====&lt;br /&gt;
&lt;br /&gt;
It'd be nice to have something like [http://www.joesgoals.com Joe's Goals] always available, like my phone is, even when I'm disconnected from the net.&lt;br /&gt;
&lt;br /&gt;
==== Workout ====&lt;br /&gt;
&lt;br /&gt;
Use your phone instead of your notebook while at the gym, and get pretty graphs to admire after you're done.&lt;br /&gt;
&lt;br /&gt;
==== Shopping List ====&lt;br /&gt;
keep Track of Prices in different shops and the products you have/don't have. Ideally using a barcode reader and gps.&lt;br /&gt;
If it was made aware of recipes it could even tell you what to buy without entering a shoppinglist manually.&lt;br /&gt;
&lt;br /&gt;
==== Fuel Log ====&lt;br /&gt;
File data about fueling your car (date/time, liters, price, mileage, ...) and display some information (costs per month, average consumption, ...).&lt;br /&gt;
Advanced features could include:&lt;br /&gt;
* Automatically storing the GPS coordinates of the place where the car has been fueled (can be deactivated)&lt;br /&gt;
* Sending the data to a central server which collects the information&lt;br /&gt;
* Let the OpenMoko receive fuel logs per SMS (e.g. if my wife with a non-openmoko mobile fuels the car and wants to file the data using her mobile phone)&lt;br /&gt;
* Let the OpenMoko device act as SMS gateway for non-openmoko devices to easily send the data to the central server&lt;br /&gt;
* Also support for air log for divers. Not that you will take this device under water but for the crew at the surface.&lt;br /&gt;
&lt;br /&gt;
==== Keep in touch reminder ====&lt;br /&gt;
A background application which keeps track of your friends and reminds you when you have not talked, SMS, IM or mailed a person for more than # days.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Menstruation period timer ====&lt;br /&gt;
Fill in statistics and compute probabilities for menstruation, fertility, mood.&lt;br /&gt;
See http://www.getjar.com/products/48/MyGirls&lt;br /&gt;
&lt;br /&gt;
==== Tagging ====&lt;br /&gt;
{{Main|Wishlist:Tagging}}&lt;br /&gt;
Tags can be used by various applications. Requirement is interoperability for further enhancement.&lt;br /&gt;
Tags should be applied to calendar events, mail/sms, calls, places(GPS) and files.&lt;br /&gt;
&lt;br /&gt;
==== Context based TO-DO list ====&lt;br /&gt;
{{Main|Wishlist:context based to-do list}}&lt;br /&gt;
&lt;br /&gt;
If I arrive home and there are &amp;quot;@home&amp;quot; things in the to-do list, the Context based to-do list reminds me of that.&lt;br /&gt;
&lt;br /&gt;
==== Exchange Integration ====&lt;br /&gt;
&lt;br /&gt;
Once there is good TCP/IP connectivity on this phone, integration with corporate email/calendar/to do/etc servers would be a big advantage... near-real-time automatic email downloads and automatic bi-directional syncing are productivity boosters that you have to experience to appreciate. It turns your phone from a 'nice gadget to fiddle with' to a natural-feeling extension of your day-to-day life.&lt;br /&gt;
&lt;br /&gt;
* Is the time right to name names ? Add as your liking...&lt;br /&gt;
** Plugin/integration to &amp;amp; from Kontact&lt;br /&gt;
** Same with Evolution - Thunderbird - Seamonkey&lt;br /&gt;
** ?? Google Calendars ?? (this one is tough)&lt;br /&gt;
** Ms Exchange&lt;br /&gt;
&lt;br /&gt;
==== An electronic wallet ====&lt;br /&gt;
&lt;br /&gt;
A database which stores securely PIN codes, login data, bank and email accounts, membership informations, and other valuable and private data. Entries can be ordered in a folder-like manner. Access to the database is given by a master password. The database as well as the master password are stored with strong encryption. For security reasons, the program asks again for entry of the master password after a certain period of inactivity. The database can be synchronized with a PC application (ideally written in Java for cross platform compatibility).&lt;br /&gt;
&lt;br /&gt;
Examples: KWallet [http://docs.kde.org/stable/en/kdeutils/kwallet/index.html], Viskeeper [http://www.sfr-software.de/cms/EN/pocketpc/viskeeperpro/index.html], KeePass [http://keepass.info/]&lt;br /&gt;
&lt;br /&gt;
==== Easy business card sharing for a small group (in the same room) over bluetooth or WIFI ====&lt;br /&gt;
&lt;br /&gt;
Six Neo1973 owners are having a chat in a cafe.    They agree to split but meet later.     They want to exchange their numbers with each other before they go....     The normal way to do this is for a rather longwinded repeating of numbers to each other, or half the people manually inputting numbers before phoning/texting the other half to complete the process.    All in all its a fair number of button presses to get it sorted.&lt;br /&gt;
&lt;br /&gt;
Instead the NEO could have a small app where the phones link up in a small peer to peer Bluetooth network and share automatically with one person initiating a request and the other detected NEOS agreeing/acknowledging the share.   The initiating NEO would then sync the mini-group automatically by interrogating each phone and then sending the table of results.     The NEOs would have to be clever about checking for duplicates in the address book and offering a choice to the user if there are any conflicts.&lt;br /&gt;
&lt;br /&gt;
PROS: &lt;br /&gt;
*genuine saving in time for social and business situations&lt;br /&gt;
&lt;br /&gt;
CONS: &lt;br /&gt;
*I am sure there are some security hassles to be pondered....&lt;br /&gt;
*not going to be used every day... definitely not an immediate priority.....&lt;br /&gt;
*only at geek conferences will all have a neo....&lt;br /&gt;
&lt;br /&gt;
===Profiles===&lt;br /&gt;
{{Main|Wishlist:Profiles}}&lt;br /&gt;
&lt;br /&gt;
The Wishlist:Profiles page documents many possible profiles - ways to configure the phone. Including ways to respond to calls, wifi and GPS events.&lt;br /&gt;
And how to automatically switch between them.&lt;br /&gt;
&lt;br /&gt;
===Text Messaging===&lt;br /&gt;
For '''Text Input related ideas''' see [[Wishlist:Text_Input]]. Bear in mind that T9 can not be included&lt;br /&gt;
For current development status of the messaging-app see: [[Messages]].&lt;br /&gt;
&lt;br /&gt;
There are many useful options that now can be used to full capacity:&lt;br /&gt;
* '''Acknowledge/status SMS'''&lt;br /&gt;
In GSM networks so-called acknowledge-SMS are sent back to the SMS's dispatcher in order to indicate that the primal sms was received (as message delivery is only best effort and is not guaranteed). So in the SMS dialog there could be equal sized buttons with captions as 'send only', 'send and receive delivery status message' and 'send and notify (e.g. ring) when delivery succeeded'.&lt;br /&gt;
** '''Special handling of status-SMS''' &lt;br /&gt;
Related to the previous entry, these acknowledgment-sms' should be handled in a different way than normal SMS'. Most Motorola do this, while Samsung SGH series don't &amp;amp; clog the inbox, warn of a &amp;quot;new&amp;quot; message upon Status notification: Delivery Status Messages should be stored in a separate menu so they don't bloat the received-folder and you are able to quickly review the status of the messages you had sent.&lt;br /&gt;
* '''SMS at time/date''' You could be able to set up messages that are sent at a certain time/date&lt;br /&gt;
* '''Binary SMS''' Send binary SMS. Could be used to feign WAP pushes. [http://en.wikipedia.org/wiki/Multimedia_Messaging_Service] See: &lt;br /&gt;
** Resource for SMS encoding: [http://web.archive.org/web/20021016104345/www.dreamfabric.com/sms/] [http://web.archive.org/web/20060411222332/] [http://home.student.utwente.nl/s.p.ekkebus/portfolio/resource/sms_pdu.html] [http://www.ihub.com/Binary%20Messages.htm]&lt;br /&gt;
** [http://www.gammu.org www.gammu.org] - you can use Gammu/Gammu+ source for this software and/or understanding various SMS formats including EMS, WAP, Nokia Smart Messaging, Siemens &amp;amp; Alcatel encoding ([[User:Marcin|I could]] eventually help)&lt;br /&gt;
** Resource for SMS encoding (German): http://de.wikipedia.org/wiki/SMS-Kodierung&lt;br /&gt;
** The infamous pocketpc-attack: http://www.mulliner.org/pocketpc/&lt;br /&gt;
* '''Profile-override-SMS''' SMS that start with a certain code word override the silent profile and have the phone ring. So someone could alert you in case of some emergency.&lt;br /&gt;
* '''Codeword-SMS''' An expansion of the above: check for code words and allow selectable tones for matches. E.g. &amp;quot;Server Down!&amp;quot; has a loud klaxon, &amp;quot;Disk Warning&amp;quot; has a quiet chirp.&lt;br /&gt;
* '''(De-)Abreviation-script''' Implement a script that de-abbreviates: &amp;quot;hi m8 u k?-sry i 4gt 2 cal u lst nyt-y dnt we go c film 2moz&amp;quot; becomes &amp;quot;Hi mate. Are you okay? I am sorry that I forgot to call you last night. Why don't we go and see a film tomorrow?&amp;quot; (taken from: [http://en.wikipedia.org/wiki/SMS_language])&lt;br /&gt;
** Implement a script that abbreviates :-)&lt;br /&gt;
* '''Anti-Spam''' ...feature for SMS. May be it's possible to port some Bayesian based application like bogofilter.&lt;br /&gt;
* '''Rule based authorizations''' ...for received messages. For example, delete messages from one source between 9h00 and 18h00 (workday) allow them otherwise (to get alerting messages).&lt;br /&gt;
* '''Enable chat-like SMS-viewing''' SMS-Email-like: retain SMS app, but store 'conversations' rather than pile-up. Group/archive conversations by Caller Group (Work / Friends / Home / any user-defined Caller Group). Show appropriate icon from either Caller Group or Caller ID at the source of conversations panel&lt;br /&gt;
* '''Searching''' allow full-text search or string search.&lt;br /&gt;
* '''Massive SMS Deletion''' based on Conversation, author, before-date-xx.xx.xxxx, caller group, [[Wishlist:Tagging|tags]]...&lt;br /&gt;
* '''Call Back''' Prompt 'Call Back' alongside other first-line options (Delete, Save number,.. this kind of options) that appear when reading an SMS.&lt;br /&gt;
* '''Non-destructive deletion''', deleted messages goes to trash, and are recoverable.&lt;br /&gt;
* '''SMS-EMail-Gateway'''&lt;br /&gt;
SMS comes in, gets forward to your inbox, like any other piece of mail.  Appropriate alerts and etc occur - again, just like for email. A simple SMTPD running on 127.0.0.1 that is hooked to an email-to-SMS translator that will send email addressed to 'SMS@localhost' (or whatever special address) out via SMS&lt;br /&gt;
* '''SMS-filter chain''', for stuff like Codeword-SMS above, Theft-mode activation, auto-response (reply with gsm-position for &amp;quot;Where are you?&amp;quot;), auto-substitution (like replace $POS with gsm-position in outgoing SMS).&lt;br /&gt;
&lt;br /&gt;
=== Text input ===&lt;br /&gt;
{{Main|Wishlist:Text Input}}&lt;br /&gt;
There are many good suggestions for text input on the specific text input ideas page.&lt;br /&gt;
&lt;br /&gt;
=== More/Custom Input Method Widgets ===&lt;br /&gt;
{{Main|Wishlist:More/Custom_Input_Method_Widgets}}&lt;br /&gt;
Additional and customizable Input Method Widgets (similar to virtual keyboard).  &lt;br /&gt;
This could add soft-key functionality to games or other applications such as:&lt;br /&gt;
*D-Pads&lt;br /&gt;
*buttons&lt;br /&gt;
*virtual trackballs&lt;br /&gt;
*...&lt;br /&gt;
Personalized layouts could be associated with each application.&lt;br /&gt;
&lt;br /&gt;
=== Games ===&lt;br /&gt;
{{Main|Wishlist:Games}}&lt;br /&gt;
&lt;br /&gt;
=== Mesh Networking ===&lt;br /&gt;
{{Main|Wishlist:Mesh Networking}}&lt;br /&gt;
&lt;br /&gt;
=== Printing Support ===&lt;br /&gt;
It would be really neat to be able to print over either bluetooth or USB. I can imagine wanting to print:&lt;br /&gt;
&lt;br /&gt;
* Notes&lt;br /&gt;
* Maps&lt;br /&gt;
* Email&lt;br /&gt;
* Calendars&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
Cups contains a bluetooth printing backend, so (in theory) once you have your data in postscript format, you could hand it to cups and it'll do the rest. In practice, it depends on&lt;br /&gt;
&lt;br /&gt;
# GTK+'s printing support&lt;br /&gt;
# Making cups run on a really small system&lt;br /&gt;
&lt;br /&gt;
{{note| GTK+'s printing support seems to be very immature in 2.6 (which we need to use for some time). Gtk+ 2.10 contains much better printing support -- once we can use this, it should be more easy.}}&lt;br /&gt;
&lt;br /&gt;
There's always the possibility to render postscript ourselves, but this is not a piece of cake -- in general, printing is much harder than one would imagine.&lt;br /&gt;
&lt;br /&gt;
Further details:&lt;br /&gt;
* [http://groups.osdl.org/apps/group_public/download.php/2205/print-summit-gtk.pdf#search=%22gtk%2B%20printing%20API%22 osdl.org]&lt;br /&gt;
* [http://www.gnome.org/~alexl/presentations/guadec2006-printing.pdf#search=%22gtk%2B%20printing%20API%22 gnome.org]&lt;br /&gt;
* [http://www.j5live.com/?p=204 j5live.com]&lt;br /&gt;
&lt;br /&gt;
===Misc Software===&lt;br /&gt;
====Clocks/timers/Activity meters====&lt;br /&gt;
===== Sport tracker =====&lt;br /&gt;
{{Main|Wishlist:Sport_tracker}}&lt;br /&gt;
Sport tracker can be used to measure the distance/velocity from point A to point B (or it could have several intermediate stopping points) using GPS.  This would be extremely useful for running, biking, hiking, etc.&lt;br /&gt;
&lt;br /&gt;
===== Standby clock =====&lt;br /&gt;
{{Main|Wishlist:Standby_clock}}&lt;br /&gt;
A quick way to see what time it is.&lt;br /&gt;
&lt;br /&gt;
===== Egg Timer =====&lt;br /&gt;
{{Main|Wishlist:EggTimer}}&lt;br /&gt;
&lt;br /&gt;
Very simple (one click) count up / count down timers are very useful.&lt;br /&gt;
&lt;br /&gt;
===== Cycle Computer =====&lt;br /&gt;
As already mentioned by [http://wiki.openmoko.org/wiki/User_talk:Technil Technil], a cycle computer could be created using gps. The sensor at the bike's wheel could transmit data via bluetooth or some cable that would be attached to an openmoko device. In order to save power, one could switch off the gps and only use the bike's sensor.&lt;br /&gt;
* Just another idea that came to me: Why don't have sensor's transmit cable plug into the headphone/microphone plug? A tool reads the signals created by the induction of the passing magnet, then gives them to the cycle-computer-app :) --[[User:Minime|Minime]] 19:50, 12 April 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
===== NTP Server =====&lt;br /&gt;
&lt;br /&gt;
Run the [http://www.ntp.org NTP] daemon using the GPS chipset as a reference clock, so that the Neo would have a very accurate time-of-day clock and would be able to serve time to other networked devices. &lt;br /&gt;
&lt;br /&gt;
I don't know what it would take to implement this. Items to consider would be the availability of a 1 pulse-per-second hardware signal, the accuracy of timestamps delivered in NMEA messags, etc. Dealing with power-management issues (such as the device going to sleep) would also be challenging.&lt;br /&gt;
&lt;br /&gt;
Very simple (one click) count up / count down timers are very useful.&lt;br /&gt;
&lt;br /&gt;
===== Reality check reminder =====&lt;br /&gt;
{{Main|Wishlist:Reality check reminder}}&lt;br /&gt;
&lt;br /&gt;
A tool to [http://www.phrack.org/issues.html?issue=64&amp;amp;id=16 hack your brain]&lt;br /&gt;
&lt;br /&gt;
====Calculators====&lt;br /&gt;
===== A Universal Unit Converter Tool =====&lt;br /&gt;
&lt;br /&gt;
One never knows when one may have to convert acre-feet into deciliters.  A unit conversion tool makes all engineers and engineer wannabes much happier. And not only the engineers. &lt;br /&gt;
&lt;br /&gt;
Ideas what kind of conversions a converter tool could do:&lt;br /&gt;
&lt;br /&gt;
Lenght&lt;br /&gt;
- Acceleration&lt;br /&gt;
- Angle&lt;br /&gt;
- Angular Velocity&lt;br /&gt;
- Area&lt;br /&gt;
- Capacitance&lt;br /&gt;
- Radioactivity&lt;br /&gt;
- Currency &lt;br /&gt;
- Charge&lt;br /&gt;
- Computer Memory&lt;br /&gt;
- Conductance&lt;br /&gt;
- Density&lt;br /&gt;
- Energy&lt;br /&gt;
- Illumination&lt;br /&gt;
- Power&lt;br /&gt;
- Force &lt;br /&gt;
- Flow&lt;br /&gt;
- Pressure&lt;br /&gt;
- Speed&lt;br /&gt;
- Temperature&lt;br /&gt;
- Time&lt;br /&gt;
- Torque&lt;br /&gt;
- Viscosity&lt;br /&gt;
- Volume&lt;br /&gt;
- Weight&lt;br /&gt;
&lt;br /&gt;
Roman Numerals&lt;br /&gt;
- ASCII, Hex&lt;br /&gt;
- Cooking&lt;br /&gt;
- BMI&lt;br /&gt;
- Clothing Sizes&lt;br /&gt;
&lt;br /&gt;
Physical and Mathematical Constants&lt;br /&gt;
GPS conversions &lt;br /&gt;
&lt;br /&gt;
- link to or integration of a scientific calculator&lt;br /&gt;
- link to or integration of a simple calculator&lt;br /&gt;
&lt;br /&gt;
A good basis for such a converter tool could be the Palm program &amp;quot;units&amp;quot; from &lt;br /&gt;
François Pessaux [http://francois.pessaux.neuf.fr/files/units1_11.tgz]. The GPL'd program comes with full documentation.&lt;br /&gt;
&lt;br /&gt;
For GPS conversions see gpsbabel [http://www.gpsbabel.org]&lt;br /&gt;
&lt;br /&gt;
===== An Postfix Notation (RPN) calculator =====&lt;br /&gt;
&lt;br /&gt;
Many engineers, computer scientists and other groups who have grown to enjoy the simplicity and ease of an postfix notation calculator will miss them when they give up other platforms to move to OpenMoko.  A RPN calculator will increase adoption by providing one of the tools that other platforms have provided for many years.&lt;br /&gt;
&lt;br /&gt;
==== Web-browser Plugins ====&lt;br /&gt;
&lt;br /&gt;
* While an extensive browser plugin system would be costly to the efficacy of the platform three particular browser plugins as poplularized by Mozilla firefox should be adapted to the web-browser, namely: [http://noscript.net/ noscript], [http://adblockplus.org/en/ adblock plus], [http://www.greasespot.net/ greasemonkey] and [http://www.foxmarks.com/ foxmarks].&lt;br /&gt;
* Careful use of these can dramatically reduce bandwidth, page space, and rendering costs even if it comes at the risk of some hard drive space in the form of block lists.&lt;br /&gt;
* Greasemonkey, in particular, gives users control to set up scripts for commonly traveled pages to further reduce unnecessary or unwanted content.&lt;br /&gt;
&lt;br /&gt;
==== Windows CE Emulator ====&lt;br /&gt;
&lt;br /&gt;
On ARM machine, Windows CE API emulator, like Wine on x86 machines. &lt;br /&gt;
&lt;br /&gt;
==== PalmOS Emulator ====&lt;br /&gt;
&lt;br /&gt;
The Access group is probably coming out with their Linux platform any time soon. One of the components is a PalmOS emulator which I'd like to see working on OpenMoko as well. There are literally thousands of PalmOS apps.&lt;br /&gt;
&lt;br /&gt;
I'd like to see a Windows CE Emulator with active sync support.&lt;br /&gt;
&lt;br /&gt;
==== TV Guide/Remote Control ====&lt;br /&gt;
&lt;br /&gt;
Use your Phone to easily program your VCR using EPGs.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Alcohol meter ====&lt;br /&gt;
Give the phone some info about your body (gender, size, weigth) and when/what you drink and it will compute an approximation of the amount of alcohol in your blood. Updates automatically, could have an alarm, when you are probably sober again.&lt;br /&gt;
See, for example (German text) http://www.misterio-online.de/promille.htm&lt;br /&gt;
&lt;br /&gt;
==== Interaction with LEGO Mindstorm ====&lt;br /&gt;
With the accelerometers, GPS and good CPU, the phone could be used to control/serve as input with robots built with LEGO Mindstorm, which can be accessed by USB and Bluetooth.&lt;br /&gt;
&lt;br /&gt;
==== Flashlight ====&lt;br /&gt;
Simple finger application that makes every pixel on the entire screen white to be as bright as possible until you tap the screen again to turn it off.  This way, you can use your Neo as a (short term) flashlight!&lt;br /&gt;
&lt;br /&gt;
=== Accessibility ===&lt;br /&gt;
Accessibility features for the visually impaired.&lt;br /&gt;
* High Contrast Themes.&lt;br /&gt;
* Screen Magnifier. Features should include automatic cursor tracking when navigating menus and entereing text and provide manual controls to zoom in on other section of the screen.&lt;br /&gt;
* Text to speech. The software should read out menu item ,contact lists ,text messages etc. Would also be useful for operating the phone while driving.&lt;br /&gt;
&lt;br /&gt;
==== VOIP ====&lt;br /&gt;
Ability to use the phone for VOIP over wi-fi such as Vonage. They currently have 2 different pieces of software for pc . Basically software creates a mac address which is paired with your Vonage account. Skype could also be implemented but I prefer Vonage. Only available when connected to wi-fi with a good connection. Phone treats calls the same as a cellular call, could keep a separate log of minutes, ability to record conversations, etc. Option to use VOIP if connection is available automaticly or manually. Small icon to show when call is using VOIP.&lt;br /&gt;
* A standard SIP client would probably fit better into the &amp;quot;free and open&amp;quot; philosophy.&lt;br /&gt;
* Ideally a SIP client that includes ZRTP/SRTP for secure communications.&lt;br /&gt;
&lt;br /&gt;
==== Power Meter ====&lt;br /&gt;
If the power bar is clicked on it will show time left on charge and if charging it will show time until full.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Accelerometer wishes ===&lt;br /&gt;
==== Flick interface ====&lt;br /&gt;
Ability to &amp;quot;flick&amp;quot; the phone for page up/down by simply and rapidly tilting the phone back-and-forth for up and forth-and-back for down. The same motion can be implemented for sideways motion. This will take advantage of the 2 3d accelerators.&lt;br /&gt;
&lt;br /&gt;
Sensitivity of the scrolling should be configurable and a test option provided.&lt;br /&gt;
&lt;br /&gt;
==== Reading navigation of documents enhanced by accelerometers ====&lt;br /&gt;
If the two accelerometers in Neo1973 allows it, it will be nice if when you're reading, give a newspaper, you can move up, down, left and to the right the viewing of the document just moving the phones to the corresponding direction.&lt;br /&gt;
&lt;br /&gt;
I don't know if this is possible (haven't seen the project in detail yet) but this feature could be very attractive for final users (and this is good). (sorry for my english but i'm italian)&lt;br /&gt;
&lt;br /&gt;
==== Wand UI ====&lt;br /&gt;
In keeping with the requests to think outside of the box... the dual 3d accelerometers should enable a 'magic wand'-style UI for certain uses. Macros could be recorded and edited, or presets could be used. For example, flipping the device playfully could initiate a game mode or could signal the end of the work day.&lt;br /&gt;
  &lt;br /&gt;
==== Shake-to-Wake ====&lt;br /&gt;
Giving the phone a shake enables voice commands for a few seconds.&lt;br /&gt;
Usage Examples: &lt;br /&gt;
&lt;br /&gt;
{Shake} &amp;quot;Call&amp;quot; ''ContactName'' ''PhoneType'' --- {Shake} &amp;quot;Call John Mobile&amp;quot;  (Calls John's mobile)&lt;br /&gt;
&lt;br /&gt;
{Shake} ''ApplicationName'' --- {Shake} &amp;quot;Reader&amp;quot; (Opens the e-book application)&lt;br /&gt;
&lt;br /&gt;
Would require a method of inputting voice tags for applications and contacts and obviously will only work for P2 (accelerometers)&lt;br /&gt;
But lets get voice command functionality working before P2 (just by pressing a button on the screen instead of shaking)&lt;br /&gt;
&lt;br /&gt;
I think that is possibly to replace &amp;quot;Shake&amp;quot; with double hit with finger in the side of phone. Proper algorithms(with accelerometers) should recognize any similar activities.&lt;br /&gt;
&lt;br /&gt;
==== Emergency call ====&lt;br /&gt;
When the accelerometer detects a great acceleration (i.e. 5G) start a countdown sequence, if it is not stopped make a call to a preconfigured emergency number. If the data from the GPS is accurate give it.&lt;br /&gt;
&lt;br /&gt;
A first version could use a recorded message (an audio file). In next version it could use a synthesizer, so it can give more information (add GPS information when it is ready).&lt;br /&gt;
&lt;br /&gt;
==== Movement detection ====&lt;br /&gt;
By detecting that the owner is walking a user defined profile can be activated with a specific set of notification settings. For example you may wish to use a cheap old sounding ringtone so you don't attract attention from muggers. Or you may wish to have a louder ringtone if you carry your phone in a bag where it can't be so easily heard.&lt;br /&gt;
&lt;br /&gt;
==== Others ====&lt;br /&gt;
Also see the pages[[Wishlist:Auto Align Map]], [[Wishlist:Determine Position]], [[Distance Measuring]], [[Wishlist:Computer Mouse]], [[Wishlist:Dynamic Screen Orientation]].&lt;br /&gt;
&lt;br /&gt;
=== Connectivity ===&lt;br /&gt;
&lt;br /&gt;
==== VNC client ====&lt;br /&gt;
A good, stylus friendly VNC client/host combo would be easy to add and terribly useful.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Networked X-Windows ====&lt;br /&gt;
&lt;br /&gt;
Whether it's running true X-Windowing over the network, or your bog-standard VNC connection as mentioned above, the ability to have your phone's screen available on your laptop or palmtop would be most desirable.&lt;br /&gt;
&lt;br /&gt;
==== NX client ====&lt;br /&gt;
&lt;br /&gt;
A form of X-windows forwarding optimized for performance over slow, or high-latency links, which could prove extremely useful. Capable of streaming a good quality, full desktop session over modem speeds. The protocol and at least one implementation is gpl'd. [http://en.wikipedia.org/wiki/NX_technology wikipedia]&lt;br /&gt;
&lt;br /&gt;
=== Security ===&lt;br /&gt;
&lt;br /&gt;
==== My Account ====&lt;br /&gt;
{{Main|My Account}}&lt;br /&gt;
A way to securely store information about the phone, and ensure that a phone you may be considering purchasing is not stolen.&lt;br /&gt;
&lt;br /&gt;
==== [http://zfoneproject.com/ Zfone] or similar ====&lt;br /&gt;
&lt;br /&gt;
Something that allows the user to speak with another person securely.&lt;br /&gt;
&lt;br /&gt;
==== GSM Encryption ====&lt;br /&gt;
&lt;br /&gt;
This software application would allow GSM encrypted calls to be made using the GSM Data Call Channel. &lt;br /&gt;
&lt;br /&gt;
[[OSvS]]&lt;br /&gt;
&lt;br /&gt;
==== My Voice is my Passport ====&lt;br /&gt;
Use voice recognition to unlock the phone.  &amp;quot;Hi. My name is ... My voice is my passport.  Verify me.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==== Firewall ====&lt;br /&gt;
A network firewall&lt;br /&gt;
&lt;br /&gt;
==== Anti Theft Application ====&lt;br /&gt;
&lt;br /&gt;
This application would enter the phone into an [[Anti-Theft Mode]] which activates particular security features to reduce the risk of theft and also to ensure a higher probability of recovery of a stolen handset.&lt;br /&gt;
&lt;br /&gt;
====RFID based personal alerts====&lt;br /&gt;
Assuming an RFID reader is available:  You'd put an RFID tag on your keys, wallet, etc and train a program on the phone to give you a soft or hard alert when one of them leaves detection range.  That way, if you're walking away from one of them, the phone could alert you.&lt;br /&gt;
&lt;br /&gt;
=== Integrated Help System ===&lt;br /&gt;
&lt;br /&gt;
A help system that is either on or off. It could be activated and deactivated by a [[five-second-press]] on a button, for example the AUX button. When the help system is activated, it will explain the use of any item you touch on screen (with stylus or finger). Example: if you touch the battery icon, it will explain that this shows battery level / remaining time. If you touch the date / time icon, it will explain that this icon shows date and time, and that if you press it, you can set date and time. Primarily, this help system should be able to explain all user interface elements in the main screen, but if it proves popular, it could be expanded to cover other applications as well.&lt;br /&gt;
&lt;br /&gt;
===Performance optimisation===&lt;br /&gt;
==== Use DMA engine in CPU for blitter ====&lt;br /&gt;
The DMA engine in the CPU can substantially speed up moving of large  areas of screen in some cases.&lt;br /&gt;
&lt;br /&gt;
==== Use virtual screen to optimise scrolling ====&lt;br /&gt;
In some other cases, the hardware supported virtual screen may also speed it up.&lt;br /&gt;
&lt;br /&gt;
==Bluetooth==&lt;br /&gt;
&lt;br /&gt;
=== Voice Dialing ===&lt;br /&gt;
&lt;br /&gt;
Dial by voice commands.&lt;br /&gt;
&amp;lt;br&amp;gt;Dial by dictating phone number. This way we can voice dial any number even if not in our contact list.&lt;br /&gt;
&lt;br /&gt;
=== Music through Bluetooth Headset ===&lt;br /&gt;
&lt;br /&gt;
Music can be played through a Bluetooth headset, but would stop playing when a call comes in.&lt;br /&gt;
&lt;br /&gt;
=== Walkie Talkie ===&lt;br /&gt;
&lt;br /&gt;
Let OpenMoko devices connect to one another via bluetooth or another connection method (GPRS for long distance but high latency, probably Wifi on P2), and hold a conversation.&lt;br /&gt;
&lt;br /&gt;
Features for this applications can be:&lt;br /&gt;
* Push To Talk (PTT) button&lt;br /&gt;
* Voice Activated Control (VAC) which will set it in transmit mode when input has is detected above a certain predefined level.&lt;br /&gt;
* Optionally a full duplex mode&lt;br /&gt;
* Different channels to choose from&lt;br /&gt;
* Monitor different (preselected or all) channels for traffic.&lt;br /&gt;
* Content encryption&lt;br /&gt;
* Active noise control&lt;br /&gt;
* Allow zero config use (units can talk without any access point helping)&lt;br /&gt;
&lt;br /&gt;
Local (non-GPRS) use cases include chatting while biking&lt;br /&gt;
or motorcycling in a group; perhaps also in a car caravan.&lt;br /&gt;
This application could also be used as a baby-phone to monitor your siblings.&lt;br /&gt;
&lt;br /&gt;
This would be more useful if the Neo had Class 1 bluetooth, though probable Wifi on P2 will also offer more range.&lt;br /&gt;
&lt;br /&gt;
=== Automatic Sync ===&lt;br /&gt;
&lt;br /&gt;
Automatically synchronize with desktop computer (or with any [http://en.wikipedia.org/wiki/SyncML SyncML] server) when within range based on user profile.  This may require the use of a secure data transfer.&lt;br /&gt;
&lt;br /&gt;
=== GPS Assisted Bluetooth Management ===&lt;br /&gt;
&lt;br /&gt;
Allow Bluetooth to automatically turn off after loosing connectivity and to automatically turn back on based upon GPS location.&lt;br /&gt;
&lt;br /&gt;
A Bluetooth device is configured for automatic reacquisition based on the following profiles:&lt;br /&gt;
* Manual - only when Bluetooth is on&lt;br /&gt;
* Non-mobile - the target device is not mobile, periodically attempt reacquisition when in the general area of the device.&lt;br /&gt;
* Mobile - the target device is mobile, periodically attempt reacquisition when in the general area of the device.&lt;br /&gt;
&lt;br /&gt;
Each target device is configured as follows:&lt;br /&gt;
* Automatic acquisition at last known location: enable/disable&lt;br /&gt;
* Automatic acquisition at these locations: list of nickname + coordinates + range&lt;br /&gt;
&lt;br /&gt;
==== Non-mobile devices ====&lt;br /&gt;
&lt;br /&gt;
Examples devices include: computers&lt;br /&gt;
&lt;br /&gt;
The location and range of the target device is determined via training.  Periodically, the current GPS coordinates and Bluetooth signal strength are logged. Additionally, connectivity loss events are logged.  An algorithm uses these logs to determine the device location and range.&lt;br /&gt;
&lt;br /&gt;
Connection attempts are made when in a configurable proximity to the device.  The first attempt when entering the proximity and further attempts at a configurable interval.&lt;br /&gt;
&lt;br /&gt;
==== Mobile devices ====&lt;br /&gt;
&lt;br /&gt;
Example devices include: automobiles&lt;br /&gt;
&lt;br /&gt;
Mobile devices are configured to have two types of locations:&lt;br /&gt;
# Last known location&lt;br /&gt;
# Non-mobile locations (homes)&lt;br /&gt;
&lt;br /&gt;
===== Last known location =====&lt;br /&gt;
&lt;br /&gt;
A car is mobile, ideally, when you leave your car, the phone should note the car's location when connectivity is lost and then attempt to reacquire the car when you return to the location of the car.&lt;br /&gt;
&lt;br /&gt;
===== Non-mobile locations (homes) =====&lt;br /&gt;
&lt;br /&gt;
As mobile devices may have multiple users, it is not sufficient to always use the last known location.  In this case, the device may additionally have multiple homes.  For example, a car might have as its homes: home garage and work parking lot.&lt;br /&gt;
&lt;br /&gt;
=== Bluetooth neighbor detection and multiuser apps  ===&lt;br /&gt;
&lt;br /&gt;
Like the [http://en.wikipedia.org/wiki/One_laptop_per_child one laptop per child] (OLPC) interface, keep a number in the status bar that represents a count of other openmoko or compatible bluetooth devices in the area. Allow for the spontaneous initiation of a chatroom or multiplayer game or file trading with any moko in the area.&lt;br /&gt;
&lt;br /&gt;
=== Bluetooth environment detection ===&lt;br /&gt;
&lt;br /&gt;
Capability to detect when a predetermined bt device enters/leaves bt range and launch a system-wide event accordingly. This would feed not only the &amp;quot;Neighbour detection&amp;quot; idea described above, but also the &amp;quot;Profiles&amp;quot;, &amp;quot;Context based TO-DO list&amp;quot; and &amp;quot;Location-based reminders&amp;quot; ideas. Reminders could be set to trigger in the presence of a specific person X (with BT device Y). Profiles can take into account which devices are present around the phone (car kit, for ex.). To-do list could also change according to present devices.&lt;br /&gt;
&lt;br /&gt;
=== Remote control ===&lt;br /&gt;
&lt;br /&gt;
==== Wireless presenter ====&lt;br /&gt;
Use the phone to run your OpenOffice.org Impress presentation remotely using Bluetooth. Cool features: &lt;br /&gt;
* Display the text notes for the presenter on the phone's display and update it whenever the slide is changing.&lt;br /&gt;
** OO.org has implemented support for [http://www.openoffice.org/issues/show_bug.cgi?id=12719 dual monitor]/[http://www.openoffice.org/issues/show_bug.cgi?id=18486 presenter mode] that can be used as a starting point&lt;br /&gt;
* A small timer showing the time passed (and perhaps remaining if the presentation app supports such a feature). &lt;br /&gt;
* If you want to be super-cool, you give a preview of the notes of the next slide in the show. &lt;br /&gt;
* At the end of a presentation, a &amp;quot;navigator&amp;quot; could allow to easily jump to any slide in the presentation by clicking on it on the phone.&lt;br /&gt;
** When you right-click in a running OO.org Impress presentation, you can choose &amp;quot;got o slide...&amp;quot; and select any slide to jump to.&lt;br /&gt;
&lt;br /&gt;
==== Initiated from another device ====&lt;br /&gt;
Remote control over Bluetooth from other devices to control media player (play, pause, next, previous, volume control),  camera (capture image), etc.&lt;br /&gt;
==== Directed at another device ====&lt;br /&gt;
Remote control over Bluetooth to other devices to control media player, lights in your house, etc.&lt;br /&gt;
&lt;br /&gt;
Z-wave uses web-browser control of devices that is said to be compatible with mobile phone browsers so should work with openmoko browser. [http://www.z-wave.com www.z-wave.com]&lt;br /&gt;
&lt;br /&gt;
=== Bluetooth Car Connection ===&lt;br /&gt;
&lt;br /&gt;
Have a deeper connection to the car than just handsfree speakerphone.  For instance a transceiver with challenge/response systems to open, possibly even start the car.  Possibly go as far as OBD connection to monitor car status on screen/log for later.&lt;br /&gt;
&lt;br /&gt;
==== Dude, Where's My Car? ====&lt;br /&gt;
&lt;br /&gt;
When in range of the car navigation system, remember the position (perhaps check with the car GPS). When not in range, assumme that you are not in the car, and offer the opportunity to navigate to the car's last known position. That way, you can find your car e.g. on a large parking lot.&lt;br /&gt;
&lt;br /&gt;
=== [[Bluetooth powered Multi-SIM support]] ===&lt;br /&gt;
&lt;br /&gt;
As the Neo1971 does not come with dual-SIM support this could be solved by joining your old bluetooth-enabled mobile to your OpenMoko-phone.&lt;br /&gt;
&lt;br /&gt;
Let SIM card A be in your OpenMoko-phone and SIM card B in your old mobile:&lt;br /&gt;
* Incoming call on SIM card B - the OpenMoko-phone acts as a headset(Bluetooth Headset profile)&lt;br /&gt;
* Calling out via SIM card B - the OpenMoko-phone acts again as a headset&lt;br /&gt;
* Same for Short Messages/MMS/Internet&lt;br /&gt;
This way you'd have your old phone switched silent and connected to your OpenMoko-phone that handles all the calls and one can select which SIM card to use.&lt;br /&gt;
Advantage: No 'switching' between cards&lt;br /&gt;
Disadvantage: Second mobile needs to be in range(e.g. handbag) and charged every once in a while.&lt;br /&gt;
&lt;br /&gt;
===Internet Gateway===&lt;br /&gt;
&lt;br /&gt;
If the device could function as a Bluetooth router/gateway to the internet via the GPRS/data connector, then you could use it to get network connectivity from your laptop and other devices while on the road.  Many smartphones can be configured as modems via Bluetooth for use as Dial-Up Networking connectors, and that should be the minimum target.  Ideally, if the WiFi functionality was used so the OpenMoko could be an 802.11 router or peer to peer gateway for a laptop, this would be even better.  The full bandwidth of GPRS or whatever network is available would then be available.&lt;br /&gt;
&lt;br /&gt;
=== Social Networking ===&lt;br /&gt;
&lt;br /&gt;
Anybody running the social networking app will be broadcasting a profile, and when certain keywords are matched with other users who are also running the application, an alert is sounded. Each mokoid can be added as a hexstring to a profile page, and xml filters can be developed for each social service to convert various keywords and interests to moko-friendly format.&lt;br /&gt;
&lt;br /&gt;
=== Give userspace api control over bluetooth signal strength ===&lt;br /&gt;
&lt;br /&gt;
I have tried bluetooth handsfree sets with other phones and don't get perfect reception due to low signal strength. I suppose the reason the signal is so weak is because the manufacturer wants the battery to last long on its latest charge. Can you please make the strength setting configurable by the user of the phone through an api and perhaps even through the phones gui? I would gladly waste some battery time in exchange for stronger bluetooth signal strength.&lt;br /&gt;
&lt;br /&gt;
== Other ==&lt;br /&gt;
&lt;br /&gt;
=== Vibrate Pattern Recorder ===&lt;br /&gt;
&lt;br /&gt;
An application that would allow the user to define their own vibration patterns, and possibly link them to audio files.  Recording would be done in real time initiated with a &amp;quot;Record&amp;quot; button, optionally playing the associated sound file in sync with recording).  While recording, the user would press and hold a button to define the timing and duration of vibration.  The user would press &amp;quot;Stop&amp;quot; when finished.  Vibration patterns would have the option of being looped(would terminate at some global ringtone length maximum).&lt;br /&gt;
&lt;br /&gt;
One simple suggested vibration file format would be a sort of run-length encoding: First byte defines the length of a &amp;quot;time-slice&amp;quot; in milliseconds, which would determine the overall tempo(actually the inverse of tempo).  The next byte would define the number of time-slices to leave the vibration on, and then another byte for how long to pause after.  Continue alternating these on/off bytes until the entire pattern is defined.&lt;br /&gt;
&lt;br /&gt;
- or just use MIDI, using a separate channel for the vibrator.&lt;br /&gt;
&lt;br /&gt;
An implementation of RTTL could also be used to define vibration patterns.&lt;br /&gt;
&lt;br /&gt;
=== PC Input Device ===&lt;br /&gt;
&lt;br /&gt;
Provide a method to use the touchscreen as input device for a nearby desktop machine.  Could connect over USB or bluetooth.&lt;br /&gt;
&lt;br /&gt;
=== Advanced Notification And Ringtone Manager ===&lt;br /&gt;
{{Main|Wishlist-ANARM}}&lt;br /&gt;
&lt;br /&gt;
ANARM would be an application for handling all event-based audible notifications from an OpenMoko device.&lt;br /&gt;
&lt;br /&gt;
=== Location based reminders ===&lt;br /&gt;
{{Main|Wishlist:Location_based_reminders}}&lt;br /&gt;
Location based reminders can be used to notify users of various events or reminders that are location based.&lt;br /&gt;
&lt;br /&gt;
=== Synergy Client ===&lt;br /&gt;
A synergy client would enable the user to place the device next to a desktop PC and share the desktop`s mouse, keyboard and clipboard over a TCP/IP network. [http://synergy2.sourceforge.net/ Synergy]&lt;br /&gt;
&lt;br /&gt;
== GPS Software ==&lt;br /&gt;
*Providing GPS Support also for outdoor users in addition to ordinary street navigation features&lt;br /&gt;
** Overlay of satellite images with existing streetmaps&lt;br /&gt;
** Incorporating SRTM digital elevation model: for example using the VRML/X3D as data format (see http://www.ai.sri.com/geovrml/) which is interesting for e.g. mountaineering: using a 3d  browser rendering VRML/X3D Model, displaying the current position and track (possibly also other gps-tracks of the different routes to a summit downloaded before could be mapped onto the 3d model), (what about 3d hardware support? there is nothing written in the hardware specs about graphics: thinking of OpenGL for embedded systems (see http://www.khronos.org/opengles/)&lt;br /&gt;
** Using sth like a tracking mode to allow certain people to determine the current position and track (for rescue missions - like they have for example at http://www.steiger-stiftung.de (a German beneficence for rescue issues) There you can register your mobile phone so the rescue service is able to track you immediately if necessary. The interesting thing: It seams like some mobile phones with GPS have special support for this issue. If your phone is registered, the rescue service is able to get your GPS coordinates directly from the phone without any user assistance. Openmoko should also support this! )&lt;br /&gt;
* Implementation of 3dTracking's (http://free.3dtracking.net/) tracking software or equivalent.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;[[Community Based Traffic Information]]&lt;br /&gt;
&lt;br /&gt;
== Hardware ==&lt;br /&gt;
{{Main|Wish List - Hardware}}&lt;br /&gt;
&lt;br /&gt;
It could be use for beepway Online service too &lt;br /&gt;
[http://www.beepway.com]&lt;br /&gt;
&lt;br /&gt;
=== Tactile feedback via buzzer ===&lt;br /&gt;
Assuming the hardware has a vibrator/buzzer for silent calls, use a lightly pulsed version of that to simulate tactile feedback when dragging finger across buttons on-screen.  Implemented properly, it would almost feel as if the buttons were real.&lt;br /&gt;
&lt;br /&gt;
=== Detachable keyboard ===&lt;br /&gt;
Hardware keyboard that can be attached with magnets to a future version of the Neo.&lt;br /&gt;
&lt;br /&gt;
=== IR port ===&lt;br /&gt;
Remote control applications&lt;br /&gt;
Would be great to use openmoko as a Hamony remote controller.&lt;br /&gt;
&lt;br /&gt;
[[Category:User]]&lt;br /&gt;
[[Category:Ideas| ]]&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/User:Techiem2</id>
		<title>User:Techiem2</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/User:Techiem2"/>
				<updated>2007-08-24T20:59:14Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: /* My Interest in OpenMoko/Neo1973 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==About Me==&lt;br /&gt;
I live in DuBois, PA.&lt;br /&gt;
&lt;br /&gt;
I'm currently working part time as the Assistant to the CTO at [http://www.dbcollege.com DuBois Business College].&lt;br /&gt;
&lt;br /&gt;
I'm a Gentoo geek.&lt;br /&gt;
&lt;br /&gt;
Mark Montgomery II&lt;br /&gt;
&lt;br /&gt;
Web Site: http://www.techiem2.net&lt;br /&gt;
&lt;br /&gt;
Email: [mailto:techiem2@gmail.com techiem2@gmail.com]&lt;br /&gt;
&lt;br /&gt;
==My Portable Stuff==&lt;br /&gt;
*'''Work Laptop:'''     Compaq V5101US dual booting Gentoo and Windows XP (that I rarely need to use fortunately)&lt;br /&gt;
*'''Cell Phone:'''      Audiovox Snapper&lt;br /&gt;
*'''Cell Provider:'''   Virgin Mobile Prepaid ($5.30/month with taxes charged every 90 days, $.18/min - I don't use my phone much)&lt;br /&gt;
*'''Media Player:'''    Cowon iAudio X5 dual booting RockBox and original firmware (that I rarely use since RockBox is just plain awesome)&lt;br /&gt;
*'''GPS:'''             Garmin Etrex&lt;br /&gt;
*'''WiFi Scanner:'''    Zyxel AG-225H WiFi Scanner/USB Adapter (uses the zd1211 driver) - I also use this as my WNIC for my laptop most of the time since the internal antenna doesn't see the AP very reliably from my desk in the corner.&lt;br /&gt;
&lt;br /&gt;
==My Interest in OpenMoko/Neo1973==&lt;br /&gt;
====General====&lt;br /&gt;
I think FLOSS should be used wherever possible and I love the idea of a fully open phone.&lt;br /&gt;
&lt;br /&gt;
I don't appreciate companies that use FLOSS in their devices yet restrict the user from doing anything, thus showing a lack of respect for the community and philosophies of the software they are profiting from.&lt;br /&gt;
&lt;br /&gt;
====Web Device====&lt;br /&gt;
I have recently started looking into WiFi web devices, and the Neo1973 Phase2 should be perfect (assuming WiFi is fully up and running for it).&lt;br /&gt;
&lt;br /&gt;
====SIP Phone====&lt;br /&gt;
I want to use it as a WiFi SIP phone as soon as there's a client written for it (the idea of using it as a SIP handset for the computer is interesting to me as well).  :)&lt;br /&gt;
&lt;br /&gt;
====GPS====&lt;br /&gt;
Assuming a good interface is made for it, it should make a much nicer (not to mention just plain cooler) GPS device than my old Etrex.&lt;br /&gt;
&lt;br /&gt;
My ideal would be a program with multiple tabs/pages with varying info.&lt;br /&gt;
*Map/Driving directions page.&lt;br /&gt;
*GPS info page - current coordinates and elevation and such.&lt;br /&gt;
*Movement info page - current heading and speed and such.&lt;br /&gt;
*More?&lt;br /&gt;
Maybe configurable to be able to set how many pages and what is on each page?&lt;br /&gt;
&lt;br /&gt;
====Wireless Network Analysis====&lt;br /&gt;
Wardriving/Warwalking! (or just plain Wireless LAN mapping/troubleshooting in general)&lt;br /&gt;
&lt;br /&gt;
(Come on, admit that you've all been thinking the same thing!)&lt;br /&gt;
&lt;br /&gt;
Since it's running a good WiFi chipset and gpsd already, I'm assuming it would be trivial for someone in the know to port kismet to it.&lt;br /&gt;
&lt;br /&gt;
And of course make sure it works with gpsd and the GPS interface program.&lt;br /&gt;
&lt;br /&gt;
No more driving/walking around with a laptop and GPS for wardriving/warwalking or testing out your corporate WLAN - Just fire up your Neo1973 and go!&lt;br /&gt;
&lt;br /&gt;
====Cell Phone====&lt;br /&gt;
I don't know if I would use it as a cell phone or not.&lt;br /&gt;
&lt;br /&gt;
There's only one GSM provider in my area (Cellular One) who apparently is probably being acquired by AT&amp;amp;T.&lt;br /&gt;
&lt;br /&gt;
AT&amp;amp;T and T-Mobile both look like their networks cover here, but they don't offer service here (I wonder if that would change if the AT&amp;amp;T/Cellular One buyout goes through...).&lt;br /&gt;
&lt;br /&gt;
====Document Reader====&lt;br /&gt;
I would like to use it as a document reader as well.&lt;br /&gt;
&lt;br /&gt;
Primarily for PDF and TXT, but of course other formats (ODF?) would be great.&lt;br /&gt;
&lt;br /&gt;
====Media Player====&lt;br /&gt;
If the quality is good, I might consider using it as a media player (ogg of course!) if I can get a nice big card for it.&lt;br /&gt;
&lt;br /&gt;
My OGG collection is a bit under 4GB as I recall.&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/User:Techiem2</id>
		<title>User:Techiem2</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/User:Techiem2"/>
				<updated>2007-08-24T20:46:49Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: /* About Me */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==About Me==&lt;br /&gt;
I live in DuBois, PA.&lt;br /&gt;
&lt;br /&gt;
I'm currently working part time as the Assistant to the CTO at [http://www.dbcollege.com DuBois Business College].&lt;br /&gt;
&lt;br /&gt;
I'm a Gentoo geek.&lt;br /&gt;
&lt;br /&gt;
Mark Montgomery II&lt;br /&gt;
&lt;br /&gt;
Web Site: http://www.techiem2.net&lt;br /&gt;
&lt;br /&gt;
Email: [mailto:techiem2@gmail.com techiem2@gmail.com]&lt;br /&gt;
&lt;br /&gt;
==My Portable Stuff==&lt;br /&gt;
*'''Work Laptop:'''     Compaq V5101US dual booting Gentoo and Windows XP (that I rarely need to use fortunately)&lt;br /&gt;
*'''Cell Phone:'''      Audiovox Snapper&lt;br /&gt;
*'''Cell Provider:'''   Virgin Mobile Prepaid ($5.30/month with taxes charged every 90 days, $.18/min - I don't use my phone much)&lt;br /&gt;
*'''Media Player:'''    Cowon iAudio X5 dual booting RockBox and original firmware (that I rarely use since RockBox is just plain awesome)&lt;br /&gt;
*'''GPS:'''             Garmin Etrex&lt;br /&gt;
*'''WiFi Scanner:'''    Zyxel AG-225H WiFi Scanner/USB Adapter (uses the zd1211 driver) - I also use this as my WNIC for my laptop most of the time since the internal antenna doesn't see the AP very reliably from my desk in the corner.&lt;br /&gt;
&lt;br /&gt;
==My Interest in OpenMoko/Neo1973==&lt;br /&gt;
====General====&lt;br /&gt;
I think FLOSS should be used wherever possible and I love the idea of a fully open phone.&lt;br /&gt;
&lt;br /&gt;
I don't appreciate companies that use FLOSS in their devices yet restrict the user from doing anything, thus showing a lack of respect for the community and philosophies of the software they are profiting from.&lt;br /&gt;
&lt;br /&gt;
====Web Device====&lt;br /&gt;
I have recently started looking into WiFi web devices, and the Neo1973 Phase2 should be perfect (assuming WiFi is fully up and running for it).&lt;br /&gt;
&lt;br /&gt;
====SIP Phone====&lt;br /&gt;
I want to use it as a WiFi SIP phone as soon as there's a client written for it (the idea of using it as a SIP handset for the computer is interesting to me as well).  :)&lt;br /&gt;
&lt;br /&gt;
====GPS====&lt;br /&gt;
Assuming a good interface is made for it, it should make a much nicer (not to mention just plain cooler) GPS device than my old Etrex.&lt;br /&gt;
&lt;br /&gt;
My ideal would be a program with multiple tabs/pages with varying info.&lt;br /&gt;
*Map/Driving directions page.&lt;br /&gt;
*GPS info page - current coordinates and elevation and such.&lt;br /&gt;
*Movement info page - current heading and speed and such.&lt;br /&gt;
*More?&lt;br /&gt;
Maybe configurable to be able to set how many pages and what is on each page?&lt;br /&gt;
&lt;br /&gt;
====Wireless Network Analysis====&lt;br /&gt;
Wardriving/Warwalking! (or just plain Wireless LAN mapping/troubleshooting in general)&lt;br /&gt;
&lt;br /&gt;
(Come on, admit that you've all been thinking the same thing!)&lt;br /&gt;
&lt;br /&gt;
Since it's running a good WiFi chipset and gpsd already, I'm assuming it would be trivial for someone in the know to port kismet to it.&lt;br /&gt;
&lt;br /&gt;
And of course make sure it works with gpsd and the GPS interface program.&lt;br /&gt;
&lt;br /&gt;
No more driving/walking around with a laptop and GPS for wardriving/warwalking or testing out your corporate WLAN - Just fire up your Neo1973 and go!&lt;br /&gt;
&lt;br /&gt;
====Cell Phone====&lt;br /&gt;
I don't know if I would use it as a cell phone or not.&lt;br /&gt;
&lt;br /&gt;
There's only one GSM provider in my area (Cellular One) who apparently is probably being acquired by AT&amp;amp;T.&lt;br /&gt;
&lt;br /&gt;
AT&amp;amp;T and T-Mobile both look like their networks cover here, but they don't offer service here (I wonder if that would change if the AT&amp;amp;T/Cellular One buyout goes through...).&lt;br /&gt;
&lt;br /&gt;
====Media Player====&lt;br /&gt;
If the quality is good, I might consider using it as a media player (ogg of course!) if I can get a nice big card for it.&lt;br /&gt;
&lt;br /&gt;
My OGG collection is a bit under 4GB as I recall.&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/User:Techiem2</id>
		<title>User:Techiem2</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/User:Techiem2"/>
				<updated>2007-08-24T20:46:22Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==About Me==&lt;br /&gt;
I live in DuBois, PA.&lt;br /&gt;
&lt;br /&gt;
I'm currently working part time as the Assistant to the CTO at [http://www.dbcollege.com DuBois Business College].&lt;br /&gt;
&lt;br /&gt;
I'm a Gentoo geek.&lt;br /&gt;
&lt;br /&gt;
Mark Montgomery II&lt;br /&gt;
&lt;br /&gt;
http://www.techiem2.net&lt;br /&gt;
&lt;br /&gt;
Email: [mailto:techiem2@gmail.com techiem2@gmail.com]&lt;br /&gt;
&lt;br /&gt;
==My Portable Stuff==&lt;br /&gt;
*'''Work Laptop:'''     Compaq V5101US dual booting Gentoo and Windows XP (that I rarely need to use fortunately)&lt;br /&gt;
*'''Cell Phone:'''      Audiovox Snapper&lt;br /&gt;
*'''Cell Provider:'''   Virgin Mobile Prepaid ($5.30/month with taxes charged every 90 days, $.18/min - I don't use my phone much)&lt;br /&gt;
*'''Media Player:'''    Cowon iAudio X5 dual booting RockBox and original firmware (that I rarely use since RockBox is just plain awesome)&lt;br /&gt;
*'''GPS:'''             Garmin Etrex&lt;br /&gt;
*'''WiFi Scanner:'''    Zyxel AG-225H WiFi Scanner/USB Adapter (uses the zd1211 driver) - I also use this as my WNIC for my laptop most of the time since the internal antenna doesn't see the AP very reliably from my desk in the corner.&lt;br /&gt;
&lt;br /&gt;
==My Interest in OpenMoko/Neo1973==&lt;br /&gt;
====General====&lt;br /&gt;
I think FLOSS should be used wherever possible and I love the idea of a fully open phone.&lt;br /&gt;
&lt;br /&gt;
I don't appreciate companies that use FLOSS in their devices yet restrict the user from doing anything, thus showing a lack of respect for the community and philosophies of the software they are profiting from.&lt;br /&gt;
&lt;br /&gt;
====Web Device====&lt;br /&gt;
I have recently started looking into WiFi web devices, and the Neo1973 Phase2 should be perfect (assuming WiFi is fully up and running for it).&lt;br /&gt;
&lt;br /&gt;
====SIP Phone====&lt;br /&gt;
I want to use it as a WiFi SIP phone as soon as there's a client written for it (the idea of using it as a SIP handset for the computer is interesting to me as well).  :)&lt;br /&gt;
&lt;br /&gt;
====GPS====&lt;br /&gt;
Assuming a good interface is made for it, it should make a much nicer (not to mention just plain cooler) GPS device than my old Etrex.&lt;br /&gt;
&lt;br /&gt;
My ideal would be a program with multiple tabs/pages with varying info.&lt;br /&gt;
*Map/Driving directions page.&lt;br /&gt;
*GPS info page - current coordinates and elevation and such.&lt;br /&gt;
*Movement info page - current heading and speed and such.&lt;br /&gt;
*More?&lt;br /&gt;
Maybe configurable to be able to set how many pages and what is on each page?&lt;br /&gt;
&lt;br /&gt;
====Wireless Network Analysis====&lt;br /&gt;
Wardriving/Warwalking! (or just plain Wireless LAN mapping/troubleshooting in general)&lt;br /&gt;
&lt;br /&gt;
(Come on, admit that you've all been thinking the same thing!)&lt;br /&gt;
&lt;br /&gt;
Since it's running a good WiFi chipset and gpsd already, I'm assuming it would be trivial for someone in the know to port kismet to it.&lt;br /&gt;
&lt;br /&gt;
And of course make sure it works with gpsd and the GPS interface program.&lt;br /&gt;
&lt;br /&gt;
No more driving/walking around with a laptop and GPS for wardriving/warwalking or testing out your corporate WLAN - Just fire up your Neo1973 and go!&lt;br /&gt;
&lt;br /&gt;
====Cell Phone====&lt;br /&gt;
I don't know if I would use it as a cell phone or not.&lt;br /&gt;
&lt;br /&gt;
There's only one GSM provider in my area (Cellular One) who apparently is probably being acquired by AT&amp;amp;T.&lt;br /&gt;
&lt;br /&gt;
AT&amp;amp;T and T-Mobile both look like their networks cover here, but they don't offer service here (I wonder if that would change if the AT&amp;amp;T/Cellular One buyout goes through...).&lt;br /&gt;
&lt;br /&gt;
====Media Player====&lt;br /&gt;
If the quality is good, I might consider using it as a media player (ogg of course!) if I can get a nice big card for it.&lt;br /&gt;
&lt;br /&gt;
My OGG collection is a bit under 4GB as I recall.&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/User:Techiem2</id>
		<title>User:Techiem2</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/User:Techiem2"/>
				<updated>2007-08-24T20:45:21Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: made email linky&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==About Me==&lt;br /&gt;
I live in DuBois, PA.&lt;br /&gt;
&lt;br /&gt;
I'm currently working part time as the Assistant to the CTO at [http://www.dbcollege.com DuBois Business College].&lt;br /&gt;
&lt;br /&gt;
I'm a Gentoo geek.&lt;br /&gt;
&lt;br /&gt;
Mark Montgomery II&lt;br /&gt;
&lt;br /&gt;
http://www.techiem2.net&lt;br /&gt;
&lt;br /&gt;
mailto:techiem2@gmail.com&lt;br /&gt;
&lt;br /&gt;
==My Portable Stuff==&lt;br /&gt;
*'''Work Laptop:'''     Compaq V5101US dual booting Gentoo and Windows XP (that I rarely need to use fortunately)&lt;br /&gt;
*'''Cell Phone:'''      Audiovox Snapper&lt;br /&gt;
*'''Cell Provider:'''   Virgin Mobile Prepaid ($5.30/month with taxes charged every 90 days, $.18/min - I don't use my phone much)&lt;br /&gt;
*'''Media Player:'''    Cowon iAudio X5 dual booting RockBox and original firmware (that I rarely use since RockBox is just plain awesome)&lt;br /&gt;
*'''GPS:'''             Garmin Etrex&lt;br /&gt;
*'''WiFi Scanner:'''    Zyxel AG-225H WiFi Scanner/USB Adapter (uses the zd1211 driver) - I also use this as my WNIC for my laptop most of the time since the internal antenna doesn't see the AP very reliably from my desk in the corner.&lt;br /&gt;
&lt;br /&gt;
==My Interest in OpenMoko/Neo1973==&lt;br /&gt;
====General====&lt;br /&gt;
I think FLOSS should be used wherever possible and I love the idea of a fully open phone.&lt;br /&gt;
&lt;br /&gt;
I don't appreciate companies that use FLOSS in their devices yet restrict the user from doing anything, thus showing a lack of respect for the community and philosophies of the software they are profiting from.&lt;br /&gt;
&lt;br /&gt;
====Web Device====&lt;br /&gt;
I have recently started looking into WiFi web devices, and the Neo1973 Phase2 should be perfect (assuming WiFi is fully up and running for it).&lt;br /&gt;
&lt;br /&gt;
====SIP Phone====&lt;br /&gt;
I want to use it as a WiFi SIP phone as soon as there's a client written for it (the idea of using it as a SIP handset for the computer is interesting to me as well).  :)&lt;br /&gt;
&lt;br /&gt;
====GPS====&lt;br /&gt;
Assuming a good interface is made for it, it should make a much nicer (not to mention just plain cooler) GPS device than my old Etrex.&lt;br /&gt;
&lt;br /&gt;
My ideal would be a program with multiple tabs/pages with varying info.&lt;br /&gt;
*Map/Driving directions page.&lt;br /&gt;
*GPS info page - current coordinates and elevation and such.&lt;br /&gt;
*Movement info page - current heading and speed and such.&lt;br /&gt;
*More?&lt;br /&gt;
Maybe configurable to be able to set how many pages and what is on each page?&lt;br /&gt;
&lt;br /&gt;
====Wireless Network Analysis====&lt;br /&gt;
Wardriving/Warwalking! (or just plain Wireless LAN mapping/troubleshooting in general)&lt;br /&gt;
&lt;br /&gt;
(Come on, admit that you've all been thinking the same thing!)&lt;br /&gt;
&lt;br /&gt;
Since it's running a good WiFi chipset and gpsd already, I'm assuming it would be trivial for someone in the know to port kismet to it.&lt;br /&gt;
&lt;br /&gt;
And of course make sure it works with gpsd and the GPS interface program.&lt;br /&gt;
&lt;br /&gt;
No more driving/walking around with a laptop and GPS for wardriving/warwalking or testing out your corporate WLAN - Just fire up your Neo1973 and go!&lt;br /&gt;
&lt;br /&gt;
====Cell Phone====&lt;br /&gt;
I don't know if I would use it as a cell phone or not.&lt;br /&gt;
&lt;br /&gt;
There's only one GSM provider in my area (Cellular One) who apparently is probably being acquired by AT&amp;amp;T.&lt;br /&gt;
&lt;br /&gt;
AT&amp;amp;T and T-Mobile both look like their networks cover here, but they don't offer service here (I wonder if that would change if the AT&amp;amp;T/Cellular One buyout goes through...).&lt;br /&gt;
&lt;br /&gt;
====Media Player====&lt;br /&gt;
If the quality is good, I might consider using it as a media player (ogg of course!) if I can get a nice big card for it.&lt;br /&gt;
&lt;br /&gt;
My OGG collection is a bit under 4GB as I recall.&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/User_talk:Techiem2</id>
		<title>User talk:Techiem2</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/User_talk:Techiem2"/>
				<updated>2007-08-24T20:25:57Z</updated>
		
		<summary type="html">&lt;p&gt;Techiem2: made the page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Let the insanity begin!&lt;/div&gt;</summary>
		<author><name>Techiem2</name></author>	</entry>

	</feed>