From a9f2e6dceee241d16d4134d1fc6027e3bcdb998d Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Thu, 13 Feb 2025 15:25:01 +0100 Subject: [PATCH 1/2] use released package versions --- bootloader/Cargo.toml | 6 ++++-- examples/embassy/Cargo.toml | 2 +- flashloader/Cargo.toml | 6 ++++-- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/bootloader/Cargo.toml b/bootloader/Cargo.toml index b03716f..103a97d 100644 --- a/bootloader/Cargo.toml +++ b/bootloader/Cargo.toml @@ -15,10 +15,12 @@ num_enum = { version = "0.7", default-features = false } static_assertions = "1" [dependencies.va108xx-hal] -path = "../va108xx-hal" +version = "0.9" +# path = "../va108xx-hal" [dependencies.vorago-reb1] -path = "../vorago-reb1" +version = "0.7" +# path = "../vorago-reb1" [features] default = [] diff --git a/examples/embassy/Cargo.toml b/examples/embassy/Cargo.toml index 2790f75..3589c24 100644 --- a/examples/embassy/Cargo.toml +++ b/examples/embassy/Cargo.toml @@ -28,7 +28,7 @@ embassy-executor = { version = "0.7", features = [ ]} va108xx-hal = "0.9" -va108xx-embassy = { path = "../../va108xx-embassy", default-features = false } +va108xx-embassy = "0.1" [features] default = ["ticks-hz-1_000", "va108xx-embassy/irq-oc30-oc31"] diff --git a/flashloader/Cargo.toml b/flashloader/Cargo.toml index 439fe5c..9d930ea 100644 --- a/flashloader/Cargo.toml +++ b/flashloader/Cargo.toml @@ -29,7 +29,9 @@ rtic-monotonics = { version = "2", features = ["cortex-m-systick"] } rtic-sync = {version = "1", features = ["defmt-03"]} [dependencies.va108xx-hal] -path = "../va108xx-hal" +version = "0.9" +# path = "../va108xx-hal" [dependencies.vorago-reb1] -path = "../vorago-reb1" +version = "0.7" +# path = "../vorago-reb1" -- 2.43.0 From 93b67a47958834b3fb7e9b70b0fd001b91190ddb Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Thu, 13 Feb 2025 15:26:24 +0100 Subject: [PATCH 2/2] README update --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index e328415..96e9142 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,8 @@ This workspace contains the following released crates: crate containing basic low-level register definition. - The [`va108xx-hal`](https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/src/branch/main/va108xx-hal) HAL crate containing higher-level abstractions on top of the PAC register crate. +- The [`va108xx-embassy`](https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/src/branch/main/va108xx-embassy) + crate containing support for running the embassy-rs RTOS. - The [`vorago-reb1`](https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/src/branch/main/vorago-reb1) BSP crate containing support for the REB1 development board. -- 2.43.0