Difference between revisions of "Setup"

From ArmadeusWiki
Jump to: navigation, search
(Basics)
(105 intermediate revisions by 10 users not shown)
Line 1: Line 1:
On this page, you will find all the usefull informations you need to configure your Armadeus board for optimum usage.
+
On this page, you will find all the useful information to configure your Armadeus board for optimum usage.
  
 
==First StartUp==
 
==First StartUp==
Just got your Armadeus board and want to start play with it ? Then follow this quick list to setup your envt accordingly: <br>
+
Just got your Armadeus board and want to start playing with it? <br>
*1.Connect your APF to your development board or to a Devlight <br>
+
Follow these quick steps to setup your environment accordingly:
*2.Connect the Host (your PC) to your development system with a crossover RS232 cable <br>
+
# Connect your APF module to your development/docking board (custom one or ARMadeus Systems official one) (your system will be hereafter referred to as "the Target")
*3.Power up the system (+5Vdc for a Devlight ) <br>
+
# '''On APF9328Dev/APF27Dev/PPS:''' connect your PC (= "the Host") to your board with a [http://en.wikipedia.org/wiki/Null_modem null-modem RS-232 cable] (only Rx/Tx/Gnd signals are needed). If you don't have a RS-232 port on your Host, you can use a "USB <-> serial" converter (you'll still need the null-modem cable).
*4.Establish the communication between your Host and your APF: See [[Communicate]] <br>
+
# '''On APF51Dev/APF28Dev/APF6Dev:''' connect your PC (= "the Host") to your board with a USB to miniUSB cable. On the APF use the "Debug" connector (between HDMI and USB Host ones)
*5.Verify your APF by starting Linux: In uBoot, type "boot". Several informations will be displayed on your console like on the screenshot [[Linux_start_screenshot]] <br>
+
# [[Communicate | Install (minimum) tools to communicate with your APF from your Host.]]
*6.If Linux has successfully started, you can proceed with the toolchain installation. See Basics below <br>
+
# Connect the power supply to your development board. (See the [[Datasheet]] of your *Dev board for more informations)
 +
# Verify your system is booting and starting Linux (In U-Boot console, type "boot" if bootdelay is too long). Several information will be displayed on your terminal like on this [[Linux start screenshot | screenshot]] (Default Linux login is "root" with an empty password). '''If your system is NOT starting''', walk through [[U-Boot communication quick check|this small checklist]].
 +
# If Linux has successfully started, your system is operational. If you want to add applications to your board or develop custom ones, then you can proceed with the Toolchain installation. [[Setup#Build_and_update_your_system | See Build and update your system]].
  
==Basics==
+
===Tutorial===
* [[Toolchain]]: How to install the development environment for the Armadeus boards
+
If you want a more "userfriendly" procedure, you can try this (under construction) tutorial: [[Beginner's_tutorial]]
* [[Communicate]]: How to communicate with the Armadeus boards from the Host
+
* [[Target Software Installation]]: How to install, uBoot, Linux and your RootFS on the Armadeus boards
+
  
==Packages and Modules==
+
==Build and update your system==
* [[FrameBuffer]]: how to configure and use the framebuffer for new LCDs
+
# [[Embedded Linux system basis]]
* [[GPIO Driver]]: how to configure the GPIO driver
+
# [[Toolchain| Install the development environment (=Toolchain) for your board and generate your Linux/rootfs images]]
* [[Network Configuration]]: how to configure Host and Target network
+
# [[Target Software Installation| Install/flash your U-Boot, Linux and rootfs freshly generated images on your board]]
* [[Serial Transfer]]: transfer files between your Host and your Armadeus board with the RS232 link
+
# [[Armadeus_3#How-to_develop_with_Armadeus_.2F_customize_your_SDK| Customize your Armadeus SDK]]
* [[USB Gadget]] -- Instructions to configure your Armadeus board to use it as a USB device (aka Gadget in Linux language)
+
* [[MultiMediaCard]] -- Instructions to use MMC/SD cards with your Armadeus board
+
* [[DAC|Digital to Analog Convertion]]: how to configure and use the DAC on your board
+
  
==Advanced==
+
 
* [[BootLoader]]: (U-Boot useful tips)
+
{{Note| When a board is shipped, default factory binaries are flashed on it. It can be a legacy version of the armadeus BSP. So it's important to load the latest release binaries ("Get latest release" menu on side bar of this wiki), or build them yourself, and update all software with the following commands (on U-Boot assuming the image files have already been copied in /tftpboot):
* [[BootStrap]]: communicate and test your board when no software is installed on it
+
 
 +
<pre class="apf">
 +
BIOS> run update_uboot
 +
BIOS> reset
 +
BIOS> run flash_reset_env
 +
...
 +
BIOS> run update_kernel
 +
BIOS> run update_rootfs
 +
</pre>
 +
}}

Revision as of 10:06, 17 December 2014

On this page, you will find all the useful information to configure your Armadeus board for optimum usage.

First StartUp

Just got your Armadeus board and want to start playing with it?
Follow these quick steps to setup your environment accordingly:

  1. Connect your APF module to your development/docking board (custom one or ARMadeus Systems official one) (your system will be hereafter referred to as "the Target")
  2. On APF9328Dev/APF27Dev/PPS: connect your PC (= "the Host") to your board with a null-modem RS-232 cable (only Rx/Tx/Gnd signals are needed). If you don't have a RS-232 port on your Host, you can use a "USB <-> serial" converter (you'll still need the null-modem cable).
  3. On APF51Dev/APF28Dev/APF6Dev: connect your PC (= "the Host") to your board with a USB to miniUSB cable. On the APF use the "Debug" connector (between HDMI and USB Host ones)
  4. Install (minimum) tools to communicate with your APF from your Host.
  5. Connect the power supply to your development board. (See the Datasheet of your *Dev board for more informations)
  6. Verify your system is booting and starting Linux (In U-Boot console, type "boot" if bootdelay is too long). Several information will be displayed on your terminal like on this screenshot (Default Linux login is "root" with an empty password). If your system is NOT starting, walk through this small checklist.
  7. If Linux has successfully started, your system is operational. If you want to add applications to your board or develop custom ones, then you can proceed with the Toolchain installation. See Build and update your system.

Tutorial

If you want a more "userfriendly" procedure, you can try this (under construction) tutorial: Beginner's_tutorial

Build and update your system

  1. Embedded Linux system basis
  2. Install the development environment (=Toolchain) for your board and generate your Linux/rootfs images
  3. Install/flash your U-Boot, Linux and rootfs freshly generated images on your board
  4. Customize your Armadeus SDK


Note Note: When a board is shipped, default factory binaries are flashed on it. It can be a legacy version of the armadeus BSP. So it's important to load the latest release binaries ("Get latest release" menu on side bar of this wiki), or build them yourself, and update all software with the following commands (on U-Boot assuming the image files have already been copied in /tftpboot):
BIOS> run update_uboot
BIOS> reset
BIOS> run flash_reset_env
...
BIOS> run update_kernel
BIOS> run update_rootfs