⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test44x_ta03.c

📁 ADC12操作 DATA FLASH操作 EEPROM操作 FLASH读写操作 LCD点阵操作 TIMER_A_操作 Timer_B操作 比较器A操作 端口操作 基
💻 C
字号:
//******************************************************************************
//  MSP430-TEST44X Demo - Timer_A Toggle P5.1, overflow ISR, DCO SMCLK
//
//  Description; This program will toggle P5.1 using software and the timer_A
//  overflow ISR. In this example an ISR will trigger when TA overflows.
//  Inside the ISR P5.1 is toggled.  Toggle rate is 16hz using DCO frequency
//  of 1048576 with default FLL and watch crystal.	
//  ACLK = TACLK = 32768, MCLK = SMCLK = DCO = 1.048576MHz
//  //*An external watch crystal on XIN XOUT is required for ACLK*//	
//
//           MSP430F449
//         ---------------
//     /|\|            XIN|-
//      | |               | 32kHz
//      --|RST        XOUT|-
//        |               |
//        |           P5.1|-->LED
//  zhangchong
//  Lierda, Inc
//  February 2006.03
//  Built with IAR Embedded Workbench Version: 3.40a
//  ID:  MSP430-TEST44X
//  DATA:2005-7-12
//  REV: 2.0A
//  程序功能:该程序是用F449的内部TIMER_A CCR0的比较模式功能,来控制P5.1口驱动LED 65.536ms(65536/1M)闪烁。
//  硬件连接:先连接P5.1口的短接器,然后连接键盘上方的短接器J2。
//
//******************************************************************************

#include <msp430x44x.h>

void main(void)
{
  WDTCTL = WDTPW + WDTHOLD;             // Stop WDT
  FLL_CTL0 |= XCAP14PF;                 // Configure load caps
  TACTL = TASSEL1 + TACLR + TAIE;       // SMCLK, clr. TAR, interrupt
  P5DIR |= 0x02;                        // Set P5.1 to output direction
  TACTL |= MC1;                         // Start Timer_a in continous
  _EINT();                              // Enable interrupts

  for (;;)
  {
    _BIS_SR(CPUOFF);                    // CPU off
    _NOP();                             // Required only for C-spy
  }
}

// Timer_A3 Interrupt Vector (TAIV) handler
//interrupt [TIMERA1_VECTOR] void Timer_A(void)
#pragma vector=TIMERA1_VECTOR
__interrupt void Timer_A (void)
{
 switch( TAIV )
 {
   case  2: break;                      // CCR1 not used
   case  4: break;                      // CCR2 not used
   case 10: P5OUT ^= 0x02;              // overflow
            break;
 }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -