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.

28377做bootload跳转问题

项目需要做一个28377的在线升级,写了一个bootload程序,调试的时候程序会跳转到ILLEGAL_ISR.

void run_app(void)
{
   void (*app)(void);

   app = (void(*)(void))(ENTRYADDR);

   (*app)();
}