@@ -6,12 +6,17 @@ license = "MIT OR Apache-2.0"
6
6
7
7
[dependencies ]
8
8
# Change stm32l4s5vi to your chip name, if necessary.
9
- embassy-stm32 = { version = " 0.1.0" , path = " ../../embassy-stm32" , features = [" nightly" , " defmt" , " unstable-pac" , " stm32l4s5vi " , " memory-x" , " time-driver-any" , " exti" , " unstable-traits" , " chrono" ] }
9
+ embassy-stm32 = { version = " 0.1.0" , path = " ../../embassy-stm32" , features = [" nightly" , " defmt" , " unstable-pac" , " stm32l4s5qi " , " memory-x" , " time-driver-any" , " exti" , " unstable-traits" , " chrono" ] }
10
10
embassy-sync = { version = " 0.2.0" , path = " ../../embassy-sync" , features = [" defmt" ] }
11
11
embassy-executor = { version = " 0.2.0" , path = " ../../embassy-executor" , features = [" nightly" , " arch-cortex-m" , " executor-thread" , " defmt" , " integrated-timers" ] }
12
- embassy-time = { version = " 0.1.2" , path = " ../../embassy-time" , features = [" defmt" , " defmt-timestamp-uptime" , " tick-hz-32_768 " ] }
12
+ embassy-time = { version = " 0.1.2" , path = " ../../embassy-time" , features = [" defmt" , " unstable-traits " , " defmt-timestamp-uptime" , " nightly " ] }
13
13
embassy-embedded-hal = { version = " 0.1.0" , path = " ../../embassy-embedded-hal" }
14
14
embassy-usb = { version = " 0.1.0" , path = " ../../embassy-usb" , features = [" defmt" ] }
15
+ embassy-net-adin1110 = { version = " 0.1.0" , path = " ../../embassy-net-adin1110" , default-features = false }
16
+ embassy-net = { version = " 0.1.0" , path = " ../../embassy-net" , features = [" defmt" , " nightly" , " udp" , " tcp" , " dhcpv4" , " medium-ethernet" ] }
17
+ embassy-futures = { version = " 0.1.0" , path = " ../../embassy-futures" }
18
+ embedded-io-async = { version = " 0.5.0" , features = [" defmt-03" ] }
19
+ embedded-io = { version = " 0.5.0" , features = [" defmt-03" ] }
15
20
16
21
defmt = " 0.3"
17
22
defmt-rtt = " 0.4"
@@ -21,10 +26,13 @@ cortex-m-rt = "0.7.0"
21
26
embedded-hal = " 0.2.6"
22
27
embedded-hal-1 = { package = " embedded-hal" , version = " =1.0.0-rc.1" }
23
28
embedded-hal-async = { version = " =1.0.0-rc.1" }
29
+ embedded-hal-bus = { version = " =0.1.0-rc.1" , features = [" async" ] }
24
30
panic-probe = { version = " 0.3" , features = [" print-defmt" ] }
25
31
futures = { version = " 0.3.17" , default-features = false , features = [" async-await" ] }
26
32
heapless = { version = " 0.7.5" , default-features = false }
27
33
chrono = { version = " ^0.4" , default-features = false }
34
+ rand = { version = " 0.8.5" , default-features = false }
35
+ static_cell = {version = " 1.1" , features = [" nightly" ]}
28
36
29
37
micromath = " 2.0.0"
30
38
0 commit comments