Use published PACs for all HALs (#996)

This commit is contained in:
Jesse Braham 2023-12-05 01:07:44 -08:00 committed by GitHub
parent 810d849dcd
commit 39dae9232f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 10 deletions

View File

@ -64,13 +64,13 @@ ufmt-write = { version = "0.1.0", optional = true }
# IMPORTANT: # IMPORTANT:
# Each supported device MUST have its PAC included below along with a # Each supported device MUST have its PAC included below along with a
# corresponding feature. # corresponding feature.
esp32 = { 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 = { git = "https://github.com/esp-rs/esp-pacs", rev = "8bcee50", features = ["critical-section"], optional = true } esp32c2 = { version = "0.16.0", features = ["critical-section"], optional = true }
esp32c3 = { git = "https://github.com/esp-rs/esp-pacs", rev = "8bcee50", features = ["critical-section"], optional = true } esp32c3 = { version = "0.19.0", features = ["critical-section"], optional = true }
esp32c6 = { git = "https://github.com/esp-rs/esp-pacs", rev = "8bcee50", features = ["critical-section"], optional = true } esp32c6 = { version = "0.9.0", features = ["critical-section"], optional = true }
esp32h2 = { git = "https://github.com/esp-rs/esp-pacs", rev = "8bcee50", features = ["critical-section"], optional = true } esp32h2 = { version = "0.5.0", features = ["critical-section"], optional = true }
esp32s2 = { git = "https://github.com/esp-rs/esp-pacs", rev = "8bcee50", features = ["critical-section"], optional = true } esp32s2 = { version = "0.19.0", features = ["critical-section"], optional = true }
esp32s3 = { git = "https://github.com/esp-rs/esp-pacs", rev = "8bcee50", features = ["critical-section"], optional = true } esp32s3 = { version = "0.23.0", features = ["critical-section"], optional = true }
[build-dependencies] [build-dependencies]
basic-toml = "0.1.7" basic-toml = "0.1.7"

View File

@ -25,8 +25,8 @@ categories = [
embedded-hal = { version = "0.2.7", features = ["unproven"] } embedded-hal = { version = "0.2.7", features = ["unproven"] }
procmacros = { package = "esp-hal-procmacros", path = "../esp-hal-procmacros" } procmacros = { package = "esp-hal-procmacros", path = "../esp-hal-procmacros" }
paste = "1.0.14" paste = "1.0.14"
esp32s2-ulp = { git = "https://github.com/esp-rs/esp-pacs", rev = "bb24582", optional = true } esp32s2-ulp = { version = "0.1.0", optional = true }
esp32s3-ulp = { git = "https://github.com/esp-rs/esp-pacs", rev = "bb24582", optional = true } esp32s3-ulp = { version = "0.1.0", optional = true }
[dev-dependencies] [dev-dependencies]
panic-halt = "0.2.0" panic-halt = "0.2.0"

View File

@ -23,7 +23,7 @@ categories = [
[dependencies] [dependencies]
critical-section = { version = "1.1.2", features = ["restore-state-u8"] } critical-section = { version = "1.1.2", features = ["restore-state-u8"] }
embedded-hal = { version = "0.2.7", features = ["unproven"] } 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"] } procmacros = { package = "esp-hal-procmacros", path = "../esp-hal-procmacros", features = ["esp32c6-lp"] }
riscv = "0.10.1" riscv = "0.10.1"
paste = "1.0.14" paste = "1.0.14"