Skip to content

beryllium-org/OS

Repository files navigation

Beryllium OS

A unix-like operating system for CircuitPython powered microcontrollers. Code style: black
(Formerly known as ljinux)
neofetch
Important notes:
This project is still in it's early developement!
The kernel API is undergoing massive breaking changes every day.
This project is NOT a linux distribution.
This project is NOT compatible with any linux code / binaries.

We also now have a discord server!
If you need support or want to hang out, feel free to join in!

We also work with Github Discussions.

Table of Contents

Prerequisites and hardware support

Runs on CircuitPython 9.0.X.
Currently the supported boards are:

Espressif:

  • Adafruit Feather ESP32-S2
  • Adafruit Feather ESP32-S3 TFT
  • DFRobot Beetle ESP32-C3
  • Firebeetle 2 ESP32-S3
  • M5Stack Timer Camera X
  • Wemos Lolin S2 Mini
  • WeAct ESP32-C6
  • Waveshare ESP32-S2-Pico

Raspberry Pi:

  • Adafruit KB2040
  • Pimoroni Pico Lipo (16mb)
  • Pimoroni Pico Lipo (4mb)
  • Raspberry Pi Pico
  • Raspberry Pi Pico W
  • Waveshare RP2040-Zero

Nordic:

  • Seeed XIAO nRF52840 (Sense)

SAMD:

  • Seeed Wio Terminal

But it can probably run on many more.

The currently stable supported MCUs are: ESP32, ESP32-S2, ESP32-S3, ESP32-C3, ESP32-C6, RP2040, nRF52840, SAMD51.
The currently unsupported CircuitPython-compatible MCU families / CircuitPython platforms are: SAMD21, litex, mimxrt10xx, efr32, stm.
The MCU's that are currently unsupported are so because I either can't get my hands on a decent board with them or they don't have enough ram for it.

The only real limiting factor should be ram, as about 70k (usable under circuitpython) are needed.
(If you have gotten it running on an unsupported board, feel free to pr)

Installation / Updating

Do note, installation using scripts from windows is unsupported. Use a release .zip instead.
Though, if you are windows user, this project really isn't for you.

  1. Install a supported CircuitPython version onto the board.
    Detailed instructions regarding CircuitPython can be found here.
  2. Download the latest Beryllium OS release for your board and extract it onto it.
    Or even better, if you wish to use the latest and greatest, clone this repository and from within the "source" folder, run make install with your board mounted.
    DO NOT run with -j!!!
    This command will automatically update the system files if they already exist.
    To only update the core files, run make kernel instead.
    If you only want to update the board extras, like drivers and packages, run make extras instead.
    If you plan on loading the files remotely (via web/ble workflow), run make BOARD=*your board.board_id* install instead.
    The files for you to copy will be created inside source/build_*your board.board_id*.
  3. (Optional) Copy over the packages you wish to install with jpkg, or install drivers with make.
    More info regarding packages in Packages
  4. Eject & powercycle the board
    When it's plugged back in, you can connect to it via serial.
    (You can use putty to connect to the board on Windows, Tio or GNU/Screen on Linux or MacOS)
    IMPORTANT NOTE: To make the board appear again as a usb drive on the host, run the Beryllium command devmode.
    More info regarding internal commands, available in the manual.

Packages

Some of beryllium os'es features are not bundled with this install.
You will have to install them seperately through the jpkg package manager.

You can find beryllium packages in the jpkg github topic.

Connection

To connect to the board it's recommended to use Putty for Windows and Tio for Linux/MacOS.
A console that works with ANSI escape commands is REQUIRED (aka, not arduino ide).

For Putty, select connection type to be Serial, select the port to be COMX where X is the number of the serial port allocated by the board, and set the speed/baudrate to 115200.
(You can find which com port is allocated from within the Device Manager, it usually is COM3 or COM4)

For Tio if you are on linux, you need to be in the dialout or uucp user group and to connect, run: tio /dev/ttyACM0
If you are on a Mac instead, run: ls /dev/tty.usb* to find the device name, and connect to it by running: tio /dev/tty.usb<Device name here>
To disconnect, press Ctrl + t, q.
To be added to the dialout group, run sudo usermod -a -G dialout <your username here> and restart.

Directory structure

  • base, the base root filesystem that will be used to strap all other packages over it.
  • Boardfiles, the different board ports and their configuration data.
  • bootcfg, boot configuration files, to be cherrypicked by ports.
  • drivers, different device drivers that may be build depending on the board.
  • other, miscellaneous files, not used during installation.
  • packages, most of these (if they are compatible with your board) will be bundles with every new installation.
  • scripts, the files needed for compilation, and installation to a board.
  • source, the source files for this project and co. They should be compiled into .mpy files, then into packages.

A complete Beryllium manual is available

https://github.com/beryllium-org/OS/blob/main/Manual.txt

Additional screenshots

less iwctl

Useful resources that helped with the development of this project

https://gist.github.com/fnky/458719343aabd01cfb17a3a4f7296797
https://en.wikipedia.org/wiki/ANSI_escape_code
https://github.com/todbot/circuitpython-tricks