embassy-net-adin1110

Crates

git

Versions

default

Flavors

Skip to main content

ADIN1110

Struct ADIN1110 

Source
pub struct ADIN1110<P: Adin1110Protocol> { /* private fields */ }
Expand description

ADIN1110 embassy-net driver

Implementations§

Source§

impl<P: Adin1110Protocol> ADIN1110<P>

Source

pub fn new(protocol: P) -> Self

Create a new ADIN1110 instance.

Source

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

Read a SPI register

Source

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

Write a SPI register

Source

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

Read out fifo ethernet packet memory received via the wire.

Source

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

Write to fifo ethernet packet memory send over the wire.

Source

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

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.

Source§

impl<SPI: SpiDevice> ADIN1110<GenericSpi<SPI>>

Source

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

Create a driver instance using the Generic SPI protocol.

Trait Implementations§

Source§

impl<P: Debug + Adin1110Protocol> Debug for ADIN1110<P>

Source§

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

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

impl<P: Adin1110Protocol> MdioBus for ADIN1110<P>

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.

A clause 45 access is two MDIO transactions: an address phase and the read itself. They must be queued in separate MDIOACC registers, the chip executes them in order. Putting both in MDIOACC_0 makes the second overwrite the first and the read returns zero.

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<(), P::SpiError>

Write to the PHY Registers as Clause 45.

See read_cl45: the address phase and the write must go in separate MDIOACC registers.

Source§

type Error = AdinError<<P as Adin1110Protocol>::SpiError>

Error type.

Auto Trait Implementations§

§

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

§

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

§

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

§

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

§

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

§

impl<P> UnsafeUnpin for ADIN1110<P>
where P: UnsafeUnpin,

§

impl<P> UnwindSafe for ADIN1110<P>
where P: 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>,

Source§

type Error = !

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>,

Source§

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.