Tool/software: TI-RTOS
Hi,
I'm currently trying to enable promiscuous mode on the DSP Ethernet MAC driver. I found some documentation, but it doens't seem to be that up to date. In the document "EthernetMediaAccessController(EMAC)/ManagementDataInput/Output(MDIO)Module" in section "2.10.8PromiscuousReceiveMode" there is some mention to set the RXCAFEN, RXCEFEN, RXCMFEN and RXCSFEN to 1, but I can't fine the according defines in driver version 4.
Additionally I tried to activate it by setting rx_filter to EMAC_PKTFLT_ALL for the emac_config() call, just to realise that this is the implementation:
static EMAC_DRV_ERR_E EMAC_config_v4(uint32_t port_num, EMAC_CONFIG_INFO_T *p_config)
{
return EMAC_DRV_RESULT_OK;
}
I would be grateful if someone could tell me how to enable promiscuous mode on the EMAC Driver v4.