RTOS
A real-time operating system (RTOS) is a multitasking operating system for real-time computing applications. Typically a RTOS guarantees very short latencies between an input event on some sensor and an output response via some other transducer.
A RTOS is typically more like a "framework" or "API" than popular desktop operating systems: it typically specifies standardized APIs for hardware device drivers and software tools, and often includes libraries that deal with many common devices and software tools, so developers can get a system working without writing everything from scratch.
For example, highly dynamic robotic systems, such as balancing walking robots and multi-rotor helicopters, need their motors to start responding very quickly as soon as it detects it's a little off-balance, long before it tilts over and slams into the ground.
Many embedded systems (in particular, multi-purpose Embedded System) often use a RTOS.
Here at Open Circuits, we are most interested in (a) When developing new hardware (especially open hardware), what are the hardware requirements required to support a typical RTOS or some specific RTOS? (b) What sorts of RTOS are available (especially open-source RTOSes), and what demo boards support that RTOS so the software guys can start building software before the hardware is completely finished? (c) Are there ways of developing hardware to relax the constraints on the software and vice versa?
The combination of (a) a Raspberry Pi or similar device using standard Linux (which is, alas, not a RTOS) and (b) at least one Arduino or similar device for each and every input or output that requires low-latency (because each one handles only one thing, it doesn't necessarily require a RTOS) is one popular alternative to using an RTOS. (FIXME: link to page about combining Raspberry Pi with Arduino -- R Pi Notes ? Python Smart Terminal ?).
Some open-source RTOSes
- ChibiOS/RT : http://www.chibios.org/
- AvrX is a Real Time Multitasking Kernel written for the Atmel AVR series of micro controllers. "Larry Barello's Home Page: AVR and Robotics ... AvrX".
- FreeRTOS and SAFERTOS : ... freertos posix Development ... http://www.freertos.org/
- [FIXME: some of the links below are open-source RTOSes; move them up?]
Further reading
- Wikibooks: "Embedded Systems: Real-Time Operating Systems".
- Wikibooks: "Microprocessor Design: Real-Time Operating System".
- Wikibooks: "Embedded Control Systems Design/Real Time Operating systems".
- "RTEMS for Embedded Software Developers".
- Wikibooks: "Embedded Systems/Common RTOS".
- Hackaday: "KittyOS: Writing A Toy OS For The ATmega168 From Scratch" and also "Operating System (kittyOS)".
- r/embedded: "At what point would you consider using an RTOS? ".
- Nathan Jones: "You Don't Need an RTOS (Part 1) ... At least, probably not as often as you think you do.".
- FreeRTOS ported to Microchip ATmega devices, including Arduino https://docs.arduino.cc/libraries/freertos/
- Instructables: "Setting Up FreeRTOS on Arduino".
- Joe Jaworski "A Real-Time Operating System for the Arduino" (FreeRTOS).
- "A FreeRTOS Library for all Arduino ATmega Devices (Uno R3, Leonardo, Mega, etc).".
- "Arduino FreeRTOS Tutorial 1 - Creating a FreeRTOS task to Blink LED in Arduino Uno".
- Professor Dr Dogan Ibrahim: "μRTOS: Simple Multitasking with Microcontrollers". ("a C-based, simple multitasking RTOS, using PIC microcontrollers") (Is it open source?)
- Ron Kreymborg: "A Task Dispatcher for Embedded Systems". ("a dispatcher implemented in C").
- Peter Vranken: "RTuinOS: A Real Time Operating System (RTOS) for Arduino" on github: "RTuinOS, a small Real Time Operating System (RTOS) for Arduino".
- "ZARDOS: Tiny Operating System For Tiny Computer".
- Hackaday: "Real-Time OS Basics: Picking The Right RTOS When You Need One".