Adafruit NeoTrellis M4 Express Board Support Crate

This crate provides a type-safe Rust API for working with the [Adafruit NeoTrellis M4 board].

Adafruit NeoTrellis M4

Board Features

Prerequisites

Uploading an example

Check out the repository for examples:

https://github.com/atsamd-rs/atsamd/tree/master/boards/trellis_m4/examples

Optional trellis_m4 Cargo Features

The following optional hardware drivers can be enabled as cargo features:

To enable them, use the features option when adding a crate dependency to your Cargo.toml:

toml [dependencies] trellis_m4 = { version = "~0.1", features = ["adxl343", "keypad-unproven"] }

Or when running an example: $ cargo hf2 --release --example neopixel_keypad error: target `neopixel_keypad` in package `trellis_m4` requires the features: `keypad-unproven` Consider enabling them by passing, e.g., `--features="keypad-unproven"` Just follow the instructions to add --features like cargo hf2 --release --example neopixel_keypad --features="keypad-unproven" Finished release [optimized + debuginfo] target(s) in 0.09s Searching for a connected device with known vid/pid pair. Trying Ok(Some("Adafruit Industries")) Ok(Some("PyGamer")) Flashing "/Users/User/atsamd/boards/trellis_m4/target/thumbv7em-none-eabihf/release/examples/neopixel_keypad" Finished in 0.167s $

More Examples