LWIP get HardFault_Handler after update on STM32CubeIDE v1.9.0!
Hi I moved a code that was working on STM32CubeIDE v1.8. But after update STM32CubeIDE v1.9 I am facing a new issue that I have never see before in STM32CubeIDE v1.8.0!
I compared what was before and what we have now, see screen...
Maybe to me need only turn on "Auto Negotiation" in main.c and ping will start working but, I don't know how to do it?
Could someone tell me why code do not initialize MX_LWIP_INIT (); ?
Bellow my simple code main.c
/* USER CODE BEGIN PV */
extern struct netif gnetif;
/* USER CODE END PV */
while (1)
{
/* USER CODE END WHILE */
/* USER CODE BEGIN 3 */
ethernetif_input(&gnetif);
sys_check_timeouts();
}
/* USER CODE END 3 */
}
