aboutsummaryrefslogtreecommitdiff
path: root/embassy-net-driver/src
diff options
context:
space:
mode:
authorxoviat <[email protected]>2023-07-15 19:02:04 -0500
committerxoviat <[email protected]>2023-07-15 19:02:04 -0500
commit0b63af33135784c1410dc8667cfefbaa538a1f04 (patch)
treed19c89092b928264ff627fc6d695c26f79d0553e /embassy-net-driver/src
parent25197308e3cd9694c37284b49ce1b482e22855ce (diff)
wpan: prepare net impl.
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 {