enc28j60: expose a the MAC address via address() getter

This commit is contained in:
Josh Junon 2023-09-29 17:23:39 +02:00
parent ce0d787781
commit e1a8caffa4

View file

@ -194,6 +194,11 @@ where
self.bit_field_set(common::Register::ECON1, common::ECON1::mask().rxen());
}
/// Returns the device's MAC address
pub fn address(&self) -> [u8; 6] {
self.mac_addr
}
/// Flushes the transmit buffer, ensuring all pending transmissions have completed
/// NOTE: The returned packet *must* be `read` or `ignore`-d, otherwise this method will always
/// return `None` on subsequent invocations