We are using the Exception and MemoryProtect modules in SYS/BIOS 6.x.
Until now, we have had the following line in our .cfg file, and are getting memory fault exceptions reported correctly:
....
BIOS.libType = BIOS.LibType_Custom;
var MemoryProtect = xdc.useModule('ti.sysbios.family.c64p.MemoryProtect');
var Exception = xdc.useModule('ti.sysbios.family.c64p.Exception');
Exception.exceptionHook = '&My_ExceptionHandler';
Exception.enableExternalMPC = true;
Exception.enablePrint = true;
We want to remove the line "BIOS.libType = BIOS.LibType_Custom;" (to help our customers), but when I remove that line, suddenly My_ExceptionHandler is no longer called on an access fault.
So what do I have to do to continue getting exceptions reported without using the "BIOS.LibType_Custom" option?
Regards, Jonathan