vexide-startup 0.1.1

Support code for V5 Brain user program booting
Documentation

This crate provides a working entrypoint for the VEX V5 Brain.

Usage

Your entrypoint function should be an async function that takes a single argument of type Peripherals. It can return any type implementing Termination.

#[vexide::main]
async fn main(peripherals: Peripherals) { ... }