From 2706dbf46182bf23f209564f314d4bdfe609b27c Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Fri, 7 Mar 2025 17:25:34 +0100 Subject: [PATCH] bump dependencies --- bootloader/Cargo.toml | 2 +- examples/embassy/Cargo.toml | 4 ++-- examples/rtic/Cargo.toml | 2 +- examples/simple/Cargo.toml | 2 +- flashloader/Cargo.toml | 2 +- flashloader/src/main.rs | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/bootloader/Cargo.toml b/bootloader/Cargo.toml index fb27e12..51cb0a3 100644 --- a/bootloader/Cargo.toml +++ b/bootloader/Cargo.toml @@ -14,7 +14,7 @@ crc = "3" static_assertions = "1" [dependencies.va416xx-hal] -path = "../va416xx-hal" +version = "0.5" features = ["va41630"] [features] diff --git a/examples/embassy/Cargo.toml b/examples/embassy/Cargo.toml index 8f685ee..e586a19 100644 --- a/examples/embassy/Cargo.toml +++ b/examples/embassy/Cargo.toml @@ -28,8 +28,8 @@ embassy-executor = { version = "0.7", features = [ "executor-interrupt" ]} -va416xx-hal = { version = "0.5", path = "../../va416xx-hal" } -va416xx-embassy = { version = "0.1", default-features = false, path = "../../va416xx-embassy" } +va416xx-hal = { version = "0.5" } +va416xx-embassy = { version = "0.1", default-features = false } [features] default = ["ticks-hz-1_000", "va416xx-embassy/irq-tim14-tim15"] diff --git a/examples/rtic/Cargo.toml b/examples/rtic/Cargo.toml index c35d7da..7389da0 100644 --- a/examples/rtic/Cargo.toml +++ b/examples/rtic/Cargo.toml @@ -11,7 +11,7 @@ rtt-target = { version = "0.6" } rtic-sync = { version = "1.3", features = ["defmt-03"] } panic-rtt-target = { version = "0.2" } -va416xx-hal = { version = "0.5", features = ["va41630"], path = "../../va416xx-hal" } +va416xx-hal = { version = "0.5", features = ["va41630"] } [dependencies.rtic] version = "2" diff --git a/examples/simple/Cargo.toml b/examples/simple/Cargo.toml index 3b0e540..24f5294 100644 --- a/examples/simple/Cargo.toml +++ b/examples/simple/Cargo.toml @@ -16,7 +16,7 @@ embedded-io = "0.6" panic-halt = "1" accelerometer = "0.12" -va416xx-hal = { version = "0.5", features = ["va41630"], path = "../../va416xx-hal" } +va416xx-hal = { version = "0.5", features = ["va41630"] } [dependencies.vorago-peb1] path = "../../vorago-peb1" diff --git a/flashloader/Cargo.toml b/flashloader/Cargo.toml index 8674f95..db21a8d 100644 --- a/flashloader/Cargo.toml +++ b/flashloader/Cargo.toml @@ -22,7 +22,7 @@ once_cell = { version = "1", default-features = false, features = ["critical-sec spacepackets = { version = "0.13", default-features = false } cobs = { version = "0.3", default-features = false } -va416xx-hal = { version = "0.4", features = ["va41630"] } +va416xx-hal = { version = "0.5", features = ["va41630"] } rtic = { version = "2", features = ["thumbv7-backend"] } rtic-monotonics = { version = "2", features = ["cortex-m-systick"] } diff --git a/flashloader/src/main.rs b/flashloader/src/main.rs index df3e0a9..3825ae2 100644 --- a/flashloader/src/main.rs +++ b/flashloader/src/main.rs @@ -256,7 +256,7 @@ mod app { match cx .local .uart_rx - .irq_handler_max_size_or_timeout_based(cx.local.rx_context, cx.local.rx_buf) + .on_interrupt_max_size_or_timeout_based(cx.local.rx_context, cx.local.rx_buf) { Ok(result) => { if RX_DEBUGGING {