mirror of
https://github.com/italicsjenga/rp-hal-boards.git
synced 2024-12-24 05:01:31 +11:00
0f33d2b8a6
Without this change, building the vector_table example fails when building from the rp2040-hal directory: ``` rp2040-hal$ cargo build --release --example vector_table Compiling rp2040-hal v0.5.0 (rp2040-hal) error[E0432]: unresolved import `pac::interrupt` --> rp2040-hal/examples/vector_table.rs:30:5 | 30 | use pac::interrupt; | ^^^^^--------- | | | | | help: a similar name exists in the module (notice the capitalization): `Interrupt` | no `interrupt` in the root error: cannot determine resolution for the attribute macro `interrupt` --> rp2040-hal/examples/vector_table.rs:148:3 | 148 | #[interrupt] | ^^^^^^^^^ | = note: import resolution is stuck, try simplifying macro imports ```
58 lines
1.6 KiB
TOML
58 lines
1.6 KiB
TOML
[package]
|
|
name = "rp2040-hal"
|
|
version = "0.5.0"
|
|
authors = ["The rp-rs Developers"]
|
|
edition = "2018"
|
|
homepage = "https://github.com/rp-rs/rp-hal"
|
|
description = "A Rust Embeded-HAL impl for the rp2040 microcontroller"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
cortex-m = "0.7.2"
|
|
cortex-m-rt = ">=0.6.15,<0.8"
|
|
embedded-hal = { version = "0.2.5", features = ["unproven"] }
|
|
eh1_0_alpha = { version = "=1.0.0-alpha.8", package="embedded-hal", optional=true }
|
|
embedded-time = "0.12.0"
|
|
itertools = { version = "0.10.1", default-features = false }
|
|
nb = "1.0"
|
|
rp2040-pac = "0.3.0"
|
|
paste = "1.0"
|
|
pio = "0.2.0"
|
|
rp2040-hal-macros = { version = "0.1.0", path = "../rp2040-hal-macros" }
|
|
usb-device = "0.2.9"
|
|
vcell = "0.1"
|
|
void = { version = "1.0.2", default-features = false }
|
|
rand_core = "0.6.3"
|
|
critical-section = { version = "0.2.4", features = ["custom-impl"] }
|
|
|
|
futures = { version = "0.3", default-features = false, optional = true }
|
|
chrono = { version = "0.4", default-features = false, optional = true }
|
|
|
|
defmt = { version = ">=0.2.0, <0.4", optional = true }
|
|
|
|
[dev-dependencies]
|
|
cortex-m-rt = "0.7"
|
|
panic-halt = "0.2.0"
|
|
rp2040-boot2 = "0.2.0"
|
|
hd44780-driver = "0.4.0"
|
|
pio-proc = "0.2.0"
|
|
dht-sensor = "0.2.1"
|
|
|
|
[features]
|
|
rt = ["rp2040-pac/rt"]
|
|
rom-func-cache = []
|
|
disable-intrinsics = []
|
|
rom-v2-intrinsics = []
|
|
|
|
[[example]]
|
|
# irq example uses cortex-m-rt::interrupt, need rt feature for that
|
|
name = "gpio_irq_example"
|
|
required-features = ["rt"]
|
|
|
|
[[example]]
|
|
# vector_table example uses cortex-m-rt::interrupt, need rt feature for that
|
|
name = "vector_table"
|
|
required-features = ["rt"]
|