FreeRTOS for Renesas RX64M
Supporting Renesas and GCC compilers with e2studio
[RTOS Ports]


Renesas RX64M RSK


Introduction

This page documents the RTOS demo applications that targets the Renesas RX64M family of microcontrollers, which contain the RXv2 core.

Two e2studio projects are provided, one that is pre-configured to use the Renesas compiler, and one that is pre-configured to use the GCC compiler.

Both RTOS projects target the RX64M RSK (Renesas Start Kit) evaluation board.



IMPORTANT! Notes on using the RX64M e2studio demo projects

Please read all the following points before using this RTOS port.

  1. Source Code Organisation
  2. The Demo Application
  3. RTOS Configuration and Usage Details
See also the FAQ My application does not run, what could be wrong?



Source Code Organisation

The FreeRTOS download contains the source code for all the FreeRTOS ports, so contains many more files than are needed by the RX64M e2studio projects. See the Source Code Organization section for a description of the downloaded files and information on creating a new project.

The e2studio projects have the usual Eclipse project name .project. The project that uses the Renesas compiler is located in the FreeRTOS/Demo/RX600_RX64M_RSK_Renesas_e2studio directory. The project that uses the GCC compiler is located in the FreeRTOS/Demo/RX600_RX64M_RSK_GCC_e2studio directory. These are the directories that must be selected when importing the projects into the Eclipse workspace.



Building and Running the Renesas RX64M Demo Application

The RTOS demo projects can be configured to build either a simple blinky project, or a comprehensive test and demo application. The constant mainCREATE_SIMPLE_BLINKY_DEMO_ONLY, which is defined at the top of main.c, is used to switch between the two. The comprehensive demo is created when mainCREATE_SIMPLE_BLINKY_DEMO_ONLY is set to 0. The simple demo is created when mainCREATE_SIMPLE_BLINKY_DEMO_ONLY is set to 1.

The demos use the LEDs built onto the RSK development board, so no hardware set up is required.


Building with e2studio

Note: Some of the source files built by the e2studio projects are included in the project using a project relative path, so the project will fail to build if the FreeRTOS directory structure has been altered from that found in the .zip file.
  1. Start the e2studio Eclipse IDE and either create a new or select an existing workspace when prompted.

  2. Select "Import" from the IDE's "File" menu. The dialogue box shown below will appear. Select "General->Existing Project into Workspace", as shown below.

    Importing the RX64M project into the e2studio Eclipse IDE
    The dialogue box that appears when "Import" is first clicked


  3. In the next dialogue box, select FreeRTOS/Demo/RX600_RX64M_RSK_Renesas_e2studio as the root directory if you are using the Renesas compiler, or FreeRTOS/Demo/RX600_RX64M_RSK_GCC_e2studio if you are using the GCC compiler. Make sure the RTOSDemo project is checked in the "Projects" area, and that the Copy Projects Into Workspace box is not checked, before clicking the Finish button (see the image below for the correct check box states).

    Selecting the RTOS source code when importing into Eclipse CDT
    Make sure RTOSDemo is checked, and "Copy projects into workspace" is not checked


  4. Open main.c and locate the mainCREATE_SIMPLE_BLINKY_DEMO_ONLY definition, which is near the top of the file. Set mainCREATE_SIMPLE_BLINKY_DEMO_ONLY to 1 to build the simply blinky style (starter) project. Set mainCREATE_SIMPLE_BLINKY_DEMO_ONLY to 0 to build the comprehensive test and demo application.

  5. Select "Build All" from the e2studio Eclipse "Project" menu to build the demo project, and wait for the build to complete.

  6. Ensure the E1 debug adapter (which comes with the RSK starter kit) is connected between the RX64M RSK hardware and the host computer. If you configure the launch configurations as per the images below then there is no need to supply any external power.

  7. Select "Debug Configurations" from the Eclipse "Run" menu to configure a launch configuration that can be used to program the microcontroller flash memory and start a debug session. Configure the debug launch configuration as shown in the images below.



    Click images to enlarge


Demo Application Functionality

The simply blinky example

The simple blinky example is created when mainCREATE_SIMPLE_BLINKY_DEMO_ONLY is set to 1. mainCREATE_SIMPLE_BLINKY_DEMO_ONLY is defined in main.c

main() calls main_blinky():


The comprehensive test and demo application

