Robin Mueller
d2369767b7
- Add basic LED BSP - Moved generic examples to the HAL - Updated rust edition to 2021 - Updated README to provide full instructions for flashing and building - Added jlink.gdb file to command line flashing
25 lines
739 B
TOML
25 lines
739 B
TOML
[package]
|
|
name = "vorago-reb1"
|
|
version = "0.1.0"
|
|
authors = ["Robin Mueller <robin.mueller.m@gmail.com>"]
|
|
edition = "2021"
|
|
description = "Board Support Crate for the Vorago REB1 development board"
|
|
homepage = "https://github.com/robamu/vorago-reb1-rs"
|
|
repository = "https://github.com/robamu/vorago-reb1-rs"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["no-std", "reb1", "cortex-m", "vorago", "va108xx"]
|
|
categories = ["embedded", "no-std", "hardware-support"]
|
|
|
|
[dependencies]
|
|
|
|
cortex-m = "0.7.3"
|
|
cortex-m-rt = "0.7.0"
|
|
panic-halt = "0.2"
|
|
embedded-hal = "0.2.6"
|
|
panic-rtt-target = { version = "0.1", features = ["cortex-m"] }
|
|
rtt-target = { version = "0.3", features = ["cortex-m"] }
|
|
|
|
[dependencies.va108xx-hal]
|
|
version = "0.1"
|
|
features = ["rt"]
|