Skip to content

Commit

Permalink
fix Cargo.toml for stm32f4xx changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
pdgilbert committed Dec 12, 2024
1 parent 30682c8 commit 8a49a4e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions dev-testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ edition = "2021"
# hal versions using git

stm32f0xx-hal = { git = "https://github.com/stm32-rs/stm32f0xx-hal", optional = true }
#stm32f1xx-hal = { git = "https://github.com/stm32-rs/stm32f1xx-hal", optional = true }
stm32f1xx-hal = { git = "https://github.com/stm32-rs/stm32f1xx-hal", optional = true, branch = "ehal" }
stm32f1xx-hal = { git = "https://github.com/stm32-rs/stm32f1xx-hal", optional = true }
stm32f3xx-hal = { git = "https://github.com/stm32-rs/stm32f3xx-hal", optional = true }
#stm32f4xx-hal = { version = "0.20.0", optional = true }
stm32f4xx-hal = { git = "https://github.com/stm32-rs/stm32f4xx-hal", optional = true }
Expand Down Expand Up @@ -243,7 +242,7 @@ panic-halt = { version = ">=0.2.0" }
# rtic does not work on stm32f0xx and stm32l0xx devices ??
#stm32f0xx = ["stm32f0xx-hal/rt" , "shared-bus-rtic"]
stm32f0xx = ["stm32f0xx-hal/rt", "rtic", "rtic-monotonics" ]
stm32f1xx = ["stm32f1xx-hal/rt", "rtic", "rtic-monotonics" ]
stm32f1xx = ["stm32f1xx-hal", "rtic", "rtic-monotonics" ]
stm32f3xx = ["stm32f3xx-hal/rt", "rtic", "rtic-monotonics" ]
#stm32f4xx = ["stm32f4xx-hal/rt", "rtic", "dwt-systick-monotonic"]
stm32f4xx = ["stm32f4xx-hal", "rtic", "rtic-monotonics", "rtic-sync" ]
Expand Down

0 comments on commit 8a49a4e

Please sign in to comment.