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-socket 使用主循环+延时可以发送数据,但是使用在中断处理发送失败

Other Parts Discussed in Thread: CC3200

CC3200 裸机 udp-socket 使用主循环+延时可以发送数据,但是使用在中断处理发送失败

while(1)
{
upSensor(getValueStr(SENSOR_TYPE,"131223"),1);
MAP_UtilsDelay(2000000);
}

可以发送成功

void TimerRefIntHandler(void)
{

upSensor(getValueStr(SENSOR_TYPE,"131223"),1);;
GPIO_IF_LedToggle(MCU_BLUE_LED_GPIO);
Timer_IF_InterruptClear(g_ulRefBase);
}

直接跑死在sl_socket 请问是什么原因