Porting Tip: possibly unassigned ISR handler

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

Porting Tip: possibly unassigned ISR handler

2,177 次查看
Lokutas
Contributor I
Hello community...
 
When "hand-porting" a S08 QE project to a Coldfire V1 QE project I get the following message.
 
Porting Tip: possibly unassigned ISR handler
 
for all my ISRs, why is this?
 
Help and hints welcomed.
 
Thanks,
Carlos
标签 (1)
标记 (1)
0 项奖励
回复
1 回复

1,240 次查看
stanish
NXP Employee
NXP Employee
I'd suggest you to check all of your ISRs. Are all of them assigned to appropriate vector?
e.g in case your original HC08 interrupt routine is declared as:

void interrupt MyISR(void)
{
....
}


and the routine is assigned to appropriate interrupt vector in the original .prm file e.g.

Vector 13 MyISR

then this information is not passed into CFv1 project and a  "Porting Tip" may be generated.
It's recommended to use rather:

void interrupt VectorNumber_Vspi1 MyISR(void)
{
...
}
0 项奖励
回复