; ********************************************************************************** PROCESSOR 16F84A #include "p16f84a.inc" ; #include "lcd_4b.inc" __CONFIG _HS_OSC & _WDT_OFF & _PWRTE_ON ; Disable watchdog, HS oscillator, Power on timer on ;------------ Définition des registres temporaires --------------- FA_1 EQU b'00110011' ; frequence basse de depart FA_2 EQU b'11100000' ; 1180 Mhz +480=1660 soit 13280 en binaire soit 33e0 en hexa FA_3 EQU b'10000010' ; 1;CP;T1;T0;111;OS FA_4 EQU b'00000000' wr_adr equ 0xc2 ;adresse du sp5055 rd_adr equ 0xc3 statussynthe equ 0x11 octet1 EQU 0x12 ; le registre sur 4 octets a envoyer au sp5055 octet2 EQU 0x13 ; octet3 EQU 0x14 octet4 EQU 0x15 temp EQU 0x16 ;registre temporaire temp2 EQU 0x17 ;registre temporaire 2 virgule equ 0x18 ;pour les chiffres apres la virgule unite equ 0x19 dizaine EQU 0x1a centaine equ 0x1b millier equ 0x1c octtmp1 equ 0x1d octtmp2 equ 0x1e deci equ 0x1f centi equ 0x20 saveW equ 0x23 TMP equ 0x24 COM equ 0x2B ; I2C Communication Register savetemp equ 0x2C savestatus equ 0x2D ; NOTA : I2C connecté comme suit : SDA= RA0 SCL =RA1 SCL equ 01 SDA equ 00 I2CPORT equ PORTA I2CTRIS equ TRISA compflag equ 06 bp1 equ 2 bp2 equ 1 bpf equ 3 lcd_e equ 0 lcd_rs equ 3 led equ 3 org 0000 ;vecteur de reset********************************************************* goto init init movlw FA_1 movwf octet1 movlw FA_2 movwf octet2 movlw FA_3 movwf octet3 movlw FA_4 movwf octet4 bsf STATUS,5 ; on met à 1 le bit5 du registre status pour accéder à trisa et trisb MOVLW B'00000110' MOVWF TRISB MOVLW B'11110000' MOVWF TRISA ;PortA en entrée pour SDA et sortie pour SCL bcf STATUS,5 ;0 danss le 5me bit de status pour accéder à la 1eme page mémoire movlw b'00000000' ; pull-up ; movwf OPTION_REG ; RB0 =une IT (front montant);prescaler=32 bcf INTCON,INTE ; pas d' IT sur RB0 bcf INTCON,RBIE ; désactive les IT sur RB4-RB7 bcf INTCON,EEIE ;désactive les IT de EEPROM bcf INTCON,GIE ; interdit les Interruptions clrf PORTA clrf PORTB clrf temp initlcd call megatempo movlw b'00100000' ;function set call envoiaffi call tempo movlw b'00100000' ;function set call envoiaffi call tempo movlw b'10000000' ;function set "n et f" call envoiaffi call tempo movlw b'00000000' ;display on off control call envoiaffi call tempo movlw b'11000000' ;display on off control "d c b" call envoiaffi call tempo call cleardisplay movlw b'00000000' ;entry mode set call envoiaffi call tempo movlw b'01100000' ;entry mode set "id sh" call envoiaffi call tempo call cursorhome call text_recepteur_sat ;affichage de "recepteur SAT" start ;*********************************************************************************************start call megatempo call tempo call tempo call tempo btfss PORTB,bp1 ;test bouton frequence plus call inc_freq btfss PORTB,bp2 ;test bouton frequence moins call dec_freq call convdecimal call convvirgule call writereg ;ecriture des 4 octets dans le synthé call readreg ;lecture du status du synthé pour "phase lock" bit movwf savestatus call affiligne2 call affi_freq call affistatus goto start ;______________________________________________________________________________________________ affi_freq ;affichage sur le LCD de la frequence movlw b'00111000' ;conversion ascii call envoiaffi movfw millier movwf temp rlf temp,f rlf temp,f rlf temp,f rlf temp,f bsf temp,3 ;RS a un pour l'afficheur lcd movfw temp call envoiaffi ;affichage du chiffre millier------------------------------------------- movlw b'00111000' ;conversion ascii call envoiaffi movfw centaine movwf temp rlf temp,f rlf temp,f rlf temp,f rlf temp,f bsf temp,3 ;RS a un pour l'afficheur lcd movfw temp call envoiaffi ;affichage du chiffre centaine------------------------------------------- movlw b'00111000' ;conversion ascii call envoiaffi movfw dizaine movwf temp rlf temp,f rlf temp,f rlf temp,f rlf temp,f bsf temp,3 ;RS a un pour l'afficheur lcd movfw temp call envoiaffi ;affichage du chiffre dizaine-------------------------------------------- movlw b'00111000' ;conversion ascii call envoiaffi movfw unite movwf temp rlf temp,f rlf temp,f rlf temp,f rlf temp,f bsf temp,3 ;RS a un pour l'afficheur lcd movfw temp call envoiaffi ;affichage du chiffre unite---------------------------------------------- movlw b'00101000' ;. call envoiaffi movlw b'11101000' ; call envoiaffi movlw b'00111000' ;conversion ascii call envoiaffi movfw deci movwf temp rlf temp,f rlf temp,f rlf temp,f rlf temp,f bsf temp,3 ;RS a un pour l'afficheur lcd movfw temp call envoiaffi ;affichage du décimal apres la virgule--------------------------------------------- movlw b'00111000' ;conversion ascii call envoiaffi movfw centi movwf temp rlf temp,f rlf temp,f rlf temp,f rlf temp,f bsf temp,3 ;RS a un pour l'afficheur lcd movfw temp call envoiaffi ;affichage du centieme apres la virgule--------------------------------------------- movlw b'01001000' ;M call envoiaffi movlw b'11011000' ; call envoiaffi movlw b'01101000' ;h call envoiaffi movlw b'10001000' ; call envoiaffi movlw b'01111000' ;z call envoiaffi movlw b'10101000' ; call envoiaffi movlw b'00101000' ;espace call envoiaffi movlw b'00001000' ; call envoiaffi return lect_synthe call readreg movwf statussynthe return inc_freq ;incrementation de la frequence par pas de 0.5 Mhz incf octet2 btfsc STATUS,Z incf octet1 incf octet2 btfsc STATUS,Z incf octet1 return dec_freq decf octet2 btfsc STATUS,Z decf octet1 decf octet2 btfsc STATUS,Z decf octet1 return ;**************************************************************************** writereg call i2cstart ; Send a start on the I2C bus movlw wr_adr ; Addresse du sp5055 en ecriture call i2csend ; ; xorlw 0xFF ; Check the ACK ; btfsc STATUS, Z ; ; call err_transm ; No ACK, error movfw octet1 ; call i2csend ; ; xorlw 0xFF ; Check the ACK ; btfsc STATUS, Z ; ; call err_transm ; No ACK, error movfw octet2 ; Set the register in BCD ****************** call i2csend ; ; xorlw 0xFF ; Check the ACK ; btfsc STATUS, Z ; ; call err_transm ; No ACK, error movfw octet3 ; Set the register in BCD ****************** call i2csend ; ; xorlw 0xFF ; Check the ACK ; btfsc STATUS, Z ; ; call err_transm ; No ACK, error movfw octet4 ; Set the register in BCD ****************** call i2csend ; ; xorlw 0xFF ; Check the ACK ; btfsc STATUS, Z ; ; call err_transm ; No ACK, error call i2cstop ; Send a stop on the I2C bus call tempo return ; ********************************************************************************** readreg call i2cstart ; Start a new transmission movlw rd_adr ; Addresse du sp5055 en lecture call i2csend ; --------------------------------premier octet envoyé : adresse lecture xorlw 0xFF ; Check the ACK btfsc STATUS, Z ; goto err_transm ; No ACK, error call i2creceive call i2cnoack ; No acknowledge: end of transmission call i2cstop ; Send a stop on the I2C bus return affistatus btfsc savestatus,6 goto verouillee btfss savestatus,6 goto nonverouillee verouillee movlw b'01011000' ;^ si verouillée call envoiaffi movlw b'11101000' ; call envoiaffi return nonverouillee movlw b'00101000' ;# si non verouillée call envoiaffi movlw b'00111000' ; call envoiaffi return ;******************************************************************************** text_recepteur_sat movlw b'01111000' ;r call envoiaffi movlw b'00101000' ; call envoiaffi movlw b'01101000' ;e call envoiaffi movlw b'01011000' ; call envoiaffi movlw b'01101000' ;c call envoiaffi movlw b'00111000' ; call envoiaffi movlw b'01101000' ;e call envoiaffi movlw b'01011000' ; call envoiaffi movlw b'01111000' ;p call envoiaffi movlw b'00001000' ; call envoiaffi movlw b'01111000' ;t call envoiaffi movlw b'01001000' ; call envoiaffi movlw b'01101000' ;e call envoiaffi movlw b'01011000' ; call envoiaffi movlw b'01111000' ;u call envoiaffi movlw b'01011000' ; call envoiaffi movlw b'01111000' ;r call envoiaffi movlw b'00101000' ; call envoiaffi movlw b'01011000' ;_ call envoiaffi movlw b'11111000' ; call envoiaffi movlw b'01011000' ;S call envoiaffi movlw b'00111000' ; call envoiaffi movlw b'01001000' ;A call envoiaffi movlw b'00011000' ; call envoiaffi movlw b'01011000' ;T call envoiaffi movlw b'01001000' ; call envoiaffi return convdecimal movlw .1 ;initialisation à 1024Mhz des compteurs decimaux movwf millier movlw .0 movwf centaine movlw .2 movwf dizaine movlw .4 movwf unite clrf virgule movfw octet1 ;octtmp sert à décompter en binaire au dessus de 1024mhz movwf octtmp1 movfw octet2 movwf octtmp2 decf octtmp1 ;soustraction de 15*256 soit 480Mhz decf octtmp1 decf octtmp1 decf octtmp1 decf octtmp1 decf octtmp1 decf octtmp1 decf octtmp1 decf octtmp1 decf octtmp1 decf octtmp1 decf octtmp1 decf octtmp1 decf octtmp1 decf octtmp1 rrf octtmp2 ;division par 8 du poids faible pour un pas en Mhz entier (et pas 0.215) btfsc STATUS,C ;on pousse les trois bits de poids faible dans la virgule bsf virgule,0 rrf octtmp2 btfsc STATUS,C bsf virgule,1 rrf octtmp2 btfsc STATUS,C bsf virgule,2 bcf octtmp2,7 bcf octtmp2,6 bcf octtmp2,5 rrf octtmp1 ;decalage idem (/8)mais avec insertion dans octet poids faible(octtmp2) btfsc STATUS,C bsf octtmp2,5 rrf octtmp1 btfsc STATUS,C bsf octtmp2,6 rrf octtmp1 btfsc STATUS,C bsf octtmp2,7 bcf octtmp1,7 bcf octtmp1,6 bcf octtmp1,5 bcf octtmp1,2 ;on part de 1024Mhz donc il faut soustraire cette valeur testtmp2 ;octet temporaire de poids faible movfw octtmp2 xorlw 0x00 ;on compare avec 0 btfsc STATUS,Z goto testtmp1 call comptagedecimal decf octtmp2 goto testtmp2 testtmp1 ;octet temporaire de poids fort movfw octtmp1 xorlw 0x00 ;on compare avec 0 btfsc STATUS,Z return decf octtmp1 decf octtmp2 goto testtmp2 comptagedecimal incf unite movfw unite xorlw b'00001010' ;on compare avec 10 btfss STATUS,Z return clrf unite incf dizaine movfw dizaine xorlw b'00001010' ;on compare avec 10 btfss STATUS,Z return clrf dizaine incf centaine movfw centaine xorlw b'00001010' ;on compare avec 10 btfss STATUS,Z return clrf centaine incf millier return convvirgule movfw virgule xorlw 0x00 ;on compare avec 0 btfss STATUS,Z goto v2 clrf deci clrf centi return v2 movfw virgule xorlw 0x02 ;on compare avec 0 btfss STATUS,Z goto v4 movlw .2 movwf deci movlw .5 movwf centi return v4 movfw virgule xorlw 0x04 ;on compare avec 0 btfss STATUS,Z goto v6 movlw .5 movwf deci movlw .0 movwf centi return v6 movfw virgule xorlw 0x06 ;on compare avec 0 btfss STATUS,Z return movlw .7 movwf deci movlw .5 movwf centi return ; ********************************************************************************** ; I2C interface routines ; ********************************************************************************** i2cstart ; Send a start on the I2C bus BANKSEL I2CTRIS bcf I2CTRIS, SDA ; SDA as output bcf I2CTRIS, SCL ; SCL as output BANKSEL I2CPORT bsf I2CPORT, SDA ; The start condition on the I2C bus bsf I2CPORT, SCL ; An high to low transition when SCL is high nop nop nop bcf I2CPORT, SDA nop nop nop bcf I2CPORT, SCL nop ; Leave SDA and SCL low nop nop nop return i2cstop ; Send a stop on the I2C bus nop nop nop BANKSEL I2CTRIS bcf I2CTRIS, SDA ; SDA as output nop nop BANKSEL I2CPORT bcf I2CPORT, SCL bcf I2CPORT, SDA ; The stop condition on the bus I2C nop nop nop bsf I2CPORT, SCL ; A low to high transition when SCL is high nop nop nop bsf I2CPORT, SDA nop ; SCL and SDA lines are left high nop nop return i2csend movwf COM ; Send a byte over the I2C interface, return 0x00 if ACK movlw 0x08 movwf TMP ; TMP is used as a counter BANKSEL I2CTRIS bcf I2CTRIS, SDA ; SDA as output BANKSEL I2CPORT icloops bcf I2CPORT, SCL ; Clock low: change of SDA allowed rlf COM,f bcf I2CPORT, SDA btfsc STATUS, C ; Test the carry bit bsf I2CPORT, SDA nop nop nop nop bsf I2CPORT, SCL ; Clock high nop nop nop decfsz TMP,f goto icloops ; i2cwaitack follows directly i2cwaitack bcf I2CPORT, SCL ; Clock low bsf I2CPORT, SDA BANKSEL I2CTRIS bsf I2CTRIS, SDA ; SDA as input BANKSEL I2CPORT nop nop nop bsf I2CPORT, SCL ; Clock high nop nop nop movlw 0x00 ; Ox00 in w means ack btfsc I2CPORT, SDA ; SDA low means ack movlw 0xFF ; 0xFF in w means no ack BANKSEL I2CTRIS bcf I2CTRIS, SDA ; SDA as output BANKSEL I2CPORT ; Clock is left low bcf I2CPORT, SCL nop nop nop return i2creceive clrf COM ; Receive a byte over the I2C interface movlw 0x08 movwf TMP ; TMP is used as a counter nop nop BANKSEL I2CTRIS bsf I2CTRIS, SDA ; SDA as input BANKSEL I2CPORT icloopr bcf I2CPORT, SCL ; Clock low: change of SDA allowed nop nop nop bsf I2CPORT, SCL ; Clock high nop nop nop bcf STATUS, C ; Clear the carry (otherwise it will be loaded into COM) rlf COM,f btfsc I2CPORT, SDA ; Test the bit being received bsf COM,0 ; Stock the bit read in COM and rotate decfsz TMP,f goto icloopr movf COM,w bcf I2CPORT, SCL ; Clock is left low nop nop nop return i2csendack BANKSEL I2CTRIS bcf I2CTRIS, SDA ; SDA as output BANKSEL I2CPORT bcf I2CPORT, SCL ; Clock low: change of SDA allowed nop nop nop bcf I2CPORT, SDA ; SDA low means ack nop nop nop bsf I2CPORT, SCL ; Clock high nop nop nop bcf I2CPORT, SCL ; Clock is left low return i2cnoack BANKSEL I2CTRIS bcf I2CTRIS, SDA ; SDA as output BANKSEL I2CPORT bcf I2CPORT, SCL ; Clock low: change of SDA allowed nop nop nop bsf I2CPORT, SDA ; SDA high means no ack nop nop nop bsf I2CPORT, SCL ; Clock high nop nop nop bcf I2CPORT, SCL return ; Clock is left low ;******************************************************************************** err_transm ; Error during transmission call tempo call i2cstop call tempo return ;********************** Temporisation ******************************************* tempo MOVLW 0x2f ; on met ff dans le registre W movwf temp DECFSZ temp,F ; on décrémente w et on saute la prochaine instruction si GOTO $-1 ; le registre w = 0 sinon retour à tempo RETURN megatempo movlw 0xf6 movwf temp2 bouclemegatempo call tempo decfsz temp2,f goto bouclemegatempo return ;**************************************************************************** affiligne2 movlw b'11000000' ;set DD RAM address donc RS à 0 call envoiaffi call tempo movlw b'00000000' ;à 10 call envoiaffi call tempo return cursorhome movlw b'00000000' ;cursor return home call envoiaffi call megatempo movlw b'00100000' ;cursor return home call envoiaffi call megatempo return cleardisplay movlw b'00000000' ;clear display call envoiaffi call megatempo movlw b'00010000' ;clear display call envoiaffi call megatempo return envoiaffi movwf PORTB nop nop nop bsf PORTB,lcd_e nop nop nop bcf PORTB,lcd_e call tempo return end