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

@ -0,0 +1,7 @@
#![macro_use]
#[cfg_attr(eth_v1, path = "v1.rs")]
#[cfg_attr(eth_v2, path = "v2/mod.rs")]
mod _version;
pub use _version::*;