FreeRTOS
FreeRTOS is a open-source (MIT licence) Real-Time Operating System (RTOS) used in microcontrollers and small microprocessors that is very popular acording to the website. It aims to be reliable, accessible and easy to use.
A RTOS is basically an elevated task manager system that can do the management of different processes with full controll of the timing of their execution, switching tasks quite fast, which for the majority of cases nowadays, look like they are running concurrently. This happens because the scheduler, which is also a task that runs with higher priority than the others, decides which task should be executed next. There are also other concepts, like Queues, Mutexes, Semaphores which deal with some shortcomings of using a system implemented like this.