Resolved! Hello, Is there an example for the STM32H7 ETH HAL V11.0 (new reworked ETH driver) without the LWIP. All the example i found are coupled with the LWIP. Thanks.
Following function are tied to the LWIP functions and i do not want to use any LWIP etc...How to bypass that ?void HAL_ETH_RxAllocateCallback(uint8_t **buff) { struct pbuf_custom *p = LWIP_MEMPOOL_ALLOC(RX_POOL); if (p) { /* Get the buff fr...