LPC1768 Cortex M3 CrossWorks Demo
Including Embedded WEB Server and USB Examples
[Embedded Ethernet Examples]
This page presents a Rowley CrossWorks FreeRTOS WEB server and USB demo that is pre-configured to run
on the Keil MCB1700 evaluation board.
The MCB1700 uses an LPC1768
Cortex M3 microcontroller from NXP.
The demo uses:
- The FreeRTOS GCC Cortex-M3 port.
- The Rowley CrossWorks IDE version 2.0.
- Adam Dunkels open source uIP embedded TCP/IP stack to implement a WEB server with CGI scripting.
- Bertrik Sikkens open source LPCUSB USB stack to implement a CDC class echo server.
I tested the development environment using both an Amontec JTAGKey-Tiny
and a CrossConnect for ARM. Both worked well, although the Amontec
device was many times slower.
uIP and LPCUSB are licensed separately from FreeRTOS. Users must familiarise themselves with the uIP and
LPCUSB licenses respectively.
The FreeRTOS Cortex M3 port includes a full interrupt nesting model. Interrupt priorities must be set in accordance with the
instructions on the Customisation page for correct operation.
IMPORTANT! Notes on using the NXP Cortex-M3 WEB Server Demo
Please read all the following points before using this RTOS port.
- Source Code Organisation
- The Demo Application
- RTOS Configuration and Usage Details
See also the FAQ My application does not run, what could be wrong?
Source Code Organisation
The CrossWorks project for the LPC1768 demo is called RTOSDemo.hzp and is located in the FreeRTOS/Demo/CORTEX_LPC1768_GCC_Rowley directory.
The FreeRTOS zip file download contains the files for all the ports and demo application projects. It therefore contains many more
files than used by this demo. See the Source Code Organization section for a description
of the downloaded files and information on creating a new project.
The Demo Application
WEB server configuration
Connect the MCB1700 target to a computer running a WEB browser either directly using a point to point (crossover)
cable, or via a Ethernet switch using a standard Ethernet cable.
The IP address used by the demo is set by the constants configIP_ADDR0 to
configIP_ADDR3 within the file FreeRTOS/Demo/CORTEX_LPC1768_GCC_Rowley/FreeRTOSConfig.h. The MAC address and net mask are configured
within the same header file.
The IP addresses used by the WEB browser computer and the MCB1768 development board must be compatible.
This can be ensured by making the first three octets of both IP addresses identical.
For example, if the WEB browser computer uses IP address
192.168.100.1, then the development board can be given any address in the range 192.168.100.2 to 192.168.100.254 (barring
any addresses already present on the network).
Building and executing the demo application
- Open FreeRTOS/Demo/CORTEX_LPC1768_GCC_Rowley from within the CrossStudio IDE.
- Connect the MCB1700 to the host computer using your choice of debug interface - then connect to the target by selecting "Connect"
from the "Target" menu.
- Select "Build and Debug" from the "Build" menu - the demo application should build with no errors or warnings before being
programmed into the microcontroller Flash memory. The debugger will break on entry to main().
Functionality
The demo application creates 36 tasks before starting the scheduler. The tasks consist
mainly of the standard demo tasks (see the demo application
section for details of the individual tasks). Their only purpose is to test the kernel port and provide
a demonstration of how to use the various API functions.
The following tasks and tests are created in addition to the standard demo tasks:
- Check function - called from the tick hook
This only executes every five seconds. Its main function is to check that all the
standard demo tasks are still operational. The check function maintains a status string that
can be viewed on the "Task Stats" page served by the uIP TCP/IP WEB server.
- uIP task
This is the task that handles the uIP stack. All TCP/IP processing is performed in this task.
- USB task
This is the task that handles the USB stack. The USB device will enumerate as a CDC device. The USB task simply echoes received characters with
an offset which by default is one. Therefore if 'A' is received 'B' will be echoed back. If 'x' is received 'y' will be echoed back, etc.
When executing correctly the demo application will behave as follows:
Note that the LCD is not used because the LCD driver is only permitted to be used with the Keil compiler.
Served WEB Pages
The top of each served page includes a menu containing a link to every other page.
The served RTOS stats page showing status information on each task in the system.
|
The served run time stats page showing the processor utilisation of each task.
|
The served IO page
The IO page provides a simple interface that permits data to be sent to an LED. The check box permits the state of
the user LED to be both set and queried.
Changes are sent to the target hardware by clicking the "Update IO" button.
The TCP Stats and Connections pages display run time networking information.
RTOS Port specific configuration
Configuration items specific to these demos are contained in FreeRTOS/Demo/CORTEX_LPC1768_GCC_Rowley/FreeRTOSConfig.h. The
constants defined in this file can be edited to suit your application. In particular -
- configTICK_RATE_HZ
This sets the frequency of the RTOS tick. The supplied value of 1000Hz is useful for
testing the kernel functionality but is faster than most applications require. Lowering this value will improve efficiency.
- configKERNEL_INTERRUPT_PRIORITY and configMAX_SYSCALL_INTERRUPT_PRIORITY
See the kernel configuration documentation for full information on these configuration constants.
Attention please!: Remember that Cortex M3 cores use numerically low priority numbers to represent HIGH
priority interrupts, which can seem counter-intuitive and is easy to forget! If you wish to assign an interrupt a low priority do NOT assign it a
priority of 0 (or other low numeric value) as this can result in the interrupt actually having the highest priority in the system - and therefore potentially make your system crash if this
priority is above configMAX_SYSCALL_INTERRUPT_PRIORITY.
The lowest priority on a Cortex M3 core is in fact 255 - however different Cortex M3 vendors implement a different number of priority bits and supply library
functions that expect priorities to be specified in different ways. Use the supplied examples as a reference.
Each port #defines 'portBASE_TYPE' to equal the most efficient data type for that processor. This port defines
portBASE_TYPE to be of type long.
Note that vPortEndScheduler() has not been implemented.
Interrupt service routines
In the demo application the vector table remains in flash.
Unlike most ports, interrupt service routines that cause a context switch have no special requirements and can be written as per the compiler documentation.
The macro portEND_SWITCHING_ISR() can be used to request a context switch from within an ISR. An example interrupt service routine called
vEMAC_ISR() is provided in FreeRTOS/Demo/CORTEX_LPC1768_GCC_Rowley/webserver/emac.c. This should be used as a reference example.
Note that portEND_SWITCHING_ISR() will leave interrupts enabled.
Switching between the pre-emptive and co-operative real time kernels
Set the definition configUSE_PREEMPTION within FreeRTOS/Demo/CORTEX_LPC1768_GCC_Rowley/FreeRTOSConfig.h to 1 to use pre-emption or 0
to use co-operative.
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_2.c is included in the ARM Cortex-M3 demo application project to provide the memory
allocation required by the real time kernel.
Please refer to the Memory Management section of the API documentation for
full information.
Copyright (C) 2010 Real Time Engineers Ltd.
Any and all data, files, source code, html content and documentation included in the FreeRTOS.org distribution or available on this site are the exclusive property of Real Time Engineers Ltd..
See the files license.txt (included in the distribution) and this
copyright notice for more information. FreeRTOS
TM and FreeRTOS.org
TM are trade marks of Real Time Engineers Ltd..