<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://arm.mini-box.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Admin</id>
	<title>Low cost, low power, android ARM system board by Mini-Box.com - pico WiKi - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://arm.mini-box.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Admin"/>
	<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php/Special:Contributions/Admin"/>
	<updated>2026-05-13T10:45:10Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.9</generator>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=Compiling_Android_from_sources&amp;diff=161</id>
		<title>Compiling Android from sources</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=Compiling_Android_from_sources&amp;diff=161"/>
		<updated>2025-12-18T11:26:01Z</updated>

		<summary type="html">&lt;p&gt;Admin: Change the link to tar.gz file on Google Drive&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Getting Project Source Code=&lt;br /&gt;
Our project is hosted at http://gitorious.org/picopc-android-eclair/&amp;lt;br&amp;gt;&lt;br /&gt;
Follow below steps, it shows how to set up the building environment, how to download android source code and how to build it from scratch.&lt;br /&gt;
&lt;br /&gt;
=Precondition: Sun JDK=&lt;br /&gt;
You would need Sun JDK version 1.5 to build Eclair. However, Sun JDK version 1.5 is known to be EOL (End-Of-Line), and Ubuntu Linux 9.10 no longer ships with sun-java5-jdk.&lt;br /&gt;
&lt;br /&gt;
If you are using Ubuntu Linux 9.10, just add these two line in file /etc/apt/sources.list:&lt;br /&gt;
&lt;br /&gt;
 deb &amp;lt;nowiki&amp;gt;http://us.archive.ubuntu.com/ubuntu/&amp;lt;/nowiki&amp;gt; karmic-updates multiverse&lt;br /&gt;
 deb-src &amp;lt;nowiki&amp;gt;http://us.archive.ubuntu.com/ubuntu/&amp;lt;/nowiki&amp;gt; karmic-updates multiverse&lt;br /&gt;
&lt;br /&gt;
If you are using Ubuntu 10.04 LTS (Lucid Lynx), add this line to file /etc/apt/sources.list:&lt;br /&gt;
 deb &amp;lt;nowiki&amp;gt;http://ir.archive.ubuntu.com/ubuntu&amp;lt;/nowiki&amp;gt; hardy-updates main multiverse&lt;br /&gt;
and install Sun JDK 1.5:&lt;br /&gt;
&lt;br /&gt;
 $ sudo apt-get update&lt;br /&gt;
 $ sudo apt-get install sun-java5-jdk&lt;br /&gt;
To set the system to use Java 5, you need to update your java alternatives by running&lt;br /&gt;
&lt;br /&gt;
 $ sudo update-alternatives --config java&lt;br /&gt;
Choose java-1.5.0-sun and it should be done.&lt;br /&gt;
&lt;br /&gt;
=Precondition: git and repo=&lt;br /&gt;
Before you download the source, you will need git and repo tools.&lt;br /&gt;
&lt;br /&gt;
On an Ubuntu 9.04 host, you can do the following:&lt;br /&gt;
&lt;br /&gt;
Getting git:&lt;br /&gt;
&lt;br /&gt;
 $ sudo apt-get install git-core&lt;br /&gt;
Getting repo:&lt;br /&gt;
&lt;br /&gt;
 $ curl http://commondatastorage.googleapis.com/git-repo-downloads/repo &amp;gt; ~/bin/repo&lt;br /&gt;
 $ chmod a+x ~/bin/repo&lt;br /&gt;
