网站首页
IC库存
IC展台
电子资讯
技术资料
PDF文档
我的博客
IC72论坛
ic72 logo
资料首页最新产品 技术参数 电路图 设计应用 解决方案 代理商查询 IC替换 IC厂商 电子辞典
关键字: 技术文章 PDF资料 IC价格 电路图 代理商查询 IC替换 IC厂商 电子辞典

用打印机端口做可编程频率发生器电路

#include<stdio.h>

#include<conio.h>

#include<math.h>

#include<bios.h>

#include<dos.h>

#define CLK1 0x04 /* Clock Pulse High*/

#define CLK0 0xfb /* Clock Pulse Low*/

#define CS10x01 /* Chip Select high to deactivate DAC*/

#define CS0 0xfe /* Chip Select low to activate DAC*/

#define DATA1 0x02 /* Data Pulse High*/

#define DATA0 0xfd /* Data Pulse low*/

int c[16],dport,ACTUALDATA,out,k;/*Global Declarations*/

float VOUT;/*DAC OUTPUT-p.htm" target="_blank" title="OUTPUT货源和PDF资料">OUTPUT*/

void d2b(unsigned int x, int*c)/*Routine for Decimal to Binary Conversion*/

{

int i;

for(i=0;i<=15;i)

*(c)=(x>>i) & 0x1;

}

float ftov()/*Hertz to DAC output Conversion Routine*/

{

int HERTZ;

printf("\n \nEnter the frequencywithin 0 to 10000Hz:");

scanf("%d",&HERTZ);

VOUT=0.00040955*HERTZ;

printf("\n VOUT=%f\n",VOUT);

return VOUT;

}

void CLOCK_DAC(void)/*Routine for clocking the DAC*/

{

out|=CLK1;

outportb(dport,out);/*Setting the clock high*/

delay(1);

out&=CLK0;

outportb(dport,out);/*Setting the clock low*/

delay(1);

}

void LOAD_DACDATA(int*c)/*Routine for loading actual data into the DAC*/

{

out|=CS1;

outportb(dport,out);/*Chip Select high to disable DAC*/

delay(1);

out&=CS0;

outportb(dport,out);/*Chip Select low to enable DAC*/

delay(1);

printf("\nDATA loaded into the DAC=");

for(k=15;k>=0;k--)

{

out|=c[k];

outportb(dport,out);

printf("%d",c[k]);

delay(1);

CLOCK_DAC();

}

out|=CS1;

outportb(dport,out);

delay(1);

}

main()

{

int v,inc;

float y;

unsignedint x;

double fraction, integer, number;

clrscr();

printf("\tUse Your Printer Port as a Programmable Frequency Generator");

printf("\n\t\t\t by\n");

printf("\tK.Suresh,MSD,IGCAR,Kalpakkam,TamilNadu-603102,India");

dport= peek(0x40,8);/*Check up for availability of Printer Port*/

if (dport==0)

{

printf("\n\n LPT NOT AVIAILABLE! EXITING........");

exit(1);

}

printf("\n\nAddress of the printer port found =0x%X",dport);

ftov();

y=(VOUT*8192)/(2.5*1.6384);

v=y/1;

number=y;

fraction = modf(number, &integer);

if (fraction<0.44)

inc=0;

else inc=1;

ACTUALDATA=16384 v inc; /*Actual data including the Control Word for DAC*/

d2b(ACTUALDATA,c);

LOAD_DACDATA(c);

return 0;

}

热门搜索:PS-415-HG-OEM LC1200 2866349 PS361220 TLM609GF PS240810 B3429D PDU1220 BT151S-800R118 01M1002SFC2 TLP808TELTAA SS361220 2856142 RBC62-1U PS3612 1301380020 SBB1605-1 LED12-C2 02C1001JF 02T1001JF PSF3612 B30-8000-PCB SBB1602-1 BTA12-800TWRG UL800CB-15
COPYRIGHT:(1998-2010) IC72 达普IC芯片交易网
客户服务:service@IC72.com 库存上载:IC72@IC72.com
(北京)联系方式: 在线QQ咨询:点击这里给我发消息 联系电话:010-82614113 传真:010-82614123