Skip to content

Commit

Permalink
Handle Driver Differences
Browse files Browse the repository at this point in the history
  • Loading branch information
HTRamsey committed Jul 10, 2024
1 parent 31f8caa commit b278985
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/portable/NetworkInterface/STM32/NetworkInterface.c
Original file line number Diff line number Diff line change
Expand Up @@ -602,6 +602,7 @@ static BaseType_t prvNetworkInterfaceOutput( NetworkInterface_t * pxInterface,
break;
}

// ETH_TxPacketConfigTypeDef
ETH_TxPacketConfig xTxConfig =
{
.CRCPadCtrl = ETH_CRC_PAD_INSERT,
Expand Down Expand Up @@ -1195,7 +1196,7 @@ static void prvInitMacAddresses( ETH_HandleTypeDef * pxEthHandle,
#if ipconfigIS_ENABLED( ipconfigUSE_IPv6 )
prvAddAllowedMACAddress( pxInterface, pcLOCAL_ALL_NODES_MULTICAST_MAC.ucBytes );
#if ipconfigIS_ENABLED( ipconfigUSE_MDNS )
prvAddAllowedMACAddress( pxInterface, xMDNS_MACAddressIPv6.ucBytes );
prvAddAllowedMACAddress( pxInterface, xMDNS_MacAddressIPv6.ucBytes );
#endif
#if ipconfigIS_ENABLED( ipconfigUSE_LLMNR )
prvAddAllowedMACAddress( pxInterface, xLLMNR_MacAddressIPv6.ucBytes );
Expand Down

0 comments on commit b278985

Please sign in to comment.