Hi,
What causes a statically defined task to startup? Do all statically defined tasks automatically get kicked off at startup? I have the following statically defined task:
var taskParams2 = new ti_sysbios_knl_Task.Params(); taskParams2.instance.name = "USBProcToDSPSM"; taskParams2.priority = 1; taskParams2.vitalTaskFlag = false; Program.global.USBProcToDSPSM = ti_sysbios_knl_Task.create("&usb_proc_sm_task", taskParams2); and I have a breakpoint at the start of this task. The breakpoint never gets hit. How do I get this task to start? Thank you.