Add v1c ethernet driver for the STM32F7 family.

This commit is contained in:
Matous Hybl
2021-10-28 14:22:02 +02:00
parent db889da044
commit f0ba79059e
9 changed files with 1200 additions and 4 deletions

View File

@ -1,7 +1,8 @@
#![macro_use]
#[cfg_attr(eth_v1, path = "v1.rs")]
#[cfg_attr(eth_v1c, path = "v1c/mod.rs")]
#[cfg_attr(eth_v2, path = "v2/mod.rs")]
#[cfg_attr(eth_v1, path = "v1.rs")]
mod _version;
pub mod lan8742a;