FreeRTOS v_8.2.1 for LPC1768

Dependents:   frtos_v_8_bluetooth frtos_v_8_pololu frtos_v_8_Final

Committer:
JoaoJardim
Date:
Mon Dec 10 10:04:09 2018 +0000
Revision:
1:2f4de0d9dc8b
Parent:
0:91ad48ad5687
Same implementation as freertos_bluetooth at this time, but with FreeRTOS v_8.2.1

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dflet 0:91ad48ad5687 1 Each real time kernel port consists of three files that contain the core kernel
dflet 0:91ad48ad5687 2 components and are common to every port, and one or more files that are
dflet 0:91ad48ad5687 3 specific to a particular microcontroller and or compiler.
dflet 0:91ad48ad5687 4
dflet 0:91ad48ad5687 5 + The FreeRTOS/Source directory contains the three files that are common to
dflet 0:91ad48ad5687 6 every port - list.c, queue.c and tasks.c. The kernel is contained within these
dflet 0:91ad48ad5687 7 three files. croutine.c implements the optional co-routine functionality - which
dflet 0:91ad48ad5687 8 is normally only used on very memory limited systems.
dflet 0:91ad48ad5687 9
dflet 0:91ad48ad5687 10 + The FreeRTOS/Source/Portable directory contains the files that are specific to
dflet 0:91ad48ad5687 11 a particular microcontroller and or compiler.
dflet 0:91ad48ad5687 12
dflet 0:91ad48ad5687 13 + The FreeRTOS/Source/include directory contains the real time kernel header
dflet 0:91ad48ad5687 14 files.
dflet 0:91ad48ad5687 15
dflet 0:91ad48ad5687 16 See the readme file in the FreeRTOS/Source/Portable directory for more
dflet 0:91ad48ad5687 17 information.