Mirror/fork of freertos kernel
Find a file
2019-12-19 14:10:44 +01:00
include Seperated Kernel from rest of FreeRTOS code base. 2019-09-24 15:57:53 -07:00
License Seperated Kernel from rest of FreeRTOS code base. 2019-09-24 15:57:53 -07:00
portable Added "xPortIsInsideInterrupt" function into portmacro.h for IAR compiler and CM4F and CM7 cores. 2019-12-19 14:10:44 +01:00
croutine.c Seperated Kernel from rest of FreeRTOS code base. 2019-09-24 15:57:53 -07:00
event_groups.c Seperated Kernel from rest of FreeRTOS code base. 2019-09-24 15:57:53 -07:00
History.txt Seperated Kernel from rest of FreeRTOS code base. 2019-09-24 15:57:53 -07:00
list.c Seperated Kernel from rest of FreeRTOS code base. 2019-09-24 15:57:53 -07:00
queue.c Seperated Kernel from rest of FreeRTOS code base. 2019-09-24 15:57:53 -07:00
Quick_Start_Guide.url Added quick start guide url. 2019-10-29 10:24:30 -07:00
readme.txt Seperated Kernel from rest of FreeRTOS code base. 2019-09-24 15:57:53 -07:00
stream_buffer.c Seperated Kernel from rest of FreeRTOS code base. 2019-09-24 15:57:53 -07:00
tasks.c Seperated Kernel from rest of FreeRTOS code base. 2019-09-24 15:57:53 -07:00
timers.c Seperated Kernel from rest of FreeRTOS code base. 2019-09-24 15:57:53 -07: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.