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.
使用CCS12.2.0.00009 版本, 燒錄工具使用Hlackhawk USB V2 System Trace
每次一Run 到
EALLOW;
PieVectTable.EPWM1_INT = &MainISR;
EDIS;
此命令後 , 就會跳到 illegal ISR(), 是否與使用Stack Size 有關, 或者還是有其他想法
在中斷向量程式內, 重新設定PieVectTable 會有影響嗎?? 例如PieVectTable.EPWM1_INT= &a, 然後因中斷產生在a 程式內執行,
結果在a程式內, 某地方又將PieVectTable.EPWM1_INT= &b, 期待下次中斷產生可以直接在b 程式執行, 這樣可以嗎?