aboutsummaryrefslogtreecommitdiff
path: root/embassy-net
diff options
context:
space:
mode:
authorEli Hastings <[email protected]>2024-06-24 10:59:43 +0100
committerGitHub <[email protected]>2024-06-24 10:59:43 +0100
commitb7dd04e3b1004619cffd4e405e1ed5339b008f22 (patch)
tree352f68f06525e7f01dc1feb8c88ed10288ab059b /embassy-net
parentcfe8561550e10d145eb6ef14423a49f78d7ac38e (diff)
Fix typo in README
Diffstat (limited to 'embassy-net')
-rw-r--r--embassy-net/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-net/README.md b/embassy-net/README.md
index ce59ea34a..6b7d46934 100644
--- a/embassy-net/README.md
+++ b/embassy-net/README.md
@@ -37,7 +37,7 @@ To add `embassy-net` support for new hardware (i.e. a new Ethernet or WiFi chip,
37an Ethernet/WiFi MCU peripheral), you have to implement the [`embassy-net-driver`](https://crates.io/crates/embassy-net-driver) 37an Ethernet/WiFi MCU peripheral), you have to implement the [`embassy-net-driver`](https://crates.io/crates/embassy-net-driver)
38traits. 38traits.
39 39
40Alternatively, [`embassy-net-driver-channel`](https://crates.io/crates/embassy-net-driver-channel) provides a higer-level API 40Alternatively, [`embassy-net-driver-channel`](https://crates.io/crates/embassy-net-driver-channel) provides a higher-level API
41to construct a driver that processes packets in its own background task and communicates with the `embassy-net` task via 41to construct a driver that processes packets in its own background task and communicates with the `embassy-net` task via
42packet queues for RX and TX. 42packet queues for RX and TX.
43 43