diff --git a/firmware/faderboard/Cargo.lock b/firmware/faderboard/Cargo.lock index 9736021..ad76978 100644 --- a/firmware/faderboard/Cargo.lock +++ b/firmware/faderboard/Cargo.lock @@ -280,8 +280,7 @@ dependencies = [ [[package]] name = "stm32f0xx-hal" version = "0.18.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79544d457fe9a119c6fd02f0a16b8c20f39472b03199aac0a307d871a7015ad8" +source = "git+https://github.com/lujoga/stm32f0xx-hal.git?branch=v0.18.0-backports#3984f7e46f574cce122dfdf05353fe9126ac47d6" dependencies = [ "bare-metal 1.0.0", "bxcan", diff --git a/firmware/faderboard/Cargo.toml b/firmware/faderboard/Cargo.toml index 99ffa58..c8b9519 100644 --- a/firmware/faderboard/Cargo.toml +++ b/firmware/faderboard/Cargo.toml @@ -9,6 +9,6 @@ edition = "2021" cortex-m = "0.7.7" cortex-m-rt = "0.7.3" panic-halt = "0.2.0" -stm32f0xx-hal = { version = "0.18.0", features = ["rt", "stm32f072", "stm32-usbd"] } +stm32f0xx-hal = { git = "https://github.com/lujoga/stm32f0xx-hal.git", branch = "v0.18.0-backports", features = ["rt", "stm32f072", "stm32-usbd"] } usb-device = "0.3.2" usbd-hid = "0.7.0"