FreeRTOS-Kernel/FreeRTOS/Source
Richard Barry c37b2ca39b Demo app changes:
Add a "query heap" command to the standard sample CLI commands.
Remove casting from configMAX_PRIORITIES setting in Win32 simulator demos as it was preventing a clean build. 

Source code changes.
General tidy up and addition of assert points.
2015-01-15 21:37:32 +00:00
..
include Release candidate - this will be tagged as FreeRTOS V8.2.0rc1 and a zip file provided. 2014-12-24 09:40:58 +00:00
portable Demo app changes: 2015-01-15 21:37:32 +00:00
croutine.c Update version numbers in preparation for V8.2.0 release candidate 1. 2014-12-21 19:09:18 +00:00
event_groups.c Update version numbers in preparation for V8.2.0 release candidate 1. 2014-12-21 19:09:18 +00:00
list.c Release candidate - this will be tagged as FreeRTOS V8.2.0rc1 and a zip file provided. 2014-12-24 09:40:58 +00:00
queue.c Update version numbers in preparation for V8.2.0 release candidate 1. 2014-12-21 19:09:18 +00:00
readme.txt Add FreeRTOS-Plus directory. 2012-08-11 21:34:11 +00:00
tasks.c Release candidate - this will be tagged as FreeRTOS V8.2.0rc1 and a zip file provided. 2014-12-24 09:40:58 +00:00
timers.c Demo app changes: 2015-01-15 21:37:32 +00:00

Each real time kernel port consists of three files that contain the core kernel
components and are common to every port, and one or more files that are 
specific to a particular microcontroller and or compiler.

+ The FreeRTOS/Source directory contains the three files that are common to 
every port - list.c, queue.c and tasks.c.  The kernel is contained within these 
three files.  croutine.c implements the optional co-routine functionality - which
is normally only used on very memory limited systems.

+ The FreeRTOS/Source/Portable directory contains the files that are specific to 
a particular microcontroller and or compiler.

+ The FreeRTOS/Source/include directory contains the real time kernel header 
files.

See the readme file in the FreeRTOS/Source/Portable directory for more 
information.