-
Notifications
You must be signed in to change notification settings - Fork 219
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (51 loc) · 1.47 KB
/
Cargo.toml
File metadata and controls
60 lines (51 loc) · 1.47 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
authors = [
"Karsten Große <karsten.grosse@sympatron.de>",
"John Little <johngigantic@gmail.com>",
]
categories = ["embedded", "hardware-support", "no-std"]
description = "Board Support crate for the SAM E54 Xplained Pro Evaluation Kit"
edition = "2021"
keywords = ["no-std", "arm", "cortex-m", "embedded-hal"]
license = "MIT OR Apache-2.0"
name = "atsame54_xpro"
readme = "README.md"
repository = "https://github.com/atsamd-rs/atsamd"
version = "0.13.3"
[dependencies.cortex-m-rt]
optional = true
version = "0.7"
[dependencies.cortex-m]
features = ["critical-section-single-core"]
version = "0.7"
[dependencies.atsamd-hal]
default-features = false
path = "../../hal"
version = "0.23.3"
[dependencies.usb-device]
optional = true
version = "0.3.1"
[dev-dependencies]
mcan = "0.2"
panic-rtt-target = {version = "0.1", features = ["cortex-m"]}
rtic = {version = "2.1.2", features = ["thumbv7-backend"]}
rtt-target = {version = "0.3", features = ["cortex-m"]}
[features]
default = ["rt", "atsamd-hal/same54p"]
dma = ["atsamd-hal/dma"]
max-channels = ["dma", "atsamd-hal/max-channels"]
# Enable async support from atsamd-hal
async = ["atsamd-hal/async"]
can = ["atsamd-hal/can"]
rt = ["cortex-m-rt", "atsamd-hal/same54p-rt"]
usb = ["atsamd-hal/usb", "usb-device"]
# Enable rtic support from atsamd-hal
rtic = ["atsamd-hal/rtic"]
[[example]]
name = "blinky_basic"
[[example]]
name = "blinky_rtic"
required-features = ["rtic"]
[[example]]
name = "mcan"
required-features = ["can", "rtic"]