Skip to content

Commit

Permalink
Update dependencies in Cargo.toml files
Browse files Browse the repository at this point in the history
  • Loading branch information
yorickdewid committed Jan 26, 2024
1 parent 6335c45 commit dd0dbe1
Show file tree
Hide file tree
Showing 6 changed files with 59 additions and 92 deletions.
128 changes: 45 additions & 83 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Start OpenOCD: `openocd -f openocd.cfg`

Load program via telnet: `program target/thumbv7em-none-eabihf/debug/hcu verify reset`

Load gdb-multiarch: `gdb-multiarch -x openocd.gdb target/thumbv7em-none-eabihf/debug/hcu`
6 changes: 3 additions & 3 deletions hcu/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "hcu"
version = "0.4.8"
version = "0.4.9"
edition = "2021"

[dependencies]
panic-halt = "0.2.0"
systick-monotonic = "1.0.0"
cortex-m-rtic = { version = "1.1.3" }
systick-monotonic = "1.0"
cortex-m-rtic = { version = "1.1.4" }
stm32h7xx-hal = { version = "0.12.2", features = ["stm32h743v", "rt", "can"] }
fdcan = { version = "0.1.0", features = ["fdcan_h7"] }
vecraft = { version = "0.1.0", path = "../vecraft" }
Expand Down
4 changes: 2 additions & 2 deletions m-ecu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ edition = "2021"

[dependencies]
panic-halt = "0.2.0"
systick-monotonic = "1.0.0"
cortex-m-rtic = { version = "1.1.3" }
systick-monotonic = "1.0"
cortex-m-rtic = { version = "1.1.4" }
stm32h7xx-hal = { version = "0.12.2", features = ["stm32h743v", "rt", "can"] }
fdcan = { version = "0.1.0", features = ["fdcan_h7"] }
vecraft = { version = "0.1.0", path = "../vecraft" }
Expand Down
4 changes: 2 additions & 2 deletions v-ecu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ edition = "2021"

[dependencies]
panic-halt = "0.2.0"
systick-monotonic = "1.0.0"
cortex-m-rtic = { version = "1.1.3" }
systick-monotonic = "1.0"
cortex-m-rtic = { version = "1.1.4" }
stm32h7xx-hal = { version = "0.12.2", features = ["stm32h743v", "rt", "can", "usb_hs"] }
fdcan = { version = "0.1.0", features = ["fdcan_h7"] }
vecraft = { version = "0.1.0", path = "../vecraft" }
Expand Down
4 changes: 2 additions & 2 deletions vecraft/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ edition = "2021"

[dependencies]
panic-halt = "0.2.0"
systick-monotonic = "1.0.0"
cortex-m-rtic = { version = "1.1.3" }
systick-monotonic = "1.0"
cortex-m-rtic = { version = "1.1.4" }
stm32h7xx-hal = { version = "0.12.2", features = ["stm32h743v", "rt", "can"] }
fdcan = { version = "0.1.0", features = ["fdcan_h7"] }
j1939 = { git = "https://github.com/Laixer/J1939", features = ["can"] }
Expand Down

0 comments on commit dd0dbe1

Please sign in to comment.