cpubbs论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

LabVIEW+单片机学习套件全套教程资料下载[免费]LabVIEW论坛精华列表贴USB0816数据采集卡《LabVIEW宝典》
LabWindows/CVI论坛精华贴NET0816以太网数据采集卡RC0210远程设备授权系统 关闭关停锁定打开设备 户外分布式数据采集
NET1624低速高精度以太网数据采集卡WIFI0824SD无线WIFI网络数据采集卡脱机运行 SD存储 小尺寸微型 串口采集远程采集 安卓 手持移动采集 纪录仪
查看: 2212|回复: 2

串口驱动的16位A/D转换器[转]

[复制链接]
发表于 2004-11-26 18:21:28 | 显示全部楼层 |阅读模式
本文所述的高分辨率A/D转换器摘自EDN杂志,它可以直接由RS232串口驱动。</P>
Edited by Bill Travis
Yongping Xia, Teldata, Los Angeles, CA -- EDN, 9/27/01</P>
通常情况下,PC机是通过插入ADC转换卡实现模拟信号处理的,而本文所述的A/D转换器则是通过RS232口直接驱动的。实际上,RS232口可以驱动18位的ADC转换器,串口不仅能提供控制信号,还能提供芯片所需电源。IC1是一款18位的MAX132 ADC转换器接口,DIN是输入信号,SCLK是时钟信号,DOUT是数据输出,EOC是转换完成标志。RS-232口有三条输出线Pin 3 (TX), Pin 4 (DTR), 和Pin 7 (RTS)。TX可用于产生SCLK信号并提供负电源,DTR用于发送数据,RTS提供CS片选信号及正电源。不论是正电源还是负电源,均使用比较大的电容存储能量。当TX产生一个脉冲信号,或DTR发送片选信号(低有效),电容向MAX132供电。MAX132几乎集成了全部需要的功能,但1.2V的参考电压必须由外部的LM385提供。MAX132的信号输入范围是-512 to +512 mV。</P>
</P>
<><img src="attachments/dvbbs/2004-11/20041126102052806.gif" border="0" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt=\'Click here to open new window\nCTRL+Mouse wheel to zoom in/out\';}" onmouseover="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor=\'hand\'; this.alt=\'Click here to open new window\nCTRL+Mouse wheel to zoom in/out\';}" onclick="if(!this.resized) {return true;} else {window.open(\'attachments/dvbbs/2004-11/20041126102052806.gif\');}" onmousewheel="return imgzoom(this);" alt="" /></P>
<>*******************************************************************************
; 列表1 ----- A/D转换及显示源程序
; LISTING 1 - SCREEN-DISPLAY ROUTINE FOR ANALOG-TO-DIGITAL-CONVERSION RESULTS
;
; "18-bit ADC uses PC's serial port," EDN, Sept 27, 2001, pg 84
;
;*******************************************************************************</P>
<>#include &lt;stdio.h&gt;
#include &lt;dos.h&gt;
#include &lt;time.h&gt;
#include &lt;conio.h&gt;
#include &lt;bios.h&gt;
#include &lt;conio.h&gt;</P>
<P>#define COM1 0
#define MCR 4 /* control register */
#define MSR 6 /* status register */</P>
<P>int i, j, base_add1=0x3f8, base_add2=0x2f8, out_data=0x03, in_data[4];</P>
<P>float data;</P>
<P>void send_clk(void)
{
delay(1);
outportb(base_add1, 0x00);
delay(3);
}</P>
<P>void read_port(void)
{
int control[4], out_control;
data=0;
for (i=0; i&lt;4; i++)
in_data<i>=0;
control[0]=0x82;
control[1]=0x04;
control[2]=0x00;
control[3]=0x00;
out_data|=0x02;
outportb(base_add1+MCR, out_data); /* CS high */
delay(10);
out_data&amp;=0x01;
outportb(base_add1+MCR, out_data); /* CS low */
delay(10);
out_control=control[0];
for (i=0; i&lt;8; i++)
{
if (out_control&gt;=0x80)
out_data|=0x01;
else
out_data&amp;=0x02;
outportb(base_add1+MCR, out_data);
send_clk(); /* clock out */
out_control&amp;=0x7f;
out_control=out_control*2;
}
out_data|=0x02;
outportb(base_add1+MCR, out_data); /* CS high */
delay(10);
do{
}while((inportb(base_add1+MSR)&amp;0x40)==0); /* waiting for EOC=high */
for (j=1; j&lt;4; j++)
{
out_control=control[j];
in_data[j]=0;
out_data&amp;=0x01;
outportb(base_add1+MCR, out_data); /* CS low */
delay(10);
for (i=0; i&lt;8; i++)
{
if (out_control&gt;=0x80)
out_data|=0x01;
else
out_data&amp;=0x02;
outportb(base_add1+MCR, out_data);
in_data[j]=in_data[j]*2+(inportb(base_add1+MSR)&amp;0x80)/0x80;
send_clk(); /* clock out */
out_control&amp;=0x7f;
out_control=out_control*2;
}
out_data|=0x02;
outportb(base_add1+MCR, out_data); /* CE high */
delay(10);
}
if ((in_data[1]&amp;0x08)==0)
data=(float)(in_data[1]&amp;0x07)+(float)(in_data[2])*2048+(float)(in_data[3])*8;
else /* reading is negative */
{
in_data[1]=in_data[1]&amp;0x07;
in_data[1]=(8-in_data[1])&amp;0x07;
in_data[2]=(256-in_data[2])&amp;0xff;
in_data[3]=(256-in_data[3])&amp;0xff;
data=-((float)(in_data[1])+(float)(in_data[2])*2048+(float)(in_data[3])*8);
}
}</P>
<P>void dis_data(void)
{
float show_data;
show_data=0.000002*data;
gotoxy(1,1);
printf("%.5f ", show_data);
gotoxy(1,1);
}</P>
<P>void init(void)
{
bioscom(0, 255, COM1); /* set up COM1 */
out_data=0x02;
outportb(base_add1+MCR, out_data); /* CS=high, DIN=low */
delay(100);
}</P>
<P>void main(void)
{
clrscr();
init();
gotoxy(60,24);
printf("Hit any key to quit");
do{
read_port();
dis_data();
delay(500);
} while(!kbhit());
}

</P>

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?注册

x
发表于 2004-11-28 09:04:39 | 显示全部楼层
发表于 2009-1-15 09:15:59 | 显示全部楼层
谢谢楼主了!
您需要登录后才可以回帖 登录 | 注册

本版积分规则

Archiver|手机版|cpubbs论坛. ( 粤ICP备09171248号 )

GMT+8, 2025-4-5 09:41 , Processed in 0.505689 second(s), 7 queries , Gzip On, File On.

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表