-
Notifications
You must be signed in to change notification settings - Fork 149
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (30 loc) · 914 Bytes
/
Cargo.toml
File metadata and controls
37 lines (30 loc) · 914 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
30
31
32
33
34
35
36
[package]
name = "bbq-uarte-demo"
version = "0.0.1"
edition = "2018"
authors = [ "James Munns <james.munns@ferrous-systems.com>"]
[dependencies]
cortex-m = "0.6.2"
cortex-m-rtic = "0.5.3"
cortex-m-rt = "0.6.12"
bbqueue = "0.4.6"
embedded-hal = "0.2.3"
rtt-target = {version = "0.2.0", features = ["cortex-m"] }
nrf52810-hal = { version = "0.11", features = ["rt"], optional = true }
nrf52832-hal = { version = "0.11", features = ["rt"], optional = true }
nrf52840-hal = { version = "0.11", features = ["rt"], optional = true }
nrf-hal-common = { version = "0.11", features = ["bbq-uarte"] }
panic-reset = "0.1.0"
[dependencies.panic-persist]
version = "0.2.1"
default-features = false
# Disable documentation to avoid spurious rustdoc warnings
[[bin]]
name = "bbq-uarte-demo"
doc = false
test = false
[features]
52810 = ["nrf52810-hal"]
52832 = ["nrf52832-hal"]
52840 = ["nrf52840-hal"]
default = ["52832"]