kendryte-freertos-sdk/lib/freertos
xiangbingj ad401d5b09 Add spi endian setting. 2019-11-12 11:51:56 +08:00
..
conf SPI is configured as DMA mode by default;Fix i2s_stop 2019-11-07 20:02:01 +08:00
include Add spi endian setting. 2019-11-12 11:51:56 +08:00
kernel Add spi endian setting. 2019-11-12 11:51:56 +08:00
portable Enable core1 && Fix portYield when called in ISR 2019-02-14 11:52:24 +08:00
CMakeLists.txt Add lwip 2018-10-29 16:45:27 +08:00
core_sync.c fix network driver:add select,ioctl;expand TCP packet length 2019-02-27 18:09:54 +08:00
croutine.c first commit 2018-09-13 21:42:46 +08:00
event_groups.c first commit 2018-09-13 21:42:46 +08:00
list.c first commit 2018-09-13 21:42:46 +08:00
locks.c No DMA interruption when SPI flush LCD 2019-10-17 16:06:46 +08:00
os_entry.c Enable static idle task 2019-02-14 17:13:58 +08:00
pthread.c Fix a bug in filesystem 2018-10-31 10:44:14 +08:00
queue.c first commit 2018-09-13 21:42:46 +08:00
readme.txt first commit 2018-09-13 21:42:46 +08:00
stream_buffer.c first commit 2018-09-13 21:42:46 +08:00
tasks.c fix network driver:add select,ioctl;expand TCP packet length 2019-02-27 18:09:54 +08:00
timers.c Enable static idle task 2019-02-14 17:13:58 +08: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.