Type Alias esp_idf_sys::esp_eth_mac_t

source ·
pub type esp_eth_mac_t = esp_eth_mac_s;
Expand description

@brief Ethernet MAC

Aliased Type§

struct esp_eth_mac_t {
Show 20 fields pub set_mediator: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s, _: *mut esp_eth_mediator_s) -> i32>, pub init: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s) -> i32>, pub deinit: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s) -> i32>, pub start: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s) -> i32>, pub stop: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s) -> i32>, pub transmit: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s, _: *mut u8, _: u32) -> i32>, pub transmit_vargs: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s, _: u32, _: *mut c_void) -> i32>, pub receive: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s, _: *mut u8, _: *mut u32) -> i32>, pub read_phy_reg: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s, _: u32, _: u32, _: *mut u32) -> i32>, pub write_phy_reg: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s, _: u32, _: u32, _: u32) -> i32>, pub set_addr: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s, _: *mut u8) -> i32>, pub get_addr: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s, _: *mut u8) -> i32>, pub set_speed: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s, _: u32) -> i32>, pub set_duplex: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s, _: u32) -> i32>, pub set_link: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s, _: u32) -> i32>, pub set_promiscuous: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s, _: bool) -> i32>, pub enable_flow_ctrl: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s, _: bool) -> i32>, pub set_peer_pause_ability: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s, _: u32) -> i32>, pub custom_ioctl: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s, _: u32, _: *mut c_void) -> i32>, pub del: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s) -> i32>,
}

Fields§

§set_mediator: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s, _: *mut esp_eth_mediator_s) -> i32>

@brief Set mediator for Ethernet MAC

@param[in] mac: Ethernet MAC instance @param[in] eth: Ethernet mediator

@return - ESP_OK: set mediator for Ethernet MAC successfully - ESP_ERR_INVALID_ARG: set mediator for Ethernet MAC failed because of invalid argument

§init: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s) -> i32>

@brief Initialize Ethernet MAC

@param[in] mac: Ethernet MAC instance

@return - ESP_OK: initialize Ethernet MAC successfully - ESP_ERR_TIMEOUT: initialize Ethernet MAC failed because of timeout - ESP_FAIL: initialize Ethernet MAC failed because some other error occurred

§deinit: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s) -> i32>

@brief Deinitialize Ethernet MAC

@param[in] mac: Ethernet MAC instance

@return - ESP_OK: deinitialize Ethernet MAC successfully - ESP_FAIL: deinitialize Ethernet MAC failed because some error occurred

§start: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s) -> i32>

@brief Start Ethernet MAC

@param[in] mac: Ethernet MAC instance

@return - ESP_OK: start Ethernet MAC successfully - ESP_FAIL: start Ethernet MAC failed because some other error occurred

§stop: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s) -> i32>

@brief Stop Ethernet MAC

@param[in] mac: Ethernet MAC instance

@return - ESP_OK: stop Ethernet MAC successfully - ESP_FAIL: stop Ethernet MAC failed because some error occurred

§transmit: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s, _: *mut u8, _: u32) -> i32>

@brief Transmit packet from Ethernet MAC

@param[in] mac: Ethernet MAC instance @param[in] buf: packet buffer to transmit @param[in] length: length of packet

@return - ESP_OK: transmit packet successfully - ESP_ERR_INVALID_SIZE: number of actually sent bytes differs to expected - ESP_FAIL: transmit packet failed because some other error occurred

@note Returned error codes may differ for each specific MAC chip.

§transmit_vargs: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s, _: u32, _: *mut c_void) -> i32>

@brief Transmit packet from Ethernet MAC constructed with special parameters at Layer2.

@param[in] mac: Ethernet MAC instance @param[in] argc: number variable arguments @param[in] args: variable arguments

@note Typical intended use case is to make possible to construct a frame from multiple higher layer buffers without a need of buffer reallocations. However, other use cases are not limited.

@return - ESP_OK: transmit packet successfully - ESP_ERR_INVALID_SIZE: number of actually sent bytes differs to expected - ESP_FAIL: transmit packet failed because some other error occurred

@note Returned error codes may differ for each specific MAC chip.

§receive: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s, _: *mut u8, _: *mut u32) -> i32>

@brief Receive packet from Ethernet MAC

@param[in] mac: Ethernet MAC instance @param[out] buf: packet buffer which will preserve the received frame @param[out] length: length of the received packet

@note Memory of buf is allocated in the Layer2, make sure it get free after process. @note Before this function got invoked, the value of “length” should set by user, equals the size of buffer. After the function returned, the value of “length” means the real length of received data.

