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.

sys/bios exception处理

Other Parts Discussed in Thread: SYSBIOS

Hi,

设计中使用到了Nyquist的Exception模块,在TCI文件中做了如下配置:

var ExceptionDSP  = xdc.useModule('ti.sysbios.family.c64p.Exception');

ExceptionDSP.enablePrint = true;

var Hwi           = xdc.useModule('ti.sysbios.family.c64p.Hwi');

Hwi.enableException = true;

ExceptionDSP.nmiHook = '&myIntHookFxn';

测试时,在Hook函数myIntHookFxn中设置断点,能够顺利产生内部异常,但是没有进入myIntHookFxn函数,

请问这是什么原因?有没有可供参考的例子?