Hi,
Is it possible to use simplelink for WiFi connectivity without using any RTOS?
I tried to use getting_started_with_wlan_station example without spawing task. It stucks in WlanConnect() because SimpleLinkWlanEventHandler never invoked.
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.
Hi,
Is it possible to use simplelink for WiFi connectivity without using any RTOS?
I tried to use getting_started_with_wlan_station example without spawing task. It stucks in WlanConnect() because SimpleLinkWlanEventHandler never invoked.
Yes, you can use without RTOS. The following is from the Host Driver API documentation (provided with the SDK)
The SimpleLink driver could run on two kind of platforms:
I believe you will need to use something like the following in non OS environments
while (1)
{
_SlNonOsMainLoopTask();
}
Check out some of he other examples int he SDK, for example the mdns one does not use any RTOS
Glenn.