Examples
Complete, working projects that exercise the SDK end-to-end. Each one ships as a folder in the SDK’s examples/ directory, builds with a single make, and comes with the host-side tooling (where applicable) and a walkthrough of every part.
Projects
Start with Blink to confirm your toolchain, then work up through USB streaming, tile data acquisition, and running WebAssembly on a Core.
Blink
The simplest possible project — initialize the Core, bring up USB, and blink the onboard LED at 5 Hz. The canonical “is my toolchain working?” first build.
USB Raw Streaming
Stream packed binary packets to a host over USB CDC with single-byte start/stop control, plus a Python reader that decodes packets and shows live throughput.
USB HID Reports
A composite CDC + HID device: a debug serial console and vendor-defined HID reports over one cable, read on the host with hidapi.
Sense.MIC Audio Stream
Stream 12-bit microphone samples over USB with a sync-framed binary protocol and a live matplotlib waveform — high-speed tile acquisition end-to-end.
WASM Blink
Run a precompiled WebAssembly module on a Core. The blink logic lives in WASM bytecode and drives the LED through host imports — with live hot-swap, no reflash.

