Tool/software:
Hi,
I need to determine at runtime whether my code is executing in an interrupt context or a task context on F29H850TU. This is for implementing context-aware function calls. My use case looks something like this:
if(isInInterrupt()){
doSomethingFromISR();
}
else{
doSomething();
}Is there a driverlib API or a particular register I can use to detect the context ?

