FreeRTOS CortexM3 HowTo

From ConceptCar
Revision as of 07:06, 13 July 2010 by Kenan (Talk | contribs)

Jump to: navigation, search

We need several things to run FreeRTOS on a CortexM3 Board in Eclipse:

1. Configuring Eclipse

1) Download Eclipse CDT from the Website below and Install it:

  http://eclipse.org/downloads/packages/

2) Now you will need to install Zylin GDB embedded debugging plugin. Therefore open Eclipse, go to Help->Software Updates or Help->Install new Software (depends on which Version of Eclipse CDT you are using). Download and install Zylin Embedded CDT from:

  http://opensource.zylin.com/zylincdt 


2. Get FreeRTOS and a Toolchain

1) Download the newest Version of FreeRTOS from

  http://sourceforge.net/projects/freertos/files/FreeRTOS/

2) The next step is to get a Toolchain. In our case, we decided to work with the Sourcery G++ Lite because it supports us with a special library for the thumb2 which the Cortex M3 is using. For downloading CodeSourcery G++ Lite use the following Link:

  http://www.codesourcery.com/sgpp/lite/arm/portal/subscription?@template=lite

3) After all that, be sure using the newest Version of OpenOCD, which can be downloaded from

  http://developer.berlios.de/project/showfiles.php?group_id=4148&release_id=17280

n) Use Libusb instead of libftdi


3. Create an Eclipse Project for using FreeRTOS

There are different ways to create a FreeRTOS specific Project under Eclipse. In this case, the Project contains three folders:

- FreeRTOSSource
- Boot
- Scripts

The FreeRTOSSource folder includes all FreeRTOS specific Header and Source files. The Boot folder contains all files which are necessary for the Board. The Script folder holds the cfg for openOCD and the linker scripts.

The following steps describes how to create a Project which is running FreeRTOS.

1) Create a new empty C Makefile Project

2) Create the three folders mentioned above. The FreeRTOSSource folder and the Boot folder are declared as source folders.

3) Fill the FreeRTOSSource folder with the FreeRTOS specific files you will need. Do not forget to copy also the Port.c, Portmacro.c and the heap_n.c files into FreeRTOSSource. The files Port.c and Portmacro.c can be found at ..\FreeRTOS Install Path\Source\portable\GCC\ARM_CM3 if an CortexM3 is used with the gcc. If the gcc is not the compiler you are using, the portable folder contains all by FreeRTOS supported compiler and Microcontroller. The MemMang folder which can also be found at ..\FreeRTOS Install Path\Source\portable\ holds heap_1.c, heap_2.c and heap_3.c. In our case heap_2.c is used.

4) Go to Project Settings->C/C++ Build

4.1)under "Settings" select "GNU Elf Parser"

4.2)under "ToolChain Editor" select "No Toolchain"

5) Go to Project Settings->C/C++ General->Paths and Symbols and add the following folder to GNU C

  \Code Sourcery Root\arm-none-eabi\include

6) After preparing the folder structure, the next step will be to configure OpenOCD and the GDB debugging.

For configuring OpenOCD click Run->External Tools->External Tools Configurations. Create a new configuration for OpenOCD by specifying the location of the openocd.exe and setting the working directory.