Mirror/fork of freertos kernel
Find a file
ribarry d9cfffa3ca Updates vCoRoutineSchedule() so it returns without doing anything if if the co-routine internal data structures have not been initialised. The internal data structures are initialised when the first co-routine is created.
NOTE: Co-routines are a deprecated feature.  This change was made to close off an old ticket as the source control transitions from SourceForge to Github.
2020-02-22 17:48:22 -08:00
include Correct the xTimerCreate() documentation which said NULL was returned if the timer period was passed into the function as 0, whereas that is not the case. (#10) 2020-02-14 12:16:10 -08:00
License Re-sync with upstream and stripping away none kernel related. 2020-02-10 13:45:57 -08:00
portable Re-sync with upstream and stripping away none kernel related. 2020-02-10 13:45:57 -08:00
croutine.c Updates vCoRoutineSchedule() so it returns without doing anything if if the co-routine internal data structures have not been initialised. The internal data structures are initialised when the first co-routine is created. 2020-02-22 17:48:22 -08:00
event_groups.c Re-sync with upstream and stripping away none kernel related. 2020-02-10 13:45:57 -08:00
History.txt Re-sync with upstream and stripping away none kernel related. 2020-02-10 13:45:57 -08:00
list.c Re-sync with upstream and stripping away none kernel related. 2020-02-10 13:45:57 -08:00
queue.c Re-sync with upstream and stripping away none kernel related. 2020-02-10 13:45:57 -08:00
Quick_Start_Guide.url Add quick start guide. 2013-04-30 19:37:00 +00:00
readme.txt Re-sync with upstream and stripping away none kernel related. 2020-02-10 13:45:57 -08:00
stream_buffer.c Re-sync with upstream and stripping away none kernel related. 2020-02-10 13:45:57 -08:00
tasks.c Re-sync with upstream and stripping away none kernel related. 2020-02-10 13:45:57 -08:00
timers.c Re-sync with upstream and stripping away none kernel related. 2020-02-10 13:45:57 -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.