Other Parts Discussed in Thread: CC3200
Tool/software: TI-RTOS
Background is I am converting a project from cc3200 that receives messages from pc that are encrypted aes, decrypts them, does something with the message, encrypts it, and sends it back to pc with sockets and ports. I have converted to versions for pthreads and tasks, but neither works. One question is whether Simplelink is started ? In the old version, Simplelink was started with
// Start the SimpleLink Host
//
lRetVal = VStartSimpleLinkSpawnTask(SPAWN_TASK_PRIORITY);
if(lRetVal < 0)
{
ERR_PRINT(lRetVal);
LOOP_FOREVER();
}
What is the new way to do in Task_create without using osi_compat.h?