Update pac so we can use rt 0.7 (#107)

* Update pac so we can use rt 0.7

* Update pac in all board crates
This commit is contained in:
Jonathan Nilsson 2021-09-15 07:07:25 +02:00 committed by GitHub
parent cb8dbbf917
commit 8a42d6cf8a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 8 additions and 8 deletions

View file

@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0"
[dependencies]
cortex-m = "0.7.2"
rp2040-hal = { path = "../../rp2040-hal", version = "0.2.0"}
cortex-m-rt = { version = "0.6.14", optional = true }
cortex-m-rt = { version = "0.7", optional = true }
[features]
default = ["rt"]

View file

@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0"
[dependencies]
cortex-m = "0.7.2"
rp2040-hal = { path = "../../rp2040-hal", version = "0.2.0"}
cortex-m-rt = { version = "0.6.14", optional = true }
cortex-m-rt = { version = "0.7", optional = true }
embedded-time = "0.12.0"
[dev-dependencies]

View file

@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0"
[dependencies]
cortex-m = "0.7.2"
rp2040-hal = { path = "../../rp2040-hal", version = "0.2.0"}
cortex-m-rt = { version = "0.6.14", optional = true }
cortex-m-rt = { version = "0.7", optional = true }
embedded-time = "0.12.0"
usb-device= "0.2.8"
usbd-serial = "0.1.1"

View file

@ -12,8 +12,8 @@ license = "MIT OR Apache-2.0"
[dependencies]
cortex-m = "0.7.2"
rp2040-hal = { path = "../../rp2040-hal", version = "0.2.0"}
cortex-m-rt = { version="0.6.14", optional=true }
embedded-hal = { version="0.2.4", features=["unproven"] }
cortex-m-rt = { version = "0.7", optional = true }
embedded-hal = { version = "0.2.4", features = ["unproven"] }
st7789 = "0.6.1"
display-interface-spi = "0.4.1"
embedded-time = "0.12.0"

View file

@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0"
[dependencies]
cortex-m = "0.7.2"
rp2040-hal = { path = "../../rp2040-hal", version = "0.2.0"}
cortex-m-rt = { version = "0.6.14", optional = true }
cortex-m-rt = { version = "0.7", optional = true }
[features]
default = ["rt"]

View file

@ -14,14 +14,14 @@ cortex-m = "0.7.2"
embedded-hal = { version = "0.2.5", features = ["unproven"] }
embedded-time = "0.12.0"
nb = "1.0"
rp2040-pac = { git = "https://github.com/rp-rs/rp2040-pac", rev = "0226d2c28e8dca03475d6783cbdf07f535859c23" }
rp2040-pac = "0.1.5"
paste = "1.0"
void = { version = "1.0.2", default-features = false }
usb-device = "0.2.8"
itertools = { version = "0.10.1", default-features = false }
[dev-dependencies]
cortex-m-rt = "0.6.14"
cortex-m-rt = "0.7"
panic-halt = "0.2.0"
rp2040-boot2 = { git = "https://github.com/rp-rs/rp2040-boot2-rs", rev = "67400f600b192e950b58df79ddc9b57ff209ef08" }
hd44780-driver = "0.4.0"