aboutsummaryrefslogtreecommitdiff
path: root/examples/rp23/Cargo.toml
diff options
context:
space:
mode:
authorCurly <[email protected]>2025-02-23 07:33:58 -0800
committerCurly <[email protected]>2025-02-23 07:33:58 -0800
commit3932835998802fc3abf7cce4f736e072858ebfd1 (patch)
tree5dd714b99bc74a03556c58809237c88691c293bb /examples/rp23/Cargo.toml
parentc3c67db93e627a4fafe5e1a1123e5cbb4abafe47 (diff)
rename `rp23` (?) folder to `rp235x`; fix `ci.sh` to use `rp235x` folder
Diffstat (limited to 'examples/rp23/Cargo.toml')
-rw-r--r--examples/rp23/Cargo.toml66
1 files changed, 0 insertions, 66 deletions
diff --git a/examples/rp23/Cargo.toml b/examples/rp23/Cargo.toml
deleted file mode 100644
index f4dfae773..000000000
--- a/examples/rp23/Cargo.toml
+++ /dev/null
@@ -1,66 +0,0 @@
1[package]
2edition = "2021"
3name = "embassy-rp2350-examples"
4version = "0.1.0"
5license = "MIT OR Apache-2.0"
6
7
8[dependencies]
9embassy-embedded-hal = { version = "0.3.0", path = "../../embassy-embedded-hal", features = ["defmt"] }
10embassy-sync = { version = "0.6.2", path = "../../embassy-sync", features = ["defmt"] }
11embassy-executor = { version = "0.7.0", path = "../../embassy-executor", features = ["task-arena-size-98304", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt"] }
12embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime"] }
13embassy-rp = { version = "0.3.0", path = "../../embassy-rp", features = ["defmt", "unstable-pac", "time-driver", "critical-section-impl", "rp235xa", "binary-info"] }
14embassy-usb = { version = "0.4.0", path = "../../embassy-usb", features = ["defmt"] }
15embassy-net = { version = "0.7.0", path = "../../embassy-net", features = ["defmt", "tcp", "udp", "raw", "dhcpv4", "medium-ethernet", "dns"] }
16embassy-net-wiznet = { version = "0.2.0", path = "../../embassy-net-wiznet", features = ["defmt"] }
17embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
18embassy-usb-logger = { version = "0.4.0", path = "../../embassy-usb-logger" }
19cyw43 = { version = "0.3.0", path = "../../cyw43", features = ["defmt", "firmware-logs"] }
20cyw43-pio = { version = "0.3.0", path = "../../cyw43-pio", features = ["defmt"] }
21
22defmt = "0.3"
23defmt-rtt = "0.4"
24fixed = "1.23.1"
25fixed-macro = "1.2"
26
27serde = { version = "1.0.203", default-features = false, features = ["derive"] }
28serde-json-core = "0.5.1"
29
30# for assign resources example
31assign-resources = { git = "https://github.com/adamgreig/assign-resources", rev = "94ad10e2729afdf0fd5a77cd12e68409a982f58a" }
32
33# for TB6612FNG example
34tb6612fng = "1.0.0"
35
36#cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] }
37cortex-m = { version = "0.7.6", features = ["inline-asm"] }
38cortex-m-rt = "0.7.0"
39critical-section = "1.1"
40panic-probe = { version = "0.3", features = ["print-defmt"] }
41display-interface-spi = "0.5.0"
42embedded-graphics = "0.8.1"
43mipidsi = "0.8.0"
44display-interface = "0.5.0"
45byte-slice-cast = { version = "1.2.0", default-features = false }
46smart-leds = "0.3.0"
47heapless = "0.8"
48usbd-hid = "0.8.1"
49
50embedded-hal-1 = { package = "embedded-hal", version = "1.0" }
51embedded-hal-async = "1.0"
52embedded-hal-bus = { version = "0.1", features = ["async"] }
53embedded-io-async = { version = "0.6.1", features = ["defmt-03"] }
54embedded-storage = { version = "0.3" }
55static_cell = "2.1"
56portable-atomic = { version = "1.5", features = ["critical-section"] }
57log = "0.4"
58rand = { version = "0.8.5", default-features = false }
59embedded-sdmmc = "0.7.0"
60
61[profile.release]
62debug = 2
63
64[profile.dev]
65lto = true
66opt-level = "z"