Mirror/fork of freertos kernel
Find a file
Yuhui.Zheng 10bbbcf0b9
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)
Add a note to the documentation for both the xTimerCreate() and xTimerCreateStatic() functions that the timer period must be greater than 0.
2020-02-14 12:16:10 -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 Re-sync with upstream and stripping away none kernel related. 2020-02-10 13:45:57 -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.