FreeRTOS: Difference between revisions
No edit summary |
GrahamDavies (talk | contribs) m Changed AVR to Atmel AVR to skip over disambiguation page. |
||
Line 18: | Line 18: | ||
*[[ARM architecture]] ARM7 |
*[[ARM architecture]] ARM7 |
||
**ARM Cortex-M3 |
**ARM Cortex-M3 |
||
*[[AVR]] |
*[[Atmel AVR]] |
||
*[[AVR32]] |
*[[AVR32]] |
||
*[[HCS12]] |
*[[HCS12]] |
Revision as of 20:26, 18 October 2007
Developer | Richard Barry & FreeRTOS Team |
---|---|
OS family | RTOS |
Working state | Current |
Source model | Open source |
Latest release | 4.5.0 / September 17, 2007 |
Repository | |
Kernel type | Microkernel |
License | Modified GPL |
Official website | http://www.freertos.org/ |
FreeRTOS is a real-time operating system for embedded devices, being ported to several microcontrollers. It is distributed under a modified version of the GPL. The modification permits users' proprietary code to remain closed source while maintaining the kernel itself as open source, thereby facilitating the use of FreeRTOS in commercial applications.
Supported architectures:
- ARM architecture ARM7
- ARM Cortex-M3
- Atmel AVR
- AVR32
- HCS12
- MicroBlaze
- MSP430
- PIC microcontroller PIC18, PIC24, dsPIC
- Renesas H8/S
- x86
- 8052
- ColdFire (Not supported)
The download contains prepared configurations and demonstrations for every port, allowing rapid application design.
The FreeRTOS scheduler is designed to be small and simple. It can be configured for both preemptive or cooperative operation.
To make the code readable, easy to port, and maintainable, it is written mostly in C, but there are a few assembler functions included where needed.
From Version 4, FreeRTOS allows an application to use coroutines, as well as tasks. In FreeRTOS, a Coroutine is a lightweight task that uses very little memory.
FreeRTOS is small and simple. The kernel itself is comprised of only three or four C files, depending on whether coroutines are used or not.
The FreeRTOS.org site also contains RTOS tutorials, details of the RTOS design and performance comparison results for various microcontrollers.
FreeRTOS was the first real time kernel to be available for real (production) CORTEX-M3 based microcontrollers.
FreeRTOS has recently spawned a spin off project called SafeRTOS. SafeRTOS is based on the FreeRTOS code base but has been updated, documented, tested and audited to enable its use in IEC 61508 safety related applications.
See also
External links