2022-06-02 02:48 AM
Hello guys, so I'm trying to establish an Ethernet communication between my PC and STM32F746G-DISCO without using LWIP. I set the Rx mode to interrupt and configured the MPU now the problem is the interrupt only works for 4 times. After looking I found out that it goes only 4 times because that's the length of the Rx buffer. I kept looking for a solution so the data will be overwritten to the buffer once it's full but I couldn't make it. Can anyone help me with it ?
Thank you
2022-06-02 04:36 PM
Even, when not using lwIP, one can still look at it's related code as an example of how to use broken bloatware named HAL:
If you write your own code, then look at this:
https://github.com/lsgunth/lwip_contrib/blob/master/ports/stm32f2x7/netif/stif.c
Also...