This repository has been archived on 2024-06-16. You can view files and clone it, but cannot push or open issues or pull requests.
vorago-reb1/Cargo.toml
Robin Mueller 4160df667f
Completed BSP core features
- Added basic accelerometer example. Board in not populated so it is not complete, but it provides a starting point
- Added ADC base library and example building on the new `max116xx-10bit` device driver crate
2021-12-12 13:46:45 +01:00

47 lines
1.1 KiB
TOML

[package]
name = "vorago-reb1"
version = "0.2.2"
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"
embedded-hal = "0.2.6"
[dependencies.max116xx-10bit]
path = "../max116xx-10bit"
[dependencies.va108xx-hal]
path = "../va108xx-hal"
# version = "0.4.1"
features = ["rt"]
[features]
rt = ["va108xx-hal/rt"]
[dev-dependencies]
cortex-m-rtic = "0.6.0-rc.4"
panic-rtt-target = { version = "0.1", features = ["cortex-m"] }
rtt-target = { version = "0.3", features = ["cortex-m"] }
panic-halt = "0.2"
nb = "1.0.0"
[[example]]
name = "blinky-button-rtic"
required-features = ["rt"]
[[example]]
name = "adxl343-accelerometer"
required-features = ["rt"]
[[example]]
name = "max11619-adc"
required-features = ["rt", "nb"]