ADS7804 AD conversion program

Publisher:温暖阳光Latest update time:2018-01-09 Source: eefocusKeywords:ADS7804 Reading articles on mobile phones Scan QR code
Read articles on your mobile phone anytime, anywhere

#include 
#include 
#define uint unsigned int 
#define uchar unsigned char 
#define N 128 /*define sampling length, such as 128 points*/ 

 

sbit BYTE=P1^0; 
sbit RC=P1^1; 
sbit BUSY=P1^2; /*Define special bits*/ 
int xdata array[128]; /*Define a signed integer of length N in the external memory*/ 
int ADS7804(void); 

int ADS7804(void) 

uint ul,uh;int u; 
RC=0; /*Low level, enter conversion mode*/ 
ul=XBYTE[0xffff]; /*Generate read pulse, start A/D conversion*/ 
while(BUSY==0); /*Wait for conversion to complete*/ 
RC=1;BYTE=0; /*Enter read mode, select low byte*/ 
ul=XBYTE[0xffff]; /*Read the low 8 bits of the conversion result*/ 
BYTE=1; /*Select the high byte*/ 
uh=XBYTE[0xffff]&0x0f; /*Read the high 4 bits of the conversion result*/ 
u=uh*256+ul; /*Get a 12-bit conversion result*/ 
if(u>=0x0800) 
u=u|0xf000; /*If it is a negative value, sign extension*/ 
return(u); /*Return the conversion result*/ 


void DAQ(uint interval) 

uchar th,tl; 
uint i; 
interval=interval-5; /*Subtract the time 5μs for clearing TF0 and loading the initial value of the count*/ 
th=255-(interval/256); 
tl=255-(interval%256); /*Calculate the initial value of the count*/ 
TMOD=0x01; /*Timer 0, mode 1 */ 
TH0=th; TL0=tl; /*Load the initial value of the count*/ 
TR0=1; /*Start timing*/ 
for(i=0;i{  
do{}while(!TF0); /*Query and wait for TF0 reset*/ 
TF0=0; /*Clear overflow flag*/ 
TH0=th; TL0=tl; /*Load initial count value*/ 
array[i]=ADS7804(); /*Sampling, storage*/ 

TR0=0; /*Stop timing*/ 


Keywords:ADS7804 Reference address:ADS7804 AD conversion program

Previous article:P89LPC932 PWM DA Conversion
Next article:Philips 87LPC768 infrared decoding program

Latest Microcontroller Articles
  • Download from the Internet--ARM Getting Started Notes
    A brief introduction: From today on, the ARM notebook of the rookie is open, and it can be regarded as a place to store these notes. Why publish it? Maybe you are interested in it. In fact, the reason for these notes is ...
  • Learn ARM development(22)
    Turning off and on interrupts Interrupts are an efficient dialogue mechanism, but sometimes you don't want to interrupt the program while it is running. For example, when you are printing something, the program suddenly interrupts and another ...
  • Learn ARM development(21)
    First, declare the task pointer, because it will be used later. Task pointer volatile TASK_TCB* volatile g_pCurrentTask = NULL;volatile TASK_TCB* vol ...
  • Learn ARM development(20)
    With the previous Tick interrupt, the basic task switching conditions are ready. However, this "easterly" is also difficult to understand. Only through continuous practice can we understand it. ...
  • Learn ARM development(19)
    After many days of hard work, I finally got the interrupt working. But in order to allow RTOS to use timer interrupts, what kind of interrupts can be implemented in S3C44B0? There are two methods in S3C44B0. ...
  • Learn ARM development(14)
  • Learn ARM development(15)
  • Learn ARM development(16)
  • Learn ARM development(17)
Change More Related Popular Components

EEWorld
subscription
account

EEWorld
service
account

Automotive
development
circle

About Us Customer Service Contact Information Datasheet Sitemap LatestNews


Room 1530, 15th Floor, Building B, No.18 Zhongguancun Street, Haidian District, Beijing, Postal Code: 100190 China Telephone: 008610 8235 0740

Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved 京ICP证060456号 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号