<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wikilegacy.armadeus.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=JulienN</id>
	<title>ArmadeusWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wikilegacy.armadeus.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=JulienN"/>
	<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=Special:Contributions/JulienN"/>
	<updated>2026-04-28T06:26:53Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.6</generator>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=EFL&amp;diff=3418</id>
		<title>EFL</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=EFL&amp;diff=3418"/>
		<updated>2008-02-25T19:52:29Z</updated>

		<summary type="html">&lt;p&gt;JulienN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==What is it ?==&lt;br /&gt;
http://en.wikipedia.org/wiki/Enlightenment_Foundation_Libraries&lt;br /&gt;
&lt;br /&gt;
==Building the librairies==&lt;br /&gt;
&lt;br /&gt;
===Get the packages===&lt;br /&gt;
The buildroot packages of the EFL can be downloaded there :&lt;br /&gt;
&lt;br /&gt;
http://e-ghosting.com/~jujun/EFL-buildroot.tar.bz2&lt;br /&gt;
&lt;br /&gt;
===Compile it===&lt;br /&gt;
Select the new options in the menuconfig&lt;br /&gt;
and then start make&lt;br /&gt;
&lt;br /&gt;
==RootFS with EFL==&lt;br /&gt;
&lt;br /&gt;
You will need a mmc card !&lt;br /&gt;
the rootfs will use 29M (it is not very optimised)&lt;br /&gt;
&lt;br /&gt;
10M tarball :&lt;br /&gt;
http://www.e-ghosting.com/~jujun/armadeus/rootfs-EFL.arm.tar.bz2&lt;br /&gt;
&lt;br /&gt;
put the rootfs on a mmc card in ext2 (or change it in the fstab)&lt;br /&gt;
and then in uboot :&lt;br /&gt;
&lt;br /&gt;
   run mmcboot&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Simple test ==&lt;br /&gt;
