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.

Thread_sleep() function hangs

Other Parts Discussed in Thread: SYSBIOS

The Thread_sleep() function hangs and does not return.

The function is called from an newly created task after BIOS_start() is executed.

The BIOS clock is enabled in the CFG file of my project.

var ti_sysbios_knl_Clock = xdc.useModule('ti.sysbios.knl.Clock');
var Timer = xdc.useModule('ti.sysbios.timers.timer64.Timer');
var ti_sysbios_BIOS = xdc.useModule('ti.sysbios.BIOS');
ti_sysbios_knl_Clock.tickPeriod = 100;

BIOS.clockEnabled = true

 

My question is what are the causes for the BIOS clock to not run during program execution?