This repository has been archived on 2023-11-05. You can view files and clone it, but cannot push or open issues or pull requests.
FreeRTOS-Kernel/Source/portable
2011-08-28 13:07:54 +00:00
..
BCC/16BitDOS Remove vTaskCleanUpResources() calls. 2011-08-01 08:07:44 +00:00
CCS4/MSP430X Update version number to V7.0.1. 2011-05-13 18:31:12 +00:00
CodeWarrior Update version number to V7.0.1. 2011-05-13 18:31:12 +00:00
GCC Modify the stack set up when ARM7/9 tasks are created to ensure the assert() calls in xTaskCreate() don't fail. In this case, the assert that would fail is actually redundant anyway, but should not be removed as it might not be redundant in all ports. 2011-08-28 13:06:11 +00:00
IAR Modify the stack set up when ARM7/9 tasks are created to ensure the assert() calls in xTaskCreate() don't fail. In this case, the assert that would fail is actually redundant anyway, but should not be removed as it might not be redundant in all ports. 2011-08-28 13:06:11 +00:00
Keil Remove files that use the now defunct Keil compiler. 2008-10-23 11:06:20 +00:00
MemMang Update version number to V7.0.1. 2011-05-13 18:31:12 +00:00
MPLAB Remove redundant bit being set in the status register of the PIC32. 2011-08-28 13:07:54 +00:00
MSVC-MingW Update version number to V7.0.1. 2011-05-13 18:31:12 +00:00
oWatcom/16BitDOS Remove vTaskCleanUpResources() calls. 2011-08-01 08:07:44 +00:00
Paradigm/Tern_EE Update version number to V7.0.1. 2011-05-13 18:31:12 +00:00
Renesas Update version number to V7.0.1. 2011-05-13 18:31:12 +00:00
Rowley Update version number to V7.0.1. 2011-05-13 18:31:12 +00:00
RVDS Modify the stack set up when ARM7/9 tasks are created to ensure the assert() calls in xTaskCreate() don't fail. In this case, the assert that would fail is actually redundant anyway, but should not be removed as it might not be redundant in all ports. 2011-08-28 13:06:11 +00:00
SDCC/Cygnal Update version number to V7.0.1. 2011-05-13 18:31:12 +00:00
Softune Update version number to V7.0.1. 2011-05-13 18:31:12 +00:00
WizC/PIC18 Update version number to V7.0.1. 2011-05-13 18:31:12 +00:00
readme.txt First version under SVN is V4.0.1 2006-05-02 09:39:15 +00: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/Portable/MemMang directory contains the three sample 
memory allocators as described on the http://www.FreeRTOS.org WEB site.

+ The other directories each contain files specific to a particular 
microcontroller or compiler.



For example, if you are interested in the GCC port for the ATMega323 
microcontroller then the port specific files are contained in
FreeRTOS/Source/Portable/GCC/ATMega323 directory.  If this is the only
port you are interested in then all the other directories can be
ignored.