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 在接收到 Ap 连接成功的事件case中 执行sl相关操作会卡死

wifi station例程中  增加些操作

在连接Ap之后 收到下面事件:

void sl_WlanEvtHdlr(SlWlanEvent_t *pSlWlanEvent)
{
unsigned char ucQueueMsg = 0;
switch(pSlWlanEvent->Event)
{
case SL_WLAN_CONNECT_EVENT:

在这个case下 直接去执行sl_open操作 会卡死在    RetVal = _SlDrvCmdOp((_SlCmdCtrl_t *)&_SlFsOpenCmdCtrl, &Msg, &CmdExt);

这个地方,在获取ip的那个地方 也是一样的

请问 这是为什么