MnemOS Initial Release Announcement


Pellgrino Rack

Today I'm introducing MnemOS v0.1.0, a small, general purpose operating system, written in Rust. MnemOS is designed for constrained hardware, including microcontrollers.

This release includes the v0.1.0 versions of:

Together with the Pellegrino hardware system (pictured above), which is a Eurorack modular synth inspired rack system with LEGO mounting rails, it aims to support modular, home-built computer systems.

Although the capabilities are currently limited, it currently supports a number of features, including:

For more information on what MnemOS is, and how to get started, you can refer to the MnemOS book, or visit the GitHub Repository.

What hardware does MnemOS support?

At the moment, the only supported Main CPU is the Nordic nRF52840, specifically on the Adafruit nRF52840 Feather Express development board.

The Adafruit nRF52840 Feather Express

Support for other Main CPUs is possible, but not currently implemented (it's early days!). In particular, it should be pretty straightforward to add support for the Nordic nRF52840-DK, which is commonly used in Rust-focused learning material, like Ferrous System's embedded trainings, and Knurling Sessions.

This board has a number of important features, including:

The board has many other features, but they are not currently used.

This board can be purchased directly from Adafruit, or from a number of resellers.

Why did I write MnemOS?

MnemOS is a "spin off" of part of my previous project, Powerbus, which is a networked home automation project. It honestly started getting too complicated with too many "crazy ideas" (it's a network stack! and a scripting language! and an operating system!) for one single hobby project. So I split the "networking" part off to a much smaller, simple project (named Sprocketbus), and MnemOS, which was more focused on building a single computer system.

This split helped to better focus BOTH parts of the (former) Powerbus system, and may in the future be recombined, when the separate parts have had more time to bake and solidify on their own.

MnemOS is also a spiritual successor to my Anachro PC project, which I talked about at the RustLab conference in late 2020:

The goal for MnemOS is similar to that of Anachro: Use cheap and modern off-the-shelf hardware to make a PC from scratch that is simple to use. Compared to the original Anachro-PC effort, MnemOS is a more focused, classical-style OS, and benefits from nearly two more years of my learning experience since originally starting work on Anachro.

Why should I (or you) use MnemOS?

As to "Why should I (or you) use MnemOS?", I don't have a good answer! There is certanly no commercial or technical reasons you would choose MnemOS over any of its peers in the "hobbyist space" (e.g. Neotron OS, or projects like RC2014), or even choose it over existing commercial or popular open source projects (like FreeRTOS, or even Linux). It's mainly for me to scratch a personal itch, to learn more about implementing software within the realm of an OS, which is relatively "high level" (from the perspective of embedded systems), while also being relatively "low level" (from the perspective of an application developer).

At the moment, it has the benefit of being relatively small (compared to operating system/kernel projects like Linux, or Redox OS), which makes it easier to change and influence aspects of the OS. I don't think it will ever be anything "serious", but I do plan to use to it to create a number of projects, including a portable text editor, a music player, and maybe even music making/sythesizer components. Some day I'd like to offer hardware kits, to make it easier for more software-minded folks to get started.

For me, it's a blank slate, where I can build things that I intrinsically understand, using tools and techniques that appeal to me and are familiar to me. I'd love to have others come along and contribute to it (I am highly motivated by other people's feedback and excitement!), but I'll keep working on it even if no one else ever shows up. By documenting what I do, I'll gain a better understanding (and an easier route to picking it up if I have to put it down for a while), and that work serves to "keep the lights on" for any kindred spirits interested in building a tiny, simple, PC in Rust.

If that appeals to you, I invite you to try it out. I am more than happy to explain any part of MnemOS. Much like the Rust Programming Language project - I believe that if any part of the OS is not clear, that is a bug (at least in the docs), and should be remedied, regardless of your technical skill level.

What's up next?

Now that I have the initial release out, I plan to move my attention towards expansion cards. I plan to expose expansion cards over a (relatively simple) SPI bus, acting as a sort of "PCI Express"-style backbone.

In particular, I plan next to add support for the Adafruit Music Maker Featherwing, which includes a micro-SD card, which I can use for storage of files, as well as a VLSI VS1053b, an audio codec chip capable of playing both WAV/PCM encoded audio (as a "raw audio sink"), as well as a number of standard audio formats, like MP3, OGG, and FLAC lossless audio.

The Adafruit Music Maker Featherwing

Additionally, I'd like to add support for some kind of networking hardware. This will likely come in the in the form of Adafruit's AirLift FeatherWing, an ESP32-based WiFi peripheral, or their Ethernet Featherwing, a WIZ5500 based ethernet controller chip, with a built-in TCP stack.

Feel free to stay tuned, or open an issue with your questions or ideas!