-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (35 loc) · 952 Bytes
/
Cargo.toml
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
[package]
name = "steering-wheel-controller"
edition = "2021"
version = "0.1.0"
[dependencies]
cortex-m = { version = "0.7.7", features = ["critical-section-single-core"] }
cortex-m-rt = "0.7.1"
defmt = { version = "0.3.5", features = ["encoding-rzcobs"] }
defmt-rtt = "0.4.0"
embedded-hal = "0.2.7"
fdcan = { version = "0.2.0", features = ["fdcan_h7"] }
panic-probe = { version = "0.3.1", features = ["print-defmt"] }
rtic = { version = "2.1.1", features = ["thumbv7-backend"] }
stm32h7xx-hal = { version = "0.16.0", features = [
"stm32h747cm7",
"can",
"rtc",
"defmt",
] }
rtic-monotonics = { version = "1.4.1", features = [
"cortex-m-systick",
"systick-64bit",
"systick-10khz",
] }
crc = "3.0"
zerocopy = "0.6"
byteorder = { version = "1.4", default-features = false }
embedded-graphics = "0.8.0"
ssd1306 = "0.8.4"
heapless = "0.8.0"
[[bin]]
name = "steering-wheel-controller"
test = false
bench = false
harness = false