Pages

MSP430FG4618 device implement a voltage ramp generator

Voltage ramp generator

 

Summary: Using the MSP-EXP430FG4618 Development Tool and the MSP430FG4618 device implement a voltage ramp generator Basic Timer1.

 

Voltage ramp generator

Introduction

This laboratory gives an example of the use of the DAC available in the MSP-EXP430FG4618 Development Tool. The DAC module reference is obtained from the ADC module. The DAC is configured with 12 bits resolution in straight binary format. The DAC’s output value is updated every 1 msec by a Timer_A ISR. The buttons SW1 and SW2 are used to manually modify the DAC’s output.

Overview

This laboratory ( Lab1_DAC.c )implements a voltage ramp generator. The DAC module reference is obtained from the ADC module. The DAC is configured with 12-bit resolution, in straight binary format. The output of the DAC value is updated once every 1 msec by an interrupt service routine (ISR) generated by Timer_A. The push buttons SW1 and SW2 are used to manually modify the output of the DAC value. When the microcontroller is not performing any task, it enters low power mode.

Resources

The DAC12_0 module uses VREF+ as reference voltage. It is therefore necessary to activate this reference voltage in the ADC12 module.
The DAC12_0 is connected to Port P6.6 on the Header 8 pin 7. Connect the oscilloscope probe to this port pin.
The output of the DAC is updated whenever Timer_A generates an interrupt. This peripheral is configured to generate an interrupt with a 1 msec time period.
After refreshing the output of the DAC, the system returns to low power mode LPM3.
The push buttons SW1 and SW2 allow the output of the DAC value to be changed manually.
The resources used by the application are:
- Timer_A;
- DAC12;
- I/O ports;
- FLL+;
- Interrupts.

Software application organization

The application starts by stopping the Watchdog Timer.
Then, the ADC12’s reference voltage is activated and set to 2.5 V. A delay is used to allow the reference voltage to settle. During this time period, the device enters low power mode LPM0. The delay period, which is controlled by Timer_A, enables an interrupt when it completes. The interrupt wakes the device and proceeds with the execution of the application.
Timer_A is reconfigured to generate an interrupt once every 1 msec. This interrupt service routine (ISR) updates the output of the DAC.
Ports P1.0 and P1.1 are connected to buttons SW1 and SW2. The ports are configured as inputs with interrupt capability, such that the ISR can decode which button is pushed. If the interrupt source is due to button SW1, then the output of the DAC is increased. If the interrupt source is due to button SW2, then the output of the DAC is decreased.

System configuration

FLL+ configuration

FLL_CTL0 |= DCOPLUS | XCAP18PF; // DCO+ set,
                                // freq = xtal x D x N+1

SCFI0 |= FN_4; // x2 DCO freq,  // 8MHz nominal DCO

SCFQCTL = 121;                  // (121+1) x 32768 x 2 = 7.99 MHz
    

Reference voltage selection

The DAC12_0 uses the signal VREF+ as reference voltage. What is the value to write to the configuration register in order to obtain the internally available reference?
ADC12CTL0 = REF2_5V | REFON; // Internal 2.5V ref on

DAC12 configuration

The DAC12_0 is configured with 12-bit resolution. The output is updated immediately when a new DAC12 data value is written in straight binary data format to the DAC12_0DAT register.
The full-scale output must be equal to the VREF+ 2.5 V internal reference voltage. Choose a compromise solution between the settling time and current consumption, by selecting a medium frequency and current for both input and output buffers. Configure the following register in order to meet these specifications:
DAC12_0DAT = 0x00; // DAC_0 output 0V
    
DAC12_0CTL = DAC12IR | DAC12AMP_5 | DAC12ENC;
    // DAC_0 -> P6.6,
    // DAC_1 -> P6.7,
    // DAC reference Vref,
    // 12 bits resolution,
    // Immediate load,
    // DAC full scale output,
    // Medium speed/current,
    // Straight binary,
    // Not grouped
    

Timer_A configuration

Configure Timer_A register to enable an interrupt once every 1 msec. Use the ACLK clock signal as the clock source. This timer is configured in count up mode in order to count until the TAR value reaches the TACCR0 value.
// Before entering in LPM0:
TACTL = TACLR | MC_1 | TASSEL_2; // up mode, SMCLK
    
// Timer_A ISR:
TAR = 0;                         // TAR reset
TACCR0 = 13600;                  // Delay to allow Ref to settle
TACCTL0 |= CCIE;                 // Compare-mode interrupt
TACTL = TACLR | MC_1 | TASSEL_2; // up mode, SMCLK

    
//*********************************************************
// ISR to TACCRO from Timer A 
//*********************************************************
#pragma vector=TIMERA0_VECTOR
__interrupt void TimerA0_ISR (void)
{
 DAC12_0DAT++; // Increase DAC's output
 if (DAC12_0DAT == 0xfff)
 DAC12_0DAT = 0; // reset DAC's output
 if (flag == 1) // if flag active exite LPM0
 { 
  flag = 0;
  LPM0_EXIT;
 } 
}   

I/O Ports configuration

Port P1 uses the bits P1.0 and P1.2 to activate the ISR whenever the push buttons SW1 and SW2 are activated (low-to-high transition).
// SW1 and SW2 ports configuration
P1SEL &= ~0x03; // P1.0 and P1.1 I/O ports
P1DIR &= ~0x03; // P1.0 and P1.1 digital inputs
P1IFG = 0x00;       // clear all interrupts pending
P1IE |= 0x03;       // enable port interrupts
    