@return - ESP_OK: receive packet successfully - ESP_ERR_INVALID_ARG: receive packet failed because of invalid argument - ESP_ERR_INVALID_SIZE: input buffer size is not enough to hold the incoming data. in this case, value of returned “length” indicates the real size of incoming data. - ESP_FAIL: receive packet failed because some other error occurred

§read_phy_reg: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s, _: u32, _: u32, _: *mut u32) -> i32>

@brief Read PHY register

@param[in] mac: Ethernet MAC instance @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_INVALID_STATE: read PHY register failed because of wrong state of MAC - 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(_: *mut esp_eth_mac_s, _: u32, _: u32, _: u32) -> i32>

@brief Write PHY register

@param[in] mac: Ethernet MAC instance @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_STATE: write PHY register failed because of wrong state of MAC - ESP_ERR_TIMEOUT: write PHY register failed because of timeout - ESP_FAIL: write PHY register failed because some other error occurred

§set_addr: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s, _: *mut u8) -> i32>

@brief Set MAC address

@param[in] mac: Ethernet MAC instance @param[in] addr: MAC address

@return - ESP_OK: set MAC address successfully - ESP_ERR_INVALID_ARG: set MAC address failed because of invalid argument - ESP_FAIL: set MAC address failed because some other error occurred

§get_addr: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s, _: *mut u8) -> i32>

@brief Get MAC address

@param[in] mac: Ethernet MAC instance @param[out] addr: MAC address

@return - ESP_OK: get MAC address successfully - ESP_ERR_INVALID_ARG: get MAC address failed because of invalid argument - ESP_FAIL: get MAC address failed because some other error occurred

§set_speed: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s, _: u32) -> i32>

@brief Set speed of MAC

@param[in] ma:c Ethernet MAC instance @param[in] speed: MAC speed

@return - ESP_OK: set MAC speed successfully - ESP_ERR_INVALID_ARG: set MAC speed failed because of invalid argument - ESP_FAIL: set MAC speed failed because some other error occurred

§set_duplex: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s, _: u32) -> i32>

@brief Set duplex mode of MAC

@param[in] mac: Ethernet MAC instance @param[in] duplex: MAC duplex

@return - ESP_OK: set MAC duplex mode successfully - ESP_ERR_INVALID_ARG: set MAC duplex failed because of invalid argument - ESP_FAIL: set MAC duplex failed because some other error occurred

§set_link: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s, _: u32) -> i32>

@brief Set link status of MAC

@param[in] mac: Ethernet MAC instance @param[in] link: Link status

@return - ESP_OK: set link status successfully - ESP_ERR_INVALID_ARG: set link status failed because of invalid argument - ESP_FAIL: set link status failed because some other error occurred

§set_promiscuous: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s, _: bool) -> i32>

@brief Set promiscuous of MAC

@param[in] mac: Ethernet MAC instance @param[in] enable: set true to enable promiscuous mode; set false to disable promiscuous mode

@return - ESP_OK: set promiscuous mode successfully - ESP_FAIL: set promiscuous mode failed because some error occurred

§enable_flow_ctrl: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s, _: bool) -> i32>

@brief Enable flow control on MAC layer or not

@param[in] mac: Ethernet MAC instance @param[in] enable: set true to enable flow control; set false to disable flow control

@return - ESP_OK: set flow control successfully - ESP_FAIL: set flow control failed because some error occurred

§set_peer_pause_ability: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s, _: u32) -> i32>

@brief Set the PAUSE ability of peer node

@param[in] mac: Ethernet MAC instance @param[in] ability: zero indicates that pause function is supported by link partner; non-zero indicates that pause function is not supported by link partner

@return - ESP_OK: set peer pause ability successfully - ESP_FAIL: set peer pause ability failed because some error occurred

§custom_ioctl: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s, _: u32, _: *mut c_void) -> i32>

@brief Custom IO function of MAC driver. This function is intended to extend common options of esp_eth_ioctl to cover specifics of MAC chip.

@note This function may not be assigned when the MAC chip supports only most common set of configuration options.

@param[in] mac: Ethernet MAC instance @param[in] cmd: IO control command @param[in, out] data: address of data for set command or address where to store the data when used with get command

@return - ESP_OK: process io command successfully - ESP_ERR_INVALID_ARG: process io command failed because of some invalid argument - ESP_FAIL: process io command failed because some other error occurred - ESP_ERR_NOT_SUPPORTED: requested feature is not supported

§del: Option<unsafe extern "C" fn(_: *mut esp_eth_mac_s) -> i32>

@brief Free memory of Ethernet MAC

@param[in] mac: Ethernet MAC instance

@return - ESP_OK: free Ethernet MAC instance successfully - ESP_FAIL: free Ethernet MAC instance failed because some error occurred