|
< >--------以上部分请勿修改!-------------
;************************************************
;* Sigma-Delta ADC Version 1.0a *
;* 作者: jimweaver@nbip.net *
;* 测量范围: DC 18V~30V *
;* 最近修改: 2003-12-29 *
;************************************************
NAME SigmaDelta
ADC_CON BIT P3.7 ;RC 充电引脚
ISEG AT 60H ;堆栈起始
Stack: DS 20H ;堆栈大小
CSEG
ORG 0000H
SJMP On_Reset
ORG 0003H ;外部中断 INT0
RETI
ORG 000BH ;TIMER 0 溢出中断
AJMP Timer0Handler
USING 0 ;使用Register bank 0
On_Reset:
MOV SP,#(Stack-1) ;初始化堆栈指针
CLR ADC_CON ;ADC_CON拉低,电容放电
MainLOOP:
ACALL SigmaDeltaADC
ACALL AdjustADC ;对测量值进行软件纠偏
SJMP MainLOOP
;************************************************
;* 名称:SigmaDeltaADC *
;* 功能:测量电池电压 *
;* 参数:无 *
;* 返回:R0R1: 电池电压 *
;* 影响:A,PSW,R0,R1,R6,R7 *
;************************************************
SigmaDeltaADC:
;ADC过程不允许中断,所以要关中断
CLR EA ;屏蔽所有中断
Precharge: ;预充电,令Vc=Vin
SETB ADC_CON
JB P3.6,Precharge
ADC_Start:
;每次转化时间=5000*11us=55ms
CLR A
MOV R0,A ;高字节
MOV R1,A ;低字节
MOV R6,#20 ;5000次ADC采样
ADC_Loop1:
MOV R7,#250
ADC_Loop2:
MOV C,P3.6 ;取比较器输出->Cy
MOV ADC_CON,C ;若Cy=1,说明Vc<VIN,要把ADC_CON拉高
;若Cy=0,说明Vc>Vin,要把
ADC_CON拉低
;VBatBCD加Cy,统计比较器输出的高电平个数
CLR A ;1C
ADDC A,R1 ;1C,低字节
MOV R1,A ;1C
CLR A ;1C
ADDC A,R0 ;1C,高字节
MOV R0,A ;1C
DJNZ R7,ADC_Loop2 ;循环
DJNZ R6,ADC_Loop1
;ADC 结束
SETB EA ;开放所有中断
CLR ADC_CON ;电容放电,为下一次测量做准
备
RET
</P><img src="attachments/dvbbs/2004-11/2004115183223245.bmp" 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/2004115183223245.bmp\');}" onmousewheel="return imgzoom(this);" alt="" />
|
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?注册
x
|