Skip to content

Commit

Permalink
Use published PACs for all HALs (#996)
Browse files Browse the repository at this point in the history
  • Loading branch information
jessebraham authored Dec 5, 2023
1 parent 810d849 commit 39dae92
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions esp-hal-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,13 @@ ufmt-write = { version = "0.1.0", optional = true }
# IMPORTANT:
# Each supported device MUST have its PAC included below along with a
# corresponding feature.
esp32 = { git = "https://github.com/esp-rs/esp-pacs", rev = "8bcee50", features = ["critical-section"], optional = true }
esp32c2 = { git = "https://github.com/esp-rs/esp-pacs", rev = "8bcee50", features = ["critical-section"], optional = true }
esp32c3 = { git = "https://github.com/esp-rs/esp-pacs", rev = "8bcee50", features = ["critical-section"], optional = true }
esp32c6 = { git = "https://github.com/esp-rs/esp-pacs", rev = "8bcee50", features = ["critical-section"], optional = true }
esp32h2 = { git = "https://github.com/esp-rs/esp-pacs", rev = "8bcee50", features = ["critical-section"], optional = true }
esp32s2 = { git = "https://github.com/esp-rs/esp-pacs", rev = "8bcee50", features = ["critical-section"], optional = true }
esp32s3 = { git = "https://github.com/esp-rs/esp-pacs", rev = "8bcee50", features = ["critical-section"], optional = true }
esp32 = { version = "0.28.0", features = ["critical-section"], optional = true }
esp32c2 = { version = "0.16.0", features = ["critical-section"], optional = true }
esp32c3 = { version = "0.19.0", features = ["critical-section"], optional = true }
esp32c6 = { version = "0.9.0", features = ["critical-section"], optional = true }
esp32h2 = { version = "0.5.0", features = ["critical-section"], optional = true }
esp32s2 = { version = "0.19.0", features = ["critical-section"], optional = true }
esp32s3 = { version = "0.23.0", features = ["critical-section"], optional = true }

[build-dependencies]
basic-toml = "0.1.7"
Expand Down
4 changes: 2 additions & 2 deletions esp-ulp-riscv-hal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ categories = [
embedded-hal = { version = "0.2.7", features = ["unproven"] }
procmacros = { package = "esp-hal-procmacros", path = "../esp-hal-procmacros" }
paste = "1.0.14"
esp32s2-ulp = { git = "https://github.com/esp-rs/esp-pacs", rev = "bb24582", optional = true }
esp32s3-ulp = { git = "https://github.com/esp-rs/esp-pacs", rev = "bb24582", optional = true }
esp32s2-ulp = { version = "0.1.0", optional = true }
esp32s3-ulp = { version = "0.1.0", optional = true }

[dev-dependencies]
panic-halt = "0.2.0"
Expand Down
2 changes: 1 addition & 1 deletion esp32c6-lp-hal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ categories = [
[dependencies]
critical-section = { version = "1.1.2", features = ["restore-state-u8"] }
embedded-hal = { version = "0.2.7", features = ["unproven"] }
esp32c6-lp = { git = "https://github.com/esp-rs/esp-pacs", rev = "5706943", features = ["critical-section"] }
esp32c6-lp = { version = "0.1.0", features = ["critical-section"] }
procmacros = { package = "esp-hal-procmacros", path = "../esp-hal-procmacros", features = ["esp32c6-lp"] }
riscv = "0.10.1"
paste = "1.0.14"
Expand Down

0 comments on commit 39dae92

Please sign in to comment.