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.

28377s Flash烧写求助

大家好,求助一个Flash烧写的问题。
我在使用29377s芯片,程序已经编写完毕,平时在RAM中Debug的时候也正常,现在准备烧写的Flash中。
已经把link command file更换成了2837xS_Generic_FLASH_lnk.cmd
 
但是在烧写后运行时程序会跳入下面这个异常处理函数。请问是程序异常的原因吗?这个应该怎么修改
非常感谢各位的帮助。
//
// Illegal Operation Trap
//
interrupt void ILLEGAL_ISR(void)
{
    //
    // Insert ISR Code here
    //

    //
    // Next two lines for debug only to halt the processor here
    // Remove after inserting ISR Code
    //
    asm ("      ESTOP0");
    for(;;);
}