This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

getting "DES0_RX_STAT_ERR" from lwip + socket + FReeRTOS on EK-TM4C1294XL board.

Other Parts Discussed in Thread: EK-TM4C1294XL

Hello,

I'm now having the EK-TM4C1294XL board, trying make an UDP socket application. lwip+socket+FreeRTOS build was done.

The UDP socket application is working, but I'm getting "DES0_RX_STAT_ERR" form Tiva-tm4c129.c::tivaif_receive() whenever two or three packet are arrived.

In side of remote, five times sendto() are called without interval, then I'm getting "DES0_RX_STAT_ERR".

/*

for(int i=0;i<5;i++)
{
error = sendto(...);
}

*/

But, In side of remote, five times sendto() are called with 15ms delay, then all UDP packet are arrived on EK-TM4C1294XL board.

/*

for(int i=0;i<5;i++)
{
error = sendto(...);

usleep(15000);
}

*/

Any comment would be appreciate.

Thanks & B. Regards,

Jee.