Difference between revisions of "User:Pau pajuelo"

From IGEP - ISEE Wiki

Jump to: navigation, search
(How to develop with Qt under IGEP)
Line 66: Line 66:
 
Now you can compile, run and debug your program using the MANUAL IGEP SDK v3.0 VM<br>
 
Now you can compile, run and debug your program using the MANUAL IGEP SDK v3.0 VM<br>
  
= How to develop with Qt under IGEP  =
+
3= How to develop with Qt under IGEP  =
  
 
== Overview  ==
 
== Overview  ==
Line 78: Line 78:
 
*IGEP SDK VM 3: follow the IGEP&nbsp;SDK&nbsp;SOFTWARE&nbsp;USER&nbsp;MANUAL (chapter 2.3 "Setting up and running the VM")<br>  
 
*IGEP SDK VM 3: follow the IGEP&nbsp;SDK&nbsp;SOFTWARE&nbsp;USER&nbsp;MANUAL (chapter 2.3 "Setting up and running the VM")<br>  
 
*IGEP Qt Demo  
 
*IGEP Qt Demo  
*[http://www.isee.biz/products/processor-boards/igepv2-board IGEPv2], [http://www.isee.biz/products/expansion-boards/product-igep-berlin IGEP BERLIN] or [http://www.isee.biz/products/expansion-boards/product-igep-paris IGEP PARIS]
+
*[http://www.isee.biz/products/processor-boards/igepv2-board IGEPv2], [http://www.isee.biz/products/expansion-boards/product-igep-berlin IGEP BERLIN] or [http://www.isee.biz/products/expansion-boards/product-igep-paris IGEP PARIS]  
 
*MicroSD Card (at least 2Gbytes)<br>
 
*MicroSD Card (at least 2Gbytes)<br>
  
 
'''''"Link software "'''''
 
'''''"Link software "'''''

Revision as of 15:08, 25 July 2012

Write your first C Program using Eclipse IDE

Overview

Eclipse IDE is a software development environtment, this software package is very popular because you can extend its functionalities using pluggins. C applications can be compiled in Eclipse using Autoconf tools or Makefile. Autoconf tools can be useful if you want to develop a huge application with a lot of software dependencies, but this method can be tedious if you want to develop a simple application.

At IGEP v3.0 VM, Eclipse includes Linux tools and Yocto plugin to develop C applications for IGEP firmware as quickly and easily as possible.

Pre-requisites

To follow this How-to you need:

  • VMware or VirtualBox virtualization software
  • IGEP SDK v3.0 Virtual Machine RC2 with Eclipse IDE
  • IGEP BOARD with Ethernet communication (for example IGEPv2)
  • MANUAL IGEP SDK v3.0 VM

Getting started

First at all, you should read MANUAL IGEP SDK v3.0 VM and follow the next instructions:

  • Install your Virtual Machine
  • Install your Virtual Machine Guest additions
  • Prepare your Rootfs in your Micro SD Card
  • Connect to your IGEP Board using Ethernet Commnication
  • Build programs using Eclipse IDE

Hello world compiled with Eclipse

If you follow "Getting started" chapter you have compiled some source example programs for Eclipse, these programs use Autotools to generate binary code for IGEP. Now is time to compile your Helloworld example program without using autotools.

Create your new project:

Open Eclipse->File->New->C Project

At C Project Window:

Yocto Project ADT Project ->Empty Project

Insert your project name and finish. At Project explorer panel you will see your new project

Create your source files:

Go to New C/C++ Source File button and write at "Source file:" field your source file name, for example main.c. Finish the assistant and copy the next code at this file:

#include <stdio.h>
 
int main(void)
{
  printf("Hello world\n");
  return 0;
} 

Follow the instructions above and create a Source File named Makefile and copy the next code:

all: main.c
	$(CC) -g -O0 -o main main.c

clean:
	rm -f main main.o

CC is an environment variable that links with arm-poky-linux-gnueabi-gcc binary (IGEP SDK GCC). Environment variables are a set of dynamic named values that can affect the way running processes will behave on a computer. It is very useful because you can generate a Makefile that can be compiled with multiple toolchains.

IGEP SDK Environtment variables are located at /opt/poky/1.2/environment-setup-armv7a-vfp-neon-poky-linux-gnueabi. You can add this variables using "source" command or see your current environtment variables using "env" command.

If you need to develop more complex programs, you should read this Makefile tutorial.

Compile your program:

Now you can compile, run and debug your program using the MANUAL IGEP SDK v3.0 VM

3= How to develop with Qt under IGEP =

Overview

This guide can be helpful to learnt to develop Qt applications under IGEP Boards. Qt is a cross-platform application framework that is widely used for developing application software with a graphical user interface, and also used for developing non-GUI programs such as command-line tools and consoles for servers. You can get more information here.

Requirements

There are some requisites to follow this guide:

  • IGEP SDK VM 3: follow the IGEP SDK SOFTWARE USER MANUAL (chapter 2.3 "Setting up and running the VM")
  • IGEP Qt Demo
  • IGEPv2, IGEP BERLIN or IGEP PARIS
  • MicroSD Card (at least 2Gbytes)

"Link software "