7954|5

25

帖子

0

TA的资源

一粒金砂(中级)

楼主
 

iar编译430问题 [复制链接]

一个简单的P1口中断例程,编译时出现如下错误,请问这是我哪里设置的不对还是少了那个头文件,还是其他什么问题,求大神指教


Error[Pe020]: identifier "SCG0" is undefined E:\msp430中断\新建文件夹\contiki-2.6\cpu\msp430\f5xxx\msp430.c 46
Error[Pe020]: identifier "uint16_t" is undefined E:\msp430中断\新建文件夹\contiki-2.6\cpu\msp430\f5xxx\msp430.c 50
Error[Pe020]: identifier "UCSCTL0" is undefined E:\msp430中断\新建文件夹\contiki-2.6\cpu\msp430\f5xxx\msp430.c 51
Error[Pe020]: identifier "UCSCTL1" is undefined E:\msp430中断\新建文件夹\contiki-2.6\cpu\msp430\f5xxx\msp430.c 52
Error[Pe020]: identifier "DCORSEL_4" is undefined E:\msp430中断\新建文件夹\contiki-2.6\cpu\msp430\f5xxx\msp430.c 52
Error[Pe020]: identifier "UCSCTL2" is undefined E:\msp430中断\新建文件夹\contiki-2.6\cpu\msp430\f5xxx\msp430.c 54
Error[Pe020]: identifier "MSP430_CPU_SPEED" is undefined E:\msp430中断\新建文件夹\contiki-2.6\cpu\msp430\f5xxx\msp430.c 54
Error[Pe020]: identifier "UCSCTL4" is undefined E:\msp430中断\新建文件夹\contiki-2.6\cpu\msp430\f5xxx\msp430.c 55
Warning[Pe223]: function "__bic_SR_register" declared implicitly E:\msp430中断\新建文件夹\contiki-2.6\cpu\msp430\f5xxx\msp430.c 58
Error[Pe020]: identifier "P1IE" is undefined E:\msp430中断\新建文件夹\contiki-2.6\cpu\msp430\f5xxx\msp430.c 132
Error[Pe020]: identifier "P2IE" is undefined E:\msp430中断\新建文件夹\contiki-2.6\cpu\msp430\f5xxx\msp430.c 133
Error[Pe020]: identifier "MSP430_REQUIRE_LPM1" is undefined E:\msp430中断\新建文件夹\contiki-2.6\cpu\msp430\f5xxx\msp430.c 151
Error[Pe020]: identifier "MSP430_REQUIRE_LPM1" is undefined E:\msp430中断\新建文件夹\contiki-2.6\cpu\msp430\f5xxx\msp430.c 159
Warning[Pe223]: function "dint" declared implicitly E:\msp430中断\新建文件夹\contiki-2.6\cpu\msp430\f5xxx\msp430.c 167
Warning[Pe223]: function "eint" declared implicitly E:\msp430中断\新建文件夹\contiki-2.6\cpu\msp430\f5xxx\msp430.c 172
Warning[Pe223]: function "__get_SR_register" declared implicitly E:\msp430中断\新建文件夹\contiki-2.6\cpu\msp430\f5xxx\msp430.c 221
Warning[Pe223]: function "__bic_SR_register" declared implicitly E:\msp430中断\新建文件夹\contiki-2.6\cpu\msp430\f5xxx\msp430.c 222
Error[Pe020]: identifier "GIE" is undefined E:\msp430中断\新建文件夹\contiki-2.6\cpu\msp430\f5xxx\msp430.c 222
Warning[Ta031]: When defining __low_level_init the header file 'intrinsics.h' should  E:\msp430中断\新建文件夹\contiki-2.6\cpu\msp430\f5xxx\msp430.c 231
have been included
Error[Pe020]: identifier "WDTCTL" is undefined E:\msp430中断\新建文件夹\contiki-2.6\cpu\msp430\f5xxx\msp430.c 234
Error[Pe020]: identifier "WDTPW" is undefined E:\msp430中断\新建文件夹\contiki-2.6\cpu\msp430\f5xxx\msp430.c 234
Error[Pe020]: identifier "WDTHOLD" is undefined E:\msp430中断\新建文件夹\contiki-2.6\cpu\msp430\f5xxx\msp430.c 234
Error while running C/C++ compiler
wismote_simple_main.c  
Warning[Pa050]: non-native end of line sequence detected (this diagnostic is only  E:\msp430中断\新建文件夹\contiki-2.6\core\sys\autostart.h 1
issued once)
Warning[Pe223]: function "button_init" declared implicitly E:\msp430中断\新建文件夹\contiki-2.6\platform\wismote\wismote_simple_main.c 71