DAC12_0 is connected to P6.6. Configure P6 as a special function output:
// P6.6 (DAC12_0 output)
// There is no need to configure P6.6 as a
// special function output since it was configured in the
// DAC12 configuration register (DAC12_0CTL) using
// DAC12OPS = 0
    
//*********************************************************
// Port1 Interrupt Service Rotine
//*********************************************************
#pragma vector=PORT1_VECTOR
__interrupt void PORT1_ISR (void)
{
 if (P1IFG & 0x01) // SW1 generate interrupt
 DAC12_0DAT += 400;    // DAC's output increases
    
if (P1IFG & 0x02) // SW2 generate interrupt
 DAC12_0DAT -= 400;   // DAC's output decreases
    
P1IFG = 0x00; // clean all pending interrupts
}
    

Analysis of operation

Observe the analogue signal using an oscilloscope

After compiling the project and starting the debug session, monitor the operation of the application using an oscilloscope probe connected to pin 7 of Header 8 (P6.6).

Measure the current drawn

Assign different values to the bits set in DAC12AMP0. Suspend the execution of the application then directly change the registers. Do not forget that this change requires suspending the operation of the DAC12 by disabling the bit DAC12ENC. Afterwards, this bit must be enabled.
Please note the special cases relating to:
- DAC12 off;
- High impedance output and DAC12 off;
- Output: 0 V.
This example and many others are available on the MSP430 Teaching ROM.
Request this ROM, and our other Teaching Materials here https://www-a.ti.com/apps/dspuniv/teaching_rom_request.asp
 

0 comments:

Post a Comment

Share your knowledge

Related Posts Plugin for WordPress, Blogger...

Popular Projects

program for Dual DAC 8051 Microcontroller Based DC Motor Control A Microcontroller Based Turbidity Meter A m -Controller Based Thermostat ASCII to BCD conversion in 8051 AT90LS8515 Digital Message Machine Audio Frequency Response Analyzer Audio Homing Robot Automated Juice Mixer Automated Pet Feeder Autonomous Car Autonomous Parallel Parking RC Car Autonomous Search Robot Autonomous Tank Autonomous Vehicle Contrast Following Rover Autonomous navigating robot BCD number to ASCII in 8051 Balance Bot Blind Bot Blood Pressure Monitor Bloodshed Dev-C++ 5 Compiler/IDE Breath Alcohol Tester Converters on TI MSP430 CrossStudio MSP430 IDE Design of a Real-Time Digital Guitar Tuner Digital Oscilloscope Digital Stethoscope Digital clock project using PIC16C54A microcontroller Digital thermometer ECG monitoring system GPS Data Logger with Wireless Trigger Handwriting Recognition Systm Home Security System Home energy managment IAR Embedded Workbench IDE INFRARED TRACKING SYSTEM IntelliBOT Laser Communications System Line following van MSP-EXP430FG4618 Development Tool and the eZ430 kits MSP430FG4618 device implement a Buzzer tone generator MSP430FG4618 device implement a Real Time Clock MSP430FG4618 device implement a voltage ramp generator MSP430FG4618 device present a message on the LCD Basic Microcontroller(8051) Lab Mivo- RFID based mobile payment system Multi-Zone Fire Alarm System PC based temperature control PIC 16f877 RPM Meter PIC16C54 dual dice electronic project circuit PIC16F84A digital thermometer microcontroller project PIC16F886 horn driver PWM motor contoller with MSP430 Program Block data transfer in 8051 Program to add two BCD numbers in 8051 Program to check whether a 4th bit of a byte is 1 Program to convert ASCII to hex in 8051 Program to count from 0-9 in 8051 Program to count number of 1's in a given data byte in 8051 Program to divide an 8 bit no by another 8 bit number in 8051 Program to find largest of n numbers in 8051 Program to find the LCM of two numbers in 8051 Program to find the square of an 8 bit number in 8051 Program to generate 50msec delay in 8051 Program to implement BCD counter to count from 0-99 in 8051 Program to implement BCD counter to count from 99-0 in 8051 Program to interchange two blocks of data in 8051 Program to multiply 16 bit number by 8 bit number in 8051 Program to search an element in an array in 8051 Program to sort an array of 10 elements in 8051 Programming the ez430 Proximity Security System RAMP wave in 8051 RC Car Controller RObo Dog Radio-controlled Truck Retina color tracker Robotic Arm Controller with GUI Robotic Car Traction Control Safety-sensor vehicle Security Entrance System Self-Powered Solar Data Logger Snake Arm Ultrasonic Positioning Control System Store FFh if 1 Super Train Controller TI MSP430 Microcontrollers Timers on the MSP430 TouchPad Drawing Board Ultra-Sonic Parking Assistant Ultrasonic Parking Controller Ultrasonic Range finder Voice Activated Alarm Clock Voice Recognition Robotic Car Voting Machine Weather Station Web-Monitored Thermostat Wireless Drawing Device Wireless Telemetry Wireless message Communicator Write a C program to display the code of the key pressed in 8051 Zigbee Wireless Relay Control and Power Monitoring System add two multibyte numbers in 8051 convert a decimal number to hex number in 8051 convert an 8bit Hex number to decimal number in 8051 convert hex number to ASCII number in 8051 eZ430-F2013 Development Tool use SD16_A ADC eZ430-RF2500 Development Tool use ADC10 else store 00 in the same location in 8051 find the GCF of two numbers in 8051 find the average of 10 numbers in 8051 generate Fibonacci series in 8051 metal detector project microcontroller using IAR Embedded Workbench program for Elevator Interface in 8051 program for Stepper motor interface in 8051 spectrum analyser square wave in 8051 triangle wave in 8051 voice recognition security system

Sites U missed

Hint

Open Pictures in new page by right click on it, if it is not shown full image.