Questions tagged [freertos]

FreeRTOS is a portable, open source, real-time operating systems for microcontrollers. It also has some support for microprocessors with memory protection units.

FreeRTOS is a portable, open source, real-time operating systems for microcontrollers. It also has some support for microprocessors with memory protection units. It is designed to be small and simple and consists of only 5 C files and a small portability layer per each unique controller/compiler.

Features

  • Portable - supports 18 toolchains
  • Supports many of the commonly used CPU/MCU architectures including x86, ARM, AVR, AVR32, PIC (PIC24, PIC32, dsPIC), 8051, Z80, PowerPC and more

See also

1097 questions
-5
votes
1 answer

Fibonacci series incorrectly

This program should print the first 50 numbers of the Fibonacci series. But only the first 47 prints correctly, the last three prints incorrect. /*FreeRTOS.org includes.*/ #include "FreeRTOS.h" #include "task.h" #include "queue.h" #include…
1 2 3
73
74