fet140_adc12_04.c

来自「msp430 149 的c程序 模版程序」· C语言 代码 · 共 47 行

C
47
字号
//******************************************************************************
//  MSP-FET430P140 Demo - ADC12, Using the Internal Reference
//
//  This example shows how to use the internal reference of the ADC12.
//  It uses the internal 2.5V reference and performs a single conversion
//  on channel A0. The conversion results are stored in ADC12MEM0. Test by 
//  applying a voltage to channel A0, then setting and running to a break point
//  at the "_NOP()" instruction. To view the conversion results, open an SFR 
//  window in C-Spy and view the contents of ADC12MEM0.
//
//
//                MSP430F149
//             ---------------
//            |               |
//            |      A0 (P6.0)|<---- Vin
//            |               |
//
//
//  M.Mitchell
//  Texas Instruments, Inc
//  February,2002
//  Built with IAR Embedded Workbench Version: 1.25A
//******************************************************************************
#include          "msp430x14x.h"        // Standard Equations

void main(void)
{ 
  unsigned int i;
  WDTCTL = WDTPW+WDTHOLD;               // Stop watchdog timer
  P6SEL |= 0x01;                        // Enable A/D channel A0
  ADC12CTL0 = ADC12ON+SHT0_2+REFON+REF2_5V;  // Turn on and set up ADC12
  ADC12CTL1 = SHP;                      // Use sampling timer
  ADC12MCTL0 = SREF_1;                  // Vr+=Vref+

  for ( i=0; i<0x3600; i++)              // Delay for reference start-up
  {
  }

  ADC12CTL0 |= ENC;                     // Enable conversions

  while (1)
  { 
    ADC12CTL0 |= ADC12SC;               // Start conversion
    while ((ADC12IFG & BIT0)==0);
    _NOP();                             // SET BREAKPOINT HERE
  }                           
}                                  

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?