-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 789 Bytes
/
Cargo.toml
File metadata and controls
29 lines (27 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "rp2040-pio-logic-analyzer"
authors = ["Jan Niehusmann <jan@gondor.com>"]
license = "MIT OR Apache-2.0"
version = "0.1.0"
description = "Use the RP2040 PIO as an internal logic analyzer"
readme = "README.md"
repository = "https://github.com/jannic/rp2040-pio-logic-analyzer.git"
homepage = "https://github.com/jannic/rp2040-pio-logic-analyzer/"
edition = "2018"
resolver = "2"
[dependencies]
rp2040-hal = "0.7.0"
pio = "0.2.0"
pio-proc = "0.2.0"
embedded-hal = "0.2.6"
nb = "1.0.0"
defmt = "0.3.0"
[dev-dependencies]
cortex-m = "0.7.3"
cortex-m-rt = "0.7.0"
smart-leds = "0.3.0"
ws2812-pio = "0.5.0"
rtt-target = { version = "0.3.1", features = ["cortex-m"] }
panic-probe = { version = "0.2.0", features = ["print-rtt"] }
rp2040-boot2 = "0.2.1"
embedded-time = "0.12.1"