Hi,
per my understanding you should comment below 3 lines that set priority and enable RX interrupt in ENET_Driver_Rx_Init function.
INTC.PSR[211].B.PRC_SELN = 0x8; /* IRQ sent to Core 0 */
INTC.PSR[211].B.PRIN =10; /* IRQ priority = 10 (15 = highest) */
// Enable the generation of Rx frame interrupts
ENET.EIMR.B.RXF = 1;
then within main while loop you should check if EIR[RXF] flag is set and then call ENET_Rx_Handler function. For example using
if (ENET.EIR.B.RXF == 1)
{
ENET_Rx_Handler();
}
BR, Petr