From c7e5123f6604fbb9ca510f01af9b60e777bf57b4 Mon Sep 17 00:00:00 2001 From: Ian McIntyre Date: Sun, 22 Oct 2023 18:23:56 -0400 Subject: First commit A prototype of an i.MX RT ENET driver. There's design decisions I'm thinking of changing. Nevertheless, the smoltcp support seems to be working; an 1170EVK can act as a DHCP client and a TCP loopback server. --- Cargo.toml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..f031df4 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,18 @@ +[package] +name = "imxrt-enet" +version = "0.1.0" +edition = "2021" + +[dependencies] +ral-registers = "0.1" +imxrt-ral = "0.5" +mdio = "0.1" +defmt = "0.3" + +[dependencies.smoltcp] +version = "0.10" +default-features = false +features = [ + "medium-ethernet", + "proto-ipv4", +] -- cgit v1.2.3