aboutsummaryrefslogtreecommitdiff
path: root/embassy-net-driver/src
diff options
context:
space:
mode:
Diffstat (limited to 'embassy-net-driver/src')
-rw-r--r--embassy-net-driver/src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/embassy-net-driver/src/lib.rs b/embassy-net-driver/src/lib.rs
index 4149bf4a4..09def20c4 100644
--- a/embassy-net-driver/src/lib.rs
+++ b/embassy-net-driver/src/lib.rs
@@ -164,6 +164,9 @@ pub enum Medium {
164 /// 164 ///
165 /// Examples of devices of this type are the Linux `tun`, PPP interfaces, VPNs in tun (layer 3) mode. 165 /// Examples of devices of this type are the Linux `tun`, PPP interfaces, VPNs in tun (layer 3) mode.
166 Ip, 166 Ip,
167
168 /// IEEE 802_15_4 medium
169 Ieee802154,
167} 170}
168 171
169impl Default for Medium { 172impl Default for Medium {