use crate::bus::Bus;
use crate::host::Host;
use crate::MacAddress;
#[derive(Debug)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
pub struct Dhcp {
}
impl Dhcp {
pub fn new(_mac: MacAddress) -> Self {
Self {
}
}
}
impl Host for Dhcp {
fn refresh<SpiBus: Bus>(&mut self, _bus: &mut SpiBus) -> Result<(), SpiBus::Error> {
Ok(())
}
}