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.

Adding function to the Idle Task list

Other Parts Discussed in Thread: SYSBIOS

Void Idle_run()
{
    Int i;
    UInt hwiKey;

    hwiKey = Hwi_enable();    

    for (i = 0; i < Idle_funcList.length; i++) {
        Idle_funcList.elem[i]();
    }

Looking to add a function to be run continuely in the idle task

how do add to this list both statically and dynamically?

I s there more SYSBIOS docs than the users Manual

Thanks

Mark

  • Mark,

    The list of idle functions is only statically configurable; it cannot be modified at runtime. Please refer to the API Reference for details about adding them statically.

    Note: the functions can be added graphically also in the "Idle" module.

    Todd