&lt;br /&gt;
[[Image:080120_160232.jpg|thumb|Screen Shoot of the example]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A test using Evas and Ecore and Evas_Ecore&lt;br /&gt;
&lt;br /&gt;
[[CodingWithEFL]]&lt;br /&gt;
&lt;br /&gt;
The source of the above example :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=c&amp;gt;&lt;br /&gt;
#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;
#include &amp;lt;Ecore_Evas.h&amp;gt;&lt;br /&gt;
#include &amp;lt;Ecore.h&amp;gt;&lt;br /&gt;
#define WIDTH 320&lt;br /&gt;
#define HEIGHT 240&lt;br /&gt;
&lt;br /&gt;
        Ecore_Evas  *   ee;&lt;br /&gt;
        Evas        *   evas;&lt;br /&gt;
        Evas_Object *   base_rect;&lt;br /&gt;
        Evas_Object *   base_rect_sec;&lt;br /&gt;
        Evas_Object *   img;&lt;br /&gt;
&lt;br /&gt;
int main(){&lt;br /&gt;
        evas_init();&lt;br /&gt;
        ecore_init();&lt;br /&gt;
        //ee = ecore_evas_software_x11_new(NULL, 0, 0, 0, WIDTH, HEIGHT); // When you test on your host computer&lt;br /&gt;
        ee = ecore_evas_fb_new(NULL, 270, WIDTH, HEIGHT); //When you will run it on the board&lt;br /&gt;
        ecore_evas_show(ee);&lt;br /&gt;
        evas = ecore_evas_get(ee);&lt;br /&gt;
&lt;br /&gt;
        base_rect = evas_object_rectangle_add(evas);//This is the red rectangle&lt;br /&gt;
        evas_object_resize(base_rect, WIDTH, HEIGHT-100);&lt;br /&gt;
        evas_object_color_set(base_rect, 255, 0, 0, 25);&lt;br /&gt;
        evas_object_show(base_rect);&lt;br /&gt;
&lt;br /&gt;
        base_rect_sec = evas_object_rectangle_add(evas);//This is the blue rectangle&lt;br /&gt;
        evas_object_resize(base_rect_sec, WIDTH-200, HEIGHT);&lt;br /&gt;
        evas_object_color_set(base_rect_sec, 0, 0, 255, 25);&lt;br /&gt;
        evas_object_show(base_rect_sec);&lt;br /&gt;
&lt;br /&gt;
        img = evas_object_image_add(evas);//This is the png&lt;br /&gt;
        evas_object_image_file_set(img, &amp;quot;e_logo.png&amp;quot;, NULL);&lt;br /&gt;
        evas_object_resize(img, 241, 195);&lt;br /&gt;
        evas_object_image_fill_set(img, 0, 0, 241, 195);&lt;br /&gt;
        evas_object_layer_set(img, -999);&lt;br /&gt;
        evas_object_show(img);&lt;br /&gt;
&lt;br /&gt;
        ecore_main_loop_begin();&lt;br /&gt;
        return 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As you can see, there is no &amp;quot;Violet&amp;quot; rectangle !&lt;br /&gt;
&lt;br /&gt;
== To Do ==&lt;br /&gt;
 - &amp;quot;stable&amp;quot; buildroot packages&lt;br /&gt;
 - Use it with the touchscreen (tslib)&lt;br /&gt;
 - Get events from keyboard&lt;br /&gt;
 - Edje&lt;br /&gt;
 - Emotion (hard!)&lt;br /&gt;
 - More examples&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=EFL&amp;diff=3417</id>
		<title>EFL</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=EFL&amp;diff=3417"/>
		<updated>2008-02-25T17:00:29Z</updated>

		<summary type="html">&lt;p&gt;JulienN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==What is it ?==&lt;br /&gt;
http://en.wikipedia.org/wiki/Enlightenment_Foundation_Libraries&lt;br /&gt;
&lt;br /&gt;
==Building the librairies==&lt;br /&gt;
&lt;br /&gt;
The buildroot packages&lt;br /&gt;
http://e-ghosting.com/~jujun/EFL-buildroot.tar.bz2&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==RootFS with EFL==&lt;br /&gt;
&lt;br /&gt;
You will need a mmc card !&lt;br /&gt;
the rootfs will use 29M (it is not very optimised)&lt;br /&gt;
&lt;br /&gt;
10M tarball :&lt;br /&gt;
http://www.e-ghosting.com/~jujun/armadeus/rootfs-EFL.arm.tar.bz2&lt;br /&gt;
&lt;br /&gt;
put the rootfs on a mmc card in ext2 (or change it in the fstab)&lt;br /&gt;
and then in uboot :&lt;br /&gt;
&lt;br /&gt;
   run mmcboot&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Simple test ==&lt;br /&gt;
&lt;br /&gt;
[[Image:080120_160232.jpg|thumb|Screen Shoot of the example]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A test using Evas and Ecore and Evas_Ecore&lt;br /&gt;
&lt;br /&gt;
[[CodingWithEFL]]&lt;br /&gt;
&lt;br /&gt;
The source of the above example :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=c&amp;gt;&lt;br /&gt;
#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;
#include &amp;lt;Ecore_Evas.h&amp;gt;&lt;br /&gt;
#include &amp;lt;Ecore.h&amp;gt;&lt;br /&gt;
#define WIDTH 320&lt;br /&gt;
#define HEIGHT 240&lt;br /&gt;
&lt;br /&gt;
        Ecore_Evas  *   ee;&lt;br /&gt;
        Evas        *   evas;&lt;br /&gt;
        Evas_Object *   base_rect;&lt;br /&gt;
        Evas_Object *   base_rect_sec;&lt;br /&gt;
        Evas_Object *   img;&lt;br /&gt;
&lt;br /&gt;
int main(){&lt;br /&gt;
        evas_init();&lt;br /&gt;
        ecore_init();&lt;br /&gt;
        //ee = ecore_evas_software_x11_new(NULL, 0, 0, 0, WIDTH, HEIGHT); // When you test on your host computer&lt;br /&gt;
        ee = ecore_evas_fb_new(NULL, 270, WIDTH, HEIGHT); //When you will run it on the board&lt;br /&gt;
        ecore_evas_show(ee);&lt;br /&gt;
        evas = ecore_evas_get(ee);&lt;br /&gt;
&lt;br /&gt;
        base_rect = evas_object_rectangle_add(evas);//This is the red rectangle&lt;br /&gt;
        evas_object_resize(base_rect, WIDTH, HEIGHT-100);&lt;br /&gt;
        evas_object_color_set(base_rect, 255, 0, 0, 25);&lt;br /&gt;
        evas_object_show(base_rect);&lt;br /&gt;
&lt;br /&gt;
        base_rect_sec = evas_object_rectangle_add(evas);//This is the blue rectangle&lt;br /&gt;
        evas_object_resize(base_rect_sec, WIDTH-200, HEIGHT);&lt;br /&gt;
        evas_object_color_set(base_rect_sec, 0, 0, 255, 25);&lt;br /&gt;
        evas_object_show(base_rect_sec);&lt;br /&gt;
&lt;br /&gt;
        img = evas_object_image_add(evas);//This is the png&lt;br /&gt;
        evas_object_image_file_set(img, &amp;quot;e_logo.png&amp;quot;, NULL);&lt;br /&gt;
        evas_object_resize(img, 241, 195);&lt;br /&gt;
        evas_object_image_fill_set(img, 0, 0, 241, 195);&lt;br /&gt;
        evas_object_layer_set(img, -999);&lt;br /&gt;
        evas_object_show(img);&lt;br /&gt;
&lt;br /&gt;
        ecore_main_loop_begin();&lt;br /&gt;
        return 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As you can see, there is no &amp;quot;Violet&amp;quot; rectangle !&lt;br /&gt;
&lt;br /&gt;
== To Do ==&lt;br /&gt;
 - &amp;quot;stable&amp;quot; buildroot packages&lt;br /&gt;
 - Use it with the touchscreen (tslib)&lt;br /&gt;
 - Get events from keyboard&lt;br /&gt;
 - Edje&lt;br /&gt;
 - Emotion (hard!)&lt;br /&gt;
 - More examples&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=EbookReader&amp;diff=3402</id>
		<title>EbookReader</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=EbookReader&amp;diff=3402"/>
		<updated>2008-02-23T21:12:29Z</updated>

		<summary type="html">&lt;p&gt;JulienN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Building an Ebook reader with the APF ==&lt;br /&gt;
It&#039;s an another example using the EFL&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== What will it do ? ===&lt;br /&gt;
&lt;br /&gt;
* Display ascii on the lcd&lt;br /&gt;
* changing Pages with the keyboard&lt;br /&gt;
* changing color of the text&lt;br /&gt;
* change display brightness&lt;br /&gt;
* touchscreen/keyboard control&lt;br /&gt;
&lt;br /&gt;
=== What will we use ? ===&lt;br /&gt;
* Evas (part of the EFL)&lt;br /&gt;
* the PS/2 keyboard&lt;br /&gt;
* the touchscreen&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== What file format for ebooks ?===&lt;br /&gt;
I think ascii file&lt;br /&gt;
&lt;br /&gt;
but ebooks are pdf !? Yes, bu you can convert a pdf to ascii text. (pdf2txt)&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=EbookReader&amp;diff=3401</id>
		<title>EbookReader</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=EbookReader&amp;diff=3401"/>
		<updated>2008-02-23T21:10:44Z</updated>

		<summary type="html">&lt;p&gt;JulienN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Building an Ebook reader with the APF ==&lt;br /&gt;
It&#039;s an another example using the EFL&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== What will it do ? ===&lt;br /&gt;
&lt;br /&gt;
* Display ascii on the lcd&lt;br /&gt;
* changing Pages with the keyboard&lt;br /&gt;
* changing color of the text&lt;br /&gt;
* change display brightness&lt;br /&gt;
* touchscreen/keyboard control&lt;br /&gt;
&lt;br /&gt;
=== What will we use ? ===&lt;br /&gt;
* Evas (part of the EFL)&lt;br /&gt;
* the PS/2 keyboard&lt;br /&gt;
* the touchscreen&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== What file format for ebooks ?===&lt;br /&gt;
I think ascii file&lt;br /&gt;
but ebooks are pdf !? Yes, bu you can convert a pdf to ascii text. (pdf2txt)&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=EbookReader&amp;diff=3400</id>
		<title>EbookReader</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=EbookReader&amp;diff=3400"/>
		<updated>2008-02-23T21:09:33Z</updated>

		<summary type="html">&lt;p&gt;JulienN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Building an Ebook reader with the APF ==&lt;br /&gt;
&lt;br /&gt;
=== What will it do ? ===&lt;br /&gt;
&lt;br /&gt;
* Display ascii on the lcd&lt;br /&gt;
* changing Pages with the keyboard&lt;br /&gt;
* changing color of the text&lt;br /&gt;
* change display brightness&lt;br /&gt;
* touchscreen/keyboard control&lt;br /&gt;
&lt;br /&gt;
=== What will we use ? ===&lt;br /&gt;
* Evas (part of the EFL)&lt;br /&gt;
* the PS/2 keyboard&lt;br /&gt;
* the touchscreen&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== What file format for ebooks ?===&lt;br /&gt;
I think ascii file&lt;br /&gt;
but ebooks are pdf !? Yes, bu you can convert a pdf to ascii text. (pdf2txt)&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=EbookReader&amp;diff=3399</id>
		<title>EbookReader</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=EbookReader&amp;diff=3399"/>
		<updated>2008-02-23T21:02:24Z</updated>

		<summary type="html">&lt;p&gt;JulienN: New page: == Building an Ebook reader with the APF ==&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Building an Ebook reader with the APF ==&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=Members&amp;diff=3398</id>
		<title>Members</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=Members&amp;diff=3398"/>
		<updated>2008-02-23T19:05:53Z</updated>

		<summary type="html">&lt;p&gt;JulienN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Google Map==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;googlemap lat=&amp;quot;47&amp;quot; lon=&amp;quot;6&amp;quot; width=640 height=480 zoom=5&amp;gt;&lt;br /&gt;
47.263854, 6.025314, [[User:JulienB]] Besancon&lt;br /&gt;
47.760791, 7.339897, [[User:Salocin68]] Mulhouse&lt;br /&gt;
46.550833, 6.632309, [[User:Jorasse]] Lausanne&lt;br /&gt;
47.681108, 7.390366, [[User:Carbure]] Helfranzkirch&lt;br /&gt;
47.436448, 8.429947, [[User:SonZerro]] Baden&lt;br /&gt;
44.653992, 6.176672, [[User:JulienN]] Chabottes&lt;br /&gt;
&amp;lt;/googlemap&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Here are the places where the french members are living==&lt;br /&gt;
Work in progress !!&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: relative&amp;quot;&amp;gt;[[Image:France.jpg]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: 350px; top: 250px&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;background:transparent&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Besançon(3)&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: 350px; top: 320px&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;background:transparent&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Lyon(1)&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: 390px; top: 340px&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;background:transparent&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Grenoble(1)&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: 350px; top: 360px&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;background:transparent&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Valence(1)&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: 310px; top: 220px&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;background:transparent&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Dijon(1)&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: 420px; top: 180px&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;background:transparent&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Mulhouse(3)&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: 400px; top: 210px&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;background:transparent&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Montbéliard/Belfort(2)&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: 460px; top: 120px&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;background:transparent&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Strasbourg(3)&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: 400px; top: 100px&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;background:transparent&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Metz(1)&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: 400px; top: 145px&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;background:transparent&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Charmes(1)&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: 255px; top: 5px&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;background:transparent&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Lille(1)&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: 250px; top: 70px&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;background:transparent&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Amiens(1)&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: 250px; top: 150px&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;background:transparent&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Paris(20)&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: 300px; top: 120px&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;background:transparent&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Soisson(1)&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: 335px; top: 132px&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;background:transparent&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Reims(1)&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: 150px; top: 190px&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;background:transparent&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Angers(1)&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: 100px; top: 210px&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;background:transparent&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Nantes(1)&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: 180px; top: 170px&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;background:transparent&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Le Mans(1)&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: 80px; top: 150px&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;background:transparent&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Rennes(1)&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: 250px; top: 480px&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;background:transparent&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Perpignan(1)&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: 350px; top: 450px&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;background:transparent&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Aix/Marseille(1)&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: 200px; top: 400px&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;background:transparent&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Toulouse(2)&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: 200px; top: 350px&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;background:transparent&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Périgueux(1)&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===DOM-TOM===&lt;br /&gt;
* La Réunion (1)&lt;br /&gt;
* Martinique (1)&lt;br /&gt;
&lt;br /&gt;
==Here are the places where the swiss members are living==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: relative&amp;quot;&amp;gt;[[Image:Suisse.jpg]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: 50px; top: 150px&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;background:transparent&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Lausanne(2)&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: 100px; top: 110px&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;background:transparent&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Fribourg(1)&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: 150px; top: 30px&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;background:transparent&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Basel(1)&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: 220px; top: 50px&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;background:transparent&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Zürich(1)&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Here are the places where the belgian members are living==&lt;br /&gt;
Liege (1)&lt;br /&gt;
Work in progress !!&lt;br /&gt;
&lt;br /&gt;
==Here are the places where the german members are living==&lt;br /&gt;
* Munich (1)&lt;br /&gt;
Work in progress !!&lt;br /&gt;
&lt;br /&gt;
==Here are the places where the irish members are living==&lt;br /&gt;
* Dublin(1)&lt;br /&gt;
Work in progress !!&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=EFL&amp;diff=3396</id>
		<title>EFL</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=EFL&amp;diff=3396"/>
		<updated>2008-02-23T14:36:33Z</updated>

		<summary type="html">&lt;p&gt;JulienN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==What is it ?==&lt;br /&gt;
http://en.wikipedia.org/wiki/Enlightenment_Foundation_Libraries&lt;br /&gt;
&lt;br /&gt;
==Building the librairies==&lt;br /&gt;
TO BE DONE...&lt;br /&gt;
&lt;br /&gt;
==RootFS with EFL==&lt;br /&gt;
&lt;br /&gt;
You will need a mmc card !&lt;br /&gt;
the rootfs will use 29M (it is not very optimised)&lt;br /&gt;
&lt;br /&gt;
10M tarball :&lt;br /&gt;
http://www.e-ghosting.com/~jujun/armadeus/rootfs-EFL.arm.tar.bz2&lt;br /&gt;
&lt;br /&gt;
put the rootfs on a mmc card in ext2 (or change it in the fstab)&lt;br /&gt;
and then in uboot :&lt;br /&gt;
&lt;br /&gt;
   run mmcboot&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Simple test ==&lt;br /&gt;
&lt;br /&gt;
[[Image:080120_160232.jpg|thumb|Screen Shoot of the example]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A test using Evas and Ecore and Evas_Ecore&lt;br /&gt;
&lt;br /&gt;
[[CodingWithEFL]]&lt;br /&gt;
&lt;br /&gt;
The source of the above example :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=c&amp;gt;&lt;br /&gt;
#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;
#include &amp;lt;Ecore_Evas.h&amp;gt;&lt;br /&gt;
#include &amp;lt;Ecore.h&amp;gt;&lt;br /&gt;
#define WIDTH 320&lt;br /&gt;
#define HEIGHT 240&lt;br /&gt;
&lt;br /&gt;
        Ecore_Evas  *   ee;&lt;br /&gt;
        Evas        *   evas;&lt;br /&gt;
        Evas_Object *   base_rect;&lt;br /&gt;
        Evas_Object *   base_rect_sec;&lt;br /&gt;
        Evas_Object *   img;&lt;br /&gt;
&lt;br /&gt;
int main(){&lt;br /&gt;
        evas_init();&lt;br /&gt;
        ecore_init();&lt;br /&gt;
        //ee = ecore_evas_software_x11_new(NULL, 0, 0, 0, WIDTH, HEIGHT); // When you test on your host computer&lt;br /&gt;
        ee = ecore_evas_fb_new(NULL, 270, WIDTH, HEIGHT); //When you will run it on the board&lt;br /&gt;
        ecore_evas_show(ee);&lt;br /&gt;
        evas = ecore_evas_get(ee);&lt;br /&gt;
&lt;br /&gt;
        base_rect = evas_object_rectangle_add(evas);//This is the red rectangle&lt;br /&gt;
        evas_object_resize(base_rect, WIDTH, HEIGHT-100);&lt;br /&gt;
        evas_object_color_set(base_rect, 255, 0, 0, 25);&lt;br /&gt;
        evas_object_show(base_rect);&lt;br /&gt;
&lt;br /&gt;
        base_rect_sec = evas_object_rectangle_add(evas);//This is the blue rectangle&lt;br /&gt;
        evas_object_resize(base_rect_sec, WIDTH-200, HEIGHT);&lt;br /&gt;
        evas_object_color_set(base_rect_sec, 0, 0, 255, 25);&lt;br /&gt;
        evas_object_show(base_rect_sec);&lt;br /&gt;
&lt;br /&gt;
        img = evas_object_image_add(evas);//This is the png&lt;br /&gt;
        evas_object_image_file_set(img, &amp;quot;e_logo.png&amp;quot;, NULL);&lt;br /&gt;
        evas_object_resize(img, 241, 195);&lt;br /&gt;
        evas_object_image_fill_set(img, 0, 0, 241, 195);&lt;br /&gt;
        evas_object_layer_set(img, -999);&lt;br /&gt;
        evas_object_show(img);&lt;br /&gt;
&lt;br /&gt;
        ecore_main_loop_begin();&lt;br /&gt;
        return 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As you can see, there is no &amp;quot;Violet&amp;quot; rectangle !&lt;br /&gt;
&lt;br /&gt;
== To Do ==&lt;br /&gt;
 - &amp;quot;stable&amp;quot; buildroot packages&lt;br /&gt;
 - Use it with the touchscreen (tslib)&lt;br /&gt;
 - Get events from keyboard&lt;br /&gt;
 - Edje&lt;br /&gt;
 - Emotion (hard!)&lt;br /&gt;
 - More examples&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=EFL&amp;diff=3395</id>
		<title>EFL</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=EFL&amp;diff=3395"/>
		<updated>2008-02-23T14:20:57Z</updated>

		<summary type="html">&lt;p&gt;JulienN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==What is it ?==&lt;br /&gt;
http://en.wikipedia.org/wiki/Enlightenment_Foundation_Libraries&lt;br /&gt;
&lt;br /&gt;
==Building the librairies==&lt;br /&gt;
TO BE DONE...&lt;br /&gt;
&lt;br /&gt;
== Simple test ==&lt;br /&gt;
&lt;br /&gt;
[[Image:080120_160232.jpg|thumb|Screen Shoot of the example]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A test using Evas and Ecore and Evas_Ecore&lt;br /&gt;
&lt;br /&gt;
[[CodingWithEFL]]&lt;br /&gt;
&lt;br /&gt;
The source of the above example :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=c&amp;gt;&lt;br /&gt;
#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;
#include &amp;lt;Ecore_Evas.h&amp;gt;&lt;br /&gt;
#include &amp;lt;Ecore.h&amp;gt;&lt;br /&gt;
#define WIDTH 320&lt;br /&gt;
#define HEIGHT 240&lt;br /&gt;
&lt;br /&gt;
        Ecore_Evas  *   ee;&lt;br /&gt;
        Evas        *   evas;&lt;br /&gt;
        Evas_Object *   base_rect;&lt;br /&gt;
        Evas_Object *   base_rect_sec;&lt;br /&gt;
        Evas_Object *   img;&lt;br /&gt;
&lt;br /&gt;
int main(){&lt;br /&gt;
        evas_init();&lt;br /&gt;
        ecore_init();&lt;br /&gt;
        //ee = ecore_evas_software_x11_new(NULL, 0, 0, 0, WIDTH, HEIGHT); // When you test on your host computer&lt;br /&gt;
        ee = ecore_evas_fb_new(NULL, 270, WIDTH, HEIGHT); //When you will run it on the board&lt;br /&gt;
        ecore_evas_show(ee);&lt;br /&gt;
        evas = ecore_evas_get(ee);&lt;br /&gt;
&lt;br /&gt;
        base_rect = evas_object_rectangle_add(evas);//This is the red rectangle&lt;br /&gt;
        evas_object_resize(base_rect, WIDTH, HEIGHT-100);&lt;br /&gt;
        evas_object_color_set(base_rect, 255, 0, 0, 25);&lt;br /&gt;
        evas_object_show(base_rect);&lt;br /&gt;
&lt;br /&gt;
        base_rect_sec = evas_object_rectangle_add(evas);//This is the blue rectangle&lt;br /&gt;
        evas_object_resize(base_rect_sec, WIDTH-200, HEIGHT);&lt;br /&gt;
        evas_object_color_set(base_rect_sec, 0, 0, 255, 25);&lt;br /&gt;
        evas_object_show(base_rect_sec);&lt;br /&gt;
&lt;br /&gt;
        img = evas_object_image_add(evas);//This is the png&lt;br /&gt;
        evas_object_image_file_set(img, &amp;quot;e_logo.png&amp;quot;, NULL);&lt;br /&gt;
        evas_object_resize(img, 241, 195);&lt;br /&gt;
        evas_object_image_fill_set(img, 0, 0, 241, 195);&lt;br /&gt;
        evas_object_layer_set(img, -999);&lt;br /&gt;
        evas_object_show(img);&lt;br /&gt;
&lt;br /&gt;
        ecore_main_loop_begin();&lt;br /&gt;
        return 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As you can see, there is no &amp;quot;Violet&amp;quot; rectangle !&lt;br /&gt;
&lt;br /&gt;
== To Do ==&lt;br /&gt;
 - &amp;quot;stable&amp;quot; buildroot packages&lt;br /&gt;
 - Use it with the touchscreen (tslib)&lt;br /&gt;
 - Get events from keyboard&lt;br /&gt;
 - Edje&lt;br /&gt;
 - Emotion (hard!)&lt;br /&gt;
 - More examples&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=CodingWithEFL&amp;diff=3394</id>
		<title>CodingWithEFL</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=CodingWithEFL&amp;diff=3394"/>
		<updated>2008-02-23T14:19:08Z</updated>

		<summary type="html">&lt;p&gt;JulienN: color :D&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Installing required libs ==&lt;br /&gt;
- Using the menuconfig of buildroot (no usable for the moment)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Init required libs ==&lt;br /&gt;
We will use evas and ecore,&lt;br /&gt;
we need to init both.&lt;br /&gt;
So we call &amp;lt;lib&amp;gt;_init() for both.&lt;br /&gt;
&amp;lt;source lang=c&amp;gt;&lt;br /&gt;
evas_init();&lt;br /&gt;
ecore_init();&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
You can handle error during init like any other fuctions.&lt;br /&gt;
&lt;br /&gt;
== Set up where you will display things ==&lt;br /&gt;
&lt;br /&gt;
On the APF you need to use the Framebuffer to displays graphics on the lcd&lt;br /&gt;
So you need a new Framebuffer object from Evas_ecore&lt;br /&gt;
&amp;lt;source lang=c&amp;gt;&lt;br /&gt;
ee = ecore_evas_fb_new(NULL, ANGLE, WIDTH, HEIGHT);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
where ANGLE is the rotation in ° of the screen&lt;br /&gt;
&lt;br /&gt;
If you are on your host Pc, with Xorg, you will need a X11_software to display things.&lt;br /&gt;
&amp;lt;source lang=c&amp;gt;&lt;br /&gt;
ee = ecore_evas_software_x11_new(NULL, 0, 0, 0, WIDTH, HEIGHT);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
Then you can show it on the screen &lt;br /&gt;
&amp;lt;source lang=c&amp;gt;&lt;br /&gt;
ecore_evas_show(ee);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
== Get the Evas Object ==&lt;br /&gt;
And now, we get an evas object, we will manipulate it after.&lt;br /&gt;
&amp;lt;source lang=c&amp;gt;&lt;br /&gt;
evas = ecore_evas_get(ee);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
== Displaying things ==&lt;br /&gt;
&lt;br /&gt;
Let&#039;s add a rectangle to the evas object.&lt;br /&gt;
&amp;lt;source lang=c&amp;gt;&lt;br /&gt;
base_rect_sec = evas_object_rectangle_add(evas);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
Then we will set the size of the rectangle&lt;br /&gt;
&amp;lt;source lang=c&amp;gt;&lt;br /&gt;
evas_object_resize(base_rect_sec, WIDTH-200, HEIGHT);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
And now, we set the color of the rectangle. (R,G,B,Alpha)&lt;br /&gt;
&amp;lt;source lang=c&amp;gt;&lt;br /&gt;
evas_object_color_set(base_rect_sec, 0, 0, 255, 25);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
We show the rectangle&lt;br /&gt;
&amp;lt;source lang=c&amp;gt;&lt;br /&gt;
evas_object_show(base_rect_sec);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Compiling ==&lt;br /&gt;
&lt;br /&gt;
To test on your host computer you will compile it with :&lt;br /&gt;
&lt;br /&gt;
  gcc -o test test.c -levas -lecore -lecore_evas&lt;br /&gt;
&lt;br /&gt;
And then &lt;br /&gt;
  ./test&lt;br /&gt;
&lt;br /&gt;
For the APF board&lt;br /&gt;
&lt;br /&gt;
  -mtune=arm920t -msoft-float&lt;br /&gt;
&lt;br /&gt;
Use the gcc version of buildroot, and -L to the /usr/lib in the root dir, and -I to /usr/include too.&lt;br /&gt;
Sometime you will nee to do that for the staging_dir too.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
And you will need to link to the framebuffer engine too&lt;br /&gt;
  -lecore_fb&lt;br /&gt;
&lt;br /&gt;
And eet too if this had not be done automaticaly.&lt;br /&gt;
  -leet&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=CodingWithEFL&amp;diff=3341</id>
		<title>CodingWithEFL</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=CodingWithEFL&amp;diff=3341"/>
		<updated>2008-01-27T15:38:30Z</updated>

		<summary type="html">&lt;p&gt;JulienN: How to use the EFL&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Installing required libs ==&lt;br /&gt;
- Using the menuconfig of buildroot (no usable for the moment)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Init required libs ==&lt;br /&gt;
We will use evas and ecore,&lt;br /&gt;
we need to init both.&lt;br /&gt;
So we call &amp;lt;lib&amp;gt;_init() for both.&lt;br /&gt;
&lt;br /&gt;
  evas_init();&lt;br /&gt;
  ecore_init();&lt;br /&gt;
&lt;br /&gt;
You can handle error during init like any other fuctions.&lt;br /&gt;
&lt;br /&gt;
== Set up where you will display things ==&lt;br /&gt;
&lt;br /&gt;
On the APF you need to use the Framebuffer to displays graphics on the lcd&lt;br /&gt;
So you need a new Framebuffer object from Evas_ecore&lt;br /&gt;
  ee = ecore_evas_fb_new(NULL, ANGLE, WIDTH, HEIGHT); &lt;br /&gt;
where ANGLE is the rotation in ° of the screen&lt;br /&gt;
&lt;br /&gt;
If you are on your host Pc, with Xorg, you will need a X11_software to display things.&lt;br /&gt;
  &lt;br /&gt;
  ee = ecore_evas_software_x11_new(NULL, 0, 0, 0, WIDTH, HEIGHT);&lt;br /&gt;
&lt;br /&gt;
Then you can show it on the screen &lt;br /&gt;
&lt;br /&gt;
  ecore_evas_show(ee);&lt;br /&gt;
&lt;br /&gt;
== Get the Evas Object ==&lt;br /&gt;
And now, we get an evas object, we will manipulate it after.&lt;br /&gt;
  evas = ecore_evas_get(ee);&lt;br /&gt;
&lt;br /&gt;
== Displaying things ==&lt;br /&gt;
&lt;br /&gt;
Let&#039;s add a rectangle to the evas object.&lt;br /&gt;
  base_rect_sec = evas_object_rectangle_add(evas);&lt;br /&gt;
&lt;br /&gt;
Then we will set the size of the rectangle&lt;br /&gt;
  evas_object_resize(base_rect_sec, WIDTH-200, HEIGHT);&lt;br /&gt;
&lt;br /&gt;
And now, we set the color of the rectangle. (R,G,B,Alpha)&lt;br /&gt;
  evas_object_color_set(base_rect_sec, 0, 0, 255, 25);&lt;br /&gt;
&lt;br /&gt;
We show the rectangle&lt;br /&gt;
  evas_object_show(base_rect_sec);&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Compiling ==&lt;br /&gt;
&lt;br /&gt;
To test on your host computer you will compile it with :&lt;br /&gt;
&lt;br /&gt;
  gcc -o test test.c -levas -lecore -lecore_evas&lt;br /&gt;
&lt;br /&gt;
And then &lt;br /&gt;
  ./test&lt;br /&gt;
&lt;br /&gt;
For the APF board&lt;br /&gt;
&lt;br /&gt;
  -mtune=arm920t -msoft-float&lt;br /&gt;
&lt;br /&gt;
Use the gcc version of buildroot, and -L to the /usr/lib in the root dir, and -I to /usr/include too.&lt;br /&gt;
Sometime you will nee to do that for the staging_dir too.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
And you will need to link to the framebuffer engine too&lt;br /&gt;
  -lecore_fb&lt;br /&gt;
&lt;br /&gt;
And eet too if this had not be done automaticaly.&lt;br /&gt;
  -leet&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=EFL&amp;diff=3340</id>
		<title>EFL</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=EFL&amp;diff=3340"/>
		<updated>2008-01-27T15:07:04Z</updated>

		<summary type="html">&lt;p&gt;JulienN: add todo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==What is it ?==&lt;br /&gt;
http://en.wikipedia.org/wiki/Enlightenment_Foundation_Libraries&lt;br /&gt;
&lt;br /&gt;
==Building the librairies==&lt;br /&gt;
TO BE DONE...&lt;br /&gt;
&lt;br /&gt;
== Simple test ==&lt;br /&gt;
&lt;br /&gt;
[[Image:080120_160232.jpg|thumb|Screen Shoot of the example]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A test using Evas and Ecore and Evas_Ecore&lt;br /&gt;
&lt;br /&gt;
The source of the above example :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;
#include &amp;lt;Ecore_Evas.h&amp;gt;&lt;br /&gt;
#include &amp;lt;Ecore.h&amp;gt;&lt;br /&gt;
#define WIDTH 320&lt;br /&gt;
#define HEIGHT 240&lt;br /&gt;
        Ecore_Evas  *   ee;&lt;br /&gt;
        Evas        *   evas;&lt;br /&gt;
        Evas_Object *   base_rect;&lt;br /&gt;
        Evas_Object *   base_rect_sec;&lt;br /&gt;
        Evas_Object *   img;&lt;br /&gt;
int main(){&lt;br /&gt;
        evas_init();&lt;br /&gt;
        ecore_init();&lt;br /&gt;
        //ee = ecore_evas_software_x11_new(NULL, 0, 0, 0, WIDTH, HEIGHT); // When you test on your host computer&lt;br /&gt;
        ee = ecore_evas_fb_new(NULL, 270, WIDTH, HEIGHT); //When you will run it on the board&lt;br /&gt;
        ecore_evas_show(ee);&lt;br /&gt;
        evas = ecore_evas_get(ee);&lt;br /&gt;
&lt;br /&gt;
        base_rect = evas_object_rectangle_add(evas);//This is the red rectangle&lt;br /&gt;
        evas_object_resize(base_rect, WIDTH, HEIGHT-100);&lt;br /&gt;
        evas_object_color_set(base_rect, 255, 0, 0, 25);&lt;br /&gt;
        evas_object_show(base_rect);&lt;br /&gt;
&lt;br /&gt;
        base_rect_sec = evas_object_rectangle_add(evas);//This is the blue rectangle&lt;br /&gt;
        evas_object_resize(base_rect_sec, WIDTH-200, HEIGHT);&lt;br /&gt;
        evas_object_color_set(base_rect_sec, 0, 0, 255, 25);&lt;br /&gt;
        evas_object_show(base_rect_sec);&lt;br /&gt;
&lt;br /&gt;
        img = evas_object_image_add(evas);//This is the png&lt;br /&gt;
        evas_object_image_file_set(img, &amp;quot;e_logo.png&amp;quot;, NULL);&lt;br /&gt;
        evas_object_resize(img, 241, 195);&lt;br /&gt;
        evas_object_image_fill_set(img, 0, 0, 241, 195);&lt;br /&gt;
        evas_object_layer_set(img, -999);&lt;br /&gt;
        evas_object_show(img);&lt;br /&gt;
&lt;br /&gt;
        ecore_main_loop_begin();&lt;br /&gt;
        return 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
As you can see, there is no &amp;quot;Violet&amp;quot; rectangle !&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== To Do ==&lt;br /&gt;
 - &amp;quot;stable&amp;quot; buildroot packages&lt;br /&gt;
 - Use it with the touchscreen (tslib)&lt;br /&gt;
 - Get events from keyboard&lt;br /&gt;
 - Edje&lt;br /&gt;
 - Emotion (hard!)&lt;br /&gt;
 - More examples&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=Mplayer&amp;diff=3339</id>
		<title>Mplayer</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=Mplayer&amp;diff=3339"/>
		<updated>2008-01-23T22:55:35Z</updated>

		<summary type="html">&lt;p&gt;JulienN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If you have a problem about a lib that can not be found during the link process&lt;br /&gt;
&lt;br /&gt;
It&#039;s often an interaction betwen the host and the target.&lt;br /&gt;
&lt;br /&gt;
So you can disable the lib, with the .mk, editing the ./configure arguments&lt;br /&gt;
&lt;br /&gt;
To Mega Therion from the band Therion on The lcd screen of the Armadeus Board. (played from nfs)&lt;br /&gt;
http://e-ghosting.com/~jujun/080119_202525.3gp&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=Development&amp;diff=3332</id>
		<title>Development</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=Development&amp;diff=3332"/>
		<updated>2008-01-20T19:05:44Z</updated>

		<summary type="html">&lt;p&gt;JulienN: add EFL&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On this page you will find useful informations to develop software for your Armadeus board&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==Project==&lt;br /&gt;
* [[Sources organisation | Armadeus project sources organisation]]&lt;br /&gt;
* [[SVN#Providing_modifications | How to submit patches with your modifications]]&lt;br /&gt;
&lt;br /&gt;
==Tools==&lt;br /&gt;
* [[Toolchain|C/C++ Cross Compiler installation]]&lt;br /&gt;
* [[SVN|SVN usage on Armadeus]] and the way to provide us your modifications&lt;br /&gt;
* [[GDB|Debugging with GDB and GDBserver]]&lt;br /&gt;
* [[Orchestra| FPGA project generation with Orchestra]]&lt;br /&gt;
* [[QEMU | Simulate an Armadeus system under QEMU]]&lt;br /&gt;
&lt;br /&gt;
==Linux==&lt;br /&gt;
{| border=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;5&amp;quot; summary=&amp;quot;Hardware Add-Ons by functionnalities&amp;quot;&lt;br /&gt;
|----------------&lt;br /&gt;
|&lt;br /&gt;
===Userland applications===&lt;br /&gt;
* [[HelloWorld | How to create your first Linux C application for your board]]&lt;br /&gt;
* [[HelloWorldCpp |How to create your first Linux C++ application for your board]]&lt;br /&gt;
||&lt;br /&gt;
===Linux kernel development===&lt;br /&gt;
* [[Linux Debug |Tips to debug under Linux]]&lt;br /&gt;
* [[Linux drivers development|Instructions to develop Linux drivers for Armadeus]]&lt;br /&gt;
* [[Linux on i.MXL|Ressources available on i.MXL Linux kernel development]]&lt;br /&gt;
* [[Oops, Linux crashes | Interpreting Linux kernel Oops (crashes)]]&lt;br /&gt;
|----------------&lt;br /&gt;
|&lt;br /&gt;
===Graphical User Interface / Games===&lt;br /&gt;
* [[Qt/Embedded]] (Qtopia core 4.2)&lt;br /&gt;
* [[EFL|Enlightenment Foundation Libraries]]&lt;br /&gt;
* [[SDL Development|SDL]]&lt;br /&gt;
* [[Allegro|Allegro]]&lt;br /&gt;
* [[Mesa| Mesa 3D graphics library (OpenGL compatible)]]&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
===Scripts===&lt;br /&gt;
* [[Perl development | Perl]]&lt;br /&gt;
* [[Python development | Python]]&lt;br /&gt;
* [[Lua development | Lua]]&lt;br /&gt;
|----------------&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Firmware==&lt;br /&gt;
* [[FPGA|FPGA firmware development]]&lt;br /&gt;
* [http://www.xess.com/ho03000.html Nice ideas/examples to look at]&lt;br /&gt;
&lt;br /&gt;
==Miscellaneous software packages==&lt;br /&gt;
* [[Buildroot Packages | Adding packages to Buildroot]]&lt;br /&gt;
* [[Fr:Paquets Buildroot | Ajouter des paquets à Buildroot]]&lt;br /&gt;
* [[Samba]]&lt;br /&gt;
&lt;br /&gt;
==Links==&lt;br /&gt;
* Things to know when porting x86 software to ARM: http://www.handhelds.org/minihowto/porting-software.html&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=EFL&amp;diff=3331</id>
		<title>EFL</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=EFL&amp;diff=3331"/>
		<updated>2008-01-20T15:46:34Z</updated>

		<summary type="html">&lt;p&gt;JulienN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
What is it ?&lt;br /&gt;
http://en.wikipedia.org/wiki/Enlightenment_Foundation_Libraries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Simple test ==&lt;br /&gt;
&lt;br /&gt;
[[Image:080120_160232.jpg]]&lt;br /&gt;
&lt;br /&gt;
A test using Evas and Ecore and Evas_Ecore&lt;br /&gt;
&lt;br /&gt;
The source of the above example :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;
#include &amp;lt;Ecore_Evas.h&amp;gt;&lt;br /&gt;
#include &amp;lt;Ecore.h&amp;gt;&lt;br /&gt;
#define WIDTH 320&lt;br /&gt;
#define HEIGHT 240&lt;br /&gt;
        Ecore_Evas  *   ee;&lt;br /&gt;
        Evas        *   evas;&lt;br /&gt;
        Evas_Object *   base_rect;&lt;br /&gt;
        Evas_Object *   base_rect_sec;&lt;br /&gt;
        Evas_Object *   img;&lt;br /&gt;
int main(){&lt;br /&gt;
        evas_init();&lt;br /&gt;
        ecore_init();&lt;br /&gt;
        //ee = ecore_evas_software_x11_new(NULL, 0, 0, 0, WIDTH, HEIGHT); // When you test on your host computer&lt;br /&gt;
        ee = ecore_evas_fb_new(NULL, 270, WIDTH, HEIGHT); //When you will run it on the board&lt;br /&gt;
        ecore_evas_show(ee);&lt;br /&gt;
        evas = ecore_evas_get(ee);&lt;br /&gt;
&lt;br /&gt;
        base_rect = evas_object_rectangle_add(evas);//This is the red rectangle&lt;br /&gt;
        evas_object_resize(base_rect, WIDTH, HEIGHT-100);&lt;br /&gt;
        evas_object_color_set(base_rect, 255, 0, 0, 25);&lt;br /&gt;
        evas_object_show(base_rect);&lt;br /&gt;
&lt;br /&gt;
        base_rect_sec = evas_object_rectangle_add(evas);//This is the blue rectangle&lt;br /&gt;
        evas_object_resize(base_rect_sec, WIDTH-200, HEIGHT);&lt;br /&gt;
        evas_object_color_set(base_rect_sec, 0, 0, 255, 25);&lt;br /&gt;
        evas_object_show(base_rect_sec);&lt;br /&gt;
&lt;br /&gt;
        img = evas_object_image_add(evas);//This is the png&lt;br /&gt;
        evas_object_image_file_set(img, &amp;quot;e_logo.png&amp;quot;, NULL);&lt;br /&gt;
        evas_object_resize(img, 241, 195);&lt;br /&gt;
        evas_object_image_fill_set(img, 0, 0, 241, 195);&lt;br /&gt;
        evas_object_layer_set(img, -999);&lt;br /&gt;
        evas_object_show(img);&lt;br /&gt;
&lt;br /&gt;
        ecore_main_loop_begin();&lt;br /&gt;
        return 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As you can see, there is no &amp;quot;Violet&amp;quot; rectangle !&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=EFL&amp;diff=3330</id>
		<title>EFL</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=EFL&amp;diff=3330"/>
		<updated>2008-01-20T15:46:13Z</updated>

		<summary type="html">&lt;p&gt;JulienN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
What is it ?&lt;br /&gt;
http://en.wikipedia.org/wiki/Enlightenment_Foundation_Libraries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== The first test ==&lt;br /&gt;
&lt;br /&gt;
[[Image:080120_160232.jpg]]&lt;br /&gt;
&lt;br /&gt;
A test using Evas and Ecore and Evas_Ecore&lt;br /&gt;
&lt;br /&gt;
The source of the above example :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;
#include &amp;lt;Ecore_Evas.h&amp;gt;&lt;br /&gt;
#include &amp;lt;Ecore.h&amp;gt;&lt;br /&gt;
#define WIDTH 320&lt;br /&gt;
#define HEIGHT 240&lt;br /&gt;
        Ecore_Evas  *   ee;&lt;br /&gt;
        Evas        *   evas;&lt;br /&gt;
        Evas_Object *   base_rect;&lt;br /&gt;
        Evas_Object *   base_rect_sec;&lt;br /&gt;
        Evas_Object *   img;&lt;br /&gt;
int main(){&lt;br /&gt;
        evas_init();&lt;br /&gt;
        ecore_init();&lt;br /&gt;
        //ee = ecore_evas_software_x11_new(NULL, 0, 0, 0, WIDTH, HEIGHT); // When you test on your host computer&lt;br /&gt;
        ee = ecore_evas_fb_new(NULL, 270, WIDTH, HEIGHT); //When you will run it on the board&lt;br /&gt;
        ecore_evas_show(ee);&lt;br /&gt;
        evas = ecore_evas_get(ee);&lt;br /&gt;
&lt;br /&gt;
        base_rect = evas_object_rectangle_add(evas);//This is the red rectangle&lt;br /&gt;
        evas_object_resize(base_rect, WIDTH, HEIGHT-100);&lt;br /&gt;
        evas_object_color_set(base_rect, 255, 0, 0, 25);&lt;br /&gt;
        evas_object_show(base_rect);&lt;br /&gt;
&lt;br /&gt;
        base_rect_sec = evas_object_rectangle_add(evas);//This is the blue rectangle&lt;br /&gt;
        evas_object_resize(base_rect_sec, WIDTH-200, HEIGHT);&lt;br /&gt;
        evas_object_color_set(base_rect_sec, 0, 0, 255, 25);&lt;br /&gt;
        evas_object_show(base_rect_sec);&lt;br /&gt;
&lt;br /&gt;
        img = evas_object_image_add(evas);//This is the png&lt;br /&gt;
        evas_object_image_file_set(img, &amp;quot;e_logo.png&amp;quot;, NULL);&lt;br /&gt;
        evas_object_resize(img, 241, 195);&lt;br /&gt;
        evas_object_image_fill_set(img, 0, 0, 241, 195);&lt;br /&gt;
        evas_object_layer_set(img, -999);&lt;br /&gt;
        evas_object_show(img);&lt;br /&gt;
&lt;br /&gt;
        ecore_main_loop_begin();&lt;br /&gt;
        return 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As you can see, there is no &amp;quot;Violet&amp;quot; rectangle !&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=EFL&amp;diff=3329</id>
		<title>EFL</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=EFL&amp;diff=3329"/>
		<updated>2008-01-20T15:44:36Z</updated>

		<summary type="html">&lt;p&gt;JulienN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Enlightenment_Foundation_Libraries ==&lt;br /&gt;
What is it ?&lt;br /&gt;
http://en.wikipedia.org/wiki/Enlightenment_Foundation_Libraries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:080120_160232.jpg]]&lt;br /&gt;
&lt;br /&gt;
A test using Evas and Ecore and Evas_Ecore&lt;br /&gt;
&lt;br /&gt;
The source of the above example :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;
#include &amp;lt;Ecore_Evas.h&amp;gt;&lt;br /&gt;
#include &amp;lt;Ecore.h&amp;gt;&lt;br /&gt;
#define WIDTH 320&lt;br /&gt;
#define HEIGHT 240&lt;br /&gt;
        Ecore_Evas  *   ee;&lt;br /&gt;
        Evas        *   evas;&lt;br /&gt;
        Evas_Object *   base_rect;&lt;br /&gt;
        Evas_Object *   base_rect_sec;&lt;br /&gt;
        Evas_Object *   img;&lt;br /&gt;
int main(){&lt;br /&gt;
        evas_init();&lt;br /&gt;
        ecore_init();&lt;br /&gt;
        //ee = ecore_evas_software_x11_new(NULL, 0, 0, 0, WIDTH, HEIGHT); // When you test on your host computer&lt;br /&gt;
        ee = ecore_evas_fb_new(NULL, 270, WIDTH, HEIGHT); //When you will run it on the board&lt;br /&gt;
        ecore_evas_show(ee);&lt;br /&gt;
        evas = ecore_evas_get(ee);&lt;br /&gt;
&lt;br /&gt;
        base_rect = evas_object_rectangle_add(evas);//This is the red rectangle&lt;br /&gt;
        evas_object_resize(base_rect, WIDTH, HEIGHT-100);&lt;br /&gt;
        evas_object_color_set(base_rect, 255, 0, 0, 25);&lt;br /&gt;
        evas_object_show(base_rect);&lt;br /&gt;
&lt;br /&gt;
        base_rect_sec = evas_object_rectangle_add(evas);//This is the blue rectangle&lt;br /&gt;
        evas_object_resize(base_rect_sec, WIDTH-200, HEIGHT);&lt;br /&gt;
        evas_object_color_set(base_rect_sec, 0, 0, 255, 25);&lt;br /&gt;
        evas_object_show(base_rect_sec);&lt;br /&gt;
&lt;br /&gt;
        img = evas_object_image_add(evas);//This is the png&lt;br /&gt;
        evas_object_image_file_set(img, &amp;quot;e_logo.png&amp;quot;, NULL);&lt;br /&gt;
        evas_object_resize(img, 241, 195);&lt;br /&gt;
        evas_object_image_fill_set(img, 0, 0, 241, 195);&lt;br /&gt;
        evas_object_layer_set(img, -999);&lt;br /&gt;
        evas_object_show(img);&lt;br /&gt;
&lt;br /&gt;
        ecore_main_loop_begin();&lt;br /&gt;
        return 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As you can see, there is no &amp;quot;Violet&amp;quot; rectangle !&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=EFL&amp;diff=3328</id>
		<title>EFL</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=EFL&amp;diff=3328"/>
		<updated>2008-01-20T15:43:26Z</updated>

		<summary type="html">&lt;p&gt;JulienN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Enlightenment_Foundation_Libraries ==&lt;br /&gt;
What is it ?&lt;br /&gt;
http://en.wikipedia.org/wiki/Enlightenment_Foundation_Libraries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:080120_160232.jpg]]&lt;br /&gt;
A test using Evas and Ecore and Evas_Ecore&lt;br /&gt;
&lt;br /&gt;
The source of the above example :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;
#include &amp;lt;Ecore_Evas.h&amp;gt;&lt;br /&gt;
#include &amp;lt;Ecore.h&amp;gt;&lt;br /&gt;
#define WIDTH 320&lt;br /&gt;
#define HEIGHT 240&lt;br /&gt;
        Ecore_Evas  *   ee;&lt;br /&gt;
        Evas        *   evas;&lt;br /&gt;
        Evas_Object *   base_rect;&lt;br /&gt;
        Evas_Object *   base_rect_sec;&lt;br /&gt;
        Evas_Object *   img;&lt;br /&gt;
int main(){&lt;br /&gt;
        evas_init();&lt;br /&gt;
        ecore_init();&lt;br /&gt;
        //ee = ecore_evas_software_x11_new(NULL, 0, 0, 0, WIDTH, HEIGHT); // When you test on your host computer&lt;br /&gt;
        ee = ecore_evas_fb_new(NULL, 270, WIDTH, HEIGHT); //When you will run it on the board&lt;br /&gt;
        ecore_evas_show(ee);&lt;br /&gt;
        evas = ecore_evas_get(ee);&lt;br /&gt;
&lt;br /&gt;
        base_rect = evas_object_rectangle_add(evas);//This is the red rectangle&lt;br /&gt;
        evas_object_resize(base_rect, WIDTH, HEIGHT-100);&lt;br /&gt;
        evas_object_color_set(base_rect, 255, 0, 0, 25);&lt;br /&gt;
        evas_object_show(base_rect);&lt;br /&gt;
&lt;br /&gt;
        base_rect_sec = evas_object_rectangle_add(evas);//This is the blue rectangle&lt;br /&gt;
        evas_object_resize(base_rect_sec, WIDTH-200, HEIGHT);&lt;br /&gt;
        evas_object_color_set(base_rect_sec, 0, 0, 255, 25);&lt;br /&gt;
        evas_object_show(base_rect_sec);&lt;br /&gt;
&lt;br /&gt;
        img = evas_object_image_add(evas);//This is the png&lt;br /&gt;
        evas_object_image_file_set(img, &amp;quot;e_logo.png&amp;quot;, NULL);&lt;br /&gt;
        evas_object_resize(img, 241, 195);&lt;br /&gt;
        evas_object_image_fill_set(img, 0, 0, 241, 195);&lt;br /&gt;
        evas_object_layer_set(img, -999);&lt;br /&gt;
        evas_object_show(img);&lt;br /&gt;
&lt;br /&gt;
        ecore_main_loop_begin();&lt;br /&gt;
        return 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
As you can see, there is no &amp;quot;Violet&amp;quot; rectangle !&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:080120_160248.jpg]]&lt;br /&gt;
The board with a front pannel&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=File:080120_160248.jpg&amp;diff=3327</id>
		<title>File:080120 160248.jpg</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=File:080120_160248.jpg&amp;diff=3327"/>
		<updated>2008-01-20T15:30:35Z</updated>

		<summary type="html">&lt;p&gt;JulienN: Efl on Armadeus&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Efl on Armadeus&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=File:080120_160232.jpg&amp;diff=3326</id>
		<title>File:080120 160232.jpg</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=File:080120_160232.jpg&amp;diff=3326"/>
		<updated>2008-01-20T15:29:47Z</updated>

		<summary type="html">&lt;p&gt;JulienN: EFL on armadeus&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;EFL on armadeus&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=Mplayer&amp;diff=3324</id>
		<title>Mplayer</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=Mplayer&amp;diff=3324"/>
		<updated>2008-01-19T22:03:35Z</updated>

		<summary type="html">&lt;p&gt;JulienN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If you have a probleme about a lib that can not be found during the link&lt;br /&gt;
&lt;br /&gt;
It&#039;s often an interaction betwen the host and the target.&lt;br /&gt;
&lt;br /&gt;
So you can disable the lib, with the .mk, editing the ./configure arguments&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
http://e-ghosting.com/~jujun/080119_202525.3gp&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=Mplayer&amp;diff=3323</id>
		<title>Mplayer</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=Mplayer&amp;diff=3323"/>
		<updated>2008-01-18T22:59:20Z</updated>

		<summary type="html">&lt;p&gt;JulienN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If you have a probleme about a lib that can not be found during the link&lt;br /&gt;
&lt;br /&gt;
It&#039;s often an interaction betwen the host and the target.&lt;br /&gt;
&lt;br /&gt;
So you can disable the lib, with the .mk, editing the ./configure arguments&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=Trash_Fr:EFL&amp;diff=2842</id>
		<title>Trash Fr:EFL</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=Trash_Fr:EFL&amp;diff=2842"/>
		<updated>2007-09-26T09:12:32Z</updated>

		<summary type="html">&lt;p&gt;JulienN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Enlightenment Foundation Libraries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Liens ==&lt;br /&gt;
http://fr.enlightenment.org/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
http://www.enlightenment.org/p.php?p=docs&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=MTF-T035&amp;diff=2841</id>
		<title>MTF-T035</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=MTF-T035&amp;diff=2841"/>
		<updated>2007-09-25T11:15:15Z</updated>

		<summary type="html">&lt;p&gt;JulienN: /* LCD orders */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== TFT Specifications ==&lt;br /&gt;
The MTF-T035 320x240 3.5&amp;quot; color TFT display from Microtips is the default TFT display supported.&lt;br /&gt;
Two pin compatible versions of this LCD are available: one with touchscreen (analog outputs) and one without.&lt;br /&gt;
The MTF-T035 is provided with a 4 white led backlight.&lt;br /&gt;
&lt;br /&gt;
The specification can be found here:&lt;br /&gt;
[http://www.microtipsusa.com/product_pdfs/Color%20TFT/MTF-T035DHSLP-A%20(24BIT,%20parallel,%20external%20BL%20control,%20anti-glare,%20TP).pdf]&lt;br /&gt;
&lt;br /&gt;
Some photos are although available here:&lt;br /&gt;
[[Board Pictures]]&lt;br /&gt;
&lt;br /&gt;
== Adapter Board ==&lt;br /&gt;
[[Image:MTF_035_Adapt.jpg|center]]&lt;br /&gt;
&lt;br /&gt;
This kind of LCD requires an adapter board. &lt;br /&gt;
The small board generates the required bias voltages, integrates a white led driver and provides a standard 2.54 connector interface. &lt;br /&gt;
It has to be noted that only a 3.3V supply is required.&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;strong&amp;gt;specification&amp;lt;/strong&amp;gt; can be found here:&lt;br /&gt;
[http://www.armadeus.com/downloads/lcd_adapt_MTFT035/datasheet.pdf]&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;strong&amp;gt;schematics&amp;lt;/strong&amp;gt; can be found here:&lt;br /&gt;
[http://www.armadeus.com/downloads/lcd_adapt_MTFT035/schematics.pdf]&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;strong&amp;gt;assembly drawings&amp;lt;/strong&amp;gt; can be found here:&lt;br /&gt;
[http://www.armadeus.com/downloads/lcd_adapt_MTFT035/assembly.pdf]&lt;br /&gt;
&lt;br /&gt;
Note that the pin 1 of the connectors are although written in the top layer copper.&lt;br /&gt;
&lt;br /&gt;
==Connecting the LCD to the adapter board==&lt;br /&gt;
{|border=0 summary=&amp;quot;Connecting the LCD&amp;quot;&lt;br /&gt;
|----------------&lt;br /&gt;
| [[Image:LCD_Adapt_align.jpg|thumb|left|Open connector, plug &amp;amp; align LCD Flex pin 1 and PCB pin 1]] || [[Image:LCD_Adapt_closed.jpg|thumb|Close connector]]&lt;br /&gt;
|----------------&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Connections with the DevLight ==&lt;br /&gt;
Just connect signals with same names together. &amp;lt;strong&amp;gt;Use the shortest wires you can !&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The DevLight schematics and specification may be usefull:&lt;br /&gt;
[http://www.armadeus.com/products_APF9328DevLight.html]&lt;br /&gt;
&lt;br /&gt;
Once done verify the connections by means of your multimeter. &lt;br /&gt;
&amp;lt;strong&amp;gt;Do not forget to check the 3.3V supply polarity on the LCD_adapt board before to power up the system !&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
If your LCD shows too much White then set the potar on the LCD_Adapt to the minimum value.&lt;br /&gt;
[[Image:LCD_Adapt_potar.jpg|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
== LCD orders ==&lt;br /&gt;
Please add your name and the LCD type you want to the list below. &lt;br /&gt;
The LCD_Adapter boards have been received and are working so far so good.&lt;br /&gt;
&#039;&#039;&#039;15 TFT pcs arrived !!!&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*Rachid Koucha: 1x LCD_Touchscreen &#039;&#039;&#039;-&amp;gt;Julien Nicolas&#039;&#039;&#039;&lt;br /&gt;
*ThomasB: 1x LCD_touchscreen &#039;&#039;&#039;-&amp;gt;confirmé&#039;&#039;&#039;&lt;br /&gt;
*Sonzerro: 1x LCD_Touchscreen &#039;&#039;&#039;-&amp;gt;livré&#039;&#039;&#039;&lt;br /&gt;
*Olivier Coutanceau: 1x LCD_Touchscreen &#039;&#039;&#039;-&amp;gt;livré&#039;&#039;&#039;&lt;br /&gt;
*Arnaud Coffinet : 1x LCD_Touchscreen &#039;&#039;&#039;-&amp;gt;livré&#039;&#039;&#039;&lt;br /&gt;
*Henri Geist : 1x LCD_Touchscreen &#039;&#039;&#039;-&amp;gt;livré&#039;&#039;&#039;&lt;br /&gt;
*JulienB: 1x LCD_Touchscreen &#039;&#039;&#039;-&amp;gt;livré&#039;&#039;&#039;&lt;br /&gt;
*JeanMichelN: 1x LCD_Touchscreen &#039;&#039;&#039;-&amp;gt;livré&#039;&#039;&#039;&lt;br /&gt;
*FabienG: 1x LCD_Touchscreen &#039;&#039;&#039;-&amp;gt;livré&#039;&#039;&#039;&lt;br /&gt;
*Nicolas Aguirre: 1x LCD_Touchscreen &#039;&#039;&#039;-&amp;gt;Michel Talon&#039;&#039;&#039;&lt;br /&gt;
*Cédric Pineau: 1x LCD_Touchscreen &#039;&#039;&#039;-&amp;gt;Livré&lt;br /&gt;
*KarlB: 1x LCD_touchscreen &#039;&#039;&#039;-&amp;gt;livré&#039;&#039;&#039;&lt;br /&gt;
*ChristopheF: 1x LCD_touchscreen &#039;&#039;&#039;-&amp;gt;libre&#039;&#039;&#039;&lt;br /&gt;
*Reserved : 1x LCD_touchscreen&lt;br /&gt;
*Reference board : 1x LCD_touchscreen&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Second list for next order&lt;br /&gt;
*MichelT : 1x LCD_touchscreen &#039;&#039;&#039;-&amp;gt;livré&#039;&#039;&#039;&lt;br /&gt;
*Stephane Falck : 1x LCD_touchscreen &lt;br /&gt;
*Julien Nicolas : 1x LCD_touchscreen &#039;&#039;&#039;-&amp;gt;livré&#039;&#039;&#039;&lt;br /&gt;
*Mickael Toumi : 1x LCD_touchscreen (attente adhésion)&lt;br /&gt;
*Denis Brion : 1x LCD_touchscreen&lt;br /&gt;
&lt;br /&gt;
==Linux drivers==&lt;br /&gt;
* [[FrameBuffer | How to activate FrameBuffer driver]]&lt;br /&gt;
* [[BackLight | How to use Backlight control interface]]&lt;br /&gt;
&lt;br /&gt;
==Screenshots==&lt;br /&gt;
[[Image:MTF-T035_jim.jpg|thumb|left|SNES emulator running on the LCD]]&lt;br /&gt;
[[Image:MTF-T035_street.jpg|thumb|center|SNES emulator running on the LCD]]&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=MTF-T035&amp;diff=2807</id>
		<title>MTF-T035</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=MTF-T035&amp;diff=2807"/>
		<updated>2007-09-13T16:16:14Z</updated>

		<summary type="html">&lt;p&gt;JulienN: /* faute d&amp;#039;orthographe  */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== TFT Specifications ==&lt;br /&gt;
The MTF-T035 320x240 3.5&amp;quot; color TFT display from Microtips is the default TFT display supported.&lt;br /&gt;
Two pin compatible versions of this LCD are available: one with touchscreen (analog outputs) and one without.&lt;br /&gt;
The MTF-T035 is provided with a 4 white led backlight.&lt;br /&gt;
&lt;br /&gt;
The specification can be found here:&lt;br /&gt;
[http://www.microtipsusa.com/product_pdfs/Color%20TFT/MTF-T035DHSLP-A%20(24BIT,%20parallel,%20external%20BL%20control,%20anti-glare,%20TP).pdf]&lt;br /&gt;
&lt;br /&gt;
Some photos are although available here:&lt;br /&gt;
[[Board Pictures]]&lt;br /&gt;
&lt;br /&gt;
== Adapter Board ==&lt;br /&gt;
[[Image:MTF_035_Adapt.jpg|center]]&lt;br /&gt;
&lt;br /&gt;
This kind of LCD requires an adapter board. &lt;br /&gt;
The small board generates the required bias voltages, integrates a white led driver and provides a standard 2.54 connector interface. &lt;br /&gt;
It has to be noted that only a 3.3V supply is required.&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;strong&amp;gt;specification&amp;lt;/strong&amp;gt; can be found here:&lt;br /&gt;
[http://www.armadeus.com/downloads/lcd_adapt_MTFT035/datasheet.pdf]&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;strong&amp;gt;schematics&amp;lt;/strong&amp;gt; can be found here:&lt;br /&gt;
[http://www.armadeus.com/downloads/lcd_adapt_MTFT035/schematics.pdf]&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;strong&amp;gt;assembly drawings&amp;lt;/strong&amp;gt; can be found here:&lt;br /&gt;
[http://www.armadeus.com/downloads/lcd_adapt_MTFT035/assembly.pdf]&lt;br /&gt;
&lt;br /&gt;
Note that the pin 1 of the connectors are although written in the top layer copper.&lt;br /&gt;
&lt;br /&gt;
==Connecting the LCD to the adapter board==&lt;br /&gt;
{|border=0 summary=&amp;quot;Connecting the LCD&amp;quot;&lt;br /&gt;
|----------------&lt;br /&gt;
| [[Image:LCD_Adapt_align.jpg|thumb|left|Open connector, plug &amp;amp; align LCD Flex pin 1 and PCB pin 1]] || [[Image:LCD_Adapt_closed.jpg|thumb|Close connector]]&lt;br /&gt;
|----------------&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Connections with the DevLight ==&lt;br /&gt;
Just connect signals with same names together. &amp;lt;strong&amp;gt;Use the shortest wires you can !&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The DevLight schematics and specification may be usefull:&lt;br /&gt;
[http://www.armadeus.com/products_APF9328DevLight.html]&lt;br /&gt;
&lt;br /&gt;
Once done verify the connections by means of your multimeter. &lt;br /&gt;
&amp;lt;strong&amp;gt;Do not forget to check the 3.3V supply polarity on the LCD_adapt board before to power up the system !&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
If your LCD shows too much White then set the potar on the LCD_Adapt to the minimum value.&lt;br /&gt;
[[Image:LCD_Adapt_potar.jpg|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
== LCD orders ==&lt;br /&gt;
Please add your name and the LCD type you want to the list below. &lt;br /&gt;
The LCD_Adapter boards have been received and are working so far so good.&lt;br /&gt;
&#039;&#039;&#039;15 TFT pcs arrived !!!&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*Rachid Koucha: 1x LCD_Touchscreen &#039;&#039;&#039;-&amp;gt;Julien Nicolas&#039;&#039;&#039;&lt;br /&gt;
*ThomasB: 1x LCD_touchscreen &#039;&#039;&#039;-&amp;gt;confirmé&#039;&#039;&#039;&lt;br /&gt;
*Sonzerro: 1x LCD_Touchscreen &#039;&#039;&#039;-&amp;gt;livré&#039;&#039;&#039;&lt;br /&gt;
*Olivier Coutanceau: 1x LCD_Touchscreen &#039;&#039;&#039;-&amp;gt;livré&#039;&#039;&#039;&lt;br /&gt;
*Arnaud Coffinet : 1x LCD_Touchscreen &#039;&#039;&#039;-&amp;gt;livré&#039;&#039;&#039;&lt;br /&gt;
*Henri Geist : 1x LCD_Touchscreen &#039;&#039;&#039;-&amp;gt;livré&#039;&#039;&#039;&lt;br /&gt;
*JulienB: 1x LCD_Touchscreen &#039;&#039;&#039;-&amp;gt;livré&#039;&#039;&#039;&lt;br /&gt;
*JeanMichelN: 1x LCD_Touchscreen &#039;&#039;&#039;-&amp;gt;livré&#039;&#039;&#039;&lt;br /&gt;
*FabienG: 1x LCD_Touchscreen &#039;&#039;&#039;-&amp;gt;livré&#039;&#039;&#039;&lt;br /&gt;
*Nicolas Aguirre: 1x LCD_Touchscreen &#039;&#039;&#039;-&amp;gt;Michel Talon&#039;&#039;&#039;&lt;br /&gt;
*Cédric Pineau: 1x LCD_Touchscreen &#039;&#039;&#039;-&amp;gt;Livré&lt;br /&gt;
*KarlB: 1x LCD_touchscreen &#039;&#039;&#039;-&amp;gt;livré&#039;&#039;&#039;&lt;br /&gt;
*ChristopheF: 1x LCD_touchscreen &#039;&#039;&#039;-&amp;gt;libre&#039;&#039;&#039;&lt;br /&gt;
*Reserved : 1x LCD_touchscreen&lt;br /&gt;
*Reference board : 1x LCD_touchscreen&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Second list for next order&lt;br /&gt;
*MichelT : 1x LCD_touchscreen &#039;&#039;&#039;-&amp;gt;livré&#039;&#039;&#039;&lt;br /&gt;
*Stephane Falck : 1x LCD_touchscreen&lt;br /&gt;
*Julien Nicolas : 1x LCD_touchscreen &#039;&#039;&#039;-&amp;gt;paiement et bon de commande envoyé, attente réception&#039;&#039;&#039;&lt;br /&gt;
*Mickael Toumi : 1x LCD_touchscreen (attente adhésion)&lt;br /&gt;
*Denis Brion : 1x LCD_touchscreen&lt;br /&gt;
&lt;br /&gt;
==Linux drivers==&lt;br /&gt;
* [[FrameBuffer | How to activate FrameBuffer driver]]&lt;br /&gt;
* [[BackLight | How to use Backlight control interface]]&lt;br /&gt;
&lt;br /&gt;
==Screenshots==&lt;br /&gt;
[[Image:MTF-T035_jim.jpg|thumb|left|SNES emulator running on the LCD]]&lt;br /&gt;
[[Image:MTF-T035_street.jpg|thumb|center|SNES emulator running on the LCD]]&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=MTF-T035&amp;diff=2806</id>
		<title>MTF-T035</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=MTF-T035&amp;diff=2806"/>
		<updated>2007-09-13T16:11:28Z</updated>

		<summary type="html">&lt;p&gt;JulienN: /* ajout de ma commande d&amp;#039;un des ecran libre */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== TFT Specifications ==&lt;br /&gt;
The MTF-T035 320x240 3.5&amp;quot; color TFT display from Microtips is the default TFT display supported.&lt;br /&gt;
Two pin compatible versions of this LCD are available: one with touchscreen (analog outputs) and one without.&lt;br /&gt;
The MTF-T035 is provided with a 4 white led backlight.&lt;br /&gt;
&lt;br /&gt;
The specification can be found here:&lt;br /&gt;
[http://www.microtipsusa.com/product_pdfs/Color%20TFT/MTF-T035DHSLP-A%20(24BIT,%20parallel,%20external%20BL%20control,%20anti-glare,%20TP).pdf]&lt;br /&gt;
&lt;br /&gt;
Some photos are although available here:&lt;br /&gt;
[[Board Pictures]]&lt;br /&gt;
&lt;br /&gt;
== Adapter Board ==&lt;br /&gt;
[[Image:MTF_035_Adapt.jpg|center]]&lt;br /&gt;
&lt;br /&gt;
This kind of LCD requires an adapter board. &lt;br /&gt;
The small board generates the required bias voltages, integrates a white led driver and provides a standard 2.54 connector interface. &lt;br /&gt;
It has to be noted that only a 3.3V supply is required.&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;strong&amp;gt;specification&amp;lt;/strong&amp;gt; can be found here:&lt;br /&gt;
[http://www.armadeus.com/downloads/lcd_adapt_MTFT035/datasheet.pdf]&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;strong&amp;gt;schematics&amp;lt;/strong&amp;gt; can be found here:&lt;br /&gt;
[http://www.armadeus.com/downloads/lcd_adapt_MTFT035/schematics.pdf]&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;strong&amp;gt;assembly drawings&amp;lt;/strong&amp;gt; can be found here:&lt;br /&gt;
[http://www.armadeus.com/downloads/lcd_adapt_MTFT035/assembly.pdf]&lt;br /&gt;
&lt;br /&gt;
Note that the pin 1 of the connectors are although written in the top layer copper.&lt;br /&gt;
&lt;br /&gt;
==Connecting the LCD to the adapter board==&lt;br /&gt;
{|border=0 summary=&amp;quot;Connecting the LCD&amp;quot;&lt;br /&gt;
|----------------&lt;br /&gt;
| [[Image:LCD_Adapt_align.jpg|thumb|left|Open connector, plug &amp;amp; align LCD Flex pin 1 and PCB pin 1]] || [[Image:LCD_Adapt_closed.jpg|thumb|Close connector]]&lt;br /&gt;
|----------------&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Connections with the DevLight ==&lt;br /&gt;
Just connect signals with same names together. &amp;lt;strong&amp;gt;Use the shortest wires you can !&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The DevLight schematics and specification may be usefull:&lt;br /&gt;
[http://www.armadeus.com/products_APF9328DevLight.html]&lt;br /&gt;
&lt;br /&gt;
Once done verify the connections by means of your multimeter. &lt;br /&gt;
&amp;lt;strong&amp;gt;Do not forget to check the 3.3V supply polarity on the LCD_adapt board before to power up the system !&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
If your LCD shows too much White then set the potar on the LCD_Adapt to the minimum value.&lt;br /&gt;
[[Image:LCD_Adapt_potar.jpg|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
== LCD orders ==&lt;br /&gt;
Please add your name and the LCD type you want to the list below. &lt;br /&gt;
The LCD_Adapter boards have been received and are working so far so good.&lt;br /&gt;
&#039;&#039;&#039;15 TFT pcs arrived !!!&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*Rachid Koucha: 1x LCD_Touchscreen &#039;&#039;&#039;-&amp;gt;Julien Nicolas&#039;&#039;&#039;&lt;br /&gt;
*ThomasB: 1x LCD_touchscreen &#039;&#039;&#039;-&amp;gt;confirmé&#039;&#039;&#039;&lt;br /&gt;
*Sonzerro: 1x LCD_Touchscreen &#039;&#039;&#039;-&amp;gt;livré&#039;&#039;&#039;&lt;br /&gt;
*Olivier Coutanceau: 1x LCD_Touchscreen &#039;&#039;&#039;-&amp;gt;livré&#039;&#039;&#039;&lt;br /&gt;
*Arnaud Coffinet : 1x LCD_Touchscreen &#039;&#039;&#039;-&amp;gt;livré&#039;&#039;&#039;&lt;br /&gt;
*Henri Geist : 1x LCD_Touchscreen &#039;&#039;&#039;-&amp;gt;livré&#039;&#039;&#039;&lt;br /&gt;
*JulienB: 1x LCD_Touchscreen &#039;&#039;&#039;-&amp;gt;livré&#039;&#039;&#039;&lt;br /&gt;
*JeanMichelN: 1x LCD_Touchscreen &#039;&#039;&#039;-&amp;gt;livré&#039;&#039;&#039;&lt;br /&gt;
*FabienG: 1x LCD_Touchscreen &#039;&#039;&#039;-&amp;gt;livré&#039;&#039;&#039;&lt;br /&gt;
*Nicolas Aguirre: 1x LCD_Touchscreen &#039;&#039;&#039;-&amp;gt;Michel Talon&#039;&#039;&#039;&lt;br /&gt;
*Cédric Pineau: 1x LCD_Touchscreen &#039;&#039;&#039;-&amp;gt;Livré&lt;br /&gt;
*KarlB: 1x LCD_touchscreen &#039;&#039;&#039;-&amp;gt;livré&#039;&#039;&#039;&lt;br /&gt;
*ChristopheF: 1x LCD_touchscreen &#039;&#039;&#039;-&amp;gt;libre&#039;&#039;&#039;&lt;br /&gt;
*Reserved : 1x LCD_touchscreen&lt;br /&gt;
*Reference board : 1x LCD_touchscreen&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Second list for next order&lt;br /&gt;
*MichelT : 1x LCD_touchscreen &#039;&#039;&#039;-&amp;gt;livré&#039;&#039;&#039;&lt;br /&gt;
*Stephane Falck : 1x LCD_touchscreen&lt;br /&gt;
*Julien Nicolas : 1x LCD_touchscreen &#039;&#039;&#039;-&amp;gt;payment et bon de commande envoyé, attente réception&#039;&#039;&#039;&lt;br /&gt;
*Mickael Toumi : 1x LCD_touchscreen (attente adhésion)&lt;br /&gt;
*Denis Brion : 1x LCD_touchscreen&lt;br /&gt;
&lt;br /&gt;
==Linux drivers==&lt;br /&gt;
* [[FrameBuffer | How to activate FrameBuffer driver]]&lt;br /&gt;
* [[BackLight | How to use Backlight control interface]]&lt;br /&gt;
&lt;br /&gt;
==Screenshots==&lt;br /&gt;
[[Image:MTF-T035_jim.jpg|thumb|left|SNES emulator running on the LCD]]&lt;br /&gt;
[[Image:MTF-T035_street.jpg|thumb|center|SNES emulator running on the LCD]]&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=RTC&amp;diff=2801</id>
		<title>RTC</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=RTC&amp;diff=2801"/>
		<updated>2007-09-09T15:38:37Z</updated>

		<summary type="html">&lt;p&gt;JulienN: /* Usage */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On this page, you will find usefull informations to use an external DS1374 Real Time Clock.&lt;br /&gt;
This feature apply to the armadeus software release 2.0 and above.&lt;br /&gt;
&lt;br /&gt;
== Hardware ==&lt;br /&gt;
&lt;br /&gt;
No permanent RTC is present on the APF9328 but it is not so complex to add a DS1374 (with quartz integrated) on the I2C bus. Do not forget to provide the two power-supply (VCC and Vbackup).&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
First be sure to use an armadeus 2.0 or higher.&lt;br /&gt;
The RTC/DS1374 support is already configured in U-BOOT and linux kernel 2.6.18.1 and higher.&lt;br /&gt;
Therefore you have nothing to configure to use the RTC.&lt;br /&gt;
Nevertheless these are the parameters to check to have the RTC supported:&lt;br /&gt;
 $ make linux-menuconfig&lt;br /&gt;
* check the i2c module drivers  &amp;quot;I2C support&amp;quot;, &amp;quot;I2C DEVICE&amp;quot;, &amp;quot;I2C HARDWARE/bus on imx&amp;quot;  &lt;br /&gt;
* check the RTC module driver &amp;quot;RTC class&amp;quot;, &amp;quot;set time from RTC&amp;quot; &amp;quot;RTC interface dev&amp;quot; &lt;br /&gt;
* if you integrates these module statically in the kernel then the system date will be set at power-up.&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
and reload your kernel and/or rootfs&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
&lt;br /&gt;
Installation is automatic with the default configuration but if you choose to compile rtc and i2c drivers as module then you have load them:&lt;br /&gt;
 $ modprobe i2c-imx&lt;br /&gt;
 $ modprobe rtc-ds1374&lt;br /&gt;
 $ modprobe rtc-dev&lt;br /&gt;
&lt;br /&gt;
you will get something like this :&lt;br /&gt;
&lt;br /&gt;
 $ dmesg | grep rtc&lt;br /&gt;
 &amp;lt;6&amp;gt;ds1374 0-0068: rtc intf: sysfs&lt;br /&gt;
 &amp;lt;6&amp;gt;ds1374 0-0068: rtc intf: proc&lt;br /&gt;
 &amp;lt;6&amp;gt;ds1374 0-0068: rtc intf: dev (254:0)&lt;br /&gt;
 &amp;lt;6&amp;gt;ds1374 0-0068: rtc core: registered ds1374 as rtc0&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
* From U-Boot there is a command &#039;&#039;&#039;date&#039;&#039;&#039; to read, reset, update the RTC.&lt;br /&gt;
 $ &#039;&#039;&#039;help date&#039;&#039;&#039; for more information&lt;br /&gt;
 $ &#039;&#039;&#039;date reset&#039;&#039;&#039; to be done after battery exchange to remove message &#039;&#039;&#039;### Warning: RTC oscillator has stopped&#039;&#039;&#039;&lt;br /&gt;
 $ &#039;&#039;&#039;date 013122302007&#039;&#039;&#039; to set the date January 31th 2007 22h30.&lt;br /&gt;
&lt;br /&gt;
* From linux use the commande &#039;&#039;&#039;hwclock&#039;&#039;&#039; to read, write, synchronize the RTC and &#039;&#039;&#039;date&#039;&#039;&#039; to read and update system date and time.&lt;br /&gt;
 $ &#039;&#039;&#039;hwclock --help&#039;&#039;&#039;&lt;br /&gt;
 $ &#039;&#039;&#039;hwclock -r&#039;&#039;&#039; to read hardware clock and print result&lt;br /&gt;
 $ &#039;&#039;&#039;hwclock -s&#039;&#039;&#039; to set the system time from the hardware RTC clock&lt;br /&gt;
 $ &#039;&#039;&#039;hwclock -w&#039;&#039;&#039; to set the hardware RTC clock to the current system time&lt;br /&gt;
&lt;br /&gt;
 $ &#039;&#039;&#039;date --help&#039;&#039;&#039; for more information&lt;br /&gt;
 $ &#039;&#039;&#039;date -R&#039;&#039;&#039; to read hardware clock and print result&lt;br /&gt;
 $ &#039;&#039;&#039;date 013122302007&#039;&#039;&#039; to sets the system date january 31th 2007 22h30.&lt;br /&gt;
&lt;br /&gt;
*Then, when booting you will see something like this:&lt;br /&gt;
 ds1374 0-0068: setting the system clock to 2007-09-09 17:35:51 (1189359351)&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* maxim-ic ds1374 datasheet http://datasheets.maxim-ic.com/en/ds/DS1374-DS1374U.pdf&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=RTC&amp;diff=2800</id>
		<title>RTC</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=RTC&amp;diff=2800"/>
		<updated>2007-09-09T15:31:22Z</updated>

		<summary type="html">&lt;p&gt;JulienN: /* Installation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On this page, you will find usefull informations to use an external DS1374 Real Time Clock.&lt;br /&gt;
This feature apply to the armadeus software release 2.0 and above.&lt;br /&gt;
&lt;br /&gt;
== Hardware ==&lt;br /&gt;
&lt;br /&gt;
No permanent RTC is present on the APF9328 but it is not so complex to add a DS1374 (with quartz integrated) on the I2C bus. Do not forget to provide the two power-supply (VCC and Vbackup).&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
First be sure to use an armadeus 2.0 or higher.&lt;br /&gt;
The RTC/DS1374 support is already configured in U-BOOT and linux kernel 2.6.18.1 and higher.&lt;br /&gt;
Therefore you have nothing to configure to use the RTC.&lt;br /&gt;
Nevertheless these are the parameters to check to have the RTC supported:&lt;br /&gt;
 $ make linux-menuconfig&lt;br /&gt;
* check the i2c module drivers  &amp;quot;I2C support&amp;quot;, &amp;quot;I2C DEVICE&amp;quot;, &amp;quot;I2C HARDWARE/bus on imx&amp;quot;  &lt;br /&gt;
* check the RTC module driver &amp;quot;RTC class&amp;quot;, &amp;quot;set time from RTC&amp;quot; &amp;quot;RTC interface dev&amp;quot; &lt;br /&gt;
* if you integrates these module statically in the kernel then the system date will be set at power-up.&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
and reload your kernel and/or rootfs&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
&lt;br /&gt;
Installation is automatic with the default configuration but if you choose to compile rtc and i2c drivers as module then you have load them:&lt;br /&gt;
 $ modprobe i2c-imx&lt;br /&gt;
 $ modprobe rtc-ds1374&lt;br /&gt;
 $ modprobe rtc-dev&lt;br /&gt;
&lt;br /&gt;
you will get something like this :&lt;br /&gt;
&lt;br /&gt;
 $ dmesg | grep rtc&lt;br /&gt;
 &amp;lt;6&amp;gt;ds1374 0-0068: rtc intf: sysfs&lt;br /&gt;
 &amp;lt;6&amp;gt;ds1374 0-0068: rtc intf: proc&lt;br /&gt;
 &amp;lt;6&amp;gt;ds1374 0-0068: rtc intf: dev (254:0)&lt;br /&gt;
 &amp;lt;6&amp;gt;ds1374 0-0068: rtc core: registered ds1374 as rtc0&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
* From U-Boot there is a command &#039;&#039;&#039;date&#039;&#039;&#039; to read, reset, update the RTC.&lt;br /&gt;
 $ &#039;&#039;&#039;help date&#039;&#039;&#039; for more information&lt;br /&gt;
 $ &#039;&#039;&#039;date reset&#039;&#039;&#039; to be done after battery exchange to remove message &#039;&#039;&#039;### Warning: RTC oscillator has stopped&#039;&#039;&#039;&lt;br /&gt;
 $ &#039;&#039;&#039;date 013122302007&#039;&#039;&#039; to set the date January 31th 2007 22h30.&lt;br /&gt;
&lt;br /&gt;
* From linux use the commande &#039;&#039;&#039;hwclock&#039;&#039;&#039; to read, write, synchronize the RTC and &#039;&#039;&#039;date&#039;&#039;&#039; to read and update system date and time.&lt;br /&gt;
 $ &#039;&#039;&#039;hwclock --help&#039;&#039;&#039;&lt;br /&gt;
 $ &#039;&#039;&#039;hwclock -r&#039;&#039;&#039; to read hardware clock and print result&lt;br /&gt;
 $ &#039;&#039;&#039;hwclock -s&#039;&#039;&#039; to set the system time from the hardware RTC clock&lt;br /&gt;
 $ &#039;&#039;&#039;hwclock -w&#039;&#039;&#039; to set the hardware RTC clock to the current system time&lt;br /&gt;
&lt;br /&gt;
 $ &#039;&#039;&#039;date --help&#039;&#039;&#039; for more information&lt;br /&gt;
 $ &#039;&#039;&#039;date -R&#039;&#039;&#039; to read hardware clock and print result&lt;br /&gt;
 $ &#039;&#039;&#039;date 013122302007&#039;&#039;&#039; to sets the system date january 31th 2007 22h30.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* maxim-ic ds1374 datasheet http://datasheets.maxim-ic.com/en/ds/DS1374-DS1374U.pdf&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=RTC&amp;diff=2799</id>
		<title>RTC</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=RTC&amp;diff=2799"/>
		<updated>2007-09-09T15:29:50Z</updated>

		<summary type="html">&lt;p&gt;JulienN: /* Hardware */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On this page, you will find usefull informations to use an external DS1374 Real Time Clock.&lt;br /&gt;
This feature apply to the armadeus software release 2.0 and above.&lt;br /&gt;
&lt;br /&gt;
== Hardware ==&lt;br /&gt;
&lt;br /&gt;
No permanent RTC is present on the APF9328 but it is not so complex to add a DS1374 (with quartz integrated) on the I2C bus. Do not forget to provide the two power-supply (VCC and Vbackup).&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
First be sure to use an armadeus 2.0 or higher.&lt;br /&gt;
The RTC/DS1374 support is already configured in U-BOOT and linux kernel 2.6.18.1 and higher.&lt;br /&gt;
Therefore you have nothing to configure to use the RTC.&lt;br /&gt;
Nevertheless these are the parameters to check to have the RTC supported:&lt;br /&gt;
 $ make linux-menuconfig&lt;br /&gt;
* check the i2c module drivers  &amp;quot;I2C support&amp;quot;, &amp;quot;I2C DEVICE&amp;quot;, &amp;quot;I2C HARDWARE/bus on imx&amp;quot;  &lt;br /&gt;
* check the RTC module driver &amp;quot;RTC class&amp;quot;, &amp;quot;set time from RTC&amp;quot; &amp;quot;RTC interface dev&amp;quot; &lt;br /&gt;
* if you integrates these module statically in the kernel then the system date will be set at power-up.&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
and reload your kernel and/or rootfs&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
&lt;br /&gt;
Installation is automatic with the default configuration but if you choose to compile rtc and i2c drivers as module then you have load them:&lt;br /&gt;
 $ modprobe i2c-imx&lt;br /&gt;
 $ modprobe rtc-ds1374&lt;br /&gt;
 $ modprobe rtc-dev&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
* From U-Boot there is a command &#039;&#039;&#039;date&#039;&#039;&#039; to read, reset, update the RTC.&lt;br /&gt;
 $ &#039;&#039;&#039;help date&#039;&#039;&#039; for more information&lt;br /&gt;
 $ &#039;&#039;&#039;date reset&#039;&#039;&#039; to be done after battery exchange to remove message &#039;&#039;&#039;### Warning: RTC oscillator has stopped&#039;&#039;&#039;&lt;br /&gt;
 $ &#039;&#039;&#039;date 013122302007&#039;&#039;&#039; to set the date January 31th 2007 22h30.&lt;br /&gt;
&lt;br /&gt;
* From linux use the commande &#039;&#039;&#039;hwclock&#039;&#039;&#039; to read, write, synchronize the RTC and &#039;&#039;&#039;date&#039;&#039;&#039; to read and update system date and time.&lt;br /&gt;
 $ &#039;&#039;&#039;hwclock --help&#039;&#039;&#039;&lt;br /&gt;
 $ &#039;&#039;&#039;hwclock -r&#039;&#039;&#039; to read hardware clock and print result&lt;br /&gt;
 $ &#039;&#039;&#039;hwclock -s&#039;&#039;&#039; to set the system time from the hardware RTC clock&lt;br /&gt;
 $ &#039;&#039;&#039;hwclock -w&#039;&#039;&#039; to set the hardware RTC clock to the current system time&lt;br /&gt;
&lt;br /&gt;
 $ &#039;&#039;&#039;date --help&#039;&#039;&#039; for more information&lt;br /&gt;
 $ &#039;&#039;&#039;date -R&#039;&#039;&#039; to read hardware clock and print result&lt;br /&gt;
 $ &#039;&#039;&#039;date 013122302007&#039;&#039;&#039; to sets the system date january 31th 2007 22h30.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* maxim-ic ds1374 datasheet http://datasheets.maxim-ic.com/en/ds/DS1374-DS1374U.pdf&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=RTC&amp;diff=2798</id>
		<title>RTC</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=RTC&amp;diff=2798"/>
		<updated>2007-09-09T15:19:57Z</updated>

		<summary type="html">&lt;p&gt;JulienN: /* Hardware  : ajout d&amp;#039;un exemple de ce que ca doit donner dans dmesg quand la puce est reconnue*/&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On this page, you will find usefull informations to use an external DS1374 Real Time Clock.&lt;br /&gt;
This feature apply to the armadeus software release 2.0 and above.&lt;br /&gt;
&lt;br /&gt;
== Hardware ==&lt;br /&gt;
&lt;br /&gt;
No permanent RTC is present on the APF9328 but it is not so complex to add a DS1374 (with quartz integrated) on the I2C bus. Do not forget to provide the power-supply.&lt;br /&gt;
&lt;br /&gt;
if this is correct, you will get something like this :&lt;br /&gt;
  $ dmesg | grep rtc&lt;br /&gt;
  &amp;lt;6&amp;gt;ds1374 0-0068: rtc intf: sysfs&lt;br /&gt;
  &amp;lt;6&amp;gt;ds1374 0-0068: rtc intf: proc&lt;br /&gt;
  &amp;lt;6&amp;gt;ds1374 0-0068: rtc intf: dev (254:0)&lt;br /&gt;
  &amp;lt;6&amp;gt;ds1374 0-0068: rtc core: registered ds1374 as rtc0&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
First be sure to use an armadeus 2.0 or higher.&lt;br /&gt;
The RTC/DS1374 support is already configured in U-BOOT and linux kernel 2.6.18.1 and higher.&lt;br /&gt;
Therefore you have nothing to configure to use the RTC.&lt;br /&gt;
Nevertheless these are the parameters to check to have the RTC supported:&lt;br /&gt;
 $ make linux-menuconfig&lt;br /&gt;
* check the i2c module drivers  &amp;quot;I2C support&amp;quot;, &amp;quot;I2C DEVICE&amp;quot;, &amp;quot;I2C HARDWARE/bus on imx&amp;quot;  &lt;br /&gt;
* check the RTC module driver &amp;quot;RTC class&amp;quot;, &amp;quot;set time from RTC&amp;quot; &amp;quot;RTC interface dev&amp;quot; &lt;br /&gt;
* if you integrates these module statically in the kernel then the system date will be set at power-up.&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
and reload your kernel and/or rootfs&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
&lt;br /&gt;
Installation is automatic with the default configuration but if you choose to compile rtc and i2c drivers as module then you have load them:&lt;br /&gt;
 $ modprobe i2c-imx&lt;br /&gt;
 $ modprobe rtc-ds1374&lt;br /&gt;
 $ modprobe rtc-dev&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
* From U-Boot there is a command &#039;&#039;&#039;date&#039;&#039;&#039; to read, reset, update the RTC.&lt;br /&gt;
 $ &#039;&#039;&#039;help date&#039;&#039;&#039; for more information&lt;br /&gt;
 $ &#039;&#039;&#039;date reset&#039;&#039;&#039; to be done after battery exchange to remove message &#039;&#039;&#039;### Warning: RTC oscillator has stopped&#039;&#039;&#039;&lt;br /&gt;
 $ &#039;&#039;&#039;date 013122302007&#039;&#039;&#039; to set the date January 31th 2007 22h30.&lt;br /&gt;
&lt;br /&gt;
* From linux use the commande &#039;&#039;&#039;hwclock&#039;&#039;&#039; to read, write, synchronize the RTC and &#039;&#039;&#039;date&#039;&#039;&#039; to read and update system date and time.&lt;br /&gt;
 $ &#039;&#039;&#039;hwclock --help&#039;&#039;&#039;&lt;br /&gt;
 $ &#039;&#039;&#039;hwclock -r&#039;&#039;&#039; to read hardware clock and print result&lt;br /&gt;
 $ &#039;&#039;&#039;hwclock -s&#039;&#039;&#039; to set the system time from the hardware RTC clock&lt;br /&gt;
 $ &#039;&#039;&#039;hwclock -w&#039;&#039;&#039; to set the hardware RTC clock to the current system time&lt;br /&gt;
&lt;br /&gt;
 $ &#039;&#039;&#039;date --help&#039;&#039;&#039; for more information&lt;br /&gt;
 $ &#039;&#039;&#039;date -R&#039;&#039;&#039; to read hardware clock and print result&lt;br /&gt;
 $ &#039;&#039;&#039;date 013122302007&#039;&#039;&#039; to sets the system date january 31th 2007 22h30.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* maxim-ic ds1374 datasheet http://datasheets.maxim-ic.com/en/ds/DS1374-DS1374U.pdf&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=User:Jujun&amp;diff=2729</id>
		<title>User:Jujun</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=User:Jujun&amp;diff=2729"/>
		<updated>2007-08-24T21:32:09Z</updated>

		<summary type="html">&lt;p&gt;JulienN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[User:JulienN]]&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=MemberList&amp;diff=2706</id>
		<title>MemberList</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=MemberList&amp;diff=2706"/>
		<updated>2007-08-05T18:01:17Z</updated>

		<summary type="html">&lt;p&gt;JulienN: /* Here is the list of the members and their skills */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Here is the list of the members and their skills==&lt;br /&gt;
&lt;br /&gt;
*0: Novice&lt;br /&gt;
*1: Notions. At least one successfull experiment&lt;br /&gt;
*2: Confirmed&lt;br /&gt;
&lt;br /&gt;
{|border=1 summary=&amp;quot;Member list&amp;quot;&lt;br /&gt;
|----------------&lt;br /&gt;
| &#039;&#039;&#039;Name&#039;&#039;&#039; || &#039;&#039;&#039;Linux Apps&#039;&#039;&#039;|| &#039;&#039;&#039;Linux Drivers&#039;&#039;&#039;|| &#039;&#039;&#039;FPGA&#039;&#039;&#039; || &#039;&#039;&#039;Board Design&#039;&#039;&#039; || &#039;&#039;&#039;Projet/Domain&#039;&#039;&#039;&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:Salocin68|Nicolas Colombain]] || 1 || 1 || 1 || 2 || domotics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:JulienB|Julien Boibessot]] || 2 || 2 || 0 || 1 || multimedia&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:JeanBaptisteM|Jean-Baptiste Mayer]] || 2 || 1 || 1 || 1 || robotics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:NicolasA|Nicolas Aguirre]] || 2 || 0 || 1 || 1 || multimedia&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:BenoitC|Benoît Canet]] || 2 || 0 || 0 || 0 || multimedia&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:SonZerro|Sonzerro]] || 0 || 0 || 1 || 2 || domotics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:HenriG|Henri Geist]] || 1 || 1 || 0 || 1 || robotics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:BorredonB|Bernard Borredon]] || 2 || 1 || 0 || 1 || domotics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:ThomasB|Thomas Bores]] || 2 || 0 || 0 || 1 || Entertainment&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:FabriceM|Fabrice Mousset]] || 1 || 1 || 2 || 1 || Domotics &amp;amp; multimedia&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:AmineH|Amine EL HEDADI]] || 2 || 2 || 0 || 0 || domotics &amp;amp; robotics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:PhilippeM|Philippe Monteil]] || 2 || 0 || 0 || 0 || multimedia&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:CedricZ|Cédric Zmyj]] || 0 || 0 || 0 || 0 || domotics &amp;amp; robotics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:JeanMichelN|Jean Michel Naimo]] || 2 || 1 || 1 || 1 || Domotics &amp;amp; entertainment&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:OlivierC|Olivier Coutanceau]] || 1 || 0 || 0 || 0 || multimedia&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:ArnaudC|Arnaud COFFINET]] || 0 || 0 || 1 || 2 || multimedia &amp;amp; domotics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:SylvainP|Sylvain PARRINO]] || 2 || 1 || 0 || 0 || robotics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:AurelienH|Aurélien HIRON]] || 2 || 0 || 0 || 1 || robotics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User:GuillaumeT|Guillaume TRANNOY]] || 0 || 0 || 0 || 2 || domotics &amp;amp; robotics&lt;br /&gt;
|----------------&lt;br /&gt;
|[[User: JulienN|Julien NICOLAS]] || 2 || 1 || 0 || 1 || multimedia &amp;amp; network&lt;br /&gt;
|----------------&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
	<entry>
		<id>http://wikilegacy.armadeus.com/index.php?title=User:JulienN&amp;diff=2704</id>
		<title>User:JulienN</title>
		<link rel="alternate" type="text/html" href="http://wikilegacy.armadeus.com/index.php?title=User:JulienN&amp;diff=2704"/>
		<updated>2007-08-05T09:15:17Z</updated>

		<summary type="html">&lt;p&gt;JulienN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Je m&#039;appel julien NICOLAS, j&#039;habite dans les Hautes Alpes, et j&#039;adore linux, l&#039;embarqué et e17 (ca va bien ensemble d&#039;ailleurs)&lt;br /&gt;
&lt;br /&gt;
Il y a plusieurs projets qui me tiennent a coeur:&lt;br /&gt;
* Utiliser la carte dans un téléphone portable libre (qui pourait utiliser openmoko ou un autre systeme basé sur des libs de e17)&lt;br /&gt;
* Faire un systeme de réseau optique aerien a haut debit basé sur de la mise en forme d&#039;un signal ethernet avec un fpga et du pilotage d&#039;un laser.&lt;br /&gt;
* Utiliser la carte APF dans un pocket pc libre (logiciellement et materiellement, tout comme le téléphone portable)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
je suis souvent sur irc avec le psedo jujun.&lt;/div&gt;</summary>
		<author><name>JulienN</name></author>
	</entry>
</feed>