Back
//*****************************************************************************
// MSP430x47x4 Demo - SD16, Continuous Conversion on a Group of 4 Channels
//
// Description: This program uses the SD16 module to perform continuous
// conversions on a group of channels (0, 1,2 and 3). A SD16 interrupt occurs
// whenever the conversions have completed. Test by applying voltages to the
// four input channels and setting a breakpoint at the line indicated
// below. Run program until it reaches the breakpoint, then use
// the debugger's watch window to view the conversion results. Results
// (upper 16 bits only) are stored in three arrays, one for each channel.
// ACLK = LFXT1 = 32768 Hz, MCLK = SMCLK = DCO = 32 x ACLK = 1048576 Hz
// //* An external watch crystal on XIN XOUT is required for ACLK *//
// //* For minimum Vcc required for SD16 module - see datasheet *//
// //* 100nF cap btw Vref and AVss is recommended when using 1.2V ref *//
//
// MSP430x47x4
// -----------------
// /|\| XIN|-
// | | | 32kHz
// --|RST XOUT|-
// | |
// Vin1+ -->|A0.0+ |
// Vin1- -->|A0.0- |
// Vin2+ -->|A1.0+ |
// Vin2- -->|A1.0- |
// Vin3+ -->|A2.0+ |
// Vin3- -->|A2.0- |
// Vin4+ -->|A3.0+ |
// Vin4- -->|A3.0- VREF |---+
// | | |
// | | -+- 100nF
// | | -+-
// | | |
// | AVss |---+
// | |
//
// 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>
#define Num_of_Results 8
/* Arrays to store SD16 conversion results */
unsigned int Ch0results[Num_of_Results];
unsigned int Ch1results[Num_of_Results];
unsigned int Ch2results[Num_of_Results];
unsigned int Ch3results[Num_of_Results];
void main(void)
{
volatile unsigned int i; // Use volatile to prevent removal
// by compiler optimization
WDTCTL = WDTPW + WDTHOLD; // Stop WDT
FLL_CTL0 |= XCAP14PF; // Configure load caps
for (i = 0; i < 10000; i++); // Delay for 32 kHz crystal to
// stabilize
SD16CTL = SD16REFON + SD16SSEL0; // 1.2V ref, SMCLK
SD16CCTL0 |= SD16GRP; // Group with CH1
SD16CCTL1 |= SD16GRP; // Group with CH2
SD16CCTL2 |= SD16GRP; // Group with CH3
SD16CCTL3 |= SD16IE; // Enable interrupt
for (i = 0; i < 0x3600; i++); // Delay for 1.2V ref startup
SD16CCTL3 |= SD16SC; // Set bit to start conversion
__bis_SR_register(LPM0_bits + GIE); // Enter LPM0 w/ interrupts
}
#pragma vector=SD16A_VECTOR
__interrupt void SD16AISR(void)
{
static unsigned int index = 0;
switch (SD16IV)
{
case 2: // SD16MEM Overflow
break;
case 4: // SD16MEM0 IFG
break;
case 6: // SD16MEM1 IFG
break;
case 8: // SD16MEM2 IFG
break;
case 10:
Ch0results[index] = SD16MEM0; // Save CH0 results (clears IFG)
Ch1results[index] = SD16MEM1; // Save CH1 results (clears IFG)
Ch2results[index] = SD16MEM2; // Save CH2 results (clears IFG)
Ch3results[index] = SD16MEM3; // Save CH3 results (clears IFG)
if(++index == Num_of_Results)
{
index = 0; // SET BREAKPOINT HERE
}
break;
}
}
|