beryllium-org / OS

Beryllium OS, a unix-like operating system for CircuitPython powered microcontrollers. (Formerly known as ljinux)
GNU General Public License v3.0
227 stars 14 forks source link
beryllium cardputer circuitpython embedded esp32 esp32-c3 esp32-c6 esp32-s2 esp32-s3 linux microcontroller nrf52840 python rp2040

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 and 9.1.X.
Currently the supported boards are:

Espressif:

Raspberry Pi:

Nordic:

SAMD:


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 unstable MCUs (experimental support) are: ESP32-C2.
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

Installation from windows is supported through WSL.
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.boardid* 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

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