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.

How to get the HWI handler on C66 cores?

Other Parts Discussed in Thread: SYSBIOS

Hi all,

It's easy to get the Task_Handle by Task_self().

Also, it's possible to get the HWI handle by Hwi_getHandle() on some specific processors, like arm.

But now I need to get the Task_Handle which was returned from Hwi_create in HWI entry functions on C66 cores. I checked the docs and sysbios manuals but didn't find any solution.

Is it possible that I can use some api like Task_self() to get the HWI handle?

Could someone help me on this issue?

Thanks very much!

  • Hi,

    Zongbin He said:
    But now I need to get the Task_Handle which was returned from Hwi_create in HWI entry functions on C66 cores. I checked the docs and sysbios manuals but didn't find any solution.

    I'm assuming you meant "But now I need to get the Hwi_Handle which was returned from Hwi_create in HWI entry functions on C66 cores."

    You can use the Hwi_getHandle() API on C66 also. You have to use the ti/sysbios/family/c64p/Hwi module.

    Todd

  • Hi Todd,

    I will give a try on C66 using Hwi_getHandle() API.

    Thank you very much!