Struct esp_idf_sys::esp_eth_config_t
source · #[repr(C)]pub struct esp_eth_config_t {
pub mac: *mut esp_eth_mac_t,
pub phy: *mut esp_eth_phy_t,
pub check_link_period_ms: u32,
pub stack_input: Option<unsafe extern "C" fn(eth_handle: esp_eth_handle_t, buffer: *mut u8, length: u32, priv_: *mut c_void) -> esp_err_t>,
pub on_lowlevel_init_done: Option<unsafe extern "C" fn(eth_handle: esp_eth_handle_t) -> esp_err_t>,
pub on_lowlevel_deinit_done: Option<unsafe extern "C" fn(eth_handle: esp_eth_handle_t) -> esp_err_t>,
pub read_phy_reg: Option<unsafe extern "C" fn(eth_handle: esp_eth_handle_t, phy_addr: u32, phy_reg: u32, reg_value: *mut u32) -> esp_err_t>,
pub write_phy_reg: Option<unsafe extern "C" fn(eth_handle: esp_eth_handle_t, phy_addr: u32, phy_reg: u32, reg_value: u32) -> esp_err_t>,
}
Expand description
@brief Configuration of Ethernet driver
Fields§
§mac: *mut esp_eth_mac_t
@brief Ethernet MAC object
phy: *mut esp_eth_phy_t
@brief Ethernet PHY object
check_link_period_ms: u32
@brief Period time of checking Ethernet link status
stack_input: Option<unsafe extern "C" fn(eth_handle: esp_eth_handle_t, buffer: *mut u8, length: u32, priv_: *mut c_void) -> esp_err_t>
@brief Input frame buffer to user’s stack
@param[in] eth_handle: handle of Ethernet driver @param[in] buffer: frame buffer that will get input to upper stack @param[in] length: length of the frame buffer
@return - ESP_OK: input frame buffer to upper stack successfully - ESP_FAIL: error occurred when inputting buffer to upper stack
on_lowlevel_init_done: Option<unsafe extern "C" fn(eth_handle: esp_eth_handle_t) -> esp_err_t>
@brief Callback function invoked when lowlevel initialization is finished
@param[in] eth_handle: handle of Ethernet driver
@return - ESP_OK: process extra lowlevel initialization successfully - ESP_FAIL: error occurred when processing extra lowlevel initialization
on_lowlevel_deinit_done: Option<unsafe extern "C" fn(eth_handle: esp_eth_handle_t) -> esp_err_t>
@brief Callback function invoked when lowlevel deinitialization is finished
@param[in] eth_handle: handle of Ethernet driver
@return - ESP_OK: process extra lowlevel deinitialization successfully - ESP_FAIL: error occurred when processing extra lowlevel deinitialization
read_phy_reg: Option<unsafe extern "C" fn(eth_handle: esp_eth_handle_t, phy_addr: u32, phy_reg: u32, reg_value: *mut u32) -> esp_err_t>
@brief Read PHY register
@note Usually the PHY register read/write function is provided by MAC (SMI interface), but if the PHY device is managed by other interface (e.g. I2C), then user needs to implement the corresponding read/write. Setting this to NULL means your PHY device is managed by MAC’s SMI interface.
@param[in] eth_handle: handle of Ethernet driver @param[in] phy_addr: PHY chip address (0~31) @param[in] phy_reg: PHY register index code @param[out] reg_value: PHY register value
@return - ESP_OK: read PHY register successfully - ESP_ERR_INVALID_ARG: read PHY register failed because of invalid argument - ESP_ERR_TIMEOUT: read PHY register failed because of timeout - ESP_FAIL: read PHY register failed because some other error occurred
write_phy_reg: Option<unsafe extern "C" fn(eth_handle: esp_eth_handle_t, phy_addr: u32, phy_reg: u32, reg_value: u32) -> esp_err_t>
@brief Write PHY register
@note Usually the PHY register read/write function is provided by MAC (SMI interface), but if the PHY device is managed by other interface (e.g. I2C), then user needs to implement the corresponding read/write. Setting this to NULL means your PHY device is managed by MAC’s SMI interface.
@param[in] eth_handle: handle of Ethernet driver @param[in] phy_addr: PHY chip address (0~31) @param[in] phy_reg: PHY register index code @param[in] reg_value: PHY register value
@return - ESP_OK: write PHY register successfully - ESP_ERR_INVALID_ARG: read PHY register failed because of invalid argument - ESP_ERR_TIMEOUT: write PHY register failed because of timeout - ESP_FAIL: write PHY register failed because some other error occurred
Trait Implementations§
source§impl Clone for esp_eth_config_t
impl Clone for esp_eth_config_t
source§fn clone(&self) -> esp_eth_config_t
fn clone(&self) -> esp_eth_config_t
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for esp_eth_config_t
impl Debug for esp_eth_config_t
source§impl Default for esp_eth_config_t
impl Default for esp_eth_config_t
impl Copy for esp_eth_config_t
Auto Trait Implementations§
impl Freeze for esp_eth_config_t
impl RefUnwindSafe for esp_eth_config_t
impl !Send for esp_eth_config_t
impl !Sync for esp_eth_config_t
impl Unpin for esp_eth_config_t
impl UnwindSafe for esp_eth_config_t
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)