我现在调试MSP430F6433单片机。但是只要有一下中断程序,就会报错。
Error[e16]: Segment RESET (size: 0x2 align: 0x1) is too long for segment definition. At least 0x2 more bytes needed. The problem occurred while processing the segment placement command "-Z(CODE)RESET=FFFE-FFFF", where at ...........
按照论坛高手提示。菜单Project的Options的Linker选项中的Config中,选择Override default program,并在其子项中选择Defined bv applicat。OK后退出。编译通过。但是仿真,程序一直在该中断程序中运行,不进主程序,而且下载时候提示stack warning。。。。。。请各位高手解决,小弟不胜感激!!!
#pragma vector=RESET_VECTOR //包括BOR,POR,PUC.在此用作LPM3.5唤醒复位
__interrupt void System_reset_ISR()
{
switch(SYSRSTIV)
{
case 0x08: //LPMx.5唤醒产生BOR
break;
case 0x0c: //SVSL产生POR复位
break;
}
} |