eth-v2: Start Ethernet peripheral implementation

This commit is contained in:
Thales Fragoso
2021-06-07 02:30:38 -03:00
committed by Dario Nieuwenhuis
parent 6386c34079
commit 46e1bae9e3
8 changed files with 737 additions and 2 deletions

View File

@ -10,6 +10,7 @@ embassy = { version = "0.1.0", path = "../embassy" }
embassy-macros = { version = "0.1.0", path = "../embassy-macros", features = ["stm32"] }
embassy-extras = {version = "0.1.0", path = "../embassy-extras" }
embassy-traits = {version = "0.1.0", path = "../embassy-traits" }
embassy-net = { version = "0.1.0", path = "../embassy-net", features = ["tcp", "medium-ip"] }
defmt = { version = "0.2.0", optional = true }
log = { version = "0.4.11", optional = true }
@ -24,6 +25,8 @@ critical-section = "0.2.1"
bare-metal = "1.0.0"
atomic-polyfill = "0.1.2"
stm32-metapac = { version = "0.1.0", path = "../stm32-metapac", features = ["rt"] }
vcell = "0.1.3"
cfg-if = "1.0.0"
[build-dependencies]