//****************************************************************************** // MSP430G2xx2 Demo - Timer_A, PWM TA1, Up Mode, 32kHz ACLK // // Description: This program generates one PWM output on P1.2 using // Timer_A configured for up mode The value in CCR0, 512-1, defines the PWM // period and the value in CCR1 the PWM duty cycles Using 32kHz ACLK // as TACLK, the timer period is 15.6ms with a 75% duty cycle on P1.2 // Normal operating mode is LPM3 // ACLK = TACLK = LFXT1 = 32768Hz, MCLK = SMCLK = default DCO // //* External watch crystal installed on XIN XOUT is required for ACLK *// // // MSP430G2xx2 // // /|\| XIN|// | | | 32kHz // |RST XOUT|// | | // | P1.2/TA1| > CCR1 - 75% PWM // // D Dang // Texas Instruments, Inc // December 2010 // Built with CCS Version 4.2.0 and IAR Embedded Workbench Version: 5.10 //****************************************************************************** #include void main(void) { WDTCTL = WDTPW + WDTHOLD; P1DIR |= 0x0C; P1SEL |= 0x0C; CCR0 = 512-1; CCTL1 = OUTMOD_7; CCR1 = 384; TACTL = TASSEL_1 + MC_1; } _BIS_SR(LPM3_bits); // // // // // // // Stop WDT P1.2 and P1.3 output P1.2 and P1.3 TA1/2 options PWM Period CCR1 reset/set CCR1 PWM duty cycle ACLK, up mode // Enter LPM3