Total number of errors: 16
Total number of warnings: 10

最新回复

头文件没选择好,或芯片型号有没有选对和头文件是不是匹配  详情 回复 发表于 2013-4-27 16:50
 
点赞 关注

回复
举报

5015

帖子

12

TA的资源

裸片初长成(初级)

沙发
 
中文路径

点评

不是中文路径的问题,改为全英文的路径也不行,还是相同的问题  详情 回复 发表于 2013-4-27 19:28
 
个人签名《MCU工程师炼成记》作者之一
 

回复

188

帖子

0

TA的资源

纯净的硅(初级)

板凳
 
头文件没选择好,或芯片型号有没有选对和头文件是不是匹配

点评

程序是在别的编译成功的程序上改的,头文件没敢动,还加了几个,不知道是不是还少哪个,所有程序如下 #include \"contiki.h\" #include #include \"blink3.h\" #include \"leds.h\" #include \"uart1.h\" #i  详情 回复 发表于 2013-4-27 19:32
 
 
 

回复

25

帖子

0

TA的资源

一粒金砂(中级)

4
 

回复 沙发 wstt 的帖子

不是中文路径的问题,改为全英文的路径也不行,还是相同的问题
 
 
 

回复

25

帖子

0

TA的资源

一粒金砂(中级)

5
 

回复 板凳 kingheimer 的帖子

程序是在别的编译成功的程序上改的,头文件没敢动,还加了几个,不知道是不是还少哪个,所有程序如下
#include "contiki.h"
#include
#include "blink3.h"
#include "leds.h"
#include "uart1.h"
#include "stdio.h"
#include "dev/cc2520.h"
#include "lib/random.h"
#include "net/netstack.h"
#include "net/mac/frame802154.h"
#include "net/rime.h"

#include "node-id.h"
#include "sys/autostart.h"
#include "sys/profile.h"
//#include "sprintf.h"
#include "ds2411.h"
#include "i2c.h"
#include "light.h"
#include "dev/button-sensor.h"
#include "msp430x54x.h"
#include "isr_compat.h"

#include
#ifndef NODE_ID
#define NODE_ID        0x4
#endif /* NODE_ID */

void main(void)
{
/*
   * Initalize hardware.
   */
  WDTCTL = WDTPW + WDTHOLD;
  msp430_cpu_init();
  clock_init();
  I2C_Init();
  leds_init();
  ds2411_init();
  
  button_init();
  sensors_light_init();
  uart1_init(115200);

        //点亮LED灯
        P5OUT |= BIT2;
        P5DIR |= BIT2;
       
        P1DIR &= ~BIT4;        //中断引脚应该设置为输入
        P1IES |= BIT4;        //设置为下降沿触发 =0上升沿触发
        P1IFG &= ~BIT4;        //因为P1IES设置会使中断标志位置位,故清零
        P1IE |= BIT4;        //设置中断使能
        _EINT();        //打开总中断
        LPM3;                //设置为LPM3低功耗模式,产生中断时自动激活
                        //为活动模式,如果在中断中没有修改低功耗模
                        //式,中断程序执行完成后,又进入LPM3模式
        while(1);
}


#pragma vector = PORT1_VECTOR
__interrupt void P1_Interrupt(void)
{
        if((P1IFG&0x10) == BIT4)//判断是不是按键P10产生的中断
                                //因为P1端口共用这个中断向量表
        {
                P1IFG &= ~BIT4;        //中断标志清楚(注意)
                P5OUT ^= BIT2;        //LED取反
        }
        else
        {
                P1IFG &= ~BIT4;        //非P10的中断处理
        }
}
 
 
 

回复

25

帖子

0

TA的资源

一粒金砂(中级)

6
 
我重新把编译成功的例子改为我需要的程序,这次没有问题了,不知道什么原因,我原来也是这么做的啊,也许是之前不小心误删了什么东西吧。
 
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/10 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表