aboutsummaryrefslogtreecommitdiff
path: root/tests/rp/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/rp/Cargo.toml')
-rw-r--r--tests/rp/Cargo.toml31
1 files changed, 30 insertions, 1 deletions
diff --git a/tests/rp/Cargo.toml b/tests/rp/Cargo.toml
index 3d6cd6ab8..7b6fb24f2 100644
--- a/tests/rp/Cargo.toml
+++ b/tests/rp/Cargo.toml
@@ -4,13 +4,18 @@ name = "embassy-rp-tests"
4version = "0.1.0" 4version = "0.1.0"
5license = "MIT OR Apache-2.0" 5license = "MIT OR Apache-2.0"
6 6
7[features]
8rp2040 = ["embassy-rp/rp2040"]
9rp235xa = ["embassy-rp/rp235xa"]
10rp235xb = ["embassy-rp/rp235xb"]
11
7[dependencies] 12[dependencies]
8teleprobe-meta = "1.1" 13teleprobe-meta = "1.1"
9 14
10embassy-sync = { version = "0.6.2", path = "../../embassy-sync", features = ["defmt"] } 15embassy-sync = { version = "0.6.2", path = "../../embassy-sync", features = ["defmt"] }
11embassy-executor = { version = "0.7.0", path = "../../embassy-executor", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "defmt"] } 16embassy-executor = { version = "0.7.0", path = "../../embassy-executor", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "defmt"] }
12embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", ] } 17embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", ] }
13embassy-rp = { version = "0.3.0", path = "../../embassy-rp", features = [ "defmt", "unstable-pac", "time-driver", "critical-section-impl", "intrinsics", "rom-v2-intrinsics", "run-from-ram", "rp2040"] } 18embassy-rp = { version = "0.3.0", path = "../../embassy-rp", features = [ "defmt", "unstable-pac", "time-driver", "critical-section-impl", "intrinsics", "rom-v2-intrinsics", "run-from-ram"] }
14embassy-futures = { version = "0.1.0", path = "../../embassy-futures" } 19embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
15embassy-net = { version = "0.7.0", path = "../../embassy-net", features = ["defmt", "tcp", "udp", "dhcpv4", "medium-ethernet"] } 20embassy-net = { version = "0.7.0", path = "../../embassy-net", features = ["defmt", "tcp", "udp", "dhcpv4", "medium-ethernet"] }
16embassy-net-wiznet = { version = "0.2.0", path = "../../embassy-net-wiznet", features = ["defmt"] } 21embassy-net-wiznet = { version = "0.2.0", path = "../../embassy-net-wiznet", features = ["defmt"] }
@@ -35,6 +40,30 @@ static_cell = "2"
35portable-atomic = { version = "1.5", features = ["critical-section"] } 40portable-atomic = { version = "1.5", features = ["critical-section"] }
36rand = { version = "0.8.5", default-features = false } 41rand = { version = "0.8.5", default-features = false }
37 42
43# bootsel not currently supported on 2350
44[[bin]]
45name = "bootsel"
46path = "src/bin/bootsel.rs"
47required-features = [ "rp2040",]
48
49# 2350 devboard isn't a W
50[[bin]]
51name = "cyw43-perf"
52path = "src/bin/cyw43-perf.rs"
53required-features = [ "rp2040",]
54
55# Eth test only for the w5100s-evb-pico
56[[bin]]
57name = "ethernet_w5100s_perf"
58path = "src/bin/ethernet_w5100s_perf.rs"
59required-features = [ "rp2040",]
60
61# Float intrinsics are only relevant for the 2040
62[[bin]]
63name = "float"
64path = "src/bin/float.rs"
65required-features = [ "rp2040",]
66
38[profile.dev] 67[profile.dev]
39debug = 2 68debug = 2
40debug-assertions = true 69debug-assertions = true