Add Ip hardware address to Driver

This commit is contained in:
Ruben De Smet
2023-07-31 12:19:04 +02:00
parent 4afdce4ec5
commit 83ff3cbc69
2 changed files with 4 additions and 0 deletions

View File

@ -12,6 +12,8 @@ pub enum HardwareAddress {
Ethernet([u8; 6]),
/// An eight-octet IEEE802.15.4 address
Ieee802154([u8; 8]),
/// Indicates that a Driver is IP-native, and has no hardware address
Ip,
}
/// Main `embassy-net` driver API.