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.
你好,我的工程中包含 BOOT 和 APP 两部分,地址分别在 0x 0000 ,和0x2000
其中两个都需要串口接收中断,但是,一但在boot 中 定义了
#pragma vector = URX0_VECTOR 串口接收中断,就会导致 APP 中的 串口接收中断失效。我感觉是两个项目的中断相互影响,请问如何解决这个问题,谢谢
@Alvin Chen, 谢谢您的回答,但是我没有看明白。能给我个demo 吗,我这里不光是串口接收中断相互影响,我测试一下,定时中断和其他中断也是,只要在BOOT里面定义了中断向量,APP 里面的对应的中断就失效, 中断直接跳到了BOOT 的中断应用程序里了