Forum Discussion
Altera_Forum
Honored Contributor
16 years agoCorrection, it doesn't set the error bit in the descriptor, it's just an interrupt to the processor.
Here is the associated Verilog://Set Busy IRQ if a new frame comes in and
//we're too busy to receive it.
always @(posedge rxclk) rx_bsy <= rx_sop & rx_dv & ~rx_rdy; In other words, if a new packet comes in and the Receive FIFO is full, you will get this error. Jake