• Join
  • Sign In with my.TI Login
Texas Instruments
  • Products
  • Applications
  • Tools & Software
  • Support & Community
  • Sample & Buy
  • About TI
Sample & Purchase Cart Sample & Purchase Cart
  • Search
  • Advanced
TI E2E™ Community
  • Support Forums
  • Blogs
  • Groups
  • Videos
  • 简体中文
  • More ...
TI Home » TI E2E Community » Support Forums » Microcontrollers » MSP430™ Microcontrollers » MSP430 Ultra-Low Power 16-bit Microcontroller Forum » DMA not getting triggered through ADC12IFG
Share
MSP430™ Microcontrollers
  • Forum
  • Announcements
  • E2E Wiki
Options
  • Subscribe via RSS
MSP430 Resources
  • MSP430 Product Folder
  • MSP-EXP430G2 - MSP430 LaunchPad Value Line Development kit
  • MSP430 Getting Started Guide
  • MSP430 Microcontroller Projects
  • More Resources >
  • Forums

    DMA not getting triggered through ADC12IFG

    • Umair Liaquat Qureshi
      Posted by Umair Liaquat Qureshi
      on Apr 10 2012 02:45 AM
      Prodigy20 points

      Hi,

      I am using MSP430F5438. I want to trigger the DMA transfer as  ADC12IFG is set when ADC12MEM0 is loaded with conversion result. My problem is that my DMA does not initiate any transfer.

      ADC12IFG is cleared automatically afterit is set and DMA is triggered.

      Any help would be appreciated much.

      Regards

      Report Abuse
      • Reply
      You have posted to a forum that requires a moderator to approve posts before they are publicly available.
    • Umair Liaquat Qureshi
      Posted by Umair Liaquat Qureshi
      on Apr 10 2012 02:46 AM
      Prodigy20 points

      Here is my code:

       

      #include <__cross_studio_io.h>
      #include "msp430x54x.h"
      #include "inmsp.h"

      #define   NUMRESULTS   1000
      unsigned char results[NUMRESULTS]; 
      unsigned int index = 0;

      void main(void)
      {

        WDTCTL = WDTPW + WDTHOLD;                 // Stop WDT

      ////////////////////////////////// DMA Configuration (0) ///////////////////////////////////////
        // Using DMA channel 0 i.e., DMA0

        DMACTL0 = DMA0TSEL_24;                          // Using ADC12IFG.0 as DMA trigger source

        DMACTL4 = DMARMWDIS;

        DMA0CTL = DMALEVEL+DMADSTINCR0+DMADSTINCR1+DMADSTBYTE+DMAEN;

        // Source address
        DMA0SA = ADC12MEM0_;
                                                 
        // Destination address
        DMA0DA = 0x1c02;
                                                 
        DMA0SZ = NUMRESULTS;                               // Block size
      /////////////////////////////////////////////////////////////////////////////////////////////////////

      ////////////////////////////////// Timer Configuration (TA0.0) ///////////////////////////////////////
        // enabling port 1 for TA0CCR0 output
        P1DIR |= 0x02;
        P1SEL |= 0x02;
        TA0CTL = TASSEL0+MC0+TACLR;
        TA0CCR0 = 0x0001;                         //setting counter value for 8KHz symmetric pulse output
        TA0CCTL0 = CCIS1+SCCI+OUTMOD_4;
      //  __bis_SR_register(LPM3_bits);             // Enter LPM3
      /////////////////////////////////////////////////////////////////////////////////////////////////////

      /////////////////////////////////////// ADC Configuration (ADC_12A) /////////////////////////////////
        P6SEL |= 0x80;                            // Enable A/D channels port

        // setting up ADC12CTL0
        ADC12CTL0 = ADC12REF2_5V+ADC12REFON+ADC12ON;                      // using Extended sample mode
                                                                          // On Reference Generator and set to 2.5V                     
        // setting up ADC12CTL1
        ADC12CTL1 = ADC12SHS0+ADC12CONSEQ1+ADC12BUSY;                     // Use sampling timer TA0.0, extended sample mode
                                                                          // repeat single channel
        // setting up ADC12CTL2
        ADC12CTL2 = ADC12TCOFF+ADC12REFBURST;
       
        // setting up ADC12MCTLx
        ADC12MCTL0 = ADC12EOS+ADC12SREF_1|ADC12INCH_7;                    // Vr+=Vref+ and Vr-=AVss
                                                                          // A7 port is used for analog input
        // Enable interrupt flag (ADC12IFG.0)
        ADC12IE = 0x0001;

        // Enable conversions
        ADC12CTL0 |= ADC12ENC;                                           
      ////////////////////////////////////////////////////////////////////////////////////////////////////

        __bis_SR_register(GIE);                 //  Enable global interrupts
        while(1);
      }

      /////////////////////////////////////// Interrupt Service Routine /////////////////////////////////
      #pragma vector = ADC12_VECTOR
      __interrupt void ADC12ISR (void)
      {
        unsigned check = 0;
        DEBUG_FILE * pFile;
        pFile = debug_fopen( "TestData", "wb" );

        while (index<=NUMRESULTS-1)
        {
          while(!(ADC12IFG & 0x0001));
          //results[index++] = ADC12MEM0;             // Move results from adc memory register to an array
          index++;
        }
        // Disable interrupt flag (ADC12IFG.0)
        ADC12IE = 0x0000;

        // writing binary file
        check = debug_fwrite( results, sizeof(unsigned char), NUMRESULTS, pFile );
        debug_fclose(pFile);
      }

      Report Abuse
      • Reply
      You have posted to a forum that requires a moderator to approve posts before they are publicly available.
    • Jens-Michael Gross
      Posted by Jens-Michael Gross
      on Apr 11 2012 07:58 AM
      Guru140135 points

      Umair Liaquat Qureshi
      // Enable interrupt flag (ADC12IFG.0)
        ADC12IE = 0x0001;

      YOu cannot do both, DAM and interrupt. If you set any ADC12IE bit, DMA won't be triggered. It's either-or.

      _____________________________________
      Before posting bug reports or ask for help, do at least quick scan over this article. It applies to any kind of problem reporting. On any forum. And/or look here.
      If you cannot discuss your problem in the public, feel free to start a private conversation: click on my name and then 'start conversation'. But please do so only if you really cannot do it in a public thread, as I usually read all threads. And I prefer to answer where others can profit from it (or contribute to it) too.

      Report Abuse
      • Reply
      You have posted to a forum that requires a moderator to approve posts before they are publicly available.
    TI E2E™ Community
    • Support Forums
    • Blogs
    • Videos
    • Groups
    • Site Support & Feedback
    • Settings
    TI E2E™ Community Groups
    • TI University Program
    • Make the Switch
    • Microcontroller Projects
    • Motor Drive & Control
    Other Communities
    • Deyisupport
    • Designsomething.org
    • beagleboard.org
    • TI on Element 14
    • TI on TechXchangeSM
    Other Technical & Support Resources
    • WEBENCH® Design Center
    • Product Information Centers
    • Technical Documents
    • TI Design Network
    • TI Technical Articles
    • TI Training

    All content and materials on this site are provided "as is". TI and its respective suppliers and providers of content make no representations about the suitability of these materials for any purpose and disclaim all warranties and conditions with regard to these materials, including but not limited to all implied warranties and conditions of merchantability, fitness for a particular purpose, title and non-infringement of any third party intellectual property right. TI and its respective suppliers and providers of content make no representations about the suitability of these materials for any purpose and disclaim all warranties and conditions with respect to these materials. No license, either express or implied, by estoppel or otherwise, is granted by TI. Use of the information on this site may require a license from a third party, or a license from TI.

    Content on this site may contain or be subject to specific guidelines or limitations on use. All postings and use of the content on this site are subject to the Terms of Use of the site; third parties using this content agree to abide by any limitations or guidelines and to comply with the Terms of Use of this site. TI, its suppliers and providers of content reserve the right to make corrections, deletions, modifications, enhancements, improvements and other changes to the content and materials, its products, programs and services at any time or to move or discontinue any content, products, programs, or services without notice.

    Follow Us Texas Instruments on Facebook Texas Instruments on Twitter Texas Instruments on LinkedIn Texas Instruments on Google+
    TI Worldwide | Contact Us | my.TI Login | Site Map | Corporate Citizenship | mobile m.ti.com (Mobile Version)

    TI is a global semiconductor design and manufacturing company. Innovate with 100,000+ analog ICs and
    embedded processors, along with software, tools and the industry’s largest sales/support staff.

    © Copyright 1995-2013 Texas Instruments Incorporated. All rights reserved.
    Trademarks | Privacy Policy | Terms of Use