emac_esp_dma_receive_frame() function
Copy received Ethernet frame from EMAC DMA memory space to application.
Arguments
emac_esp_dma
EMAC DMA handle
buf
buffer into which the Ethernet frame is to be copied
size
buffer size. When buffer was allocated by ::emac_esp_dma_alloc_recv_buf, this parameter needs to be set to @c EMAC_DMA_BUF_SIZE_AUTO
Return value
- number of copied bytes when success - number of bytes of received Ethernet frame when maximum allowed buffer @p size is less than actual size of received Ethernet frame and @p size is NOT set to @c EMAC_DMA_BUF_SIZE_AUTO - 0 when there is no waiting Ethernet frame or on frame error when @p size is NOT set to @c EMAC_DMA_BUF_SIZE_AUTO
Notes
When this function is called with @c EMAC_DMA_BUF_SIZE_AUTO size option (preferred), buffer needs to be successfully allocated by ::emac_esp_dma_alloc_recv_buf function at first. When this function is NOT called with @c EMAC_DMA_BUF_SIZE_AUTO size option and maximum allowed buffer @p size is less than actual size of received Ethernet frame, the frame will be truncated. FCS field is never copied