共2条
1/1 1 跳转至页
f415 关于f415的看门狗中断的疑问!
问
小弟在将看门狗运行在看门狗模式下时,发现不能进入中断向量0FFFE,而且编译都不能通过!希望各位大虾帮忙看看,在线等啊!
源程序如下:
#include <MSP430x41x.h>
char digit[10] = {
0xFA, /* "0" LCD segments a+b+c+d+e+f */
0x60, /* "1" */
0xD6, /* "2" */
0xF4, /* "3" */
0x6C, /* "4" */
0xBC, /* "5" */
0xBE, /* "6" */
0xE0, /* "7" */
0xFE, /* "8" */
0xFC /* "9" */
};
void main(void)
{ _DINT();
WDTCTL =WDT_ARST_1000; // WDT 250ms, ACLK, interval timer
IE1 |= WDTIE; // Enable WDT interrupt
FLL_CTL0 |= XCAP14PF; // Configure load caps
LCDCTL=LCDON+LCD4MUX+LCDP2;
BTCTL=BTFRFQ1;
int i;
for(i=0;i<12;i++)
LCDMEM[i]=digit[i%10];
_EINT(); // Enable interrupts
for (;;)
{ LPM3;
}
}
// Watchdog Timer interrupt service routine
#pragma vector=RESET_VECTOR
__interrupt void reset(void)
{ int i;
for(i=0;i<12;i++)
LCDMEM[i]=digit[1];
}
出错信息如下:
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(CONST)RESET=FFFE-FFFF", where at the moment of placement the available memory ranges were "-none-"
Reserved ranges relevant to this placement: 答 1: 各位大哥帮帮忙阿,分析一下原因 答 2: 呵呵!看门够是让你定时喂狗的,是保护系统跑飞的。不是让你作定时用的啊!你好好看看看门狗的知识吧 答 3: 这个我也知道阿,我想问的是为什么这样编译不能通过啊? 答 4: Reset——VECTOR中断不是给你用的,它是系统复位,看门构溢出时用的,它的地址就是你程序的起始地址,你是不能设置的。
源程序如下:
#include <MSP430x41x.h>
char digit[10] = {
0xFA, /* "0" LCD segments a+b+c+d+e+f */
0x60, /* "1" */
0xD6, /* "2" */
0xF4, /* "3" */
0x6C, /* "4" */
0xBC, /* "5" */
0xBE, /* "6" */
0xE0, /* "7" */
0xFE, /* "8" */
0xFC /* "9" */
};
void main(void)
{ _DINT();
WDTCTL =WDT_ARST_1000; // WDT 250ms, ACLK, interval timer
IE1 |= WDTIE; // Enable WDT interrupt
FLL_CTL0 |= XCAP14PF; // Configure load caps
LCDCTL=LCDON+LCD4MUX+LCDP2;
BTCTL=BTFRFQ1;
int i;
for(i=0;i<12;i++)
LCDMEM[i]=digit[i%10];
_EINT(); // Enable interrupts
for (;;)
{ LPM3;
}
}
// Watchdog Timer interrupt service routine
#pragma vector=RESET_VECTOR
__interrupt void reset(void)
{ int i;
for(i=0;i<12;i++)
LCDMEM[i]=digit[1];
}
出错信息如下:
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(CONST)RESET=FFFE-FFFF", where at the moment of placement the available memory ranges were "-none-"
Reserved ranges relevant to this placement: 答 1: 各位大哥帮帮忙阿,分析一下原因 答 2: 呵呵!看门够是让你定时喂狗的,是保护系统跑飞的。不是让你作定时用的啊!你好好看看看门狗的知识吧 答 3: 这个我也知道阿,我想问的是为什么这样编译不能通过啊? 答 4: Reset——VECTOR中断不是给你用的,它是系统复位,看门构溢出时用的,它的地址就是你程序的起始地址,你是不能设置的。
共2条
1/1 1 跳转至页
回复
有奖活动 | |
---|---|
【有奖活动】分享技术经验,兑换京东卡 | |
话不多说,快进群! | |
请大声喊出:我要开发板! | |
【有奖活动】EEPW网站征稿正在进行时,欢迎踊跃投稿啦 | |
奖!发布技术笔记,技术评测贴换取您心仪的礼品 | |
打赏了!打赏了!打赏了! |
打赏帖 | |
---|---|
与电子爱好者谈读图二被打赏50分 | |
【FRDM-MCXN947评测】Core1适配运行FreeRtos被打赏50分 | |
【FRDM-MCXN947评测】双核调试被打赏50分 | |
【CPKCORRA8D1B评测】---移植CoreMark被打赏50分 | |
【CPKCORRA8D1B评测】---打开硬件定时器被打赏50分 | |
【FRDM-MCXA156评测】4、CAN loopback模式测试被打赏50分 | |
【CPKcorRA8D1评测】--搭建初始环境被打赏50分 | |
【FRDM-MCXA156评测】3、使用FlexIO模拟UART被打赏50分 | |
【FRDM-MCXA156评测】2、rt-thread MCXA156 BSP制作被打赏50分 | |
【FRDM-MCXN947评测】核间通信MUTEX被打赏50分 |