Thumbnail

steew/gilgamesh.git

Clone URL: https://git.buni.party/steew/gilgamesh.git

Viewing file on branch master

1[package]
2name = "fctrl"
3version = "0.1.0"
4edition = "2021"
5
6[dependencies]
7# mpu6050 = "0.1.6"
8mpu6050-dmp = {version = "0.6.1", features = ["async"]}
9embassy-executor = { version = "0.9.0", features = ["defmt", "arch-cortex-m", "executor-thread"] }
10embassy-time = { version = "0.5.0", features = ["defmt"] }
11embassy-sync = { version = "0.7.2", features = [ "defmt" ] }
12
13cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] }
14cortex-m-rt = "0.7.0"
15
16embedded-hal = "0.2.6"
17embedded-hal-1 = { package = "embedded-hal", version = "1.0" }
18embedded-hal-async = { version = "1.0" }
19embedded-hal-bus = { version = "0.1", features = ["async"] }
20
21panic-probe = { version = "1.0.0", features = ["print-defmt"] }
22defmt-rtt = "1.1.0"
23defmt = "1.0.1"
24heapless = "0.9.2"
25
26[dependencies.embassy-stm32]
27version = "0.4.0"
28features = ["stm32l431rc", "unstable-pac", "memory-x", "time-driver-any", "exti", "chrono"]
29
30