Hi Team,
when I use a timer task in TI RTOS : who has higher priority : a timer task or a "regular" (non timer based) task ?
I am getting confusing results when I do tests on my IDK
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.
Hi Inno,
The timer (dmTimer specifically) is a HW IP and can raise interrupts to the SoC after events such as overflow etc. I believe the task you are mentioning is a TI-RTOS task, that is handled by SYS BIOS.
The timer priority is based on the ARM GIC priority and it should not be confused with the the BIOS TASK priority. You can create a timer task (RTOS TASK), which can create a timer and can register an ISR for timer, which is called in HWI context. (not Task context).
Hope it clarifies it
Thanks