Posted on January 10, 2018 at 11:09Hi All,The issue is due to enabled cache, I explain, when the CPU updates the Descriptors fields this will be done at the D-Cache level only, and it will not be seen from the Ethernet DMA.There are many solutions f...
Posted on November 23, 2017 at 10:58Hello,I confirm that some regressions are available when using last Firefox versions, this will be reported to be fixed in the next STM32CubeFW F4 releases.Thanks and regards,Oussema.
Posted on November 16, 2017 at 11:05Hi,you can create a thread to poll for the link status with the following function:void ethernetif_set_link(void const *argument){ uint32_t regvalue = 0; struct netif *netif = ( struct netif *)argument; for(;;...
Posted on November 15, 2017 at 18:01 Hello dieter.dieter, This is not a bug, the auto-detection of the Ethernet cable is notimplemented for all boards, In your case you need to reset the board after cable connection. If you want you can sen...
Posted on October 11, 2017 at 19:07Hello Joerg,I reviewed your code, and I found that you are not enabling the ETH MAC and DMA transmission and reception.So could you please add the call to HAL_ETH_Start(&heth); after the ETH initialization.Also I s...