2020-09-21 05:20 AM
Hello,
About a year ago, I created my own project UDP_SERVER using STM32CubeMX. Everything worked until I upgraded HAL_Driver from 11.09.2020 ( V 1.25.1 ). My program stopped working properly.
I searched for a reason for many days. This annoying change has occurred in the new version of the file Stm32f4xx_hal_eth.c in function ETH_MACDMAConfig():
macinit.ReceiveAll = ETH_RECEIVEAll_DISABLE;
The value was previously: ETH_RECEIVEALL_ENABLE
Question:
How can I change this setting in the application part of the program so that I don't have to change it in the file Stm32f4xx_hal_eth ?
Peter