Embassy
embassy-net-adin1110

Crates

git

Versions

default

Flavors

Struct embassy_net_adin1110::ADIN1110

source ·
pub struct ADIN1110<SPI> { /* private fields */ }
Expand description

ADIN1110 embassy-net driver

Implementations§

source§

impl<SPI: SpiDevice> ADIN1110<SPI>

source

pub fn new(spi: SPI, spi_crc: bool, append_fcs_on_tx: bool) -> Self

Create a new ADIN1110 instance.

source

pub async fn read_reg(&mut self, reg: sr) -> AEResult<u32, SPI::Error>

Read a SPI register

source

pub async fn write_reg( &mut self, reg: sr, value: u32 ) -> AEResult<(), SPI::Error>

Write a SPI register

source

pub async fn read_fifo( &mut self, frame: &mut [u8] ) -> AEResult<usize, SPI::Error>

Read out fifo ethernet packet memory received via the wire.

source

pub async fn write_fifo(&mut self, frame: &[u8]) -> AEResult<(), SPI::Error>

Write to fifo ethernet packet memory send over the wire.

source

pub async fn set_mac_addr(&mut self, mac: &[u8; 6]) -> AEResult<(), SPI::Error>

Programs the mac address in the mac filters. Also set the boardcast address. The chip supports 2 priority queues but current code doesn’t support this mode.

Trait Implementations§

source§

impl<SPI: Debug> Debug for ADIN1110<SPI>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<SPI: SpiDevice> MdioBus for ADIN1110<SPI>

source§

async fn read_cl22(&mut self, phy_id: u8, reg: u8) -> Result<u16, Self::Error>

Read from the PHY Registers as Clause 22.

source§

async fn read_cl45( &mut self, phy_id: u8, regc45: (u8, u16) ) -> Result<u16, Self::Error>

Read from the PHY Registers as Clause 45.

source§

async fn write_cl22( &mut self, phy_id: u8, reg: u8, val: u16 ) -> Result<(), Self::Error>

Write to the PHY Registers as Clause 22.

source§

async fn write_cl45( &mut self, phy_id: u8, regc45: (u8, u16), value: u16 ) -> AEResult<(), SPI::Error>

Write to the PHY Registers as Clause 45.

§

type Error = AdinError<<SPI as ErrorType>::Error>

Error type.

Auto Trait Implementations§

§

impl<SPI> Freeze for ADIN1110<SPI>
where SPI: Freeze,

§

impl<SPI> RefUnwindSafe for ADIN1110<SPI>
where SPI: RefUnwindSafe,

§

impl<SPI> Send for ADIN1110<SPI>
where SPI: Send,

§

impl<SPI> Sync for ADIN1110<SPI>
where SPI: Sync,

§

impl<SPI> Unpin for ADIN1110<SPI>
where SPI: Unpin,

§

impl<SPI> UnwindSafe for ADIN1110<SPI>
where SPI: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.