MOS is a real-time operating system (RTOS) designed for embedded devices which consists of a preemptive kernel and a command-line shell(very primitive currently) with other user application components being ported(e.g., GuiLite and FatFS).
mos-core
- The preemptive kernel and command-line shell, from heremos-stm32
- Running on STM32 series, from heremos-renode
- Running on Renode emulation, from here
- Click here to view code
.
βββ π emulation // Renode emulation script
βββ π vendor // Vendor HAL (SPL/HAL/LL/...)
βββ π core
β βββ π arch // Architecture-Specific Code
β β βββ cpu.hpp // Initialization/Context Switch assembly code
β β
β βββ π kernel // Kernel Layer (Architecture-Independent)
β β βββ macro.hpp // Kernel Constants Macro
β β βββ type.hpp // Basic Types
β β βββ concepts.hpp // Type Constraints (Optional)
β β βββ data_type.hpp // Basic Data Structures
β β βββ alloc.hpp // Memory Management
β β βββ global.hpp // Kernel Layer Global Variables
β β βββ printf.h/.c // Thread-Safe printf (Reference Open Source Implementation)
β β βββ task.hpp // Task Control
β β βββ sync.hpp // Synchronization Primitives
β β βββ scheduler.hpp // Scheduler
β β βββ ipc.hpp // Inter-Process Communication
β β βββ utils.hpp // Other Utilities
β β
β βββ config.h // System Configuration
β βββ kernel.hpp // Kernel Modules
β βββ shell.hpp // Shell Command Line
β
βββ π app // User Code
βββ main.cpp // Entry Function
βββ test.hpp // Test Code
Mutex Test(Priority Ceiling Protocol)
LCD Driver & GUI Demo
Concurrent Task Period & Time Sequence
// MOS Kernel & Shell
#include "mos/kernel.hpp"
#include "mos/shell.hpp"
// HAL and Device
#include "drivers/stm32f4xx/hal.hpp"
#include "drivers/device/led.hpp"
namespace MOS::User::Global
{
using namespace HAL::STM32F4xx;
using namespace Driver::Device;
using namespace DataType;
// Shell I/O UART and Buffer
auto& stdio = STM32F4xx::convert(USARTx);
DataType::SyncRxBuf_t<16> io_buf;
// LED red, green, blue
Device::LED_t leds[] = {...};
}
namespace MOS::User::BSP
{
using namespace Driver;
using namespace Global;
void LED_Config()
{
for (auto& led: leds) {
led.init();
}
}
void USART_Config()
{
stdio.init(9600-8-1-N)
.rx_config(PXa) // RX -> PXa
.tx_config(PYb) // TX -> PYb
.it_enable(RXNE) // Enable RXNE interrupt
.enable(); // Enable UART
}
...
}
namespace MOS::User::App
{
Sync::Barrier_t bar {2}; // Set Barrier to sync tasks
void led1(Device::LED_t leds[])
{
bar.wait();
for (auto _: Range(0, 20)) {
leds[1].toggle(); // green
Task::delay(250_ms);
}
kprintf(
"%s exits...\n",
Task::current()->get_name()
);
}
void led0(Device::LED_t leds[])
{
Task::create(
led1,
leds,
Task::current()->get_pri(),
"led1"
);
bar.wait();
while (true) {
leds[0].toggle(); // red
Task::delay(500_ms);
}
}
...
}
int main()
{
using namespace MOS;
using namespace Kernel;
using namespace User;
using namespace User::Global;
BSP::config(); // Init hardware and clocks
Task::create( // Create Calendar with RTC
App::time_init, nullptr, 0, "time/init"
);
Task::create( // Create Shell with buffer
Shell::launch, &stdio.buf, 1, "shell"
);
/* User Tasks */
Task::create(App::led_init, &leds, 2, "led/init");
...
/* Test examples */
Test::MutexTest();
Test::MsgQueueTest();
...
// Start scheduling, never return
Scheduler::launch();
}
A_A _ Version @ x.x.x(...)
o'' )_____// Build @ TIME, DATE
`_/ MOS ) Chip @ MCU, ARCH
(_(_/--(_/ 2023-2024 Copyright by Eplankton
Tid Name Priority Status Mem%
----------------------------------------
#0 idle 15 READY 10%
#1 shell 1 BLOCKED 21%
#2 led0 2 RUNNING 9%
----------------------------------------
π¦ v0.4
β DoneοΌ
- Shift to
Renode
emulation platform, stable support forCortex-M
series- [Experimental] Add scheduler lock
Scheduler::suspend()
π¦ v0.3
β Done:
- Mapping
Tids
toBitMap_t
- Message queue
IPC::MsgQueue_t
Task::create
allows generic function signatures asvoid fn(auto argv)
with type checker- Added
ESP32-C3
as aWiFi
component- Added
Driver::Device::SD_t
,SD
card driver, portingFatFs
file system- Added
Shell::usr_cmds
for user-registered commands- [Experimental] Atomic types
<stdatomic.h>
- [Experimental]
Utils::IrqGuard_t
, nested interrupt critical sections- [Experimental] Simple formal verification of
Scheduler + Mutex
π Planned:
- Inter-Process Communication: pipes/channels
FPU
hardware float support- Performance benchmarking
- Error handling with
Result<T, E>
,Option<T>
DMA_t
DMA Driver- Software/hardware timers
Timer
- [Experimental] Adding
POSIX
support- [Experimental] Asynchronous stackless coroutines
Async::{Future_t, async/await}
- [Experimental] More real-time scheduling algorithms
π¦ v0.2
β Done:
- Synchronization primitives
Sync::{Sema_t, Lock_t, Mutex_t<T>, CondVar_t, Barrier_t}
Scheduler::Policy::PreemptPri
withRoundRobin
scheduling for same priority levelsTask::terminate
implicitly called upon task exit to reclaim resources- Simple command-line interaction
Shell::{Command, CmdCall, launch}
HAL::STM32F4xx::SPI_t
andDriver::Device::ST7735S_t
, porting theGuiLite
graphics library- Blocking delay with
Kernel::Global::os_ticks
andTask::delay
- Refactored project organization into
{kernel, arch, drivers}
- Support for
GCC
compilation, compatible withSTM32Cube HAL
- Real-time calendar
HAL::STM32F4xx::RTC_t
,CmdCall::date_cmd
,App::Calendar
idle
usesKernel::Global::zombie_list
to reclaim inactive pages- Three basic page allocation policies
Page_t::Policy::{POOL, DYNAMIC, STATIC}
π¦ v0.1
β Done:
- Basic data structures, scheduler, and task control, memory management
π Planned:
- Timers, round-robin scheduling
- Inter-Process Communication (IPC), pipes, message queues
- Process synchronization (Sync), semaphores, mutexes
- Porting a simple Shell
- Variable page sizes, memory allocator
- SPI driver, porting GuiLite/LVGL graphics libraries
- Porting to other boards/arch, e.g., ESP32-C3 (RISC-V)
- How to build a Real-Time Operating System(RTOS)
- PeriodicScheduler_Semaphore
- STM32F4-LCD_ST7735s
- A printf/sprintf Implementation for Embedded Systems
- GuiLite
- STMViewer
- FatFs
- The Zephyr Project
- Eclipse ThreadX
- Embassy
- Renode
There's a movie on TV.
Four boys are walking on railroad tracks...
I better go, too.