Posted on April 25, 2014 at 22:32HAL_Delay works before the launch of FreeRTOS. In a thread, I use osDelay(50). ( 50 ms)Also, the PHY on BB, has no interrupt pin to signal a lost link. So, there are a thread for the link state, that in BB is not nec...
Posted on April 25, 2014 at 15:34Hello there are two things to make Ethernet running on STM32F4DIS-BBFirst, PHY address of STM32F4DIS-BB is 0, Mx by default MX set an address 1Second, declare PE2 as Output and before the call to HAL_ETH_Init, do //...
Posted on April 15, 2014 at 14:50Hello FlorianThe systick handler is mandatory for the use of HAL. MX is made to use HAL and so the systick interrupt is always enabled. Without this, you cannot use HAL even for a simple toggle on a port for a LED. A...