Back
//******************************************************************************
// MSP430x47xx Demo - Comparator A, Poll input CA0, result in P5.1
//
// Description: The Voltage at pin CA0 (Vcompare) is compared with reference
// voltage of 0.5*Vcc. LED is toggled when Vcompare crosses the ref voltage.
//
//
// MSP430x47xx
// -----------------
// /|\| |
// | | |
// --|RST P1.6/CA0|<--Vcompare
// | |
// <--|CAOUT/P2.6 |
// | P5.1|-->LED
//
// P. Thanigai / K.Venkat
// Texas Instruments Inc.
// November 2007
// Built with CCE Version: 3.2.0 and IAR Embedded Workbench Version: 3.42A
//******************************************************************************
#include <msp430x47x4.h>
void main(void)
{
WDTCTL = WDTPW+WDTHOLD; // Stop WDT
FLL_CTL0 |= XCAP14PF; // Configure load caps
CACTL1 = CAON+CAREF_2+CARSEL; // Enable Comp, ref = 0.5*Vcc
CACTL2 = P2CA0; // Pin to CA0
CAPD |= CAPD6; // Port pin buffer disable
P5DIR |= BIT1; // P5.1 = output direction
P2SEL |= BIT6; // P2.6 = CAOUT
while(1)
if (CAOUT&CACTL2)
P5OUT |= 0x002; // Set LED if result =1
else
P5OUT &= ~0x002; // Clear LED if result =0
}
|