aboutsummaryrefslogtreecommitdiff
path: root/embassy-net-wiznet
diff options
context:
space:
mode:
authordvdsk <[email protected]>2024-06-08 00:30:52 +0200
committerdvdsk <[email protected]>2024-06-08 00:30:52 +0200
commitab31a02e17b812a965842c1b14dc44b96a57932a (patch)
tree764a15d77311c8faba2fab1e42cb79afdb6e0e72 /embassy-net-wiznet
parent1812ccd276a6c277e7c99191c0aa5ce3d1c90e84 (diff)
cargo fmt
Diffstat (limited to 'embassy-net-wiznet')
-rw-r--r--embassy-net-wiznet/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-net-wiznet/src/lib.rs b/embassy-net-wiznet/src/lib.rs
index 545b2a2e4..90102196a 100644
--- a/embassy-net-wiznet/src/lib.rs
+++ b/embassy-net-wiznet/src/lib.rs
@@ -29,7 +29,7 @@ pub type Device<'d> = embassy_net_driver_channel::Device<'d, MTU>;
29/// send packet queue. With a the ethernet MTU of _1514_ this takes up `N_RX + 29/// send packet queue. With a the ethernet MTU of _1514_ this takes up `N_RX +
30/// NTX * 1514` bytes. While setting these both to 1 is the minimum this might 30/// NTX * 1514` bytes. While setting these both to 1 is the minimum this might
31/// hurt performance as a packet can not be received while processing another. 31/// hurt performance as a packet can not be received while processing another.
32/// 32///
33/// # Warning 33/// # Warning
34/// On devices with a small amount of ram (think ~64k) watch out with the size 34/// On devices with a small amount of ram (think ~64k) watch out with the size
35/// of there parameters. They will quickly use too much RAM. 35/// of there parameters. They will quickly use too much RAM.