?? fet410_ta_04.c
字號:
//******************************************************************************
// MSP-FET430P410 Demo - Timer_A, Toggle P5.1, Overflow ISR, 32kHz ACLK
//
// Description: Toggle P5.1 using software and the Timer_A overflow ISR.
// In this example an ISR triggers when TA overflows. Inside the ISR P5.1
// is toggled. Toggle rate is exactly 0.5Hz. Proper handling the TAIV
// interrupt vector is demonstrated.
// ACLK = LFXT1 = 32768Hz, MCLK = SMCLK = default DCO = 32 x ACLK = 1048576Hz
// //* An external watch crystal between XIN & XOUT is required for ACLK *//
//
// MSP430F413
// ---------------
// /|\| XIN|-
// | | | 32kHz
// --|RST XOUT|-
// | |
// | P5.1|-->LED
//
// M. Buccini
// Texas Instruments Inc.
// Feb 2005
// Built with CCE Version: 3.2.0 and IAR Embedded Workbench Version: 3.21A
//*****************************************************************************
#include <msp430x41x.h>
void main(void)
{
WDTCTL = WDTPW + WDTHOLD; // Stop WDT
FLL_CTL0 |= XCAP14PF; // Configure load caps
P5DIR |= 0x02; // Set P5.1 to output direction
TACTL = TASSEL_1 + MC_2 + TAIE; // ACLK, cont. mode, interrupt
_BIS_SR(LPM3_bits + GIE); // Enter LPM3 w/ interrupt
}
// Timer_A3 Interrupt Vector (TAIV) handler
#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 + -