MSP430 Eight-Channel ADC Single Acquisition Program

This program uses an eight-channel ADC single-acquisition mode. According to the configuration, the ADC12SC will be automatically reset after the conversion is completed in a single mode. Therefore, the ADC12CTL0 |= ADC12SC; operation needs to be performed in the loop, and if it is configured to be continuously acquired. In the mode, only need to set the ADC12SC once at the beginning of the program, but it is necessary to pay attention to that if you do not manually disable the interrupt after entering the interrupt, it will stay in the loop. Therefore, you need to turn off the ADC or interrupt after acquiring the required data. It can be forbidden to be able to return to the main function.

MSP430 Eight-Channel ADC Single Acquisition Program

The eight-way single acquisition procedure is as follows:

[cpp] view plain copy/***************************************

Eight-way AD multi-channel single acquisition Keiya 5110 LCD display

Acquisition Mode: Multiplex Single

****************************************/

#include "msp430x14x.h"

#include "LCD5110.h"

#define uint unsigned int

#define uchar unsigned char

Unsigned char ad0[]=“1:0.0V”;

Unsigned char ad1[]=“2:0.0V”;

Unsigned char ad2[]=“3:0.0V”;

Unsigned char ad3[]=“4:0.0V”;

Unsigned char ad4[]=“5:0.0V”;

Unsigned char ad5[]=“6:0.0V”;

Unsigned char ad6[]=“7:0.0V”;

Unsigned char ad7[]=“8:0.0V”;

Uchar flag=1;

Uint temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7;

Void Init_Clk()

{

Uchar i;

BCSCTL1&=~XT2OFF; //Open XT oscillator

Do

{

IFG1 &= ~OFIFG; //Clear oscillation error flag

For(i = 0; i "100; i++)

_NOP(); // Delay waiting

}

While ((IFG1 & OFIFG) != 0); //If the flag is 1 continue loop waiting

IFG1&=~OFIFG;

BCSCTL2|=SELM1+SELS;//MCLK 8M and SMCLK 1M

}

Void Init_ADC()

{

P6SEL| = 0XFF; // signal acquisition port selects the second function

ADC12CTL0 = ADC12ON+SHT0_8+MSC; // Turn on ADC+ to set sampling time

ADC12CTL1 = SHP+CONSEQ_1; // Use sampling timing circuit signal + multiple single shot mode

// The above register configuration sample and hold trigger source selection ADC12SC, the acquisition signal uses the signal generated by the sampling timing circuit

// The conversion mode is multiplex single conversion. The above settings must be set with ENC=0

//Set the input port and reference voltage for each channel, the default voltage is AVCC 3.3V

ADC12MCTL0 = INCH_0;

ADC12MCTL1 = INCH_1;

ADC12MCTL2 = INCH_2;

ADC12MCTL3 = INCH_3;

ADC12MCTL4 = INCH_4;

ADC12MCTL5 = INCH_5;

ADC12MCTL6 = INCH_10;

ADC12MCTL7 = INCH_11+EOS; // last channel

ADC12IE = BIT7; // ADC interrupt enabled after the last channel conversion is completed

ADC12CTL0 |= ENC; // Enable Conversion

}

/*******************************************

Function Name: Trans_val

Function: convert hexadecimal ADC conversion data into three decimal places

Real analog voltage data and displayed on the LCD

Parameters: Hex_Val--16 data

The denominator of n--transformation is equal to the nth power of 2.

Return value: None

********************************************/

Void Trans_val(uchar ptr[6],uint Hex_Val)

{

Unsigned long caltmp;

Uint Curr_Volt;

Caltmp = Hex_Val;

Caltmp = (caltmp "5) + Hex_Val; //caltmp = Hex_Val * 3

Curr_Volt = caltmp 》》 12; //Curr_Volt = caltmp / 2^n

// The reference voltage is 3.3V, so the formula should be Hex_val*3.3/2^n

// Multiplication/division calculations can effectively improve program operation efficiency by shifting

Ptr[2] = (Curr_Volt / 10) + 0x30; // one bit

Ptr[4] = (Curr_Volt % 10) + 0x30; // decimal places

}

Void main()

{

Init_Clk();

Init_ADC();

WDTCTL = WDTPW + WDTHOLD;

LCD_init();

LCD_showsh(0, 0, "Voltage acquisition:");

_EINT () ;/ / open the global interrupt

P5DIR|=BIT5;

P3OUT|=~BIT5;

While (1)

{

ADC12CTL0 |= ADC12SC;

LCD_prints(0,2,ad0);

LCD_prints(8,2,ad1);

LCD_prints(0,3,ad2);

LCD_prints(8,3,ad3);

LCD_prints(0,4,ad4);

LCD_prints(8,4,ad5);

LCD_prints(0,5,ad6);

LCD_prints(8,5,ad7);

}

}

/*******************************************

Function Name:ADC12ISR

Function: ADC Interrupt Service Function

Parameters: None

Return value: None

********************************************/

#pragma vector=ADC_VECTOR

__interrupt void ADC12ISR (void)

{

Temp0 = ADC12MEM0;

Trans_val(ad0,temp0);

Temp1 = ADC12MEM1;

Trans_val(ad1,temp1);

Temp2 = ADC12MEM2;

Trans_val(ad2,temp2);

Temp3 = ADC12MEM3;

Trans_val(ad3,temp3);

Temp4 = ADC12MEM4;

Trans_val(ad4,temp4);

Temp5 = ADC12MEM5;

Trans_val(ad5,temp5);

Temp6 = ADC12MEM6;

Trans_val(ad6,temp6);

Temp7 = ADC12MEM7;

Trans_val(ad7,temp7);

}

Force Washers Sensor

GALOCE Force Washer Transducers are miniature load cells designed specifically for measuring fastener clamping forces. The design provides high stiffness in a small package, making these load cells ideal for static and dynamic measurements on fasteners, or structural test applications where space limitations exist. Force washer transducers come in a variety of English and Metric sizes, by the way, GALOCE OEM&ODM group can customized the Load Cell according the drawing.

Force Washer Load Cell,Force Washer Transducers,Washer Typer Load Cell,Through-hole force sensor

GALOCE (XI'AN) M&C TECHNOLOGY CO., LTD. , https://www.galoce-meas.com

Posted on