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.

OMAP-L138: Trigger the exception hook manually

Part Number: OMAP-L138
Other Parts Discussed in Thread: SYSBIOS

Hello,
is it possible to trigger the exception hook manually?
In principle, I use the following code:
In the application cfg file:
var Exc = xdc.useModule('ti.sysbios.family.c64p.Exception');
Exc.exceptionHook = '&Exception_Hook_Function';
Exc.enablePrint = true;

In the code:
void Exception_Hook_Function( void )
{
  // do something ...
}
How can the function Exception_Hook_Function be reached using manually written code?
Thanks in advance.
Regards,
Friedrich