How Ethernet MAC interrupts have been enabled by STM32CubeH7?
Hi all. This is the first time I am using CubeH7 + FreeRTOS + LwIP. I have tried to trace down how Ethernet MAC interrupts have been enabled. If I got the code correctly:
+ I enabled "Ethernet global interrupt" option from CubeMX "ETH".
+ I enabled "LwIP" and "FreeRTOS" from CubeMX.
+ "LwIP", "FreeRTOS" and "ETH" are all owned by Cortex-M4.
Then when I trace down function calls MX_LWIP_Init() -> netif_add() -> ethernetif_init() -> low_level_init(). Seems there is no Ethernet interrupt enabling code...
And when I setup a breakpoint to HAL_ETH_IRQHandler(). It's not getting called as well...
I am now using:
STM32CubeMX v6.9.2
STM32CubeH7 v.1.11.1
Maybe I setup something wrong? Thanks!