For reference details about Repo, see Using Repo and Git.&lt;br /&gt;
&lt;br /&gt;
= Get picoPC-android source =&lt;br /&gt;
==Android Gingerbread==&lt;br /&gt;
&lt;br /&gt;
Download the picopc android gingerbread source code (sources available [http://gitorious.org/picopc-android-gingerbread here]):&lt;br /&gt;
&lt;br /&gt;
 $ mkdir picopc-android-gingerbread&lt;br /&gt;
 $ cd picopc-android-gingerbread&lt;br /&gt;
 $ repo init -u git://gitorious.org/picopc-android-gingerbread/manifest.git &lt;br /&gt;
 $ repo sync&lt;br /&gt;
&lt;br /&gt;
==Android Eclair==&lt;br /&gt;
&lt;br /&gt;
Download the picopc android eclair source code (sources available [http://gitorious.org/picopc-android-eclair here]):&lt;br /&gt;
&lt;br /&gt;
$ mkdir picopc-android-eclair&lt;br /&gt;
 $ cd picopc-android-eclair&lt;br /&gt;
 $ repo init -u git://gitorious.org/picopc-android-eclair/manifest.git &lt;br /&gt;
 $ repo sync&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Archive (warning might get outdated use git):'''&amp;lt;br&amp;gt;&lt;br /&gt;
 &amp;lt;font size=&amp;quot;2&amp;quot;&amp;gt;https://drive.google.com/file/d/1BOcF-lEKEOq3LkEgE4hGvqZw472P4cy8/view?usp=sharing with the md5sum: 057cc88e1a374f68e3b992ca64fe612f&amp;lt;/font&amp;gt;&lt;br /&gt;
'''&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;Warning:&amp;lt;/font&amp;gt; the size of the archive it's 3,264Gb'''&lt;br /&gt;
&lt;br /&gt;
=Build picoPC-android from source=&lt;br /&gt;
==Android Gingerbread==&lt;br /&gt;
Setup picopc configurations:&lt;br /&gt;
 $ cd picopc-android-gingerbread&lt;br /&gt;
 $ . build/envsetup.sh&lt;br /&gt;
&lt;br /&gt;
Start the building process by executing android build system 'm' command&lt;br /&gt;
&lt;br /&gt;
 $ make update-api (only on first compilation)&lt;br /&gt;
 $ TARGET_PRODUCT=picopc m&lt;br /&gt;
&lt;br /&gt;
==Android Eclair==&lt;br /&gt;
Setup picopc configurations:&lt;br /&gt;
 $ cd picopc-android-eclair&lt;br /&gt;
 $ ln -sf build/buildspec.mk buildspec.mk&lt;br /&gt;
 $ . build/envsetup.sh&lt;br /&gt;
&lt;br /&gt;
Start the building process by executing android build system 'm' command&lt;br /&gt;
&lt;br /&gt;
 $ m&lt;br /&gt;
&lt;br /&gt;
=Installing picoPC-android files=&lt;br /&gt;
==Android Gingerbread==&lt;br /&gt;
Once successfully built you can use the picopc-tools to extract the rootfs and system images by running the script in:&amp;lt;br&amp;gt;&lt;br /&gt;
 $ picopc-tools/android-tools/rootfs-creator/android-2.3/rootfs-generator.sh&lt;br /&gt;
&lt;br /&gt;
The resulting files from the latest/ folder can be copied in the rootfs partition on microSD&lt;br /&gt;
&lt;br /&gt;
==Android Eclair==&lt;br /&gt;
Once successfully built you can use the picopc-tools to extract the rootfs and system images by running the script in:&amp;lt;br&amp;gt;&lt;br /&gt;
 $ picopc-tools/android-tools/rootfs-creator/android-2.1/rootfs-generator.sh&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=Talk:Main_Page&amp;diff=160</id>
		<title>Talk:Main Page</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=Talk:Main_Page&amp;diff=160"/>
		<updated>2020-10-20T11:58:14Z</updated>

		<summary type="html">&lt;p&gt;Admin: Created page with &amp;quot;== Populating MN9 with flash memory - can't find memory ==  Hi All.  I would like to populate the NAND flash footprint on this board.  The schematic calls for MT29F2G08ABDWP,...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Populating MN9 with flash memory - can't find memory ==&lt;br /&gt;
&lt;br /&gt;
Hi All.&lt;br /&gt;
&lt;br /&gt;
I would like to populate the NAND flash footprint on this board.  The schematic calls for MT29F2G08ABDWP, but I can't find this part anywhere.&lt;br /&gt;
&lt;br /&gt;
Which compatible replacement part do you recommend and where could I buy it?&lt;br /&gt;
&lt;br /&gt;
Thanks&lt;br /&gt;
Philip&lt;br /&gt;
---- &lt;br /&gt;
''While we were testing NAND, we encountered a lot of CRC errors over a longer period of usage (writes/reads). The number of bad CRC sectors were rising, resulting in unable to load OS from NAND. We didn't get a clear response from ATMEL why this happens but as far as we understood from them, it's related to their implementation of atmel_nand.''&lt;br /&gt;
&lt;br /&gt;
== High delivery cost ==&lt;br /&gt;
&lt;br /&gt;
Hi Mini-Box team!&lt;br /&gt;
&lt;br /&gt;
You have a great product with a really affordable price. But there is one issue - shipping costs.&lt;br /&gt;
Board + LCD costs about $104, shipping (to Ukraine - my location) costs $205. Nonsense.&lt;br /&gt;
&lt;br /&gt;
regards,&lt;br /&gt;
Alex&lt;br /&gt;
----&lt;br /&gt;
''I think you choose the &amp;quot;no risk&amp;quot; shipment method by '''UPS''' and that's right the shipping from US to Ukraine is that much because of the distance and risk they assume for it. There are two other methods of shipping, cheaper, but on your risk:&amp;lt;br&amp;gt;&lt;br /&gt;
''You can use: '''Express Mail® International for $47.05''', or '''Priority Mail® International for $37.50'''&amp;lt;br&amp;gt;&lt;br /&gt;
''For more information please contact our sales department on: sales-queries at mini-box.com''&lt;br /&gt;
----&lt;br /&gt;
Hi all!&lt;br /&gt;
&lt;br /&gt;
Sorry to bust in like this, but could you add some mini PCIe GSM/GPS devices that work with this board?&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
Alex&lt;br /&gt;
----&lt;br /&gt;
''you have to look for a miniPCIe GSM/GPS that has USB support, like this one: http://www.thinkwiki.org/wiki/Ericsson_F3507g_Mobile_Broadband_Module''&amp;lt;br&amp;gt;&lt;br /&gt;
''we didn't test it, but the board miniPCIe it's with USB only support''&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== JTAG/ICE port ==&lt;br /&gt;
&lt;br /&gt;
Question: why there is no ARM JTAG port? 4 USB ports, but no JTAG? Thanks.&lt;br /&gt;
&lt;br /&gt;
== SPI Interface ==&lt;br /&gt;
&lt;br /&gt;
I would like to interface to the SPI driver from an Android java app. Anyone has an example on how to do this? Or maybe point me to a resource that I can start at? thx&lt;br /&gt;
&lt;br /&gt;
===Re: SPI Interface -- [[User:Admin|http&amp;amp;#58;//www.mini-box.com]] 02:25, 10 October 2011 (MDT)===&lt;br /&gt;
&lt;br /&gt;
: You should read this: http://www.mjmwired.net/kernel/Documentation/spi/spidev and the example ''spidev_test.c''&lt;br /&gt;
: [http://arm.mini-box.com/index.php?title=Kernel_changes_for_custom_hardware#Working_with_SPI See this page].&lt;br /&gt;
&lt;br /&gt;
== C++ Compiler -- [[Special:Contributions/66.195.157.18|66.195.157.18]] 14:03, 10 October 2011 (MDT) ==&lt;br /&gt;
&lt;br /&gt;
I would like to compile a few simple programs on the Mini-box PICo board.  What is the simplest way to add a C++ compiler and libs?&lt;br /&gt;
&lt;br /&gt;
== Debian armel -- [[Special:Contributions/24.6.3.23|24.6.3.23]] 15:13, 15 October 2011 (MDT) ==&lt;br /&gt;
&lt;br /&gt;
Hi,&lt;br /&gt;
&lt;br /&gt;
I have Debian armel running on this board now with kernel 3.04 (Zero extra patches :)).&lt;br /&gt;
&lt;br /&gt;
Aside from an issue with the second bank of memory (I'm compiling a kernel that should fix it now) everything works great..&lt;br /&gt;
&lt;br /&gt;
The steps to get this running are:&lt;br /&gt;
&lt;br /&gt;
1 Get another SD card and use another debian machine to create a base chroot for armel on it, use the --foreign option so that it doesn't do the second stage setup.&lt;br /&gt;
&lt;br /&gt;
2 Boot up with the Angstrom image and insert the sdcard with the debian chroot into the reader socket&lt;br /&gt;
&lt;br /&gt;
3 chroot into the debian chroot from Angstrom and run the second stage setup thats in /debootstrap&lt;br /&gt;
&lt;br /&gt;
4 Install GCC etc in the debian chroot and build a kernel (I can supply a working config for 3.0.4).. you need to build a uImage. This will take a few hours!&lt;br /&gt;
&lt;br /&gt;
5 move the linux.bin on the boot sdcard to linux.bin.old or something and copy your new uImage in its place&lt;br /&gt;
&lt;br /&gt;
6 boot angstrom with this kernel to make sure it works&lt;br /&gt;
&lt;br /&gt;
7 chroot into your chroot again, install openssh-server etc so that you can login from debian when you start using it, configure your network interface.. use ifup to test it&lt;br /&gt;
&lt;br /&gt;
8 remove both of the cards, backup the old angstrom root form the boot card, delete its partition and create a new one of the size you need and format it with mkfs.ext3&lt;br /&gt;
&lt;br /&gt;
9 copy the debian chroot from the other sd card into the new root on the boot card.&lt;br /&gt;
&lt;br /&gt;
10 boot it :)&lt;br /&gt;
&lt;br /&gt;
Cheers,&lt;br /&gt;
&lt;br /&gt;
daniel&lt;br /&gt;
&lt;br /&gt;
===Re: Debian armel -- [[User:Admin|http&amp;amp;#58;//www.mini-box.com]] 15:55, 15 October 2011 (MDT)===&lt;br /&gt;
&lt;br /&gt;
: Hi Daniel and thank you for your input. Would you like to create a page on our wiki and share complete information about your working? You have to make an account and then to create that page. Thank you&lt;br /&gt;
&lt;br /&gt;
====Re: Re: Debian armel -- [[User:Dgpalmer|Dgpalmer]] 18:16, 15 October 2011 (MDT)====&lt;br /&gt;
&lt;br /&gt;
Hi,&lt;br /&gt;
&lt;br /&gt;
I have started writing the page in Debian. I don't really understand mediawiki's formatting stuff.. so feel free to format it how you like. At the moment I can't get the second bank of RAM to be accessible and I'm trying to get the perfect kernel config.. compiling on the board itself takes a while. ;)&lt;br /&gt;
I'll finish up the page later on and fill it out a bit more.&lt;br /&gt;
&lt;br /&gt;
The issue with the second bank is this;&lt;br /&gt;
&lt;br /&gt;
Machine: Atmel AT91SAM9M10G45-EK&lt;br /&gt;
Ignoring RAM at 20000000-27ffffff (vmalloc region overlap).&lt;br /&gt;
&lt;br /&gt;
=====Re: Re: Re: Debian armel -- [[User:Admin|http&amp;amp;#58;//www.mini-box.com]] 01:36, 17 October 2011 (MDT)=====&lt;br /&gt;
&lt;br /&gt;
::: Hi, Daniel. I published a link to the Debian page on the main page, [http://arm.mini-box.com/index.php?title=Main_Page#Compiling_OS_from_sources here]. If you have any progress you would like to share, please update that page and I will arrange it to wiki format for you. Thank you.&lt;br /&gt;
&lt;br /&gt;
== Mainline support -- [[User:Dgpalmer|Dgpalmer]] 22:58, 15 October 2011 (MDT) ==&lt;br /&gt;
&lt;br /&gt;
As part of getting Debian working on the board I've prepared a few small patches (mainly so that we don't have to use someone else's board type).. Do you guys mind me submitting them for inclusion in the kernel? I'm not sure if they would go in, but its worth a try.&lt;br /&gt;
&lt;br /&gt;
This looks better than it did before ;)&lt;br /&gt;
&lt;br /&gt;
 [    0.000000] Linux version 3.1.0-rc4-dgp (root@ein) (gcc version 4.6.1 (Debian 4.6.1-15) ) #3 Sun Oct 16 04:53:22 UTC 2011&lt;br /&gt;
 [    0.000000] CPU: ARM926EJ-S [41069265] revision 5 (ARMv5TEJ), cr=00053177&lt;br /&gt;
 [    0.000000] CPU: VIVT data cache, VIVT instruction cache&lt;br /&gt;
 [    0.000000] Machine: Mini-Box.com pico-SAM9G45&lt;br /&gt;
&lt;br /&gt;
===Re: Mainline support -- [[User:Npavel|Npavel]] 09:01, 16 October 2011 (MDT)===&lt;br /&gt;
&lt;br /&gt;
: We would like to do that, and add a proper board- configuration file, but we're waiting to see if there are any changes to the hardware for the upcoming enclosure/lcd/touch panel.&lt;br /&gt;
If you don't mind you can upload the patches, and refer them in the kernel building page till we have a patch. I will make sure that you are included in the credits in our next patch.&lt;br /&gt;
&lt;br /&gt;
====Re: Re: Mainline support -- [[Special:Contributions/24.6.3.23|24.6.3.23]] 21:58, 16 October 2011 (MDT)====&lt;br /&gt;
&lt;br /&gt;
Hi,&lt;br /&gt;
&lt;br /&gt;
I have basically copied the board file that was being used and cleaned up the stuff for the LEDs etc.. and added them to the Kconfig so that you can select the right board :) And added some fixes from other places like enabling the pwm led driver for at91. I've got a pretty clean config that can be used as a defconfig for the board as well.&lt;br /&gt;
&lt;br /&gt;
I'm having trouble getting the second bank of RAM to be usable in 3.1. I need/want to use 3.1 because of fixes/improvements in the mmc driver.&lt;br /&gt;
I noticed that you have a patch in the arm linux tracker for 2.6.32. I can't for the life of me get this working (it seems some of the arm memory mapping stuff has changed).&lt;br /&gt;
Apparently reordering the banks so that the lower addressed one is first, enabling highmem support and loading the kernel to the lower bank works (near the end of this post -- http://lists.arm.linux.org.uk/lurker/message/20110726.133702.b4d4e58f.en.html).&lt;br /&gt;
&lt;br /&gt;
Do you have any thoughts? Everything is running great.. but only with 128MB of RAM.&lt;br /&gt;
&lt;br /&gt;
=====Re: Re: Re: Mainline support -- [[User:Npavel|Npavel]] 00:23, 18 October 2011 (MDT)=====&lt;br /&gt;
&lt;br /&gt;
::: It looks like we first need to fix Atmel MCI driver.&lt;br /&gt;
&lt;br /&gt;
======Re: Re: Re: Re: Mainline support -- [[Special:Contributions/24.6.3.23|24.6.3.23]] 20:51, 18 October 2011 (MDT)======&lt;br /&gt;
&lt;br /&gt;
The Atmel MCI driver is fixed in the 3.1rc? series. I'm running 3.1.0rc4 right now. Apparently, it has some improvements over the older driver like the ability to use the DMA controller. Atmel seems to have been fairly active lately.&lt;br /&gt;
&lt;br /&gt;
I have the kernel loading into the lower bank of RAM now.. &lt;br /&gt;
&lt;br /&gt;
-I- Card size: 1886 MB&lt;br /&gt;
&lt;br /&gt;
-I- Copy &amp;quot;linux.bin&amp;quot; from SdCard to 0x20000000&lt;br /&gt;
&lt;br /&gt;
-I- load: 20008000 jump: 20008000&lt;br /&gt;
&lt;br /&gt;
-I- Loading to 0x20007fc0 with size 0x001947e8&lt;br /&gt;
&lt;br /&gt;
-I- MEDSdcard init&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
So I see this instead&lt;br /&gt;
&lt;br /&gt;
Ignoring RAM at 70000000-77ffffff (vmalloc region overlap).&lt;br /&gt;
&lt;br /&gt;
I think now we can have a decent memory setup.. instead of having the lower bank mapped after the high bank.&lt;br /&gt;
&lt;br /&gt;
=======Re: Re: Re: Re: Re: Mainline support -- [[Special:Contributions/24.6.3.23|24.6.3.23]] 00:46, 19 October 2011 (MDT)=======&lt;br /&gt;
&lt;br /&gt;
I have both banks of RAM working in 3.1rc4 now. I'll clean up my changes to the kernel and get a patch together that everyone can use.&lt;br /&gt;
&lt;br /&gt;
 daniel@ein:~$ dmesg &lt;br /&gt;
 [    0.000000] Linux version 3.1.0-rc4-dgp (root@ein) (gcc version 4.6.1 (Debian  4.6.1-15) ) #13 Wed Oct 19 06:37:31 UTC 2011&lt;br /&gt;
 [    0.000000] CPU: ARM926EJ-S [41069265] revision 5 (ARMv5TEJ), cr=00053177&lt;br /&gt;
 [    0.000000] CPU: VIVT data cache, VIVT instruction cache&lt;br /&gt;
 [    0.000000] Machine: Mini-Box.com pico-SAM9G45&lt;br /&gt;
 [    0.000000] Memory policy: ECC disabled, Data cache writeback&lt;br /&gt;
 [    0.000000] AT91: Detected soc type: at91sam9g45&lt;br /&gt;
 [    0.000000] AT91: Detected soc subtype: Unknown&lt;br /&gt;
 [    0.000000] AT91: sram at 0x300000 of 0x10000 mapped at 0xfef68000&lt;br /&gt;
 [    0.000000] On node 0 totalpages: 65536&lt;br /&gt;
 [    0.000000]   Normal zone: 2816 pages used for memmap&lt;br /&gt;
 [    0.000000]   Normal zone: 0 pages reserved&lt;br /&gt;
 [    0.000000]   Normal zone: 62720 pages, LIFO batch:15&lt;br /&gt;
 [    0.000000] Clocks: CPU 400 MHz, master 133 MHz, main 12.000 MHz&lt;br /&gt;
 [    0.000000] pcpu-alloc: s0 r0 d32768 u32768 alloc=1*32768&lt;br /&gt;
 [    0.000000] pcpu-alloc: [0] 0 &lt;br /&gt;
 [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages:  62720&lt;br /&gt;
 [    0.000000] Kernel command line: mem=128M@0x20000000 mem=128M@0x70000000  console=ttyS0,115200 root=/dev/mmcblk0p2 rw rootdelay=1 rootwait=1&lt;br /&gt;
 [    0.000000] PID hash table entries: 1024 (order: 0, 4096 bytes)&lt;br /&gt;
 [    0.000000] Dentry cache hash table entries: 32768 (order: 5, 131072 bytes)&lt;br /&gt;
 [    0.000000] Inode-cache hash table entries: 16384 (order: 4, 65536 bytes)&lt;br /&gt;
 [    0.000000] Memory: 128MB 128MB = 256MB total&lt;br /&gt;
 [    0.000000] Memory: 256516k/256516k available, 5628k reserved, 0K highmem&lt;br /&gt;
 [    0.000000] Virtual kernel memory layout:&lt;br /&gt;
 [    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)&lt;br /&gt;
 [    0.000000]     fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)&lt;br /&gt;
 [    0.000000]     DMA     : 0xffa00000 - 0xffe00000   (   4 MB)&lt;br /&gt;
 [    0.000000]     vmalloc : 0xd0800000 - 0xfee00000   ( 742 MB)&lt;br /&gt;
 [    0.000000]     lowmem  : 0xc0000000 - 0xd0000000   ( 256 MB)&lt;br /&gt;
 [    0.000000]     modules : 0xbf000000 - 0xc0000000   (  16 MB)&lt;br /&gt;
 [    0.000000]       .text : 0xc0008000 - 0xc02ee000   (2968 kB)&lt;br /&gt;
 [    0.000000]       .init : 0xc02ee000 - 0xc0309000   ( 108 kB)&lt;br /&gt;
 [    0.000000]       .data : 0xc030a000 - 0xc032b6a0   ( 134 kB)&lt;br /&gt;
 [    0.000000]        .bss : 0xc032b6c4 - 0xc0338798   (  53 kB)&lt;br /&gt;
 [    0.000000] NR_IRQS:192&lt;br /&gt;
 [    0.000000] AT91: 160 gpio irqs in 5 banks&lt;br /&gt;
 [    0.000000] Console: colour dummy device 80x30&lt;br /&gt;
&lt;br /&gt;
========Re: Re: Re: Re: Re: Re: Mainline support -- [[User:Npavel|Npavel]] 10:33, 24 October 2011 (MDT)========&lt;br /&gt;
&lt;br /&gt;
:::::: I added a new kernel branch minibox-picopc-3&lt;br /&gt;
&lt;br /&gt;
=========Re: Re: Re: Re: Re: Re: Re: Mainline support -- [[Special:Contributions/24.6.3.23|24.6.3.23]] 21:26, 25 October 2011 (MDT)=========&lt;br /&gt;
&lt;br /&gt;
Hi,&lt;br /&gt;
&lt;br /&gt;
I couldnt that you had done anything to the upstream source.. so I've created a clone. I will merge my patches into my clone. You can then pull/clean up anything you what to put into the official version. &lt;br /&gt;
&lt;br /&gt;
Cheers,&lt;br /&gt;
&lt;br /&gt;
Daniel&lt;br /&gt;
&lt;br /&gt;
==========Re: Re: Re: Re: Re: Re: Re: Re: Mainline support -- [[User:Npavel|Npavel]] 04:12, 4 November 2011 (MDT)==========&lt;br /&gt;
&lt;br /&gt;
:::::::: You can use this branch for additions: https://gitorious.org/picopc-kernel/kernel/commits/minibox-picopc-3.1-testing&lt;br /&gt;
&lt;br /&gt;
== User Keys/pins -- [[Special:Contributions/76.219.174.46|76.219.174.46]] 19:53, 21 October 2011 (MDT) ==&lt;br /&gt;
&lt;br /&gt;
Hello,&lt;br /&gt;
I want to use the &amp;quot;User pins&amp;quot; on the processor, &lt;br /&gt;
&lt;br /&gt;
Marked in the schematic:&lt;br /&gt;
&amp;quot;LEFT&amp;quot; = E7 &lt;br /&gt;
&amp;quot;RIGHT&amp;quot; = B5 &lt;br /&gt;
&amp;quot;OK&amp;quot; = D6 &lt;br /&gt;
&amp;quot;USR[1..4]&amp;quot; = F7, A4, C5, B4 &lt;br /&gt;
&lt;br /&gt;
I know the schematic says DNP the &amp;quot;[LEFT] [RIGHT] [OK] &amp;amp; User buttons&amp;quot;  traces, but is there any other way to get to the &amp;quot;USR&amp;quot; pins on the processor?  &lt;br /&gt;
&lt;br /&gt;
PS:  I can't wait to see the enclosures for the board:)&lt;br /&gt;
&lt;br /&gt;
== Using ADB USB on Linux -- [[Special:Contributions/95.115.230.174|95.115.230.174]] 03:42, 23 October 2011 (MDT) ==&lt;br /&gt;
&lt;br /&gt;
... doesn't seem to work for me!&amp;lt;br&amp;gt;&lt;br /&gt;
I tried with a couple of different udev rules on Ubuntu 11.04 and Ubuntu 11.10 ... no success, 'adb devices' comes up empty, although 'lsusb' lists the device as:&amp;lt;br&amp;gt;&lt;br /&gt;
 Bus 001 Device 005: ID 18d1:9018 Google Inc.&lt;br /&gt;
Some strange effect with the 'Eclair' image - the device doesn't show up at all! Any ideas how to make this work - it's a nice board, but basically useless as a development platform right now.&amp;lt;br&amp;gt;&lt;br /&gt;
Regards,&amp;lt;br&amp;gt;&lt;br /&gt;
Steffen Elste&lt;br /&gt;
&lt;br /&gt;
===Re: Using ADB USB on Linux -- [[Special:Contributions/95.115.230.174|95.115.230.174]] 06:02, 23 October 2011 (MDT)===&lt;br /&gt;
&lt;br /&gt;
Update:&lt;br /&gt;
Got it working finally - if the board is powered only via the Micro-USB connector 'lsusb' shows the device but 'adb devices' doesn't find it!&amp;lt;br&amp;gt;&lt;br /&gt;
I'm now using this udev rule:&amp;lt;br&amp;gt;&lt;br /&gt;
 SUBSYSTEMS==&amp;quot;usb&amp;quot;, ATTRS{idVendor}==&amp;quot;18d1&amp;quot;, ATTRS{idProduct}==&amp;quot;9018&amp;quot;, MODE=&amp;quot;0666&amp;quot;&lt;br /&gt;
which works on either Ubuntu 11.04 and 11.10&amp;lt;br&amp;gt;&lt;br /&gt;
Regards,&amp;lt;br&amp;gt;&lt;br /&gt;
Steffen Elste&lt;br /&gt;
&lt;br /&gt;
== connecting to a bigger LCD --  ==&lt;br /&gt;
&lt;br /&gt;
Hi&lt;br /&gt;
&lt;br /&gt;
I'm looking to connect the pico-SAM9G45 to an 15'' or 17'' LCD screen (not through VGA). I wondered if you know of an LCD screen that would fit? can we connect LVDS screens?&lt;br /&gt;
&lt;br /&gt;
I would appreciate any help. &lt;br /&gt;
&lt;br /&gt;
thanks very much&lt;br /&gt;
&lt;br /&gt;
Lior&lt;br /&gt;
&lt;br /&gt;
== Ethernet access -- [[User:Jex|Jex]] 05:59, 6 November 2011 (MST) ==&lt;br /&gt;
&lt;br /&gt;
Hi,&lt;br /&gt;
I just writed and installed my MicroSD with Angstrom Linux and start my card with power on mini USB and ethernet port connected on my router...&lt;br /&gt;
My router tell me the ethernet connexion is not running. Then I don't know the IP address of the pico card and can't connect via RSH. Is it a bug or have I first to connect with serial port to configure Linux / Ethernet ?&lt;br /&gt;
Best regards. Jacques&lt;br /&gt;
&lt;br /&gt;
===Re: Ethernet access -- [[User:Npavel|Npavel]] 01:22, 7 November 2011 (MST)===&lt;br /&gt;
&lt;br /&gt;
: Make sure your router has a running DHCP server.&lt;br /&gt;
&lt;br /&gt;
====Re: Re: Ethernet access -- [[User:Jex|Jex]] 10:19, 7 November 2011 (MST)====&lt;br /&gt;
&lt;br /&gt;
I restarted the MicroSD Linux installation with a Windows 7 computer. With WinImage tool, I verified the image is correct. It seems OK  : I constructed an image of MicroSD after burning and I saw the Linux files in the image. Then I restarted the card with Ethernet. Now, my router tell me there is a connexion, and the Ethernet LED's are active. OK.&lt;br /&gt;
Now, can I connect me over Ethernet with rlogin, SSH, or telnet ?&lt;br /&gt;
What is the predefined password for root ?&lt;br /&gt;
&lt;br /&gt;
=====Re: Re: Re: Ethernet access -- [[User:Jex|Jex]] 14:10, 9 November 2011 (MST)=====&lt;br /&gt;
&lt;br /&gt;
::: OK, now I can connect with SSH on port number 22... root/root. The problem was to know the IP Address.&lt;br /&gt;
&lt;br /&gt;
== Randomized MAC Address at boot !! -- [[User:Jex|Jex]] 14:16, 9 November 2011 (MST) ==&lt;br /&gt;
&lt;br /&gt;
Hello,&lt;br /&gt;
To connect on the card over Ethernet, we need to know the IP address of picosam9.&lt;br /&gt;
But, each time we restart the card a new (randomized) MAC address is used. Then, DHCP provides a new IP address to the card at each reboot... Please How can we stabilize the eth0 MAC at boot ?&lt;br /&gt;
&lt;br /&gt;
===Re: Randomized MAC Address at boot !! -- [[Special:Contributions/86.124.49.29|86.124.49.29]] 08:25, 14 November 2011 (MST)===&lt;br /&gt;
&lt;br /&gt;
: There are different methods but the easiest one is to run this command at startup:&lt;br /&gt;
&lt;br /&gt;
  ifconfig eth0 hw ether 00:01:02:03:04:05&lt;br /&gt;
&lt;br /&gt;
====Re: Re: Randomized MAC Address at boot !! -- [[Special:Contributions/60.251.198.233|60.251.198.233]] 02:36, 24 February 2012 (MST)====&lt;br /&gt;
&lt;br /&gt;
Hi,&lt;br /&gt;
&lt;br /&gt;
Please advise how to write a permanent MAC address while building a new image. &lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
James&lt;br /&gt;
&lt;br /&gt;
== 3g modem -- [[Special:Contributions/193.141.16.74|193.141.16.74]] 04:28, 14 November 2011 (MST) ==&lt;br /&gt;
&lt;br /&gt;
I inserted an Option GTM617W modem in a pico-SAM9G45 board. The modem is detected and after enabling the hso driver in the kernel the serial ports are setup correctly. However when I reboot the board (without power-cycling) the modem is not detected anymore! To get the modem working again without power-cycling I have to pull the PERST# on the mini PCI express port to 0V. When I release this pin the modem is detected again. I also tried to reset the usb hub by shortening C74, but that does not make the modem detectable again. For now we have a workaround by connecting PERST# to USR1. And in the OS when the modem has not been detected just toggle the USR1 gpio and wait for the kernel to detect it again.&lt;br /&gt;
&lt;br /&gt;
We also have another 3g modem (Huwei E770) but this modem is sometimes not detected (conditions to be detectable are very random). Hub reset or PERST# toggle do not help much.&lt;br /&gt;
&lt;br /&gt;
Now comes the interesting part: When I insert one of the modems above into an USB to mini pci express converter it is impossible to not detect the modem! (everything works as expected)&lt;br /&gt;
&lt;br /&gt;
I suspect the 3.3v power supply on the pico-SAM9G45 board from not delivering enough power to the pci bus, causing the 3g modem in a undesirable state.&lt;br /&gt;
&lt;br /&gt;
===Re: 3g modem -- [[Special:Contributions/86.124.49.29|86.124.49.29]] 08:27, 14 November 2011 (MST)===&lt;br /&gt;
&lt;br /&gt;
: I reported this to the hardware team. Does [http://arm.mini-box.com/index.php?title=Kernel_changes_for_custom_hardware#Power_cycle.2FReset_miniPCI-E_cards_or_USB_devices this method] work for detection ?&lt;br /&gt;
&lt;br /&gt;
====Re: Re: 3g modem -- [[Special:Contributions/193.141.16.74|193.141.16.74]] 12:26, 14 November 2011 (MST)====&lt;br /&gt;
&lt;br /&gt;
:: No, when it is not detected I can not deauthorize my not detected device. What remains is deauthorize the USB hub but that does not make any difference.&lt;br /&gt;
:: Why are Q2 and related components not placed? This could help me to switch off/on the USB pci device.&lt;br /&gt;
&lt;br /&gt;
=====Re: Re: Re: 3g modem -- [[User:Npavel|Npavel]] 12:46, 14 November 2011 (MST)=====&lt;br /&gt;
&lt;br /&gt;
::: Does this happen with an external power supply (12V for example) or you use microUSB port for power ?&lt;br /&gt;
&lt;br /&gt;
======Re: Re: Re: Re: 3g modem -- [[Special:Contributions/193.141.16.74|193.141.16.74]] 00:40, 15 November 2011 (MST)======&lt;br /&gt;
&lt;br /&gt;
:::: I just tried it with 15V and 5V on the external power supply and I connected the board with microUSB. All gave the same result. (GTM617W modem, powerup works fine, after reboot it is not detected, after toggling PERST# it is detected again)&lt;br /&gt;
&lt;br /&gt;
== Option GTM671W -- [[Special:Contributions/193.141.16.74|193.141.16.74]] 03:27, 28 November 2011 (MST) ==&lt;br /&gt;
&lt;br /&gt;
The Option GTM671W (only 3g part, wifi uses the pci lanes) 3g modem finally works correctly on the pico-SAM9G45 board. But due to some mini pci express violations an adapter board with some disconnected lines had to be used!&lt;br /&gt;
&lt;br /&gt;
The lines 47, 49 and 51 are defined as reserved. However, the pico-SAM9G45 connects 5V to it. When this modem is used directly it becomes very hot and it is sometimes not detected as an usb device. When the modem stays on for several hours it becomes broken due to the high temperatures, this renders the modem useless and it becomes detected as another device.&lt;br /&gt;
&lt;br /&gt;
To connect this modem to the pico-SAM9G45 board an adapter board is needed because the modem is half-height. On this board the lines 47, 49 and 51 MUST be scratched. After this modification the modem functions correctly.&lt;br /&gt;
&lt;br /&gt;
The question remains why does the pico-SAM9G45 connect 5V to these lines? It is not in the mini pci express 1.2 specification (5V isn't even mentioned there). Is this to be fixed in a future hardware revision?&lt;br /&gt;
&lt;br /&gt;
== HUAWEI EM770  -- [[Special:Contributions/193.141.16.74|193.141.16.74]] 03:53, 28 November 2011 (MST) ==&lt;br /&gt;
&lt;br /&gt;
The HUAWEI EM770 3g modem finally works correctly on the pico-SAM9G45 board. But due to some mini pci express violations an adapter board with a disconnected line had to be used!&lt;br /&gt;
&lt;br /&gt;
Line 20 is defined as W_DISABLE#. According to PCI Express Mini Card Electromechanical Specification Revision 1.2 October 26, 2007, page 48 the modem must pull-up this signal when it implements this function.  However, the pico-SAM9G45 connects 3.3V to it. When this modem is used directly it is not detected as an usb device. &lt;br /&gt;
&lt;br /&gt;
When I put an adapterboard in between and scratch line 20 the modem functions correctly!&lt;br /&gt;
&lt;br /&gt;
The question remains why does the pico-SAM9G45 connect +3.3V to this line? It is not very clear to me in the specification but I don't think de-asserted means just connect 3.3V to it, because the card already has a pull-up on this line. Is this to be fixed in a future hardware revision?&lt;br /&gt;
&lt;br /&gt;
===Re: HUAWEI EM770  -- [[User:Npavel|Npavel]] 05:21, 28 November 2011 (MST)===&lt;br /&gt;
&lt;br /&gt;
: Thanks for your findings I alerted the hardware dev team and waiting for an answer.&lt;br /&gt;
&lt;br /&gt;
== Problem compliling Ångström OS on openSUSE 11.4 (32bit) -- [[Special:Contributions/195.234.6.80|195.234.6.80]] 07:33, 19 December 2011 (MST) ==&lt;br /&gt;
&lt;br /&gt;
I've bought pico-SAM9G45. Delivery cost  is quite affordable (USPS Express Mail, Ukraine).&lt;br /&gt;
Installed and run pre-built OS. Everything is okay.&lt;br /&gt;
I tried to build the kernel or a base image Angstrom distribution. After running the commands:&lt;br /&gt;
&lt;br /&gt;
…&lt;br /&gt;
&lt;br /&gt;
MACHINE=picosam9 ./oebb.sh bitbake virtual/kernel&lt;br /&gt;
&lt;br /&gt;
MACHINE=picosam9 ./oebb.sh bitbake base-image&lt;br /&gt;
&lt;br /&gt;
I've got the following error:&lt;br /&gt;
&lt;br /&gt;
“ERROR:  Poky's config sanity checker detected a potential misconfiguration.&lt;br /&gt;
    Either fix the cause of this error or at your own risk disable the checker (see sanity.conf).&lt;br /&gt;
    Following is the list of potential problems / advisories:&lt;br /&gt;
&lt;br /&gt;
    Do not use Bitbake as root.&lt;br /&gt;
ERROR: Execution of event handler 'check_sanity_eventhandler' failed”&lt;br /&gt;
&lt;br /&gt;
What could be wrong?&lt;br /&gt;
&lt;br /&gt;
===Re: Problem compliling Ångström OS on openSUSE 11.4 (32bit) -- [[Special:Contributions/188.227.12.162|188.227.12.162]] 03:10, 31 January 2012 (MST)===&lt;br /&gt;
&lt;br /&gt;
Just don't start bitbake under root account.&lt;br /&gt;
I've got another problem with Angstrom: it says that MACHINE=picosam9 is unknown name and doesn't build anything. Does anybody know, how to fix it?&lt;br /&gt;
&lt;br /&gt;
====Re: Re: Problem compliling Ångström OS on openSUSE 11.4 (32bit) -- [[Special:Contributions/207.58.255.194|207.58.255.194]] 11:18, 1 February 2012 (MST)====&lt;br /&gt;
&lt;br /&gt;
I have not been successful generating and compiling the Angstrom build by following the instructions on the Mini-box site. Running the setup-scripts and oebb.sh generates a directory structure that is different than the one specified by Openembedded. I think this is part of the problem There is no mention in the instructions on any mods to local.conf or BBPATH. When I try MACHINE=picosam9 bitbake gpe-image it eventually states 'there is nothing to build'.  I have twice built kernel/fs using Openembedded/Angstrom on Atmel devices and there were issues (always issues with Linux) but they were fixed with available patches, etc.&lt;br /&gt;
&lt;br /&gt;
== RS232 to TTL adapter 3.3V -- [[Special:Contributions/193.141.16.74|193.141.16.74]] 08:23, 19 December 2011 (MST) ==&lt;br /&gt;
&lt;br /&gt;
Perhaps it is wise to inform users about the fact that the USARTs operate at 3.3V. When using a standard TTL (5V) to RS232 adapter the processor is operating beyond the absolute maximum ratings.&lt;br /&gt;
&lt;br /&gt;
== USB keyboard -- [[User:Linus63|Linus63]] 06:04, 30 January 2012 (MST) ==&lt;br /&gt;
&lt;br /&gt;
Hello,&lt;br /&gt;
&lt;br /&gt;
I want to know how to connect an USB keyboard with a SAM9G45 card?&lt;br /&gt;
&lt;br /&gt;
Thanks in advance&lt;br /&gt;
&lt;br /&gt;
== Serial on J9 -- [[Special:Contributions/151.13.69.69|151.13.69.69]] 03:46, 7 February 2012 (MST) ==&lt;br /&gt;
&lt;br /&gt;
Hello,&lt;br /&gt;
I successful work with serial on J7, using /dev/ttyS2...&lt;br /&gt;
but on J9, who ttyS* I use?&lt;br /&gt;
&lt;br /&gt;
Thank&lt;br /&gt;
&lt;br /&gt;
===Re: Serial on J9 -- [[User:RGB&amp;amp;amp;|RGB&amp;amp;amp;]] 08:39, 7 February 2012 (MST)===&lt;br /&gt;
&lt;br /&gt;
: UART2 on J9 is not registered in the kernel. You have to registered it in /kernel/arch/arm/mach-at91/board-sam9m10g45ek&lt;br /&gt;
&lt;br /&gt;
====Re: Re: Serial on J9 -- [[Special:Contributions/151.13.69.69|151.13.69.69]] 10:19, 7 February 2012 (MST)====&lt;br /&gt;
&lt;br /&gt;
:: Much thanks ... I try as soon as I can... However, you must recompile the kernel, what I wanted to avoid.&lt;br /&gt;
&lt;br /&gt;
== ICS Display -- [[User:Rweiland|Rweiland]] 13:28, 10 February 2012 (MST) ==&lt;br /&gt;
&lt;br /&gt;
When booting ICS alpha 1 with 7&amp;quot; Hannstar LCD, I get a digital clock when pressing back button, or &amp;quot;Make yourself at home&amp;quot; when pressing menu.  Nothing else. Cockpit error, or expected behavior?  Gingerbread works.&lt;br /&gt;
&lt;br /&gt;
Cheers, and thanks for a great product!&lt;br /&gt;
Ron&lt;br /&gt;
&lt;br /&gt;
== RTS/CTS on J7 not work -- [[Special:Contributions/151.13.69.69|151.13.69.69]] 05:00, 20 February 2012 (MST) ==&lt;br /&gt;
&lt;br /&gt;
Hello, &lt;br /&gt;
using /dev/ttyS2 on J7 and setting by&lt;br /&gt;
&amp;quot;stty -F /dev/ttyS2 19200 -raw -echo crtscts&amp;quot;, RTS/CTS signal is not enabled properly.&lt;br /&gt;
&lt;br /&gt;
What should I do?&lt;br /&gt;
&lt;br /&gt;
Thank&lt;br /&gt;
&lt;br /&gt;
== NFS or Samba Access from picosam9 -- [[User:Jex|Jex]] 18:19, 7 May 2012 (MDT) ==&lt;br /&gt;
&lt;br /&gt;
Hello,&lt;br /&gt;
I use the Angtrom precompiled OS. When I try to mount a filesystem on NFS ressource or Samba ressource I have an error (example for nfs : no such device). Is NFS or CIFS compiled in kernel ? Anyone have succes with networked filesystem ?&lt;br /&gt;
Regards&lt;br /&gt;
&lt;br /&gt;
== Need help with powering up pico-SAM9G45 -- [[User:Jphil|Jphil]] 02:50, 10 June 2012 (MDT) ==&lt;br /&gt;
&lt;br /&gt;
I just got my pico-SAM9G45, power adapter and 4.3 LCD screen. all are connected and I have loaded android image on an SD card, not microSD card.&lt;br /&gt;
&lt;br /&gt;
I plugged everything in and powered it up, nothing shows up on the screen.&lt;br /&gt;
&lt;br /&gt;
Are there some basic steps to get it going, first time using this type of motherboard and system, what am I missing?&lt;br /&gt;
&lt;br /&gt;
PLEASE HELP!!!!&lt;br /&gt;
&lt;br /&gt;
THX, Joel&lt;br /&gt;
&lt;br /&gt;
===Re: Need help with powering up pico-SAM9G45 -- [[User:Sweidinger|Sweidinger]] 09:46, 13 June 2012 (MDT)===&lt;br /&gt;
&lt;br /&gt;
: Hi Joel,&lt;br /&gt;
i'm an newbie in this board, too.&lt;br /&gt;
But I think board can not boot from SD-Card, only from microSD.&lt;br /&gt;
Lets have try with the microSD an tell me, if it works. ;-)&lt;br /&gt;
&lt;br /&gt;
Greetings, Stefan&lt;br /&gt;
&lt;br /&gt;
== Howto write an Android App wich controls the Hardware I/O's -- [[User:Sweidinger|Sweidinger]] 05:50, 16 June 2012 (MDT) ==&lt;br /&gt;
&lt;br /&gt;
Hello there,&lt;br /&gt;
can someone make a simple Howto for the Android SDK to control the onboard I/O's?&lt;br /&gt;
&lt;br /&gt;
Greetings from Germany ;-)&lt;br /&gt;
Stefan.&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=File:Picture3.jpg&amp;diff=159</id>
		<title>File:Picture3.jpg</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=File:Picture3.jpg&amp;diff=159"/>
		<updated>2020-10-20T11:30:57Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=File:Picture2.jpg&amp;diff=158</id>
		<title>File:Picture2.jpg</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=File:Picture2.jpg&amp;diff=158"/>
		<updated>2020-10-20T11:30:40Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=File:Picture1.jpg&amp;diff=157</id>
		<title>File:Picture1.jpg</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=File:Picture1.jpg&amp;diff=157"/>
		<updated>2020-10-20T11:30:16Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=Connecting_With_Sam-BA&amp;diff=156</id>
		<title>Connecting With Sam-BA</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=Connecting_With_Sam-BA&amp;diff=156"/>
		<updated>2020-10-20T11:30:03Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MicroUSB-OTG-port}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Download a suitable version of Sam-BA from [http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3883 here] and install it.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
==Sam-BA on Windows ==&lt;br /&gt;
&lt;br /&gt;
Plug in the pico-SAM9G45 board and it should appear as &amp;quot;atm6124.Sys AMTEL AT91xxxxx Test Board&amp;quot;&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[File:picture1.jpg|link=]]&lt;br /&gt;
  &lt;br /&gt;
Start SAM-BA GUI Application.&amp;lt;br&amp;gt;  &lt;br /&gt;
Choose the USB Connection /usb/ARM0.&amp;lt;br&amp;gt; &lt;br /&gt;
Select the the at91sam9g45-ek board in the drop-down menu and press connect.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[File:picture2.jpg|link=]]&lt;br /&gt;
&lt;br /&gt;
In the main SAM-BA window you will have: &lt;br /&gt;
&lt;br /&gt;
[[File:picture3.jpg|link=]]&lt;br /&gt;
&lt;br /&gt;
==Sam-BA on Linux ==&lt;br /&gt;
Unload usbserial module if it is already running by issuing: &lt;br /&gt;
    sudo rmmod usbserial&lt;br /&gt;
Load usbserial kernel module:&lt;br /&gt;
    sudo modprobe usbserial vendor=0x03eb product=0x6124&lt;br /&gt;
Verify that the USB connection is established:&lt;br /&gt;
    lsusb -d 03eb:6124&lt;br /&gt;
&lt;br /&gt;
    Bus 004 Device 006: ID 03eb:6124 Atmel Corp&lt;br /&gt;
&lt;br /&gt;
Know which USB connection is established:&lt;br /&gt;
    dmesg &lt;br /&gt;
    ...&lt;br /&gt;
    kernel: usb 4-2: new full speed USB device using uhci_hcd and address 5&lt;br /&gt;
    kernel: usb 4-2: configuration #1 chosen from 1 choice&lt;br /&gt;
    kernel: usbserial_generic 4-2:1.0: generic converter detected&lt;br /&gt;
    kernel: usbserial_generic: probe of 4-2:1.0 failed with error -5&lt;br /&gt;
    kernel: usbserial_generic 4-2:1.1: generic converter detected&lt;br /&gt;
    kernel: usb 4-2: generic converter now attached to ttyUSBx&lt;br /&gt;
&lt;br /&gt;
=&amp;gt; you will have to use /dev/ttyUSBx instead of \usb\ARM0 to connect to your board&lt;br /&gt;
&lt;br /&gt;
NOTE: On some Linux systems, instead of /dev/ttyUSB0, the device that is created may be /dev/ttyACM0 (the dmesg command will show the device).  The sam-ba utility will not look for or find this device.  The workaround is to create a symbolic link called /dev/ttyUSB0 before running the utility:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;sudo ln -sf /dev/ttyACM0 /dev/ttyS0&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
sam-ba will then work correctly.  Remember to remove the symbolic link when you are finished using the the utility, so that the system can create a real /dev/ttyUSB0 if needed.&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=File:Pico-SAM9G45-back-view.jpg&amp;diff=155</id>
		<title>File:Pico-SAM9G45-back-view.jpg</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=File:Pico-SAM9G45-back-view.jpg&amp;diff=155"/>
		<updated>2020-10-20T11:28:12Z</updated>

		<summary type="html">&lt;p&gt;Admin: Blanked the page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=File:Pico-SAM9G45-dev-board.jpg&amp;diff=154</id>
		<title>File:Pico-SAM9G45-dev-board.jpg</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=File:Pico-SAM9G45-dev-board.jpg&amp;diff=154"/>
		<updated>2020-10-20T11:27:57Z</updated>

		<summary type="html">&lt;p&gt;Admin: Blanked the page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=Installing_Android_Market&amp;diff=153</id>
		<title>Installing Android Market</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=Installing_Android_Market&amp;diff=153"/>
		<updated>2020-10-20T08:37:21Z</updated>

		<summary type="html">&lt;p&gt;Admin: Protected &amp;quot;Installing Android Market&amp;quot; ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Our Android build doesn't come with Android Market and other copyrighted Google applications installed since we aren't in Google partner program.&amp;lt;br&amp;gt;&lt;br /&gt;
For users that want to install these applications they can be downloaded from: http://goo.im/gapps/&amp;lt;br&amp;gt;&lt;br /&gt;
Latest tested version for our Gingerbread releases were:  http://goo.im/gapps/gapps-gb-20110307-signed.zip&lt;br /&gt;
&lt;br /&gt;
To install simply remove the microSD card from the slot, mount ROOTFS partition on a PC and copy the contents of the zip to the root of the mounted partition.&lt;br /&gt;
&lt;br /&gt;
Note: Google Market will auto-update to Google Play which will stop working after upgrade.&amp;lt;br&amp;gt;&lt;br /&gt;
To use the market service you need&amp;lt;br&amp;gt;&lt;br /&gt;
to go to Settings-&amp;gt;Application and uninstall the update for Google Market.&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=Installing_Android_Market&amp;diff=152</id>
		<title>Installing Android Market</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=Installing_Android_Market&amp;diff=152"/>
		<updated>2020-10-20T08:37:13Z</updated>

		<summary type="html">&lt;p&gt;Admin: Created page with &amp;quot;Our Android build doesn't come with Android Market and other copyrighted Google applications installed since we aren't in Google partner program.&amp;lt;br&amp;gt; For users that want to in...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Our Android build doesn't come with Android Market and other copyrighted Google applications installed since we aren't in Google partner program.&amp;lt;br&amp;gt;&lt;br /&gt;
For users that want to install these applications they can be downloaded from: http://goo.im/gapps/&amp;lt;br&amp;gt;&lt;br /&gt;
Latest tested version for our Gingerbread releases were:  http://goo.im/gapps/gapps-gb-20110307-signed.zip&lt;br /&gt;
&lt;br /&gt;
To install simply remove the microSD card from the slot, mount ROOTFS partition on a PC and copy the contents of the zip to the root of the mounted partition.&lt;br /&gt;
&lt;br /&gt;
Note: Google Market will auto-update to Google Play which will stop working after upgrade.&amp;lt;br&amp;gt;&lt;br /&gt;
To use the market service you need&amp;lt;br&amp;gt;&lt;br /&gt;
to go to Settings-&amp;gt;Application and uninstall the update for Google Market.&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=News&amp;diff=151</id>
		<title>News</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=News&amp;diff=151"/>
		<updated>2020-10-20T08:35:40Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h4&amp;gt;Recent News&amp;lt;/h4&amp;gt;&lt;br /&gt;
{{News}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h4&amp;gt;Older News&amp;lt;/h4&amp;gt;&lt;br /&gt;
* new release: Android 2.1 Eclair OS for picoSAM9G45 board -[[Releases|[7]]]&lt;br /&gt;
* how to change LCD screen resolution to match your display configuration - [[LCD_and_touch_screen_options|[8]]]&lt;br /&gt;
* WIFI chipset compatibility with Android OS for pico-SAM9G45 board - [[Main_Page#WIFI_chipset_compatibility|[9]]]&lt;br /&gt;
* 3D renders of pico-SAM9G45 board and the plastic enclosure with multiple mounting options -[[Releases|[10]]]&lt;br /&gt;
* how to emulate hardware buttons function in Android OS -[[Android_Buttons|[11]]]&lt;br /&gt;
* how to compile from sources -[[Compiling_from_sources|[12]]]&lt;br /&gt;
* how to disable/remove backlight booster -[[Backlight_control|[13]]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=News&amp;diff=150</id>
		<title>News</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=News&amp;diff=150"/>
		<updated>2020-10-20T08:34:57Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h4&amp;gt;Recent News&amp;lt;/h4&amp;gt;&lt;br /&gt;
{{News}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h4&amp;gt;Older News&amp;lt;/h4&amp;gt;&lt;br /&gt;
* new release: Android 2.1 Eclair OS for picoSAM9G45 board -[[Releases|[7]]]&lt;br /&gt;
* how to change LCD screen resolution to match your display configuration - [[LCD_and_touch_screen_options|[8]]]&lt;br /&gt;
* WIFI chipset compatibility with Android OS for pico-SAM9G45 board - [[Main_Page#WIFI_chipset_compatibility|[9]]]&lt;br /&gt;
* 3D renders of pico-SAM9G45 board and the plastic enclosure with multiple mounting options -[[Releases|[10]]]&lt;br /&gt;
* how to emulate hardware buttons function in Android OS -[[Android_Buttons|[11]]]&lt;br /&gt;
* how to compile from sources -[[Compiling_from_sources|[12]]]&lt;br /&gt;
* how to disable/remove backlight booster -[[Backlight_control|[13]]]&lt;br /&gt;
* compatible 4,3&amp;quot; TFT LCD with built-in touch screen - [https://www.mini-box.com/Hannstar-4-3-TFT-with-touchscreen]&lt;br /&gt;
* how to mount microSD and the LCD to pico-SAM9G45 board - [[MicroSD_and_LCD_mounting|[14]]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=News&amp;diff=149</id>
		<title>News</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=News&amp;diff=149"/>
		<updated>2020-10-20T08:34:39Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h4&amp;gt;Recent News&amp;lt;/h4&amp;gt;&lt;br /&gt;
{{News}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h4&amp;gt;Older News&amp;lt;/h4&amp;gt;&lt;br /&gt;
* new release: Android 2.1 Eclair OS for picoSAM9G45 board -[[Releases|[7]]]&lt;br /&gt;
* how to change LCD screen resolution to match your display configuration - [[LCD_and_touch_screen_options|[8]]]&lt;br /&gt;
* WIFI chipset compatibility with Android OS for pico-SAM9G45 board - [[Main_Page#WIFI_chipset_compatibility|[9]]]&lt;br /&gt;
* 3D renders of pico-SAM9G45 board and the plastic enclosure with multiple mounting options -[[Releases|[10]]]&lt;br /&gt;
* how to emulate hardware buttons function in Android OS -[[Android_Buttons|[11]]]&lt;br /&gt;
* how to compile from sources -[[Compiling_from_sources|[12]]]&lt;br /&gt;
* how to disable/remove backlight booster -[[Backlight_control|[13]]]&lt;br /&gt;
* compatible 4,3&amp;quot; TFT LCD with built-in touch screen - [https://www.mini-box.com/Hannstar-4-3-TFT-with-touchscreen]&lt;br /&gt;
* how to mount microSD and the LCD to pico-SAM9G45 board - [[MicroSD_and_LCD_mounting|[14]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=News&amp;diff=148</id>
		<title>News</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=News&amp;diff=148"/>
		<updated>2020-10-20T08:34:05Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h4&amp;gt;Recent News&amp;lt;/h4&amp;gt;&lt;br /&gt;
{{News}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h4&amp;gt;Older News&amp;lt;/h4&amp;gt;&lt;br /&gt;
* new release: Android 2.1 Eclair OS for picoSAM9G45 board -[[Releases|[7]]]&lt;br /&gt;
* how to change LCD screen resolution to match your display configuration - [[LCD_and_touch_screen_options|[8]]]&lt;br /&gt;
* WIFI chipset compatibility with Android OS for pico-SAM9G45 board - [[Main_Page#WIFI_chipset_compatibility|[9]]]&lt;br /&gt;
* 3D renders of pico-SAM9G45 board and the plastic enclosure with multiple mounting options -[[Releases|[10]]]&lt;br /&gt;
* how to emulate hardware buttons function in Android OS -[[Android_buttons|[11]]]&lt;br /&gt;
* how to compile from sources -[[Compiling_from_sources|[12]]]&lt;br /&gt;
* how to disable/remove backlight booster -[[Backlight_control|[13]]]&lt;br /&gt;
* compatible 4,3&amp;quot; TFT LCD with built-in touch screen - [https://www.mini-box.com/Hannstar-4-3-TFT-with-touchscreen]&lt;br /&gt;
* how to mount microSD and the LCD to pico-SAM9G45 board - [[MicroSD_and_LCD_mounting|[14]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=News&amp;diff=147</id>
		<title>News</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=News&amp;diff=147"/>
		<updated>2020-10-20T08:31:00Z</updated>

		<summary type="html">&lt;p&gt;Admin: Created page with &amp;quot;&amp;lt;h4&amp;gt;Recent News&amp;lt;/h4&amp;gt; {{News}}  &amp;lt;h4&amp;gt;Older News&amp;lt;/h4&amp;gt; * new release: Android 2.1 Eclair OS for picoSAM9G45 board -[[Releases ] * how to change LCD screen resolution to match your...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h4&amp;gt;Recent News&amp;lt;/h4&amp;gt;&lt;br /&gt;
{{News}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h4&amp;gt;Older News&amp;lt;/h4&amp;gt;&lt;br /&gt;
* new release: Android 2.1 Eclair OS for picoSAM9G45 board -[[Releases ]&lt;br /&gt;
* how to change LCD screen resolution to match your display configuration - [http://arm.mini-box.com/index.php?title=LCD_and_touch_screen_options ]&lt;br /&gt;
* WIFI chipset compatibility with Android OS for pico-SAM9G45 board - [http://arm.mini-box.com/index.php?title=Main_Page#WIFI_chipset_compatibility  ]&lt;br /&gt;
* 3D renders of pico-SAM9G45 board and the plastic enclosure with multiple mounting options -[http://arm.mini-box.com/index.php?title=Releases ]&lt;br /&gt;
* how to emulate hardware buttons function in Android OS -[http://arm.mini-box.com/index.php?title=Android_buttons ]&lt;br /&gt;
* how to compile from sources -[http://arm.mini-box.com/index.php?title=Compiling_from_sources ]&lt;br /&gt;
* how to disable/remove backlight booster -[http://arm.mini-box.com/index.php?title=Backlight_control ]&lt;br /&gt;
* compatible 4,3&amp;quot; TFT LCD with built-in touch screen - [http://www.mini-box.com/Hannstar-4-3-TFT-with-touchscreen ]&lt;br /&gt;
* how to mount microSD and the LCD to pico-SAM9G45 board - [http://arm.mini-box.com/index.php?title=MicroSD_and_LCD_mounting ]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=File:Lcd_datasheet_to_linux.jpg&amp;diff=146</id>
		<title>File:Lcd datasheet to linux.jpg</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=File:Lcd_datasheet_to_linux.jpg&amp;diff=146"/>
		<updated>2020-10-20T08:28:36Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=Linux_LCD_timing_handling_and_interfacing&amp;diff=145</id>
		<title>Linux LCD timing handling and interfacing</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=Linux_LCD_timing_handling_and_interfacing&amp;diff=145"/>
		<updated>2020-10-20T08:28:12Z</updated>

		<summary type="html">&lt;p&gt;Admin: Created page with &amp;quot;==Linux LCD Timing Handling and Interfacing==  Linux framebuffer drivers timing information is explained in detail at Documentation/fb/framebuffer.txt under Linux source tree....&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Linux LCD Timing Handling and Interfacing==&lt;br /&gt;
&lt;br /&gt;
Linux framebuffer drivers timing information is explained in detail at Documentation/fb/framebuffer.txt under Linux source tree. We will try to summarize this information here a bit.&lt;br /&gt;
&lt;br /&gt;
Following diagram shows which timing value from your LCD datasheet corresponds to which framebuffer settings.&lt;br /&gt;
&lt;br /&gt;
[[File:lcd_datasheet_to_linux.jpg]]&lt;br /&gt;
&lt;br /&gt;
LCD datasheets generally mention about back porch, front porch and so on whereas Linux uses notation of margins instead.&lt;br /&gt;
&lt;br /&gt;
===HSYNC and VSYNC Controlled LCD Displays===&lt;br /&gt;
&lt;br /&gt;
If your LCD uses hsync and vsync then you can easly convert LCD timing values to Linux display driver values using the diagram above.&lt;br /&gt;
&lt;br /&gt;
===DE Controller LCD Displays===&lt;br /&gt;
&lt;br /&gt;
In this type of displays, there are no such signals named hsync, vsync or back/front porch. Instead, they use horizontal/vertical period, valid and blank definitions. In this case you should refer to the timing diagram in LCD datasheet and convert these values to Linux framebuffer definitions by hand. Again you can refer to the above picture for conversion. In general following equations can be used:&lt;br /&gt;
&lt;br /&gt;
 xres = horizontal valid&lt;br /&gt;
 left margin = horizontal period - horizontal valid&lt;br /&gt;
 right margin = 0&lt;br /&gt;
 hsync_len = 0&lt;br /&gt;
&lt;br /&gt;
 yres = vertical valid&lt;br /&gt;
 upper margin = vertical period - vertical valid&lt;br /&gt;
 lower margin = 0&lt;br /&gt;
 vsync_len = 0&lt;br /&gt;
&lt;br /&gt;
You may need to interchange left-right margin and/or lower-upper margin values if your LCD datasheet diagrams shows otherwise. &lt;br /&gt;
&lt;br /&gt;
To calculate pixclock you can use this formula:&lt;br /&gt;
 pixclock = KHZ2PICOS(&lt;br /&gt;
             (xres + left_margin + right_margin + hsync_len)* &lt;br /&gt;
             (yres + upper_margin + lower_margin + vsync_len) *&lt;br /&gt;
              refresh / 1000&lt;br /&gt;
            )&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
parts &amp;amp;copy; [http://processors.wiki.ti.com/index.php/LCD_RGB_640x480_VGA_Addition http://processors.wiki.ti.com/index.php/LCD_RGB_640x480_VGA_Addition]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=Adding_a_new_LCD&amp;diff=144</id>
		<title>Adding a new LCD</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=Adding_a_new_LCD&amp;diff=144"/>
		<updated>2020-10-20T08:26:32Z</updated>

		<summary type="html">&lt;p&gt;Admin: Protected &amp;quot;Adding a new LCD&amp;quot; ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*Use the steps from [[Kernel Building]] page to obtain latest Kernel sources and the tool chain.&lt;br /&gt;
*Open the folder '''arch/arm/mach-at91/'''&lt;br /&gt;
*Edit the '''board-sam9m19g45ek.c''' on line '''204''' to add your LCD specifications, like: refresh rate, pixcloc, hsync_len etc&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=Adding_a_new_LCD&amp;diff=143</id>
		<title>Adding a new LCD</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=Adding_a_new_LCD&amp;diff=143"/>
		<updated>2020-10-20T08:26:16Z</updated>

		<summary type="html">&lt;p&gt;Admin: Created page with &amp;quot;*Use the steps from Kernel Building page to obtain latest Kernel sources and the tool chain. *Open the folder '''arch/arm/mach-at91/''' *Edit the '''board-sam9m19g45ek.c''...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*Use the steps from [[Kernel Building]] page to obtain latest Kernel sources and the tool chain.&lt;br /&gt;
*Open the folder '''arch/arm/mach-at91/'''&lt;br /&gt;
*Edit the '''board-sam9m19g45ek.c''' on line '''204''' to add your LCD specifications, like: refresh rate, pixcloc, hsync_len etc&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=About_Mini-Box.com&amp;diff=142</id>
		<title>About Mini-Box.com</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=About_Mini-Box.com&amp;diff=142"/>
		<updated>2020-10-20T08:24:20Z</updated>

		<summary type="html">&lt;p&gt;Admin: Protected &amp;quot;About Mini-Box.com&amp;quot; ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;display: block; width:70%;&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;div style=&amp;quot;display: block; float: right; width: 200px; border: 1px solid #ccc; padding: 10px; margin-left: 10px; margin-top: 10px;&amp;quot;&amp;gt;&amp;lt;p&amp;gt;Our manufacturing runs are usually cargo sized loads ranging from 5,000 to 50,000 unit runs, with lead times ranging from 4 to 12 weeks, depending on product type. The main warehouse is located in Fremont, CA and we also have an international network of distributors.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;For small to medium orders, you can buy directly from our web site at [https://www.mini-box.com Mini-box.com].&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;For larger orders please contact our sales staff or our [https://www.mini-box.com/site/resellers.html international distributors].&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
 &amp;lt;p&amp;gt;[https://www.mini-box.com Mini-box.com], a subsidiary of [http://www.ituner.com Ituner Networks Corp.], is a design and manufacturing company specialized in embedded computers and peripherals. Founded in 1996, [https://www.ituner.com Ituner Networks Corp.] is a privately owned Corporation located in Silicon Valley.&amp;lt;br&amp;gt;Inspired by the unprecedented success of the small form factor mainboards, [https://www.mini-box.com Mini-box.com] has since directed its focus on designing and developing smaller, more compact mini-ITX PC peripherals.&amp;lt;/p&amp;gt;&lt;br /&gt;
 &amp;lt;p&amp;gt;Our engineers have led the market in the miniaturization of the power supply, with the introduction of the first mini-itx power supply. Our PSUs plug directly into the ATX connector thus eliminating the need for the ATX extension cable harness.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;These miniaturized power supplies are ideal for small PCs where space utilization is paramount for good industrial designs. Since then, [https://www.mini-box.com Mini-box.com] has led the market by designing, developing and manufacturing a wide range of of Patent Pending, high efficiency plug-in small PC [https://www.mini-box.com/s.nl/sc.8/category.13/.f power supplies] modules with a variety of power outputs, footprints and input voltage ranges.&amp;lt;/p&amp;gt;&lt;br /&gt;
 &amp;lt;p&amp;gt;[http://www.ituner.com Ituner Networks Corp.] is manufacturing a series of versatile small mini-ITX and small formfactor enclosures. Among them are the M350 Universal mini-ITX enclosure, M300, M200-LCD, M-200 line of [https://www.mini-box.com/s.nl/sc.8/category.87/.fmini-ITX enclosures] and the [https://www.mini-box.com/ALIX WRAP-boxes]. Our enclosures are designed for general purpose computing, WIFI applications, medical, and industrial applications. For automotive applications, the innovating work of our design team has resulted in the award winning [https://www.mini-box.com/Car-PC-Automotive-Computing-Solutions VoomPC series of enclosures and barebone systems].&amp;lt;/p&amp;gt;&lt;br /&gt;
 &amp;lt;p&amp;gt;[https://www.mini-box.com Mini-box.com] is also the manufacturer of the [https://www.mini-box.com/picoLCD PicoLCD] - a family of Intelligent USB LCD displays with resolutions ranging alphanumeric to TFT color in QVGA, HQVGA, VGA and beyond.&amp;lt;br&amp;gt;&lt;br /&gt;
 &amp;lt;span style=&amp;quot;display: block; border-bottom:1px dotted #DDDDDD; height: 10px;&amp;quot;&amp;gt;&amp;amp;nbsp;&amp;lt;/span&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
 &amp;lt;p class=&amp;quot;footer&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;display: block; float: left; width: 190px; margin-left: 10px; border-right: 1px dotted #DDDDDD;&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Corporate Address&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
              Ituner Networks Corp&amp;lt;br&amp;gt;&lt;br /&gt;
              44244 Fremont Blvd.&lt;br /&gt;
Fremont, CA 94538&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
 &amp;lt;span style=&amp;quot;display: block; float: left; width: 290px; padding-left: 10px; padding-right: 10px;&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Contact Information&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
            Sales: [[File:sales.gif]]&amp;lt;br&amp;gt;&lt;br /&gt;
            Technical Support: [[File:Support.gif]]&amp;lt;br&amp;gt;&lt;br /&gt;
            OEM Inquiries: [[File:Oem.gif]]&amp;lt;/span&amp;gt;			&lt;br /&gt;
&amp;lt;span style=&amp;quot;display: block; float: left; width: 130px; padding-left: 10px; border-left: 1px dotted #DDDDDD;&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Telephone&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
			U.S. and Intl callers.:&amp;lt;br&amp;gt;1-510-573-0783&amp;lt;br&amp;gt;&lt;br /&gt;
			Fax:&amp;lt;br&amp;gt;1-510-573-6981&amp;lt;/span&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
			&amp;lt;div style=&amp;quot;clear: both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=About_Mini-Box.com&amp;diff=141</id>
		<title>About Mini-Box.com</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=About_Mini-Box.com&amp;diff=141"/>
		<updated>2020-10-20T08:24:10Z</updated>

		<summary type="html">&lt;p&gt;Admin: Created page with &amp;quot;&amp;lt;div style=&amp;quot;display: block; width:70%;&amp;quot;&amp;gt;  &amp;lt;div style=&amp;quot;display: block; float: right; width: 200px; border: 1px solid #ccc; padding: 10px; margin-left: 10px; margin-top: 10px;&amp;quot;&amp;gt;...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;display: block; width:70%;&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;div style=&amp;quot;display: block; float: right; width: 200px; border: 1px solid #ccc; padding: 10px; margin-left: 10px; margin-top: 10px;&amp;quot;&amp;gt;&amp;lt;p&amp;gt;Our manufacturing runs are usually cargo sized loads ranging from 5,000 to 50,000 unit runs, with lead times ranging from 4 to 12 weeks, depending on product type. The main warehouse is located in Fremont, CA and we also have an international network of distributors.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;For small to medium orders, you can buy directly from our web site at [https://www.mini-box.com Mini-box.com].&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;For larger orders please contact our sales staff or our [https://www.mini-box.com/site/resellers.html international distributors].&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
 &amp;lt;p&amp;gt;[https://www.mini-box.com Mini-box.com], a subsidiary of [http://www.ituner.com Ituner Networks Corp.], is a design and manufacturing company specialized in embedded computers and peripherals. Founded in 1996, [https://www.ituner.com Ituner Networks Corp.] is a privately owned Corporation located in Silicon Valley.&amp;lt;br&amp;gt;Inspired by the unprecedented success of the small form factor mainboards, [https://www.mini-box.com Mini-box.com] has since directed its focus on designing and developing smaller, more compact mini-ITX PC peripherals.&amp;lt;/p&amp;gt;&lt;br /&gt;
 &amp;lt;p&amp;gt;Our engineers have led the market in the miniaturization of the power supply, with the introduction of the first mini-itx power supply. Our PSUs plug directly into the ATX connector thus eliminating the need for the ATX extension cable harness.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;These miniaturized power supplies are ideal for small PCs where space utilization is paramount for good industrial designs. Since then, [https://www.mini-box.com Mini-box.com] has led the market by designing, developing and manufacturing a wide range of of Patent Pending, high efficiency plug-in small PC [https://www.mini-box.com/s.nl/sc.8/category.13/.f power supplies] modules with a variety of power outputs, footprints and input voltage ranges.&amp;lt;/p&amp;gt;&lt;br /&gt;
 &amp;lt;p&amp;gt;[http://www.ituner.com Ituner Networks Corp.] is manufacturing a series of versatile small mini-ITX and small formfactor enclosures. Among them are the M350 Universal mini-ITX enclosure, M300, M200-LCD, M-200 line of [https://www.mini-box.com/s.nl/sc.8/category.87/.fmini-ITX enclosures] and the [https://www.mini-box.com/ALIX WRAP-boxes]. Our enclosures are designed for general purpose computing, WIFI applications, medical, and industrial applications. For automotive applications, the innovating work of our design team has resulted in the award winning [https://www.mini-box.com/Car-PC-Automotive-Computing-Solutions VoomPC series of enclosures and barebone systems].&amp;lt;/p&amp;gt;&lt;br /&gt;
 &amp;lt;p&amp;gt;[https://www.mini-box.com Mini-box.com] is also the manufacturer of the [https://www.mini-box.com/picoLCD PicoLCD] - a family of Intelligent USB LCD displays with resolutions ranging alphanumeric to TFT color in QVGA, HQVGA, VGA and beyond.&amp;lt;br&amp;gt;&lt;br /&gt;
 &amp;lt;span style=&amp;quot;display: block; border-bottom:1px dotted #DDDDDD; height: 10px;&amp;quot;&amp;gt;&amp;amp;nbsp;&amp;lt;/span&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
 &amp;lt;p class=&amp;quot;footer&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;display: block; float: left; width: 190px; margin-left: 10px; border-right: 1px dotted #DDDDDD;&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Corporate Address&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
              Ituner Networks Corp&amp;lt;br&amp;gt;&lt;br /&gt;
              44244 Fremont Blvd.&lt;br /&gt;
Fremont, CA 94538&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
 &amp;lt;span style=&amp;quot;display: block; float: left; width: 290px; padding-left: 10px; padding-right: 10px;&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Contact Information&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
            Sales: [[File:sales.gif]]&amp;lt;br&amp;gt;&lt;br /&gt;
            Technical Support: [[File:Support.gif]]&amp;lt;br&amp;gt;&lt;br /&gt;
            OEM Inquiries: [[File:Oem.gif]]&amp;lt;/span&amp;gt;			&lt;br /&gt;
&amp;lt;span style=&amp;quot;display: block; float: left; width: 130px; padding-left: 10px; border-left: 1px dotted #DDDDDD;&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Telephone&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
			U.S. and Intl callers.:&amp;lt;br&amp;gt;1-510-573-0783&amp;lt;br&amp;gt;&lt;br /&gt;
			Fax:&amp;lt;br&amp;gt;1-510-573-6981&amp;lt;/span&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
			&amp;lt;div style=&amp;quot;clear: both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=Low_cost,_low_power,_android_ARM_system_board_by_Mini-Box.com_-_pico_WiKi:About&amp;diff=140</id>
		<title>Low cost, low power, android ARM system board by Mini-Box.com - pico WiKi:About</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=Low_cost,_low_power,_android_ARM_system_board_by_Mini-Box.com_-_pico_WiKi:About&amp;diff=140"/>
		<updated>2020-10-20T08:23:56Z</updated>

		<summary type="html">&lt;p&gt;Admin: Protected &amp;quot;Low cost, low power, android ARM system board by Mini-Box.com - pico WiKi:About&amp;quot; ([Edit=Allow only administrators] (indefinite))&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;display: block; width:70%;&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;div style=&amp;quot;display: block; float: right; width: 200px; border: 1px solid #ccc; padding: 10px; margin-left: 10px; margin-top: 10px;&amp;quot;&amp;gt;&amp;lt;p&amp;gt;Our manufacturing runs are usually cargo sized loads ranging from 5,000 to 50,000 unit runs, with lead times ranging from 4 to 12 weeks, depending on product type. The main warehouse is located in Fremont, CA and we also have an international network of distributors.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;For small to medium orders, you can buy directly from our web site at [https://www.mini-box.com Mini-box.com].&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;For larger orders please contact our sales staff or our [https://www.mini-box.com/site/resellers.html international distributors].&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
 &amp;lt;p&amp;gt;[https://www.mini-box.com Mini-box.com], a subsidiary of [http://www.ituner.com Ituner Networks Corp.], is a design and manufacturing company specialized in embedded computers and peripherals. Founded in 1996, [https://www.ituner.com Ituner Networks Corp.] is a privately owned Corporation located in Silicon Valley.&amp;lt;br&amp;gt;Inspired by the unprecedented success of the small form factor mainboards, [https://www.mini-box.com Mini-box.com] has since directed its focus on designing and developing smaller, more compact mini-ITX PC peripherals.&amp;lt;/p&amp;gt;&lt;br /&gt;
 &amp;lt;p&amp;gt;Our engineers have led the market in the miniaturization of the power supply, with the introduction of the first mini-itx power supply. Our PSUs plug directly into the ATX connector thus eliminating the need for the ATX extension cable harness.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;These miniaturized power supplies are ideal for small PCs where space utilization is paramount for good industrial designs. Since then, [https://www.mini-box.com Mini-box.com] has led the market by designing, developing and manufacturing a wide range of of Patent Pending, high efficiency plug-in small PC [https://www.mini-box.com/s.nl/sc.8/category.13/.f power supplies] modules with a variety of power outputs, footprints and input voltage ranges.&amp;lt;/p&amp;gt;&lt;br /&gt;
 &amp;lt;p&amp;gt;[http://www.ituner.com Ituner Networks Corp.] is manufacturing a series of versatile small mini-ITX and small formfactor enclosures. Among them are the M350 Universal mini-ITX enclosure, M300, M200-LCD, M-200 line of [https://www.mini-box.com/s.nl/sc.8/category.87/.fmini-ITX enclosures] and the [https://www.mini-box.com/ALIX WRAP-boxes]. Our enclosures are designed for general purpose computing, WIFI applications, medical, and industrial applications. For automotive applications, the innovating work of our design team has resulted in the award winning [https://www.mini-box.com/Car-PC-Automotive-Computing-Solutions VoomPC series of enclosures and barebone systems].&amp;lt;/p&amp;gt;&lt;br /&gt;
 &amp;lt;p&amp;gt;[https://www.mini-box.com Mini-box.com] is also the manufacturer of the [https://www.mini-box.com/picoLCD PicoLCD] - a family of Intelligent USB LCD displays with resolutions ranging alphanumeric to TFT color in QVGA, HQVGA, VGA and beyond.&amp;lt;br&amp;gt;&lt;br /&gt;
 &amp;lt;span style=&amp;quot;display: block; border-bottom:1px dotted #DDDDDD; height: 10px;&amp;quot;&amp;gt;&amp;amp;nbsp;&amp;lt;/span&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
 &amp;lt;p class=&amp;quot;footer&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;display: block; float: left; width: 190px; margin-left: 10px; border-right: 1px dotted #DDDDDD;&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Corporate Address&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
              Ituner Networks Corp&amp;lt;br&amp;gt;&lt;br /&gt;
              44244 Fremont Blvd.&lt;br /&gt;
Fremont, CA 94538&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
 &amp;lt;span style=&amp;quot;display: block; float: left; width: 290px; padding-left: 10px; padding-right: 10px;&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Contact Information&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
            Sales: [[File:sales.gif]]&amp;lt;br&amp;gt;&lt;br /&gt;
            Technical Support: [[File:Support.gif]]&amp;lt;br&amp;gt;&lt;br /&gt;
            OEM Inquiries: [[File:Oem.gif]]&amp;lt;/span&amp;gt;			&lt;br /&gt;
&amp;lt;span style=&amp;quot;display: block; float: left; width: 130px; padding-left: 10px; border-left: 1px dotted #DDDDDD;&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Telephone&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
			U.S. and Intl callers.:&amp;lt;br&amp;gt;1-510-573-0783&amp;lt;br&amp;gt;&lt;br /&gt;
			Fax:&amp;lt;br&amp;gt;1-510-573-6981&amp;lt;/span&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
			&amp;lt;div style=&amp;quot;clear: both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=File:Pico-SAM9G45-J9-schematic.jpg&amp;diff=139</id>
		<title>File:Pico-SAM9G45-J9-schematic.jpg</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=File:Pico-SAM9G45-J9-schematic.jpg&amp;diff=139"/>
		<updated>2020-10-20T07:59:26Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=Android_Buttons&amp;diff=138</id>
		<title>Android Buttons</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=Android_Buttons&amp;diff=138"/>
		<updated>2020-10-20T07:59:05Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Using J9, you can enable the actions for the '''HOME''', '''BACK''' and '''MENU''' buttons.&amp;lt;br&amp;gt;&lt;br /&gt;
- Pin 11(TXD2) is for the '''BACK''' button,&amp;lt;br&amp;gt;&lt;br /&gt;
- Pin 12(SPI1_SCMK) is for '''HOME''' button,&amp;lt;br&amp;gt;&lt;br /&gt;
- Pin 13(RXD2) is for the '''MENU''' button.&amp;lt;br&amp;gt;&lt;br /&gt;
- For Ground you can use a single pin. Pin 5 or pin 6.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Please see the images bellow.&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:J9-connector.jpg|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
'''J9''' connector schematic:&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:pico-SAM9G45-J9-schematic.jpg|link=]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=Android_Buttons&amp;diff=137</id>
		<title>Android Buttons</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=Android_Buttons&amp;diff=137"/>
		<updated>2020-10-20T07:58:53Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Using J9, you can enable the actions for the '''HOME''', '''BACK''' and '''MENU''' buttons.&amp;lt;br&amp;gt;&lt;br /&gt;
- Pin 11(TXD2) is for the '''BACK''' button,&amp;lt;br&amp;gt;&lt;br /&gt;
- Pin 12(SPI1_SCMK) is for '''HOME''' button,&amp;lt;br&amp;gt;&lt;br /&gt;
- Pin 13(RXD2) is for the '''MENU''' button.&amp;lt;br&amp;gt;&lt;br /&gt;
- For Ground you can use a single pin. Pin 5 or pin 6.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Please see the images bellow.&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:J9-connector.jpg|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
'''J9''' connector schematic:&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:pico-SAM9G45-J9-schematic.jpg|link=]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=Android_Buttons&amp;diff=136</id>
		<title>Android Buttons</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=Android_Buttons&amp;diff=136"/>
		<updated>2020-10-20T07:58:06Z</updated>

		<summary type="html">&lt;p&gt;Admin: Created page with &amp;quot;Using J9, you can enable the actions for the '''HOME''', '''BACK''' and '''MENU''' buttons.&amp;lt;br&amp;gt; - Pin 11(TXD2) is for the '''BACK''' button,&amp;lt;br&amp;gt; - Pin 12(SPI1_SCMK) is for '''...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Using J9, you can enable the actions for the '''HOME''', '''BACK''' and '''MENU''' buttons.&amp;lt;br&amp;gt;&lt;br /&gt;
- Pin 11(TXD2) is for the '''BACK''' button,&amp;lt;br&amp;gt;&lt;br /&gt;
- Pin 12(SPI1_SCMK) is for '''HOME''' button,&amp;lt;br&amp;gt;&lt;br /&gt;
- Pin 13(RXD2) is for the '''MENU''' button.&amp;lt;br&amp;gt;&lt;br /&gt;
- For Ground you can use a single pin. Pin 5 or pin 6.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Please see the images bellow.&amp;lt;br&amp;gt;&lt;br /&gt;
http://arm.mini-box.com/images/J9-connector.jpg&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
'''J9''' connector schematic:&amp;lt;br&amp;gt;&lt;br /&gt;
http://arm.mini-box.com/images/pico-SAM9G45-J9-schematic.jpg&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=Template:MicroUSB-OTG-port&amp;diff=135</id>
		<title>Template:MicroUSB-OTG-port</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=Template:MicroUSB-OTG-port&amp;diff=135"/>
		<updated>2020-10-20T07:55:20Z</updated>

		<summary type="html">&lt;p&gt;Admin: Created page with &amp;quot;&amp;lt;h1&amp;gt;Using microUSB OTG port and SAM-BA&amp;lt;/h1&amp;gt; To check if the first stage loader from CPU ROM starts, connect pico-SAM9G45 board to your computer through the microUSB OTG port a...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Using microUSB OTG port and SAM-BA&amp;lt;/h1&amp;gt;&lt;br /&gt;
To check if the first stage loader from CPU ROM starts, connect pico-SAM9G45 board to your computer through the microUSB OTG port and run [http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3883 SAM-BA]. &amp;lt;br&amp;gt;&lt;br /&gt;
In this case the board should not have a bootable microSD card inserted into the microSD slot.&amp;lt;br&amp;gt;&lt;br /&gt;
If everything is ok, SAM-BA should be able to connect and display DDRAM memory contents if you are using the SAM-BA GUI interface.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=OpenUPS2&amp;diff=134</id>
		<title>OpenUPS2</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=OpenUPS2&amp;diff=134"/>
		<updated>2020-10-20T07:53:06Z</updated>

		<summary type="html">&lt;p&gt;Admin: Created page with &amp;quot;Content moved [https://wiki.mini-box.com/index.php?title=OpenUPS2 here]&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Content moved [https://wiki.mini-box.com/index.php?title=OpenUPS2 here]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=Releases&amp;diff=133</id>
		<title>Releases</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=Releases&amp;diff=133"/>
		<updated>2020-10-20T07:50:59Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;b&amp;gt;Operating systems for pico-SAM9G45 board&amp;lt;/b&amp;gt;&lt;br /&gt;
{{Android &amp;amp; Angstrom Releases}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
If you don't want to use the pre-build images and want to create your own kernel configuration, please see [[Compiling_from_sources|this page]]&amp;lt;br&amp;gt;&lt;br /&gt;
also we released on gitorious.org the sources of [http://gitorious.org/picopc-android-gingerbread Android 2.3 OS: &amp;quot;Gingerbread&amp;quot;] for picoSAM9G45 development board&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
{{gallery Gingerbread in action}}&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;PDF manual for picoSAM9G45 board&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
[https://resources.mini-box.com/online/pico-SAM9G45/manual/Mini-Box-pico-SAM9G45-manual.pdf Download] on-line manual (PDF format)&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;picoSAM9G45 board schematics&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
{{Schematics}}&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;3D renders&amp;lt;/b&amp;gt; of pico-SAM9G45 board and the plastic enclosure with multiple mounting options&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*[https://arm.mini-box.com/images/3D/pico-SAM9G45-3D-renders.zip Download] the zip archive which contain the SolidWorks eDrawings &amp;quot;.exe&amp;quot; files;&lt;br /&gt;
*The free viewer is embedded by default in the exe file. If you want to install it on your computer, you can download it from SolidWorks  [http://www.solidworks.com/sw/support/edrawings/e2_downloadcheck.htm website];&lt;br /&gt;
*Unzip the archive in a folder of your choice and run the one of the exe files;&lt;br /&gt;
*Multiple mounting options examples views can be switched from the bottom tab menu and different angles of view can be accessed using: &amp;lt;b&amp;gt;Tools - Reorder Views...&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;Hi-res images&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
[https://arm.mini-box.com/images/hi-res/pico-SAM9G45-hi-res.zip Download] zip archive.&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=File:Oem.gif&amp;diff=132</id>
		<title>File:Oem.gif</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=File:Oem.gif&amp;diff=132"/>
		<updated>2020-10-20T07:48:47Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=File:Support.gif&amp;diff=131</id>
		<title>File:Support.gif</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=File:Support.gif&amp;diff=131"/>
		<updated>2020-10-20T07:48:33Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=File:Sales.gif&amp;diff=130</id>
		<title>File:Sales.gif</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=File:Sales.gif&amp;diff=130"/>
		<updated>2020-10-20T07:48:12Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=Low_cost,_low_power,_android_ARM_system_board_by_Mini-Box.com_-_pico_WiKi:About&amp;diff=129</id>
		<title>Low cost, low power, android ARM system board by Mini-Box.com - pico WiKi:About</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=Low_cost,_low_power,_android_ARM_system_board_by_Mini-Box.com_-_pico_WiKi:About&amp;diff=129"/>
		<updated>2020-10-20T07:47:37Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;display: block; width:70%;&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;div style=&amp;quot;display: block; float: right; width: 200px; border: 1px solid #ccc; padding: 10px; margin-left: 10px; margin-top: 10px;&amp;quot;&amp;gt;&amp;lt;p&amp;gt;Our manufacturing runs are usually cargo sized loads ranging from 5,000 to 50,000 unit runs, with lead times ranging from 4 to 12 weeks, depending on product type. The main warehouse is located in Fremont, CA and we also have an international network of distributors.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;For small to medium orders, you can buy directly from our web site at [https://www.mini-box.com Mini-box.com].&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;For larger orders please contact our sales staff or our [https://www.mini-box.com/site/resellers.html international distributors].&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
 &amp;lt;p&amp;gt;[https://www.mini-box.com Mini-box.com], a subsidiary of [http://www.ituner.com Ituner Networks Corp.], is a design and manufacturing company specialized in embedded computers and peripherals. Founded in 1996, [https://www.ituner.com Ituner Networks Corp.] is a privately owned Corporation located in Silicon Valley.&amp;lt;br&amp;gt;Inspired by the unprecedented success of the small form factor mainboards, [https://www.mini-box.com Mini-box.com] has since directed its focus on designing and developing smaller, more compact mini-ITX PC peripherals.&amp;lt;/p&amp;gt;&lt;br /&gt;
 &amp;lt;p&amp;gt;Our engineers have led the market in the miniaturization of the power supply, with the introduction of the first mini-itx power supply. Our PSUs plug directly into the ATX connector thus eliminating the need for the ATX extension cable harness.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;These miniaturized power supplies are ideal for small PCs where space utilization is paramount for good industrial designs. Since then, [https://www.mini-box.com Mini-box.com] has led the market by designing, developing and manufacturing a wide range of of Patent Pending, high efficiency plug-in small PC [https://www.mini-box.com/s.nl/sc.8/category.13/.f power supplies] modules with a variety of power outputs, footprints and input voltage ranges.&amp;lt;/p&amp;gt;&lt;br /&gt;
 &amp;lt;p&amp;gt;[http://www.ituner.com Ituner Networks Corp.] is manufacturing a series of versatile small mini-ITX and small formfactor enclosures. Among them are the M350 Universal mini-ITX enclosure, M300, M200-LCD, M-200 line of [https://www.mini-box.com/s.nl/sc.8/category.87/.fmini-ITX enclosures] and the [https://www.mini-box.com/ALIX WRAP-boxes]. Our enclosures are designed for general purpose computing, WIFI applications, medical, and industrial applications. For automotive applications, the innovating work of our design team has resulted in the award winning [https://www.mini-box.com/Car-PC-Automotive-Computing-Solutions VoomPC series of enclosures and barebone systems].&amp;lt;/p&amp;gt;&lt;br /&gt;
 &amp;lt;p&amp;gt;[https://www.mini-box.com Mini-box.com] is also the manufacturer of the [https://www.mini-box.com/picoLCD PicoLCD] - a family of Intelligent USB LCD displays with resolutions ranging alphanumeric to TFT color in QVGA, HQVGA, VGA and beyond.&amp;lt;br&amp;gt;&lt;br /&gt;
 &amp;lt;span style=&amp;quot;display: block; border-bottom:1px dotted #DDDDDD; height: 10px;&amp;quot;&amp;gt;&amp;amp;nbsp;&amp;lt;/span&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
 &amp;lt;p class=&amp;quot;footer&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;display: block; float: left; width: 190px; margin-left: 10px; border-right: 1px dotted #DDDDDD;&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Corporate Address&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
              Ituner Networks Corp&amp;lt;br&amp;gt;&lt;br /&gt;
              44244 Fremont Blvd.&lt;br /&gt;
Fremont, CA 94538&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
 &amp;lt;span style=&amp;quot;display: block; float: left; width: 290px; padding-left: 10px; padding-right: 10px;&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Contact Information&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
            Sales: [[File:sales.gif]]&amp;lt;br&amp;gt;&lt;br /&gt;
            Technical Support: [[File:Support.gif]]&amp;lt;br&amp;gt;&lt;br /&gt;
            OEM Inquiries: [[File:Oem.gif]]&amp;lt;/span&amp;gt;			&lt;br /&gt;
&amp;lt;span style=&amp;quot;display: block; float: left; width: 130px; padding-left: 10px; border-left: 1px dotted #DDDDDD;&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Telephone&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
			U.S. and Intl callers.:&amp;lt;br&amp;gt;1-510-573-0783&amp;lt;br&amp;gt;&lt;br /&gt;
			Fax:&amp;lt;br&amp;gt;1-510-573-6981&amp;lt;/span&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
			&amp;lt;div style=&amp;quot;clear: both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=Low_cost,_low_power,_android_ARM_system_board_by_Mini-Box.com_-_pico_WiKi:About&amp;diff=128</id>
		<title>Low cost, low power, android ARM system board by Mini-Box.com - pico WiKi:About</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=Low_cost,_low_power,_android_ARM_system_board_by_Mini-Box.com_-_pico_WiKi:About&amp;diff=128"/>
		<updated>2020-10-20T07:45:41Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;display: block; width:70%;&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;div style=&amp;quot;display: block; float: right; width: 200px; border: 1px solid #ccc; padding: 10px; margin-left: 10px; margin-top: 10px;&amp;quot;&amp;gt;&amp;lt;p&amp;gt;Our manufacturing runs are usually cargo sized loads ranging from 5,000 to 50,000 unit runs, with lead times ranging from 4 to 12 weeks, depending on product type. The main warehouse is located in Fremont, CA and we also have an international network of distributors.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;For small to medium orders, you can buy directly from our web site at [https://www.mini-box.com Mini-box.com].&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;For larger orders please contact our sales staff or our [https://www.mini-box.com/site/resellers.html international distributors].&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
 &amp;lt;p&amp;gt;[https://www.mini-box.com Mini-box.com], a subsidiary of [http://www.ituner.com Ituner Networks Corp.], is a design and manufacturing company specialized in embedded computers and peripherals. Founded in 1996, [https://www.ituner.com Ituner Networks Corp.] is a privately owned Corporation located in Silicon Valley.&amp;lt;br&amp;gt;Inspired by the unprecedented success of the small form factor mainboards, [https://www.mini-box.com Mini-box.com] has since directed its focus on designing and developing smaller, more compact mini-ITX PC peripherals.&amp;lt;/p&amp;gt;&lt;br /&gt;
 &amp;lt;p&amp;gt;Our engineers have led the market in the miniaturization of the power supply, with the introduction of the first mini-itx power supply. Our PSUs plug directly into the ATX connector thus eliminating the need for the ATX extension cable harness.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;These miniaturized power supplies are ideal for small PCs where space utilization is paramount for good industrial designs. Since then, [https://www.mini-box.com Mini-box.com] has led the market by designing, developing and manufacturing a wide range of of Patent Pending, high efficiency plug-in small PC [https://www.mini-box.com/s.nl/sc.8/category.13/.f power supplies] modules with a variety of power outputs, footprints and input voltage ranges.&amp;lt;/p&amp;gt;&lt;br /&gt;
 &amp;lt;p&amp;gt;[http://www.ituner.com Ituner Networks Corp.] is manufacturing a series of versatile small mini-ITX and small formfactor enclosures. Among them are the M350 Universal mini-ITX enclosure, M300, M200-LCD, M-200 line of [https://www.mini-box.com/s.nl/sc.8/category.87/.fmini-ITX enclosures] and the [http://www.mini-box.com/ALIX WRAP-boxes]. Our enclosures are designed for general purpose computing, WIFI applications, medical, and industrial applications. For automotive applications, the innovating work of our design team has resulted in the award winning [https://www.mini-box.com/Car-PC-Automotive-Computing-Solutions VoomPC series of enclosures and barebone systems].&amp;lt;/p&amp;gt;&lt;br /&gt;
 &amp;lt;p&amp;gt;[https://www.mini-box.com Mini-box.com] is also the manufacturer of the [https://www.mini-box.com/picoLCD PicoLCD] - a family of Intelligent USB LCD displays with resolutions ranging alphanumeric to TFT color in QVGA, HQVGA, VGA and beyond.&amp;lt;br&amp;gt;&lt;br /&gt;
 &amp;lt;span style=&amp;quot;display: block; border-bottom:1px dotted #DDDDDD; height: 10px;&amp;quot;&amp;gt;&amp;amp;nbsp;&amp;lt;/span&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
 &amp;lt;p class=&amp;quot;footer&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;display: block; float: left; width: 190px; margin-left: 10px; border-right: 1px dotted #DDDDDD;&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Corporate Address&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
              Ituner Networks Corp&amp;lt;br&amp;gt;&lt;br /&gt;
              47801 Fremont Blvd.&amp;lt;br&amp;gt;&lt;br /&gt;
              Fremont, CA 94538&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
 &amp;lt;span style=&amp;quot;display: block; float: left; width: 290px; padding-left: 10px; padding-right: 10px;&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Contact Information&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
            Sales: [[File:sales.gif]]&amp;lt;br&amp;gt;&lt;br /&gt;
            Technical Support: [[File:Support.gif]]&amp;lt;br&amp;gt;&lt;br /&gt;
            OEM Inquiries: [[File:Oem.gif]]&amp;lt;/span&amp;gt;			&lt;br /&gt;
&amp;lt;span style=&amp;quot;display: block; float: left; width: 130px; padding-left: 10px; border-left: 1px dotted #DDDDDD;&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Telephone&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
			U.S. and Intl callers.:&amp;lt;br&amp;gt;1-510-226-6033&amp;lt;br&amp;gt;&lt;br /&gt;
			Fax:&amp;lt;br&amp;gt;1-510-226-6032&amp;lt;/span&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
			&amp;lt;div style=&amp;quot;clear: both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=Low_cost,_low_power,_android_ARM_system_board_by_Mini-Box.com_-_pico_WiKi:About&amp;diff=127</id>
		<title>Low cost, low power, android ARM system board by Mini-Box.com - pico WiKi:About</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=Low_cost,_low_power,_android_ARM_system_board_by_Mini-Box.com_-_pico_WiKi:About&amp;diff=127"/>
		<updated>2020-10-20T07:43:12Z</updated>

		<summary type="html">&lt;p&gt;Admin: Created page with &amp;quot;&amp;lt;div style=&amp;quot;display: block; width:70%;&amp;quot;&amp;gt;  &amp;lt;div style=&amp;quot;display: block; float: right; width: 200px; border: 1px solid #ccc; padding: 10px; margin-left: 10px; margin-top: 10px;&amp;quot;&amp;gt;...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;display: block; width:70%;&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;div style=&amp;quot;display: block; float: right; width: 200px; border: 1px solid #ccc; padding: 10px; margin-left: 10px; margin-top: 10px;&amp;quot;&amp;gt;&amp;lt;p&amp;gt;Our manufacturing runs are usually cargo sized loads ranging from 5,000 to 50,000 unit runs, with lead times ranging from 4 to 12 weeks, depending on product type. The main warehouse is located in Fremont, CA and we also have an international network of distributors.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;For small to medium orders, you can buy directly from our web site at [http://www.mini-box.com Mini-box.com&amp;amp;#0153;].&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;For larger orders please contact our sales staff or our [http://www.mini-box.com/site/resellers.html international distributors].&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
 &amp;lt;p&amp;gt;[http://www.mini-box.com Mini-box.com&amp;amp;#0153;], a subsidiary of [http://www.ituner.com Ituner Networks Corp.], is a design and manufacturing company specialized in embedded computers and peripherals. Founded in 1996, [http://www.ituner.com Ituner Networks Corp.] is a privately owned Corporation located in Silicon Valley.&amp;lt;br&amp;gt;Inspired by the unprecedented success of the small form factor mainboards, [http://www.mini-box.com Mini-box.com&amp;amp;#0153;] has since directed its focus on designing and developing smaller, more compact mini-ITX PC peripherals.&amp;lt;/p&amp;gt;&lt;br /&gt;
 &amp;lt;p&amp;gt;Our engineers have led the market in the miniaturization of the power supply, with the introduction of the first mini-itx power supply. Our PSUs plug directly into the ATX connector thus eliminating the need for the ATX extension cable harness.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;These miniaturized power supplies are ideal for small PCs where space utilization is paramount for good industrial designs. Since then, [http://www.mini-box.com Mini-box.com&amp;amp;#0153;] has led the market by designing, developing and manufacturing a wide range of of Patent Pending, high efficiency plug-in small PC [http://www.mini-box.com/s.nl/sc.8/category.13/.f power supplies] modules with a variety of power outputs, footprints and input voltage ranges.&amp;lt;/p&amp;gt;&lt;br /&gt;
 &amp;lt;p&amp;gt;[http://www.ituner.com Ituner Networks Corp.] is manufacturing a series of versatile small mini-ITX and small formfactor enclosures. Among them are the M350 Universal mini-ITX enclosure, M300, M200-LCD, M-200 line of [http://www.mini-box.com/s.nl/sc.8/category.87/.fmini-ITX enclosures] and the [http://www.mini-box.com/ALIX WRAP-boxes]. Our enclosures are designed for general purpose computing, WIFI applications, medical, and industrial applications. For automotive applications, the innovating work of our design team has resulted in the award winning [http://www.mini-box.com/Car-PC-Automotive-Computing-Solutions VoomPC series of enclosures and barebone systems].&amp;lt;/p&amp;gt;&lt;br /&gt;
 &amp;lt;p&amp;gt;[http://www.mini-box.com Mini-box.com&amp;amp;#0153;] is also the manufacturer of the [http://www.mini-box.com/picoLCD PicoLCD&amp;amp;#0153;] - a family of Intelligent USB LCD displays with resolutions ranging alphanumeric to TFT color in QVGA, HQVGA, VGA and beyond.&amp;lt;br&amp;gt;&lt;br /&gt;
 &amp;lt;span style=&amp;quot;display: block; border-bottom:1px dotted #DDDDDD; height: 10px;&amp;quot;&amp;gt;&amp;amp;nbsp;&amp;lt;/span&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
 &amp;lt;p class=&amp;quot;footer&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;display: block; float: left; width: 190px; margin-left: 10px; border-right: 1px dotted #DDDDDD;&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Corporate Address&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
              Ituner Networks Corp&amp;lt;br&amp;gt;&lt;br /&gt;
              47801 Fremont Blvd.&amp;lt;br&amp;gt;&lt;br /&gt;
              Fremont, CA 94538&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Need a map to find us?&amp;lt;br&amp;gt;[http://maps.google.com/maps?f=q&amp;amp;amp;hl=en&amp;amp;amp;q=47801+fremont+blvd,+fremont,+ca&amp;amp;amp;ie=UTF8&amp;amp;amp;ll=37.472201,-121.940517&amp;amp;amp;spn='0'.009724,0.026264&amp;amp;amp;om=1 Click here]&amp;lt;/span&amp;gt;&lt;br /&gt;
 &amp;lt;span style=&amp;quot;display: block; float: left; width: 290px; padding-left: 10px; padding-right: 10px;&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Contact Information&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
            Sales: [[File:sales.gif]]&amp;lt;br&amp;gt;&lt;br /&gt;
            Technical Support: [[File:Support.gif]]&amp;lt;br&amp;gt;&lt;br /&gt;
            OEM Inquiries: [[File:Oem.gif]]&amp;lt;/span&amp;gt;			&lt;br /&gt;
&amp;lt;span style=&amp;quot;display: block; float: left; width: 130px; padding-left: 10px; border-left: 1px dotted #DDDDDD;&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Telephone&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
			U.S. and Intl callers.:&amp;lt;br&amp;gt;1-510-226-6033&amp;lt;br&amp;gt;&lt;br /&gt;
			Fax:&amp;lt;br&amp;gt;1-510-226-6032&amp;lt;/span&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
			&amp;lt;div style=&amp;quot;clear: both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=MediaWiki:Common.css&amp;diff=126</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=MediaWiki:Common.css&amp;diff=126"/>
		<updated>2020-10-20T07:42:10Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
/* CSS placed here will be applied to all skins */&lt;br /&gt;
/* Gadget-ImageAnnotator needs */&lt;br /&gt;
.image_annotation div p{&lt;br /&gt;
   font-size:0.7em;&lt;br /&gt;
}&lt;br /&gt;
.tooltipContent div div p{&lt;br /&gt;
   font-size:0.7em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#tabs {&lt;br /&gt;
  padding: 10px;&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs #nav {&lt;br /&gt;
 margin-bottom: 0px;&lt;br /&gt;
 margin-left: 8px;&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs ul {&lt;br /&gt;
  list-style: none;&lt;br /&gt;
  margin: 0px;&lt;br /&gt;
  padding: 0px;&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs #nav ul li {&lt;br /&gt;
  display: inline;	&lt;br /&gt;
  padding: 3px 7px;&lt;br /&gt;
  cursor: default;&lt;br /&gt;
  background-color: #eeeeee;	&lt;br /&gt;
  border: 1px solid #cccccc;&lt;br /&gt;
  border-bottom: none;&lt;br /&gt;
  margin-right: 2px;&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs #nav ul li.active {&lt;br /&gt;
  border: 1px solid #000066;&lt;br /&gt;
  border-bottom: 1px solid white;&lt;br /&gt;
  background-color: #ffffff;	&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs #nav ul li:hover {&lt;br /&gt;
  background-color: #ffffff;&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs #data {&lt;br /&gt;
  margin-top: 3px;&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs #data div {&lt;br /&gt;
  display: no+ne;&lt;br /&gt;
  border: 1px solid #000066;&lt;br /&gt;
  padding: 10px;&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs #data div.active {&lt;br /&gt;
  display: block;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#p-tb {&lt;br /&gt;
  display:none&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=MediaWiki:Common.css&amp;diff=125</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=MediaWiki:Common.css&amp;diff=125"/>
		<updated>2020-10-20T07:40:42Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
/* CSS placed here will be applied to all skins */&lt;br /&gt;
/* Gadget-ImageAnnotator needs */&lt;br /&gt;
.image_annotation div p{&lt;br /&gt;
   font-size:0.7em;&lt;br /&gt;
}&lt;br /&gt;
.tooltipContent div div p{&lt;br /&gt;
   font-size:0.7em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#tabs {&lt;br /&gt;
  padding: 10px;&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs #nav {&lt;br /&gt;
 margin-bottom: 0px;&lt;br /&gt;
 margin-left: 8px;&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs ul {&lt;br /&gt;
  list-style: none;&lt;br /&gt;
  margin: 0px;&lt;br /&gt;
  padding: 0px;&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs #nav ul li {&lt;br /&gt;
  display: inline;	&lt;br /&gt;
  padding: 3px 7px;&lt;br /&gt;
  cursor: default;&lt;br /&gt;
  background-color: #eeeeee;	&lt;br /&gt;
  border: 1px solid #cccccc;&lt;br /&gt;
  border-bottom: none;&lt;br /&gt;
  margin-right: 2px;&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs #nav ul li.active {&lt;br /&gt;
  border: 1px solid #000066;&lt;br /&gt;
  border-bottom: 1px solid white;&lt;br /&gt;
  background-color: #ffffff;	&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs #nav ul li:hover {&lt;br /&gt;
  background-color: #ffffff;&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs #data {&lt;br /&gt;
  margin-top: 3px;&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs #data div {&lt;br /&gt;
  display: no+ne;&lt;br /&gt;
  border: 1px solid #000066;&lt;br /&gt;
  padding: 10px;&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs #data div.active {&lt;br /&gt;
  display: block;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#p-tb, #footer {&lt;br /&gt;
  display:none&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=Template:Get_the_hardware&amp;diff=124</id>
		<title>Template:Get the hardware</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=Template:Get_the_hardware&amp;diff=124"/>
		<updated>2020-10-20T07:39:36Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [https://www.mini-box.com/pico-SAM9G45-X pico-SAM9G45 board]&lt;br /&gt;
* [https://www.mini-box.com/60w-12v-5A-AC-DC-Power-Adapter 12V, 5A / 60 Watt Switching Power Adapter (110/220V)]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/MicroSD#microSD microSD card] - minimum 256Mb in size for [[Releases|Android OS]] or [[Releases|Angstrom Linux]]&lt;br /&gt;
&lt;br /&gt;
''optionally:''&lt;br /&gt;
* a compatible [https://www.aliexpress.com/wholesale?catId=0&amp;amp;initiative_id=SB_20201019233910&amp;amp;SearchText=HannStar+4.3+inch 4.3&amp;quot; TFT LCD with touch screen]&lt;br /&gt;
* an [https://en.wikipedia.org/wiki/Memory_card_reader USB SD Card reader] for writing OS images on the microSD card&lt;br /&gt;
* a [https://en.wikipedia.org/wiki/USB#Mini_and_Micro_connectors Micro-B Plug to Type A Plug] USB cable&lt;br /&gt;
* a TTL to RS232 converter and a serial cable for connecting the board using the [[J7 connector|J7]] or [[J9 connector|J9]] connector to the PC serial port&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=Template:Get_the_hardware&amp;diff=123</id>
		<title>Template:Get the hardware</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=Template:Get_the_hardware&amp;diff=123"/>
		<updated>2020-10-20T07:36:32Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [https://www.mini-box.com/pico-SAM9G45-X pico-SAM9G45 board]&lt;br /&gt;
* [https://www.mini-box.com/60w-12v-5A-AC-DC-Power-Adapter 12V, 5A / 60 Watt Switching Power Adapter (110/220V)]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/MicroSD#microSD microSD card] - minimum 256Mb in size for [[Releases|Android OS]] or [[Releases|Angstrom Linux]]&lt;br /&gt;
&lt;br /&gt;
''optionally:''&lt;br /&gt;
* a compatible [https://www.mini-box.com/Hannstar-4-3-TFT-with-touchscreen 4.3&amp;quot; TFT LCD with touch screen]&lt;br /&gt;
* an [https://en.wikipedia.org/wiki/Memory_card_reader USB SD Card reader] for writing OS images on the microSD card&lt;br /&gt;
* a [https://en.wikipedia.org/wiki/USB#Mini_and_Micro_connectors Micro-B Plug to Type A Plug] USB cable&lt;br /&gt;
* a TTL to RS232 converter and a serial cable for connecting the board using the [[J7 connector|J7]] or [[J9 connector|J9]] connector to the PC serial port&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=MediaWiki:Common.css&amp;diff=122</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=MediaWiki:Common.css&amp;diff=122"/>
		<updated>2020-10-20T07:29:33Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
/* CSS placed here will be applied to all skins */&lt;br /&gt;
/* Gadget-ImageAnnotator needs */&lt;br /&gt;
.image_annotation div p{&lt;br /&gt;
   font-size:0.7em;&lt;br /&gt;
}&lt;br /&gt;
.tooltipContent div div p{&lt;br /&gt;
   font-size:0.7em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#tabs {&lt;br /&gt;
  padding: 10px;&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs #nav {&lt;br /&gt;
 margin-bottom: 0px;&lt;br /&gt;
 margin-left: 8px;&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs ul {&lt;br /&gt;
  list-style: none;&lt;br /&gt;
  margin: 0px;&lt;br /&gt;
  padding: 0px;&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs #nav ul li {&lt;br /&gt;
  display: inline;	&lt;br /&gt;
  padding: 3px 7px;&lt;br /&gt;
  cursor: default;&lt;br /&gt;
  background-color: #eeeeee;	&lt;br /&gt;
  border: 1px solid #cccccc;&lt;br /&gt;
  border-bottom: none;&lt;br /&gt;
  margin-right: 2px;&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs #nav ul li.active {&lt;br /&gt;
  border: 1px solid #000066;&lt;br /&gt;
  border-bottom: 1px solid white;&lt;br /&gt;
  background-color: #ffffff;	&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs #nav ul li:hover {&lt;br /&gt;
  background-color: #ffffff;&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs #data {&lt;br /&gt;
  margin-top: 3px;&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs #data div {&lt;br /&gt;
  display: no+ne;&lt;br /&gt;
  border: 1px solid #000066;&lt;br /&gt;
  padding: 10px;&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs #data div.active {&lt;br /&gt;
  display: block;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#p-tb, #siteNotice {&lt;br /&gt;
  display:none&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=MediaWiki:Common.css&amp;diff=121</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=MediaWiki:Common.css&amp;diff=121"/>
		<updated>2020-10-20T07:28:17Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
/* CSS placed here will be applied to all skins */&lt;br /&gt;
/* Gadget-ImageAnnotator needs */&lt;br /&gt;
.image_annotation div p{&lt;br /&gt;
   font-size:0.7em;&lt;br /&gt;
}&lt;br /&gt;
.tooltipContent div div p{&lt;br /&gt;
   font-size:0.7em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#tabs {&lt;br /&gt;
  padding: 10px;&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs #nav {&lt;br /&gt;
 margin-bottom: 0px;&lt;br /&gt;
 margin-left: 8px;&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs ul {&lt;br /&gt;
  list-style: none;&lt;br /&gt;
  margin: 0px;&lt;br /&gt;
  padding: 0px;&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs #nav ul li {&lt;br /&gt;
  display: inline;	&lt;br /&gt;
  padding: 3px 7px;&lt;br /&gt;
  cursor: default;&lt;br /&gt;
  background-color: #eeeeee;	&lt;br /&gt;
  border: 1px solid #cccccc;&lt;br /&gt;
  border-bottom: none;&lt;br /&gt;
  margin-right: 2px;&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs #nav ul li.active {&lt;br /&gt;
  border: 1px solid #000066;&lt;br /&gt;
  border-bottom: 1px solid white;&lt;br /&gt;
  background-color: #ffffff;	&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs #nav ul li:hover {&lt;br /&gt;
  background-color: #ffffff;&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs #data {&lt;br /&gt;
  margin-top: 3px;&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs #data div {&lt;br /&gt;
  display: no+ne;&lt;br /&gt;
  border: 1px solid #000066;&lt;br /&gt;
  padding: 10px;&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
#tabs #data div.active {&lt;br /&gt;
  display: block;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#p-tb {&lt;br /&gt;
  display:none&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=Template:News&amp;diff=120</id>
		<title>Template:News</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=Template:News&amp;diff=120"/>
		<updated>2020-10-20T07:25:58Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* ''' &amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;new release of Android OS &amp;quot;Gingerbread&amp;quot; 2.3 stable - kernel version 3.1:&amp;lt;/font&amp;gt; - [[Releases|[1]]]'''&lt;br /&gt;
* ''' &amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;new release of Android OS &amp;quot;Ice Cream Sandwich&amp;quot; 4.0.3 beta 1 - kernel version 3.1:&amp;lt;/font&amp;gt; - [[Releases|[2]]]'''    &lt;br /&gt;
&lt;br /&gt;
* please join '''pico-SAM9G45 Google discussions group''': [http://groups.google.com/group/pico-SAM9G45 http://groups.google.com/group/pico-SAM9G45]&lt;br /&gt;
&lt;br /&gt;
* '''3.1 kernel source code''' for pico-SAM9G45 board released: - [https://gitorious.org/picopc-kernel/kernel/commits/minibox-picopc-3.1 base] &amp;amp; [https://gitorious.org/picopc-kernel/kernel/commits/minibox-picopc-3.1 android]&lt;br /&gt;
* working with SPI interface small guide - [[Kernel_changes_for_custom_hardware#Working_with_SPI|[3]]]&lt;br /&gt;
* new release of Angstrom OS (console and graphical version) for pico-SAM9G45 board - [[Releases|[4]]]&lt;br /&gt;
* Angstrom OS for pico-SAM9G45 board - compiling steps - [[Compiling_Angstrom_for_pico-SAM9G45|[5]]]&lt;br /&gt;
* compiling Android 2.3 Gingerbread OS from sources - [[Compiling_Android_from_sources|[6]]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=Template:News&amp;diff=119</id>
		<title>Template:News</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=Template:News&amp;diff=119"/>
		<updated>2020-10-20T07:25:36Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* ''' &amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;new release of Android OS &amp;quot;Gingerbread&amp;quot; 2.3 stable - kernel version 3.1:&amp;lt;/font&amp;gt; - [[Releases|[1]]]'''&lt;br /&gt;
* ''' &amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;new release of Android OS &amp;quot;Ice Cream Sandwich&amp;quot; 4.0.3 beta 1 - kernel version 3.1:&amp;lt;/font&amp;gt; - [[Releases|[2]]'''    &lt;br /&gt;
&lt;br /&gt;
* please join '''pico-SAM9G45 Google discussions group''': [http://groups.google.com/group/pico-SAM9G45 http://groups.google.com/group/pico-SAM9G45]&lt;br /&gt;
&lt;br /&gt;
* '''3.1 kernel source code''' for pico-SAM9G45 board released: - [https://gitorious.org/picopc-kernel/kernel/commits/minibox-picopc-3.1 base] &amp;amp; [https://gitorious.org/picopc-kernel/kernel/commits/minibox-picopc-3.1 android]&lt;br /&gt;
* working with SPI interface small guide - [[Kernel_changes_for_custom_hardware#Working_with_SPI|[3]]]&lt;br /&gt;
* new release of Angstrom OS (console and graphical version) for pico-SAM9G45 board - [[Releases|[4]]]&lt;br /&gt;
* Angstrom OS for pico-SAM9G45 board - compiling steps - [[Compiling_Angstrom_for_pico-SAM9G45|[5]]]&lt;br /&gt;
* compiling Android 2.3 Gingerbread OS from sources - [[Compiling_Android_from_sources|[6]]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=Template:News&amp;diff=118</id>
		<title>Template:News</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=Template:News&amp;diff=118"/>
		<updated>2020-10-20T07:25:15Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* ''' &amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;new release of Android OS &amp;quot;Gingerbread&amp;quot; 2.3 stable - kernel version 3.1:&amp;lt;/font&amp;gt; - [[Releases|[1]]]'''&lt;br /&gt;
* ''' &amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;new release of Android OS &amp;quot;Ice Cream Sandwich&amp;quot; 4.0.3 beta 1 - kernel version 3.1:&amp;lt;/font&amp;gt; - [[Releases|[2]]'''    &lt;br /&gt;
&lt;br /&gt;
* please join '''pico-SAM9G45 Google discussions group''': [http://groups.google.com/group/pico-SAM9G45 http://groups.google.com/group/pico-SAM9G45]&lt;br /&gt;
&lt;br /&gt;
* '''3.1 kernel source code''' for pico-SAM9G45 board released: - [https://gitorious.org/picopc-kernel/kernel/commits/minibox-picopc-3.1 base] &amp;amp; [https://gitorious.org/picopc-kernel/kernel/commits/minibox-picopc-3.1 android]&lt;br /&gt;
* working with SPI interface small guide - [[Kernel_changes_for_custom_hardware#Working_with_SPI|[3]]&lt;br /&gt;
* new release of Angstrom OS (console and graphical version) for pico-SAM9G45 board - [[Releases|[4]]&lt;br /&gt;
* Angstrom OS for pico-SAM9G45 board - compiling steps - [[Compiling_Angstrom_for_pico-SAM9G45|[5]]&lt;br /&gt;
* compiling Android 2.3 Gingerbread OS from sources - [[Compiling_Android_from_sources|[6]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=Template:News&amp;diff=117</id>
		<title>Template:News</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=Template:News&amp;diff=117"/>
		<updated>2020-10-20T07:24:57Z</updated>

		<summary type="html">&lt;p&gt;Admin: Changed the links to internal links&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* ''' &amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;new release of Android OS &amp;quot;Gingerbread&amp;quot; 2.3 stable - kernel version 3.1:&amp;lt;/font&amp;gt; - [[Releases|[1]]]'''&lt;br /&gt;
* ''' &amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;new release of Android OS &amp;quot;Ice Cream Sandwich&amp;quot; 4.0.3 beta 1 - kernel version 3.1:&amp;lt;/font&amp;gt; - [[Releases|[2]]'''    &lt;br /&gt;
&lt;br /&gt;
* please join '''pico-SAM9G45 Google discussions group''': [http://groups.google.com/group/pico-SAM9G45 http://groups.google.com/group/pico-SAM9G45]&lt;br /&gt;
&lt;br /&gt;
* '''3.1 kernel source code''' for pico-SAM9G45 board released: - [https://gitorious.org/picopc-kernel/kernel/commits/minibox-picopc-3.1 base] &amp;amp; [https://gitorious.org/picopc-kernel/kernel/commits/minibox-picopc-3.1 android]&lt;br /&gt;
* working with SPI interface small guide - [[Kernel_changes_for_custom_hardware#Working_with_SPI|[3]]&lt;br /&gt;
* new release of Angstrom OS (console and graphical version) for pico-SAM9G45 board - [[Releases|[4]]&lt;br /&gt;
* Angstrom OS for pico-SAM9G45 board - compiling steps - [[Compiling_Angstrom_for_pico-SAM9G45|[5]]&lt;br /&gt;
* compiling Android 2.3 Gingerbread OS from sources - [Compiling_Android_from_sources|[6]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=Template:Pico_WIKI_Description&amp;diff=116</id>
		<title>Template:Pico WIKI Description</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=Template:Pico_WIKI_Description&amp;diff=116"/>
		<updated>2020-10-20T07:22:02Z</updated>

		<summary type="html">&lt;p&gt;Admin: Removed the tooltip info message&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''pico-SAM9G45 highly extensible low cost, low power, pico-ITX compatible board designed and manufactured by [http://www.mini-box.com mini-box.com].'''&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
This system board is at the core of a series of small,&amp;lt;br&amp;gt;&lt;br /&gt;
low cost systems with touch screen displays, oriented towards modular hardware I/O configurations.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;display: block; float: left; border-bottom: 0px solid #ccc; padding: 0px; text-align: center;  margin-left: 0px; margin-bottom: 0px;&amp;quot;&amp;gt;[[File:pico-SAM9G45-dev-board.jpg]] &amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;display: block; float: left; border-bottom: 0px solid #ccc; padding: 0px; text-align: center;  margin-left: 0px; margin-bottom: 0px;&amp;quot;&amp;gt;[[File:Pico-SAM9G45-back-view.jpg]]&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;display: block; background: transparent; text-align: center; width: 850px; padding-bottom: 10px;&amp;quot;&amp;gt;[http://www.mini-box.com/pico-SAM9G45-X  pico-SAM9G45 board] front and back view &lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=Template:Bootstrap-screen&amp;diff=115</id>
		<title>Template:Bootstrap-screen</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=Template:Bootstrap-screen&amp;diff=115"/>
		<updated>2020-10-20T07:06:06Z</updated>

		<summary type="html">&lt;p&gt;Admin: Created page with &amp;quot;&amp;lt;h2&amp;gt;Using a TTL to RS232 converter&amp;lt;/h2&amp;gt; After you connected the board to the serial port on your computer using the above steps and you setup the booting microSD card,&amp;lt;br&amp;gt;open...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h2&amp;gt;Using a TTL to RS232 converter&amp;lt;/h2&amp;gt;&lt;br /&gt;
After you connected the board to the serial port on your computer using the above steps and you setup the booting microSD card,&amp;lt;br&amp;gt;open [http://en.wikipedia.org/wiki/Minicom minicom terminal] (UNIX OS) or [http://www.hilgraeve.com/hyperterminal.html HyperTerminal] (Windows OS) and you should get something like this screen:&lt;br /&gt;
&amp;lt;pre style=&amp;quot;font-size: medium&amp;quot;&amp;gt;&lt;br /&gt;
-- pico-SAM9G45 Bootstrap 3.0.1 --&lt;br /&gt;
-- AT91SAM9G45-EK&lt;br /&gt;
-- Compiled: Sep  9 2011 09:50:06 --&lt;br /&gt;
Uncompressing Linux..........................................&lt;br /&gt;
Linux version 2.6.32.9 (root@droids) (gcc version 4.2.1) #180 PREEMPT Mon Jul 11 11:52:11 EEST 2011&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=Template:ADB-over-usb&amp;diff=114</id>
		<title>Template:ADB-over-usb</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=Template:ADB-over-usb&amp;diff=114"/>
		<updated>2020-10-20T07:05:20Z</updated>

		<summary type="html">&lt;p&gt;Admin: Created page with &amp;quot;=Using Android ADB interface= ==on Windows PC host== 1. Download latest Google Android SDK version from here: http://developer.android.com/sdk/index.html&amp;lt;br&amp;gt; - If you chose to...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Using Android ADB interface=&lt;br /&gt;
==on Windows PC host==&lt;br /&gt;
1. Download latest Google Android SDK version from here: http://developer.android.com/sdk/index.html&amp;lt;br&amp;gt;&lt;br /&gt;
- If you chose to download the zip archive, then you have to unzip the content in a folder on your PC (i.e. c:\android_sdk)&amp;lt;br&amp;gt;&lt;br /&gt;
- If you chose to download the exe file, after download, double click it to launch the installation wizard and follow the installation steps.&amp;lt;br&amp;gt;&lt;br /&gt;
In both situation you must have installed on your system the latest Java SE Development Kit available for download [http://www.oracle.com/technetwork/java/javase/downloads/jdk-6u26-download-400750.html here]&amp;lt;br&amp;gt;&lt;br /&gt;
For detailed information about how to install the Google Android SDK on your PC, please read http://developer.android.com/sdk/installing.html&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
2. The '''picoSAM9G45 board''' needs a driver to be recognized by the Windows PC host as an '''android ADB peripheral'''.&amp;lt;br&amp;gt;&lt;br /&gt;
This driver (the latest one) can be downloaded:&amp;lt;br&amp;gt;&lt;br /&gt;
- with the SDK Manager selecting Google repositories and after successful download and install you can find the ''usb_driver'' folder in i.e. ''c:\android_sdk\extras\google''&amp;lt;br&amp;gt;&lt;br /&gt;
- or directly from https://dl-ssl.google.com/android/repository/usb_driver_r04-windows.zip Unzip the content in the ''extras\google'' folder from your Android SDK installation location (i.e. c:\android_sdk)&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
3. In the ''usb_driver'' folder you will find the '''android_winusb.inf''' file - open it in your favorite text editor (i.e. Notepad)&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
4. Under the section noted as: '''[Google.NTx86]''' (if you are on a x86 Windows version) or '''[Google.NTamd64]''' (if you are on a x64 Windows version)&amp;lt;br&amp;gt;&lt;br /&gt;
'''copy &amp;amp; paste''' the following lines:&lt;br /&gt;
  ; picoSAM9G45 by Mini-Box.com for kernel version up to 2.6.32&lt;br /&gt;
  %SingleAdbInterface%        = USB_Install, USB\VID_18D1&amp;amp;PID_9018&lt;br /&gt;
  %CompositeAdbInterface%     = USB_Install, USB\VID_18D1&amp;amp;PID_9018&amp;amp;MI_01&lt;br /&gt;
  ; picoSAM9G45 by Mini-Box.com for kernel version 3.1&lt;br /&gt;
  %SingleAdbInterface%        = USB_Install, USB\VID_18D1&amp;amp;PID_0001&lt;br /&gt;
  %CompositeAdbInterface%     = USB_Install, USB\VID_18D1&amp;amp;PID_0001&amp;amp;MI_01&lt;br /&gt;
&lt;br /&gt;
where 'USB\VID_18D1&amp;amp;PID_XXXX' it's the 'Hardware Ids' of picoSAM9G45 board that you can find it following:&amp;lt;br&amp;gt;&lt;br /&gt;
Right click on 'My computer', select 'Properties' then 'Hardware', then select 'Device Manager' - here look on the list for '''picopc adb''' or '''Android''' right click on it and select 'Properties' and then go to 'Details' and then select from the list: 'Hardware Ids'&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
5. Save the '''android_winusb.inf''' file and close it.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
6. Connect picoSAM9G45 board to your USB port using the microUSB cable. If it's not already opened it should start to boot up.&amp;lt;br&amp;gt;&lt;br /&gt;
Go back to 'Device Manager' right click on '''picopc adb''', chose 'Update Driver', do not use Windows Update solution to find the driver, then chose to install from a specific location on your hard drive and point the driver location to the '''usb_driver''' folder where the '''android_winusb.inf''' file is located and then click 'Next' - let the installation complete and after that you have to restart your Windows system.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
7. After restart the '''Android Debug Bridge''' should be enabled. Look in 'Device Manager'. You should have 'Android Phone' - 'Android ADB Interface'&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
8. Using '''adb''': follow information provided by Google, here: http://developer.android.com/guide/developing/tools/adb.html&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==on Linux PC host==&lt;br /&gt;
1. Download latest Google Android SDK version from here: http://developer.android.com/sdk/index.html&amp;lt;br&amp;gt;&lt;br /&gt;
2. Follow the instruction on how to install the SDK from [http://developer.android.com/sdk/installing.html this page] and also read the [http://developer.android.com/sdk/installing.html#troubleshooting troubleshooting] paragraphs regarding Linux OS&amp;lt;br&amp;gt;&lt;br /&gt;
3. Use this [http://en.wikipedia.org/wiki/Udev udev] rule (thanks to [http://arm.mini-box.com/index.php?title=Talk:Main_Page#Re:_Using_ADB_USB_on_Linux_--_95.115.230.174_06:02.2C_23_October_2011_.28MDT.29 Steffen Elste] contribution)&lt;br /&gt;
 # pico-SAM9G45 Programmer rules&lt;br /&gt;
 SUBSYSTEMS==&amp;quot;usb&amp;quot;, ATTRS{idVendor}==&amp;quot;18d1&amp;quot;, ATTRS{idProduct}==&amp;quot;9018&amp;quot;, MODE=&amp;quot;0666&amp;quot;&lt;br /&gt;
4. Power up the pico-SAM9G45 board using micro-USB cable&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=Connecting_With_Sam-BA&amp;diff=113</id>
		<title>Connecting With Sam-BA</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=Connecting_With_Sam-BA&amp;diff=113"/>
		<updated>2020-10-20T06:55:13Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MicroUSB-OTG-port}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Download a suitable version of Sam-BA from [http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3883 here] and install it.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
==Sam-BA on Windows ==&lt;br /&gt;
&lt;br /&gt;
Plug in the pico-SAM9G45 board and it should appear as &amp;quot;atm6124.Sys AMTEL AT91xxxxx Test Board&amp;quot;&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
https://resources.mini-box.com/online/pico-SAM9G45/images/picture1.jpg&lt;br /&gt;
  &lt;br /&gt;
Start SAM-BA GUI Application.&amp;lt;br&amp;gt;  &lt;br /&gt;
Choose the USB Connection /usb/ARM0.&amp;lt;br&amp;gt; &lt;br /&gt;
Select the the at91sam9g45-ek board in the drop-down menu and press connect.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
https://resources.mini-box.com/online/pico-SAM9G45/images/picture2.jpg&lt;br /&gt;
&lt;br /&gt;
In the main SAM-BA window you will have: &lt;br /&gt;
&lt;br /&gt;
https://resources.mini-box.com/online/pico-SAM9G45/images/picture3.jpg&lt;br /&gt;
&lt;br /&gt;
==Sam-BA on Linux ==&lt;br /&gt;
Unload usbserial module if it is already running by issuing: &lt;br /&gt;
    sudo rmmod usbserial&lt;br /&gt;
Load usbserial kernel module:&lt;br /&gt;
    sudo modprobe usbserial vendor=0x03eb product=0x6124&lt;br /&gt;
Verify that the USB connection is established:&lt;br /&gt;
    lsusb -d 03eb:6124&lt;br /&gt;
&lt;br /&gt;
    Bus 004 Device 006: ID 03eb:6124 Atmel Corp&lt;br /&gt;
&lt;br /&gt;
Know which USB connection is established:&lt;br /&gt;
    dmesg &lt;br /&gt;
    ...&lt;br /&gt;
    kernel: usb 4-2: new full speed USB device using uhci_hcd and address 5&lt;br /&gt;
    kernel: usb 4-2: configuration #1 chosen from 1 choice&lt;br /&gt;
    kernel: usbserial_generic 4-2:1.0: generic converter detected&lt;br /&gt;
    kernel: usbserial_generic: probe of 4-2:1.0 failed with error -5&lt;br /&gt;
    kernel: usbserial_generic 4-2:1.1: generic converter detected&lt;br /&gt;
    kernel: usb 4-2: generic converter now attached to ttyUSBx&lt;br /&gt;
&lt;br /&gt;
=&amp;gt; you will have to use /dev/ttyUSBx instead of \usb\ARM0 to connect to your board&lt;br /&gt;
&lt;br /&gt;
NOTE: On some Linux systems, instead of /dev/ttyUSB0, the device that is created may be /dev/ttyACM0 (the dmesg command will show the device).  The sam-ba utility will not look for or find this device.  The workaround is to create a symbolic link called /dev/ttyUSB0 before running the utility:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;sudo ln -sf /dev/ttyACM0 /dev/ttyS0&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
sam-ba will then work correctly.  Remember to remove the symbolic link when you are finished using the the utility, so that the system can create a real /dev/ttyUSB0 if needed.&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://arm.mini-box.com/index.php?title=Connecting_With_Sam-BA&amp;diff=112</id>
		<title>Connecting With Sam-BA</title>
		<link rel="alternate" type="text/html" href="https://arm.mini-box.com/index.php?title=Connecting_With_Sam-BA&amp;diff=112"/>
		<updated>2020-10-20T06:54:37Z</updated>

		<summary type="html">&lt;p&gt;Admin: Created page with &amp;quot;{{MicroUSB-OTG-port}} &amp;lt;br&amp;gt; Download a suitable version of Sam-BA from [http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3883 here] and install it.&amp;lt;br&amp;gt;   ==Sam-BA on Wi...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MicroUSB-OTG-port}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Download a suitable version of Sam-BA from [http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3883 here] and install it.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
==Sam-BA on Windows ==&lt;br /&gt;
&lt;br /&gt;
Plug in the pico-SAM9G45 board and it should appear as &amp;quot;atm6124.Sys AMTEL AT91xxxxx Test Board&amp;quot;&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
http://resources.mini-box.com/online/pico-SAM9G45/images/picture1.jpg&lt;br /&gt;
  &lt;br /&gt;
Start SAM-BA GUI Application.&amp;lt;br&amp;gt;  &lt;br /&gt;
Choose the USB Connection /usb/ARM0.&amp;lt;br&amp;gt; &lt;br /&gt;
Select the the at91sam9g45-ek board in the drop-down menu and press connect.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
http://resources.mini-box.com/online/pico-SAM9G45/images/picture2.jpg&lt;br /&gt;
&lt;br /&gt;
In the main SAM-BA window you will have: &lt;br /&gt;
&lt;br /&gt;
http://resources.mini-box.com/online/pico-SAM9G45/images/picture3.jpg&lt;br /&gt;
&lt;br /&gt;
==Sam-BA on Linux ==&lt;br /&gt;
Unload usbserial module if it is already running by issuing: &lt;br /&gt;
    sudo rmmod usbserial&lt;br /&gt;
Load usbserial kernel module:&lt;br /&gt;
    sudo modprobe usbserial vendor=0x03eb product=0x6124&lt;br /&gt;
Verify that the USB connection is established:&lt;br /&gt;
    lsusb -d 03eb:6124&lt;br /&gt;
&lt;br /&gt;
    Bus 004 Device 006: ID 03eb:6124 Atmel Corp&lt;br /&gt;
&lt;br /&gt;
Know which USB connection is established:&lt;br /&gt;
    dmesg &lt;br /&gt;
    ...&lt;br /&gt;
    kernel: usb 4-2: new full speed USB device using uhci_hcd and address 5&lt;br /&gt;
    kernel: usb 4-2: configuration #1 chosen from 1 choice&lt;br /&gt;
    kernel: usbserial_generic 4-2:1.0: generic converter detected&lt;br /&gt;
    kernel: usbserial_generic: probe of 4-2:1.0 failed with error -5&lt;br /&gt;
    kernel: usbserial_generic 4-2:1.1: generic converter detected&lt;br /&gt;
    kernel: usb 4-2: generic converter now attached to ttyUSBx&lt;br /&gt;
&lt;br /&gt;
=&amp;gt; you will have to use /dev/ttyUSBx instead of \usb\ARM0 to connect to your board&lt;br /&gt;
&lt;br /&gt;
NOTE: On some Linux systems, instead of /dev/ttyUSB0, the device that is created may be /dev/ttyACM0 (the dmesg command will show the device).  The sam-ba utility will not look for or find this device.  The workaround is to create a symbolic link called /dev/ttyUSB0 before running the utility:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;sudo ln -sf /dev/ttyACM0 /dev/ttyS0&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
sam-ba will then work correctly.  Remember to remove the symbolic link when you are finished using the the utility, so that the system can create a real /dev/ttyUSB0 if needed.&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
</feed>