diff options
| author | Dario Nieuwenhuis <[email protected]> | 2025-02-19 14:48:01 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-02-19 14:48:01 +0100 |
| commit | fcee67a0d2e561a60a9b97df6d06fca02323efee (patch) | |
| tree | 7210f06e7451d814b10dd327b9a987031351f300 /tests/rp/Cargo.toml | |
| parent | f3b98a8748ad5ef7761dccb2e935cecea9e1e707 (diff) | |
| parent | 28e2789aeb4576fefae7acbd20c82dcffb92cf01 (diff) | |
Merge pull request #3901 from CBJamo/rp23_testing
Inital rp23 ci tests
Diffstat (limited to 'tests/rp/Cargo.toml')
| -rw-r--r-- | tests/rp/Cargo.toml | 31 |
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" | |||
| 4 | version = "0.1.0" | 4 | version = "0.1.0" |
| 5 | license = "MIT OR Apache-2.0" | 5 | license = "MIT OR Apache-2.0" |
| 6 | 6 | ||
| 7 | [features] | ||
| 8 | rp2040 = ["embassy-rp/rp2040"] | ||
| 9 | rp235xa = ["embassy-rp/rp235xa"] | ||
| 10 | rp235xb = ["embassy-rp/rp235xb"] | ||
| 11 | |||
| 7 | [dependencies] | 12 | [dependencies] |
| 8 | teleprobe-meta = "1.1" | 13 | teleprobe-meta = "1.1" |
| 9 | 14 | ||
| 10 | embassy-sync = { version = "0.6.2", path = "../../embassy-sync", features = ["defmt"] } | 15 | embassy-sync = { version = "0.6.2", path = "../../embassy-sync", features = ["defmt"] } |
| 11 | embassy-executor = { version = "0.7.0", path = "../../embassy-executor", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "defmt"] } | 16 | embassy-executor = { version = "0.7.0", path = "../../embassy-executor", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "defmt"] } |
| 12 | embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", ] } | 17 | embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", ] } |
| 13 | embassy-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"] } | 18 | embassy-rp = { version = "0.3.0", path = "../../embassy-rp", features = [ "defmt", "unstable-pac", "time-driver", "critical-section-impl", "intrinsics", "rom-v2-intrinsics", "run-from-ram"] } |
| 14 | embassy-futures = { version = "0.1.0", path = "../../embassy-futures" } | 19 | embassy-futures = { version = "0.1.0", path = "../../embassy-futures" } |
| 15 | embassy-net = { version = "0.7.0", path = "../../embassy-net", features = ["defmt", "tcp", "udp", "dhcpv4", "medium-ethernet"] } | 20 | embassy-net = { version = "0.7.0", path = "../../embassy-net", features = ["defmt", "tcp", "udp", "dhcpv4", "medium-ethernet"] } |
| 16 | embassy-net-wiznet = { version = "0.2.0", path = "../../embassy-net-wiznet", features = ["defmt"] } | 21 | embassy-net-wiznet = { version = "0.2.0", path = "../../embassy-net-wiznet", features = ["defmt"] } |
| @@ -35,6 +40,30 @@ static_cell = "2" | |||
| 35 | portable-atomic = { version = "1.5", features = ["critical-section"] } | 40 | portable-atomic = { version = "1.5", features = ["critical-section"] } |
| 36 | rand = { version = "0.8.5", default-features = false } | 41 | rand = { version = "0.8.5", default-features = false } |
| 37 | 42 | ||
| 43 | # bootsel not currently supported on 2350 | ||
| 44 | [[bin]] | ||
| 45 | name = "bootsel" | ||
| 46 | path = "src/bin/bootsel.rs" | ||
| 47 | required-features = [ "rp2040",] | ||
| 48 | |||
| 49 | # 2350 devboard isn't a W | ||
| 50 | [[bin]] | ||
| 51 | name = "cyw43-perf" | ||
| 52 | path = "src/bin/cyw43-perf.rs" | ||
| 53 | required-features = [ "rp2040",] | ||
| 54 | |||
| 55 | # Eth test only for the w5100s-evb-pico | ||
| 56 | [[bin]] | ||
| 57 | name = "ethernet_w5100s_perf" | ||
| 58 | path = "src/bin/ethernet_w5100s_perf.rs" | ||
| 59 | required-features = [ "rp2040",] | ||
| 60 | |||
| 61 | # Float intrinsics are only relevant for the 2040 | ||
| 62 | [[bin]] | ||
| 63 | name = "float" | ||
| 64 | path = "src/bin/float.rs" | ||
| 65 | required-features = [ "rp2040",] | ||
| 66 | |||
| 38 | [profile.dev] | 67 | [profile.dev] |
| 39 | debug = 2 | 68 | debug = 2 |
| 40 | debug-assertions = true | 69 | debug-assertions = true |
