标题: 一个简单的C8051f单片机ADC应用程序和测试 [打印本页]

作者: oldspring    时间: 2018-10-20 14:32
标题: 一个简单的C8051f单片机ADC应用程序和测试
以下是一个简单的8051单片机ADC应用程序和测试:

  1. unsigned int adc_result;
  2. char txt[6];

  3. void main() {

  4.   WDTCN    = 0xDE;                   // Sequence for
  5.   WDTCN    = 0xAD;                   //   disabling the watchdog timer
  6.   OSCICN   = 0x83;                   // Enable internal oscillator (24.5MHz divided by 1)
  7.   P0MDOUT |= 0x01;                   // Configure P0.0 (TX) pin as push-pull

  8.   UART2_Init(4800);                  // Initialize UART2
  9.   Delay_100ms();

  10.   P1MDIN.B2 = 0;                     // Configure P1.2 as Analog Input
  11.   ADC2_Init();                       // Initialize ADC2 module

  12.   while (1) {
  13.     adc_result = ADC2_Get_Sample(2); // Read AIN2.2 (P1.2) analog input
  14.     WordToStr(adc_result, txt);      // convert result to string
  15.     UART2_Write_Text(txt);           // send string to UART
  16.     UART2_Write(13);UART2_Write(10); // send new line (CR+LF)
  17.     Delay_ms(500);
  18.   }
  19. }
复制代码
相关信息:http://www.51hei.com/bbs/dpj-136722-1.html








欢迎光临 (http://www.51hei.com/bbs/) Powered by Discuz! X3.1