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.

TMS320F280025: Bootloader在实现程序跳转时提示No source available for "SysCtl_delay() at G:/**\**\**.out:{3} 0x82852{4}" ,或者直接跳到Interrupt_illegalOperationHandler这个中断

Part Number: TMS320F280025

我在使用两种方法实现程序跳转,分别会报下面图片中的两种错误

第一种:直接通过地址跳转

EALLOW;
IER = 0x0000;
IFR = 0x0000;
EDIS;
__disable_interrupts();
((void(*)())0x080000)();

第二种是看门狗复位