3714|2

4

帖子

0

TA的资源

一粒金砂(初级)

楼主
 

关于msp430固件库使用问题 [复制链接]

我在使用MSP430F5xx_6xx的driverlib时  在调用#include "timer_a.c"时会报错,错误如下:

Error[Pe020]: identifier "OFS_TAxCTL" is undefined F:\driverlib\MSP430F5xx_6xx\timer_a.c 79
Error[Pe020]: identifier "OFS_TAxCTL" is undefined F:\driverlib\MSP430F5xx_6xx\timer_a.c 183
。。。。。。。。

此类错误有十几个,把#include "timer_a.c“屏蔽  就ok了,请问大家是什么问题? 源程序如下

#include "debug.h"
#include
#include "inc/hw_memmap.h"
#include "ucs.h"
#include "ucs.c"
#include "pmm.h"
#include "pmm.c"
#include "wdt_a.h"
#include "wdt_a.c"
#include "gpio.h"
#include "gpio.c"
#include "sfr.h"
#include "sfr.c"
#include "timer_a.h"
#include "timer_a.c"
#define TIMER_A_PERIOD 32768

//*****************************************************************************
//
//Target frequency for MCLK in kHz
//
//*****************************************************************************
#define UCS_MCLK_DESIRED_FREQUENCY_IN_KHZ   12000

//*****************************************************************************
//
//MCLK/FLLRef Ratio
//
//*****************************************************************************
#define UCS_MCLK_FLLREF_RATIO   366

//*****************************************************************************
//
//Variable to store current Clock values
//
//*****************************************************************************
unsigned long clockValue = 0;

//*****************************************************************************
//
//Variable to store status of Oscillator fault flags
//
//*****************************************************************************
unsigned int status;
void main(void)
{
   

   //Stop WDT
    WDT_A_hold(WDT_A_BASE);

    //Set VCore = 1 for 12MHz clock
     PMM_setVCore(PMM_BASE,
       PMM_CORE_LEVEL_1
        );

    //Set P8.0 ,P8.1to output direction
    GPIO_setAsOutputPin(
        GPIO_PORT_P8,
        GPIO_PIN0+GPIO_PIN1
        );


    //Set DCO FLL reference = XT1CLK
UCS_clockSignalInit(
        UCS_BASE,
        UCS_FLLREF,
        UCS_XT1CLK_SELECT,
        UCS_CLOCK_DIVIDER_1
        );
    //Set ACLK = REFO
    UCS_clockSignalInit(
        UCS_BASE,
        UCS_ACLK,
         UCS_XT1CLK_SELECT,
        UCS_CLOCK_DIVIDER_1
        );

    //Set Ratio and Desired MCLK Frequency 12MHz  and initialize DCO
   UCS_initFLLSettle(
        UCS_BASE,
        UCS_MCLK_DESIRED_FREQUENCY_IN_KHZ,
        UCS_MCLK_FLLREF_RATIO
        );
   
    // Enable global oscillator fault flag
    SFR_enableInterrupt(SFR_BASE,
                        SFR_OSCILLATOR_FAULT_INTERRUPT
                        );
   
  TIMER_A_configureUpDownMode(
        TIMER_A1_BASE,
        TIMER_A_CLOCKSOURCE_ACLK,
        TIMER_A_CLOCKSOURCE_DIVIDER_1,
        TIMER_A_PERIOD,
        TIMER_A_TAIE_INTERRUPT_ENABLE,
        TIMER_A_CAPTURECOMPARE_INTERRUPT_DISABLE,
        TIMER_A_DO_CLEAR
        );

    TIMER_A_startCounter(
                TIMER_A1_BASE,
                TIMER_A_UPDOWN_MODE
                );

    // Enable global interrupt
    __bis_SR_register(GIE);   

     //Start timer in up down mode
   
    //Enter LPM3
    __bis_SR_register(LPM3_bits);

    //For debugger
    __no_operation();
    //Verify if the Clock settings are as expected
    clockValue = UCS_getSMCLK(UCS_BASE);
    clockValue = UCS_getMCLK(UCS_BASE);
    clockValue = UCS_getACLK(UCS_BASE);
   
while (1)                                 // Test LED
  {
   
     P8OUT = (BIT2);
      P8OUT = (BIT1);
   
}
}

#pragma vector=TIMER1_A0_VECTOR
__interrupt void TIMER1_A0_ISR(void)
{
   P8OUT ^= (BIT2);
      P8OUT ^= (BIT1);
  LPM3_EXIT;                       
}

最新回复

楼上正解  详情 回复 发表于 2012-12-26 14:10
 
点赞 关注

回复
举报

5015

帖子

12

TA的资源

裸片初长成(初级)

沙发
 
实际上include*.h就够了
 
 

回复

48

帖子

0

TA的资源

一粒金砂(中级)

板凳
 
楼上正解
 
 
 

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

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

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

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

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

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

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

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