This repository has been archived on 2024-06-16. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
vorago-reb1/Cargo.toml
Robin Mueller 4ffbd6c7a4 Added I2C / Temperature Sensor example
- Example using the on-board ADT75 I2C temperature sensor
- Bump HAL version to use new I2C library
2021-12-02 12:15:28 +01:00

26 lines
760 B
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.va108xx-hal]
version = "0.2.2"
features = ["rt"]
[dev-dependencies]
panic-rtt-target = { version = "0.1", features = ["cortex-m"] }
rtt-target = { version = "0.3", features = ["cortex-m"] }
panic-halt = "0.2"