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 trying to get the cpu load using sysbios.utils.load

Other Parts Discussed in Thread: CC3200SDK, CC3200, SYSBIOS

I am trying to retrieve the CpuLoad from the CC3200 board, so I ve got a ccs app based on the tcp_socket example provided in the CC3200SDK.

I have added  

var Load = xdc.useModule('ti.sysbios.utils.Load');

to the ti_rtos_config rtsc cfg file and rebuilt everything, and also added the path to the xdc and bios packages.

When I call uint32_t load = Load_getCPULoad();

I've got the following linker error:
unresolved symbol ti_sysbios_utils_Load_getCPULoad__E, first referenced in ./main.obj

As I don't have a deep understanding how all those dependencies are managed I don't really understand which libraries or includes are missing.

Does anyone faced the same problem ?