Arduino_STM32/STM32F1/libraries/FreeRTOS821/utility
victorpv 060dc414b9 Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
..
MemMang Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
FreeRTOS.h Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
FreeRTOSConfig.h Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
StackMacros.h Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
croutine.c Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
croutine.h Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
deprecated_definitions.h Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
event_groups.c Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
event_groups.h Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
heap_1.c Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
list.c Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
list.h Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
mpu_wrappers.h Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
port.c Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
portable.h Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
portmacro.h Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
projdefs.h Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
queue.c Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
queue.h Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
readme.txt Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
semphr.h Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
stdint.readme Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
task.h Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
tasks.c Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
timers.c Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
timers.h Still part of the RTOS commit 2015-05-21 23:36:16 -05:00

readme.txt

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.