#operating-system #real-time #multi-agent #programming-language #task-manager #elegant #complex

martos

Martos is an elegant real-time operating system designed for creating complex multi-agent systems. Developers have the flexibility to write software for Martos using either Rust (preferred) or C languages.

2 unstable releases

new 0.2.0 May 11, 2024
0.1.0 Mar 30, 2024

#243 in Operating systems

Download history 199/week @ 2024-03-25 46/week @ 2024-04-01 170/week @ 2024-05-06

170 downloads per month

MIT/Apache

14KB
158 lines

Martos

Martos ci workflow Version Release

Martos is an elegant real-time operating system designed for creating complex multi-agent systems. Developers have the flexibility to write software for Martos using either Rust (preferred) or C languages.

Martos supports following features:

  • non-preemptive task manager based on Round Robin algorithm;
  • memory allocation.

Programming in Rust

To develop software in Rust, you have the option to incorporate the Martos as a dependency:

[dependencies]
martos = "0.2.0"

You can explore a variety of Rust examples showcasing different architectures in the 'examples/rust-examples' directory.

Programming in C

To develop software in C, you have to link the Martos static library with your project:

-Lpath-to-static-lib -lxtensa_esp32_static_lib

You can obtain the Martos static library for supported architectures from either the release artifacts or the continuous integration (CI) artifacts. If you wish to compile the Martos static library on your own, please refer to the 'c-library' directory, which includes static library targets tailored for various architectures.

You can explore diverse C examples tailored for various architectures in the 'examples/c-examples' directory.

Dependencies

~17KB