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.

cc3200 udp数据传输遇到的问题

Other Parts Discussed in Thread: CC3200

用cc3200的uart接收数据然后通过udp协议发送给上位机,测试的时候把速度控制在20kb/s没有出现过问题,调高到100之后运行一会就出现

[GENERAL EVENT] - ID=[7] Sender=[0]

这样的错误,请问这是哪里的问题呢?

while(1)
{
 for(i = 0;i < PACKAGE; i++ )
  {
    g_cBsdBuf3[i] = (char)UARTCharGet(UARTA0_BASE);
  }
 if( i == PACKAGE)
  {
   iStatus1 = sl_SendTo(iSockID, g_cBsdBuf3, PACKAGE, 0,(SlSockAddr_t *)&sAddr, iAddrSize);
  }
}