Mirror/fork of freertos kernel
Find a file
Sachin Parekh 175b131abb Added LoadStore Exception handlers
Handles LoadStoreErrorCause and LoadStoreAlignmentCause allowing to use
32-bit memory region (IRAM) as 8-bit or 16-bit memory region
2020-01-27 14:12:54 +05:30
include Synced portable section. 2020-01-23 17:46:58 -08:00
License Seperated Kernel from rest of FreeRTOS code base. 2019-09-24 15:57:53 -07:00
portable Added LoadStore Exception handlers 2020-01-27 14:12:54 +05:30
croutine.c Synced with FreeRTOS. 2020-01-23 17:44:28 -08:00
event_groups.c Synced with FreeRTOS. 2020-01-23 17:44:28 -08:00
History.txt Seperated Kernel from rest of FreeRTOS code base. 2019-09-24 15:57:53 -07:00
list.c Synced with FreeRTOS. 2020-01-23 17:44:28 -08:00
queue.c Synced with FreeRTOS. 2020-01-23 17:44:28 -08: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 Synced with FreeRTOS. 2020-01-23 17:44:28 -08:00
tasks.c Synced with FreeRTOS. 2020-01-23 17:44:28 -08:00
timers.c Synced with FreeRTOS. 2020-01-23 17:44:28 -08: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.