|

楼主 |
发表于 2009-2-2 19:15:42
|
显示全部楼层
;#######################################
; START PUMP AND DETECT DC VALUE
;#######################################
AD1:
BSF ADCON0,GO ;triger CH0's A/D to go go go ...
BSF PORTB,2 ;start Air pump
CALL DELAY
MOVF ADRESH,W ;put the A/D value to the DCVAL register
ADDLW B'00110011'
BTFSS STATUS,0
GOTO AD1 ;continue pumping..
BCF PORTB,2
BCF PORTB,2
MOVLW B'01001001' ;choice A/D channel 1 ,Fosc/8(FAST AD)
MOVWF ADCON0
GOTO AD2
;#######################################
; A/D1 INITIAL VALUE DETECT
;#######################################
AD2:
MOVLW B'01010101'
MOVWF PORTC
NOP ;in case that the shock wave of pump mechine
BSF ADCON0,GO
CALL SMDELAY ;about 1 second with 33 points..(512uS)
GOTO AD22
AD22:
BTFSC ADCON0,GO
CALL ADLOOP
MOVF ADRESH,W
ADDLW B'00000001' ;prevent that the signal is noise from other factor..
BTFSC STATUS,0 ;if the signal is noise from other factor,go back and
;detect again
GOTO AD2CNT
MOVF ADRESH,W
SUBLW B'01010000' ;make the threshold is about 1.56 Volt
BTFSS STATUS,0 ;if the value NOT over 1.56 volt,go check 60
;points..
GOTO AD2_1 ;the value is over 1.56...go repump routine
GOTO AD2_2
ADLOOP:
NOP
GOTO AD22
AD2CNT:
MOVLW B'11111111' ;90 POINTS
MOVWF CNT
DECFSZ CNT3
GOTO AD2
GOTO PERROR3
;#######################################
; repump again routine
;#######################################
AD2_1:
MOVLW B'00001111'
MOVWF PORTC
BSF PORTB,2
CALL LDELAY
CALL LDELAY
CALL LDELAY
CALL LDELAY
CALL LDELAY
BCF PORTB,2
CALL LDELAY
CALL LDELAY
CALL LDELAY
CALL LDELAY
DECFSZ CNT0 ;after 4 times repump.. go print error
GOTO AD2
GOTO PERROR1
;#######################################
; 4 SECONDS DOWN COUNT..
;#######################################
AD2_2:
DECFSZ CNT ;to count if there are over 256 points to wait..
GOTO AD2
BSF STATUS,RP0 ;Choose bank1
BSF INTCON,T0IE ;TMR0 Interrupt
BSF PIE1,CCP1IE ;Capture Interrupt
BSF PIE1,ADIE ;AD Interrupt
BCF STATUS,RP0 ;Choose bank0
MOVLW B'00000100' ;Capture Mode,Falling Edge
MOVWF CCP1CON
BSF INTCON,PEIE ;enable peripheral interrupt..
BSF INTCON,GIE ;enable golbal interrupt
GOTO MAINLOOP
MAINLOOP:
MOVLW B'11111111'
MOVWF PORTC
NOP
MOVF SWITCH1,W
ADDLW B'11111000'
BTFSC STATUS,0 ;if switch turn on,go Calculate the data..
GOTO CALCU ;the value is all set..waiting for calculate..
MOVF SWITCH2,W ;AN ERROR OCCUR..
ADDLW B'11110000'
BTFSC STATUS,0
GOTO PERROR2
GOTO MAINLOOP
;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
; DATA CALCULATION AT THIS ROUTINE ~
; ~
;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
CALCU:
CLRF INTCON ;close all interrupt function..
MOVLW B'10101010'
MOVWF PORTC
BCF PORTB,3 ;Let all air out..
MOVF MAX,W
MOVWF OLDMAX
MOVF CNT1,W ;final counter's value is in CNT1
SUBWF CNT2,W ;CNT2-CNT1,the initial is always 0
BTFSC STATUS,0 ;test if CNT1=CNT2 or not,initial always 0..
GOTO CALCU2 ;the max max value is know, so go next calculate
MOVLW _UV_ADDR1
ADDWF CNT2,W
MOVWF FSR
MOVF INDF,W
SUBWF OLDMAX,F ;old data-new data
BTFSC STATUS,0 ;the initial value is always 0
GOTO CALCU_1 ;when new data>old data,must refresh the old
;data.
INCF CNT2
GOTO CALCU |
|