readme.txt 806 B

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