stm32h7 using eth mac
now,I using stm32h7 series, and run eth mac to trasmit and receive ethernet frame. but It can trasimit ethernet frame sucess,but It can`t receive.I had set mac filter to receive all.the program:
static void MX_ETHMAC_Init(void)
{
ETH_MACFilterConfigTypeDef macFilter;
HAL_ETH_GetMACFilterConfig(&heth, &macFilter);
macFilter.PromiscuousMode = ENABLE;
macFilter.ReceiveAllMode = ENABLE;
macFilter.BroadcastFilter = DISABLE;
HAL_ETH_SetMACFilterConfig(&heth, &macFilter);
return;
}
thank you.
one board send ethernet sucess , the other one board can`t receive the ethernet frame.
I use wireshark,it show the first one board send the ethernet frame sucess.
