/******************************************************************************
 *
 * Copyright:
 *    (C) 2000 - 2005 Embedded Artists AB
 *
 *****************************************************************************/

NOTE: The RTOS is configured for a general LPC2xxx processor.
You must set the correct RAM size in the file: startup/config.h (line 56)
and you must set the linker script files to the correct FLASH and RAM sizes).
The linker script files can be found in the build_files sub-directory and are
names link_rom.ld and link_ram.ld, respectively (check line 7-8 in the script files).


The sample applications are located in subfolders and contain their own
makefiles. The following sample applications exist:

1) sample_cntsem    Demonstrate the use of counting semaphores.
2) sample_irq       Demonstrate sthe use of timer interrupts and how
                    interrupt service routines can signal to processes.
3) sample_multiple  Demonstrate how multiple instantiations of processes
                    can be created.
4) sample_queue     Demonstrate the use of the queue synchronization primitive.
5) sample_simple    Demonstrate how to create processes.
6) sample_stack     Demonstrate how to check the stack usage of processes.
7) sample_timer     Demonstrate the timer functionality in the RTOS.

The makefile found in the top-folder will recursively make each sample 
application.
