You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Go to file
David Chalco fdc9d736b3
File Header Check/Diff Reporter + Companion Git Action (#408)
* Add checker for file headers

* file header check + git action
4 years ago
.github File Header Check/Diff Reporter + Companion Git Action (#408) 4 years ago
FreeRTOS Add Makefile project for RISC-V QEMU virtpc (#266) 4 years ago
FreeRTOS-Plus Add device defender library submodule (#406) 4 years ago
tools Tools for configuring AWS credentials in MQTT Mutual Auth Demo (#370) 4 years ago
.gitignore A preliminary .gitignore file, to prevent us checking in files unnecessary. (#18) 5 years ago
.gitmodules Add device defender library submodule (#406) 4 years ago
FreeRTOS+TCP.url Update version number in +TCP code. 6 years ago
GitHub-FreeRTOS-Home.url Maintenance -- clean up readme.txt and add url to GitHub. (#38) 5 years ago
LICENSE.md Updated contributions guidelines (#12) 5 years ago
Quick_Start_Guide.url Add quick start guide. 12 years ago
README.md Multiple tidy up and corrections preparing for release (#390) 4 years ago
Upgrading to FreeRTOS V10.3.0.url 5 years ago
Upgrading-to-FreeRTOS-9.url Add Pearl Gecko demo. 9 years ago
Upgrading-to-FreeRTOS-10.url Update to MIT licensed FreeRTOS V10.0.0 - see https://www.freertos.org/History.txt 7 years ago
Upgrading-to-FreeRTOS-V10.4.0.url Added some URL files and move submodule pointer along (#254) 4 years ago

README.md

Getting started

The FreeRTOS.org website contains contains a FreeRTOS Kernel Quick Start Guide, a list of supported devices and compilers, the API reference, and many other resources.

Getting help

You can use your Github login to get support from both the FreeRTOS community and directly from the primary FreeRTOS developers on our active support forum. The FAQ provides another support resource.

Cloning this repository

This repo uses Git Submodules to bring in dependent components.

Note: If you download the ZIP file provided by the GitHub UI, you will not get the contents of the submodules. (The ZIP file is also not a valid git repository)

To clone using HTTPS:

git clone https://github.com/FreeRTOS/FreeRTOS.git --recurse-submodules

Using SSH:

git clone git@github.com:FreeRTOS/FreeRTOS.git --recurse-submodules

If you have downloaded the repo without using the --recurse-submodules argument, you need to run:

git submodule update --init --recursive

Repository structure

This repository contains the FreeRTOS Kernel, a number of supplementary libraries, and a comprehensive set of example applications. Many libraries (including the FreeRTOS kernel) are included as Git submodules from their own Git repositories.

Kernel source code and example projects

FreeRTOS/Source contains the FreeRTOS kernel source code (submoduled from https://github.com/FreeRTOS/FreeRTOS-Kernel).

FreeRTOS/Demo contains pre-configured example projects that demonstrate the FreeRTOS kernel executing on different hardware platforms and using different compilers.

Supplementary library source code and example projects

FreeRTOS-Plus/Source contains source code for additional FreeRTOS component libraries, as well as select partner provided libraries. These subdirectories contain further readme files and links to documentation.

FreeRTOS-Plus/Demo contains pre-configured example projects that demonstrate the FreeRTOS kernel used with the additional FreeRTOS component libraries.

Previous releases

Releases contains older FreeRTOS releases.