Compare commits
3 Commits
va108xx-ha
...
fix-simple
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2f94f5085b
|
||
| 4d085756e6 | |||
|
|
a16dc412e0 |
@@ -20,7 +20,7 @@ path = "../va108xx-hal"
|
|||||||
features = ["defmt"]
|
features = ["defmt"]
|
||||||
|
|
||||||
[dependencies.vorago-reb1]
|
[dependencies.vorago-reb1]
|
||||||
version = "0.8"
|
version = "0.9"
|
||||||
path = "../vorago-reb1"
|
path = "../vorago-reb1"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|||||||
@@ -14,4 +14,4 @@ rtic-monotonics = { version = "2", features = ["cortex-m-systick"] }
|
|||||||
ringbuf = { version = "0.4.7", default-features = false, features = ["portable-atomic"] }
|
ringbuf = { version = "0.4.7", default-features = false, features = ["portable-atomic"] }
|
||||||
|
|
||||||
va108xx-hal = { version = "0.12", path = "../../va108xx-hal" }
|
va108xx-hal = { version = "0.12", path = "../../va108xx-hal" }
|
||||||
vorago-reb1 = { version = "0.8", path = "../../vorago-reb1" }
|
vorago-reb1 = { version = "0.9", path = "../../vorago-reb1" }
|
||||||
|
|||||||
@@ -3,7 +3,6 @@
|
|||||||
#![no_std]
|
#![no_std]
|
||||||
|
|
||||||
use cortex_m_rt::entry;
|
use cortex_m_rt::entry;
|
||||||
use panic_probe as _;
|
|
||||||
use va108xx_hal as _;
|
use va108xx_hal as _;
|
||||||
|
|
||||||
#[entry]
|
#[entry]
|
||||||
@@ -12,3 +11,10 @@ fn main() -> ! {
|
|||||||
cortex_m::asm::nop();
|
cortex_m::asm::nop();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[panic_handler]
|
||||||
|
fn panic(_info: &core::panic::PanicInfo) -> ! {
|
||||||
|
loop {
|
||||||
|
cortex_m::asm::nop();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ path = "../va108xx-hal"
|
|||||||
features = ["defmt"]
|
features = ["defmt"]
|
||||||
|
|
||||||
[dependencies.vorago-reb1]
|
[dependencies.vorago-reb1]
|
||||||
version = "0.8"
|
version = "0.9"
|
||||||
path = "../vorago-reb1"
|
path = "../vorago-reb1"
|
||||||
|
|
||||||
[package.metadata.cargo-machete]
|
[package.metadata.cargo-machete]
|
||||||
|
|||||||
@@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
|
|
||||||
## [unreleased]
|
## [unreleased]
|
||||||
|
|
||||||
|
## [v0.3.0] 2025-09-03
|
||||||
|
|
||||||
|
Bumped allowed va108xx-hal to v0.12
|
||||||
|
|
||||||
## [v0.2.1] 2025-03-07
|
## [v0.2.1] 2025-03-07
|
||||||
|
|
||||||
- Bumped allowed va108xx-hal to v0.11
|
- Bumped allowed va108xx-hal to v0.11
|
||||||
@@ -26,6 +30,7 @@ Docs patch
|
|||||||
|
|
||||||
Initial release
|
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.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
|
[v0.2.0]: https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/compare/va108xx-embassy-v0.1.2...va10xx-embassy-v0.2.0
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ categories = ["aerospace", "embedded", "no-std", "hardware-support"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
vorago-shared-hal = { version = "0.2", features = ["vor1x"] }
|
vorago-shared-hal = { version = "0.2", features = ["vor1x"] }
|
||||||
va108xx-hal = { path = "../va108xx-hal" }
|
va108xx-hal = { version = "0.12" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["irq-oc30-oc31"]
|
default = ["irq-oc30-oc31"]
|
||||||
|
|||||||
@@ -8,9 +8,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
|
|
||||||
## [unreleased]
|
## [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
|
## [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
|
it provides a starting point
|
||||||
- Added ADC base library and example building on the new max116xx-10bit device driver crate
|
- 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
|
[unreleased]: https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/compare/vorago-reb1-v0.9.0...HEAD
|
||||||
[v0.8.2]: https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/compare/vorago-reb1-v0.8.1...vorago-reb1-v0.8.2
|
[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.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.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
|
[v0.7.0]: https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/compare/vorago-reb1-v0.6.0...vorago-reb1-v0.7.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "vorago-reb1"
|
name = "vorago-reb1"
|
||||||
version = "0.8.2"
|
version = "0.9.0"
|
||||||
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
|
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Board Support Crate for the Vorago REB1 development board"
|
description = "Board Support Crate for the Vorago REB1 development board"
|
||||||
@@ -19,7 +19,7 @@ bitbybit = "1.3"
|
|||||||
arbitrary-int = "2"
|
arbitrary-int = "2"
|
||||||
max116xx-10bit = "0.3"
|
max116xx-10bit = "0.3"
|
||||||
|
|
||||||
va108xx-hal = { version = "0.12", path = "../va108xx-hal", features = ["rt"] }
|
va108xx-hal = { version = "0.12", features = ["rt"] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
rt = ["va108xx-hal/rt"]
|
rt = ["va108xx-hal/rt"]
|
||||||
|
|||||||
Reference in New Issue
Block a user