Other Parts Discussed in Thread: SYSBIOS
Hi,
Let me talk about SYS/BIOS for AM335x.
We use processor SDK v4.3(SYS/BIOS 6.52.0.12)
Exception_excHandler in Exception.c include this source code.
/* Call user's exception hook */
if (Exception_excHookFuncs[coreId] != NULL) {
Exception_excHookFuncs[coreId](excContextp);
}
Can user use this Exception_excHookFuncs for getting excContextp ?
If yes, how to use this function.
extern const Exception_ExceptionHookFuncPtr Exception_excHookFunc;
const Exception_excHookFunc[coreId](excContextp)
{
unsigned int val;
val = excContextp;
}
But PC can not jump this function
Best Regards
Hiroyasu