bl_iot_sdk/components/bl602/freertos_riscv_ram
Robert Lipe 3bc544d9f3 clean components/ whitespace issues
image_conf, make_scripts_riscv -  Delete trailing spaces. Change tabs to 4 space multiples.

    .c and .h get tabs expanded to four spaces for consistency, traliing whitespace whacked.
    Makefiles do NOT get tabs changed.
2020-11-08 13:56:51 -06:00
..
config clean components/ whitespace issues 2020-11-08 13:56:51 -06:00
misaligned Initial Commit 2020-10-26 20:35:25 +08:00
panic clean components/ whitespace issues 2020-11-08 13:56:51 -06:00
portable clean components/ whitespace issues 2020-11-08 13:56:51 -06:00
bouffalo.mk Initial Commit 2020-10-26 20:35:25 +08:00
croutine.c clean components/ whitespace issues 2020-11-08 13:56:51 -06:00
event_groups.c clean components/ whitespace issues 2020-11-08 13:56:51 -06:00
list.c clean components/ whitespace issues 2020-11-08 13:56:51 -06:00
queue.c clean components/ whitespace issues 2020-11-08 13:56:51 -06:00
readme.txt Initial Commit 2020-10-26 20:35:25 +08:00
stream_buffer.c clean components/ whitespace issues 2020-11-08 13:56:51 -06:00
tasks.c clean components/ whitespace issues 2020-11-08 13:56:51 -06:00
timers.c clean components/ whitespace issues 2020-11-08 13:56:51 -06: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.