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.

SIMPLELINK-CC13XX-CC26XX-SDK: Understanding Silmplelink WBMS SDK Initialization and Posix thrad rtos initialization

Part Number: SIMPLELINK-CC13XX-CC26XX-SDK

Hello, 

I need some explanation regarding sipmlelink wbms sdk_2_00_00_03,

in the wdevice folder project : ... \ti\simplelink_wbms_sdk_2_00_00_03_eng\examples\rtos\CC26X2R1_LAUNCHXL\wbms\wdevice

in the Main.c file there are three api's that are externed and initialized as a task calling function: 

extern void *timeslot_thread(void *arg0);
extern void *nwm_thread(void *arg0);
extern void *appSim_thread(void *arg0);

I have three questions ?

  • These api's are library linked api's and i cannot access them, so i need to understand what is functionality of each thread  and whether its important in handling the rtos or not ?

  • Regarding periodic threads !! what should i do to initialize a thread that runs every 20 milli second as an example (timer based thread NOT event based thread) ?

  • Is there a code documentation to use the simplelink SDK step by step?