3 Commits

Author SHA1 Message Date
Robin Mueller
2f94f5085b fix simple example 2025-10-27 22:18:57 +01:00
4d085756e6 Merge pull request 'prepare va108xx-embassy and vorago-reb1 release' (#80) from prepare-embassy-bsp-release into main
Reviewed-on: #80
2025-09-03 11:33:56 +02:00
Robin Mueller
a16dc412e0 prepare va108xx-embassy and vorago-reb1 release 2025-09-03 11:30:18 +02:00
8 changed files with 23 additions and 12 deletions

View File

@@ -20,7 +20,7 @@ path = "../va108xx-hal"
features = ["defmt"]
[dependencies.vorago-reb1]
version = "0.8"
version = "0.9"
path = "../vorago-reb1"
[features]

View File

@@ -14,4 +14,4 @@ rtic-monotonics = { version = "2", features = ["cortex-m-systick"] }
ringbuf = { version = "0.4.7", default-features = false, features = ["portable-atomic"] }
va108xx-hal = { version = "0.12", path = "../../va108xx-hal" }
vorago-reb1 = { version = "0.8", path = "../../vorago-reb1" }
vorago-reb1 = { version = "0.9", path = "../../vorago-reb1" }

View File

@@ -3,7 +3,6 @@
#![no_std]
use cortex_m_rt::entry;
use panic_probe as _;
use va108xx_hal as _;
#[entry]
@@ -12,3 +11,10 @@ fn main() -> ! {
cortex_m::asm::nop();
}
}
#[panic_handler]
fn panic(_info: &core::panic::PanicInfo) -> ! {
loop {
cortex_m::asm::nop();
}
}

View File

@@ -28,7 +28,7 @@ path = "../va108xx-hal"
features = ["defmt"]
[dependencies.vorago-reb1]
version = "0.8"
version = "0.9"
path = "../vorago-reb1"
[package.metadata.cargo-machete]

View File

@@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [unreleased]
## [v0.3.0] 2025-09-03
Bumped allowed va108xx-hal to v0.12
## [v0.2.1] 2025-03-07
- Bumped allowed va108xx-hal to v0.11
@@ -26,6 +30,7 @@ Docs patch
Initial release
[unreleased]: https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/compare/va108xx-embassy-v0.2.1...HEAD
[unreleased]: https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/compare/va108xx-embassy-v0.3.0...HEAD
[v0.3.0]: https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/compare/va108xx-embassy-v0.2.1...va10xx-embassy-v0.3.0
[v0.2.1]: https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/compare/va108xx-embassy-v0.2.0...va10xx-embassy-v0.2.1
[v0.2.0]: https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/compare/va108xx-embassy-v0.1.2...va10xx-embassy-v0.2.0

View File

@@ -12,7 +12,7 @@ categories = ["aerospace", "embedded", "no-std", "hardware-support"]
[dependencies]
vorago-shared-hal = { version = "0.2", features = ["vor1x"] }
va108xx-hal = { path = "../va108xx-hal" }
va108xx-hal = { version = "0.12" }
[features]
default = ["irq-oc30-oc31"]

View File

@@ -8,9 +8,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [unreleased]
## [v0.8.2] 2025-09-03
## [v0.9.0] 2025-09-03
- Bumped allowed `va108xx-hal` dependency to 0.12
- Bumped `va108xx-hal` dependency to 0.12
## [v0.8.1] 2025-03-07
@@ -66,8 +66,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
it provides a starting point
- Added ADC base library and example building on the new max116xx-10bit device driver crate
[unreleased]: https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/compare/vorago-reb1-v0.8.2...HEAD
[v0.8.2]: https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/compare/vorago-reb1-v0.8.1...vorago-reb1-v0.8.2
[unreleased]: https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/compare/vorago-reb1-v0.9.0...HEAD
[v0.9.0]: https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/compare/vorago-reb1-v0.8.1...vorago-reb1-v0.9.0
[v0.8.1]: https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/compare/vorago-reb1-v0.8.0...vorago-reb1-v0.8.1
[v0.8.0]: https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/compare/vorago-reb1-v0.7.0...vorago-reb1-v0.8.0
[v0.7.0]: https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/compare/vorago-reb1-v0.6.0...vorago-reb1-v0.7.0

View File

@@ -1,6 +1,6 @@
[package]
name = "vorago-reb1"
version = "0.8.2"
version = "0.9.0"
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
edition = "2021"
description = "Board Support Crate for the Vorago REB1 development board"
@@ -19,7 +19,7 @@ bitbybit = "1.3"
arbitrary-int = "2"
max116xx-10bit = "0.3"
va108xx-hal = { version = "0.12", path = "../va108xx-hal", features = ["rt"] }
va108xx-hal = { version = "0.12", features = ["rt"] }
[features]
rt = ["va108xx-hal/rt"]