The comprehensive example is created when mainCREATE_SIMPLE_BLINKY_DEMO_ONLY is set to 0. mainCREATE_SIMPLE_BLINKY_DEMO_ONLY is defined in main.c.

main() calls main_full():



RTOS Configuration and Usage Details


RX64M RTOS port specific configuration

Configuration items specific to this demo are contained in FreeRTOS/Demo/RX600_RX64M_RSK_Renesas_e2studio/Source/FreeRTOSConfig.h or FreeRTOS/Demo/RX600_RX64M_RSK_GCC_e2studio/src/FreeRTOSConfig.h for the Renesas compiler and GCC compiler projects respectively. The constants defined in these files can be edited to suit your application. In particular - The RX64M port layer #defines 'BaseType_t' to 'long'.


Writing interrupt service routines (ISRs)

Interrupts can be written using the standard compiler syntax. Examples for both the Renesas and GCC compilers are provided below.

Often an ISR wants to cause a context switch so the task that is returned to when the ISR completes is different to the task that the ISR originally interrupted. This would be the case if the ISR caused a task to unblock, and the unblocked task had a priority above that of the task that was already in the Running state. This can be achieved by calling portYIELD_FROM_ISR(), which takes a single parameter. The parameter must be 0 if a context switch is not required, or non-zero if a context switch is required. portYIELD_FROM_ISR() is used in the examples below.

/* Pragma used to install the interrupt.  The 'enable' used in the pragma
tells the compiler to enable interrupts before executing the user code. */
#pragma interrupt ( Excep_PERIB_INTB128( vect = 128, enable ) )

/* Function definition. */
void Excep_PERIB_INTB128( void )
{
long lHigherPriorityTaskWoken;

    /* Interrupts are already enabled here.  See comment above. */

    /* xSemaphoreGiveFromISR() is an interrupt safe FreeRTOS function.  It is
    assumed the semaphore has already been created.  If giving the semaphore
    unblocks a task, and the task that is unblocked has a priority above the
    priority of the currently executing task, then the lHigherPriorityTaskWoken
    parameter will get set to pdTRUE inside the xSemaphoreGiveFromISR()
    function. */
    xSemaphoreGiveFromISR( xSemaphore, &lHigherPriorityTaskWoken );
    portYIELD_FROM_ISR( lHigherPriorityTaskWoken );
}
An example interrupt service routine using the Renesas compiler syntax


/* The function prototype uses the interrupt attribute. */
static void vT0_1_InterruptHandler( void ) __attribute__((interrupt));

/* Function definition. */
void Excep_PERIB_INTB128( void )
{
long lHigherPriorityTaskWoken;

    /* Unlike when using the Renesas compiler, interrupts must be explicitly
    re-enabled inside the interrupt service routine. */
    __asm volatile( "SETPSW	I" );


    /* xSemaphoreGiveFromISR() is an interrupt safe FreeRTOS function.  It is
    assumed the semaphore has already been created.  If giving the semaphore
    unblocks a task, and the task that is unblocked has a priority above the
    priority of the currently executing task, then the lHigherPriorityTaskWoken
    parameter will get set to pdTRUE inside the xSemaphoreGiveFromISR()
    function. */
    xSemaphoreGiveFromISR( xSemaphore, &lHigherPriorityTaskWoken );
    portYIELD_FROM_ISR( lHigherPriorityTaskWoken );
}
An example interrupt service routine using the GCC compiler syntax


Resources used by FreeRTOS

FreeRTOS requires exclusive use of the software interrupt. FreeRTOS also requires exclusive use of a timer that is capable of generating the tick interrupt - but it is up to the application writer to define which timer is used. To do this the application must define a function called vApplicationSetupTimerInterrupt() to configure the tick interrupt using the chosen peripheral, then install vTickISR() in the corresponding location within the interrupt vector table.

It is suggested that a compare match timer is used to generate the tick interrupt, and an example implementation of vApplicationSetupTimerInterrupt() that uses compare match timer 0 is included in main.c within this demo application.


Compiler options

As with all the ports, it is essential that the correct compiler options are used. The best way to ensure this is to base your application on the provided demo application files.


Memory allocation

Source/Portable/MemMang/heap_4.c is included in the RX64M demo application project to provide the memory allocation required by the RTOS kernel. Please refer to the Memory Management section of the API documentation for full information.


Miscellaneous

Note that vPortEndScheduler() has not been implemented.