-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (34 loc) · 981 Bytes
/
Cargo.toml
File metadata and controls
46 lines (34 loc) · 981 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
37
38
39
40
41
42
43
44
45
46
[package]
name = "mcx-hal"
version = "0.1.0"
edition = "2021"
[dependencies]
mcx-pac = { version = "0.1.7", default-features = false }
cortex-m = { version = "0.7" }
cortex-m-rt = { version = "0.7" }
# embedded-hal = "1"
eh1 = { package = "embedded-hal", version = "1" }
eio06 = { package = "embedded-io", version = "0.6" }
paste = "1"
cfg-if = "1"
bitflags = "2.9"
critical-section = { version = "1", optional = true }
[dev-dependencies]
panic-halt = "1"
cortex-m-rt = "0.7"
heapless = "0.8"
rtic = { version = "2.1.2", features = ["thumbv8main-backend"] }
rtic-monotonics = { version = "2.0.3", features = ["cortex-m-systick"] }
rtic-sync = "1.3"
[features]
rt = ["mcx-pac/rt"]
device = []
mcxa346 = ["mcx-pac/mcxa346", "mcxa2"]
mcxa = ["device"]
mcxa0 = ["mcxa", "_cs_single_core"]
mcxa1 = ["mcxa", "_cs_single_core"]
mcxa2 = ["mcxa", "_cs_single_core"]
mcxn = ["device"]
mcxn0 = ["mcxn"]
mcxn1 = ["mcxn"]
_cs_single_core = ["cortex-m/critical-section-single-core"]