mirror of
https://github.com/italicsjenga/rp-hal-boards.git
synced 2025-01-11 13:01:30 +11:00
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:
parent
cb8dbbf917
commit
8a42d6cf8a
|
@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cortex-m = "0.7.2"
|
cortex-m = "0.7.2"
|
||||||
rp2040-hal = { path = "../../rp2040-hal", version = "0.2.0"}
|
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]
|
[features]
|
||||||
default = ["rt"]
|
default = ["rt"]
|
||||||
|
|
|
@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cortex-m = "0.7.2"
|
cortex-m = "0.7.2"
|
||||||
rp2040-hal = { path = "../../rp2040-hal", version = "0.2.0"}
|
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"
|
embedded-time = "0.12.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
|
|
@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cortex-m = "0.7.2"
|
cortex-m = "0.7.2"
|
||||||
rp2040-hal = { path = "../../rp2040-hal", version = "0.2.0"}
|
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"
|
embedded-time = "0.12.0"
|
||||||
usb-device= "0.2.8"
|
usb-device= "0.2.8"
|
||||||
usbd-serial = "0.1.1"
|
usbd-serial = "0.1.1"
|
||||||
|
|
|
@ -12,8 +12,8 @@ license = "MIT OR Apache-2.0"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cortex-m = "0.7.2"
|
cortex-m = "0.7.2"
|
||||||
rp2040-hal = { path = "../../rp2040-hal", version = "0.2.0"}
|
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-hal = { version="0.2.4", features=["unproven"] }
|
embedded-hal = { version = "0.2.4", features = ["unproven"] }
|
||||||
st7789 = "0.6.1"
|
st7789 = "0.6.1"
|
||||||
display-interface-spi = "0.4.1"
|
display-interface-spi = "0.4.1"
|
||||||
embedded-time = "0.12.0"
|
embedded-time = "0.12.0"
|
||||||
|
|
|
@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cortex-m = "0.7.2"
|
cortex-m = "0.7.2"
|
||||||
rp2040-hal = { path = "../../rp2040-hal", version = "0.2.0"}
|
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]
|
[features]
|
||||||
default = ["rt"]
|
default = ["rt"]
|
||||||
|
|
|
@ -14,14 +14,14 @@ cortex-m = "0.7.2"
|
||||||
embedded-hal = { version = "0.2.5", features = ["unproven"] }
|
embedded-hal = { version = "0.2.5", features = ["unproven"] }
|
||||||
embedded-time = "0.12.0"
|
embedded-time = "0.12.0"
|
||||||
nb = "1.0"
|
nb = "1.0"
|
||||||
rp2040-pac = { git = "https://github.com/rp-rs/rp2040-pac", rev = "0226d2c28e8dca03475d6783cbdf07f535859c23" }
|
rp2040-pac = "0.1.5"
|
||||||
paste = "1.0"
|
paste = "1.0"
|
||||||
void = { version = "1.0.2", default-features = false }
|
void = { version = "1.0.2", default-features = false }
|
||||||
usb-device = "0.2.8"
|
usb-device = "0.2.8"
|
||||||
itertools = { version = "0.10.1", default-features = false }
|
itertools = { version = "0.10.1", default-features = false }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
cortex-m-rt = "0.6.14"
|
cortex-m-rt = "0.7"
|
||||||
panic-halt = "0.2.0"
|
panic-halt = "0.2.0"
|
||||||
rp2040-boot2 = { git = "https://github.com/rp-rs/rp2040-boot2-rs", rev = "67400f600b192e950b58df79ddc9b57ff209ef08" }
|
rp2040-boot2 = { git = "https://github.com/rp-rs/rp2040-boot2-rs", rev = "67400f600b192e950b58df79ddc9b57ff209ef08" }
|
||||||
hd44780-driver = "0.4.0"
|
hd44780-driver = "0.4.0"
|
||||||
|
|
Loading…
Reference in a new issue