Skip to content

Commit

Permalink
a smaller set of fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
robamu committed Jun 16, 2024
1 parent 42c7f0d commit 0907ab8
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Vorago VA108xx Rust Support
=========

This crate collection provided support to write Rust applications for the VA108XX family
This crate collection provides support to write Rust applications for the VA108XX family
of devices.

## List of crates
Expand Down
4 changes: 4 additions & 0 deletions va108xx-hal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,7 @@ default-features = false
[features]
default = ["rt"]
rt = ["va108xx/rt"]

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docs_rs", "--generate-link-to-definition"]
1 change: 1 addition & 0 deletions va108xx-hal/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![no_std]
#![cfg_attr(docs_rs, feature(doc_auto_cfg))]

pub use va108xx;
pub use va108xx as pac;
Expand Down
4 changes: 4 additions & 0 deletions va108xx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,7 @@ version = ">=0.6.15,<0.8"

[features]
rt = ["cortex-m-rt/device"]

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docs_rs", "--generate-link-to-definition"]
1 change: 1 addition & 0 deletions va108xx/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ svd2rust release can be generated by cloning the svd2rust [repository], checking
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![no_std]
#![cfg_attr(docs_rs, feature(doc_auto_cfg))]
use core::marker::PhantomData;
use core::ops::Deref;
#[doc = r"Number available in the NVIC for configuring priority"]
Expand Down
6 changes: 4 additions & 2 deletions vorago-reb1/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ dummy-pin = "1"

[dependencies.max116xx-10bit]
version = "0.3"
git = "https://egit.irs.uni-stuttgart.de/rust/max116xx-10bit"
branch = "bump-embedded-hal"

[dependencies.va108xx-hal]
version = "0.6"
Expand All @@ -39,3 +37,7 @@ version = "0.5"

[dev-dependencies.panic-rtt-target]
version = "0.1"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docs_rs", "--generate-link-to-definition"]
1 change: 1 addition & 0 deletions vorago-reb1/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![no_std]
#![cfg_attr(docs_rs, feature(doc_auto_cfg))]

pub mod button;
pub mod leds;
Expand Down

0 comments on commit 0907ab8

Please sign in to comment.