?? test44x_ta02.c
字號:
//******************************************************************************
// MSP430-TEST44X Demo - Timer_A Toggle P5.1, CCR0 upmode ISR, DCO SMCLK
//
// Description; toggle P5.1 using using software and TA_0 ISR. Timer_A is
// configured in upmode, thus the timer will overflow when TAR counts to CCR0.
// In this example, CCR0 is loaded with 20000.
// ACLK = n/a, MCLK = SMCLK = TACLK = DCO ~ 800kHz
//
// MSP430F449
// ---------------
// /|\| XIN|-
// | | |
// --|RST XOUT|-
// | |
// | P5.1|-->LED
//
// Yang Rui
// Lierda, Inc
// NOVEMBER 2003
// Built with IAR Embedded Workbench Version: 1.26B
//******************************************************************************
#include <msp430x44x.h>
void main(void)
{
WDTCTL = WDTPW + WDTHOLD; // Stop WDT
TACTL = TASSEL1 + TACLR; // SMCLK, clear TAR
CCTL0 = CCIE; // CCR0 interrupt enabled
CCR0 = 20000;
P5DIR |= 0x02; // Set P5.1 to output direction
TACTL |= MC0; // Start Timer_a in upmode
_EINT(); // Enable interrupts
for (;;)
{
_BIS_SR(CPUOFF); // CPU off
_NOP(); // Required only for C-spy
}
}
// Timer A0 interrupt service routine
interrupt[TIMERA0_VECTOR] void Timer_A (void)
{
P5OUT ^= 0x02; // Toggle P5.1 using exclusive-OR
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -