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.

wifi bootloader问题



/sys/mcuimg.bin 放置bootloader程序

 /sys/mcuimg1.bin 放置 sta例程程序

sta例程仿真能连上AP  但是放在 /sys/mcuimg1.bin该位置就会死机

    while((!IS_CONNECTED(g_ulStatus)) || (!IS_IP_ACQUIRED(g_ulStatus)))
    {
        // Wait for WLAN Event
#ifndef SL_PLATFORM_MULTI_THREADED
        _SlNonOsMainLoopTask();
#endif
    }

一直等待在这里   无法进入该函数void SimpleLinkWlanEventHandler(SlWlanEvent_t *pWlanEvent)

将sta程序放置在/sys/mcuimg.bin 该位置能正常使用

还有oob例程合 tcp socket程序也能正常使用

不知道为什么会出现这种情况