KRYPT(8) SYSTEM MANAGER MANUAL

Run KryptKernel on an ESP32

KryptKernel is a PlatformIO library. KryptonOS supplies the shell and services, while KryptKernel owns memory, VFS, and task scheduling.

Install as a library

git submodule add https://github.com/KryptKernel/KryptKernel.git lib/KryptKernel

Boot the kernel

#include <KryptKernel.h>

void setup() {
  Serial.begin(115200);
  Krypton::SystemKernel.boot();
}

void loop() { delay(1000); }

Use KryptonOS applications

For managed apps, use the KryptonOS SDK. Flash the generated project with PlatformIO, then use the serial console:

apps
apps blink