.device AT90S2313 .NOLIST .include "2313def.inc" .LIST .equ CONTROL = PIND .equ DATA_out= PORTB .equ DATA_in = PINB .equ WR = PIND0 .equ POWER = PIND1 .equ CE = PIND2 .equ SLK = PIND3 .equ ALE = PIND4 .equ CS = PIND5 .equ INDIC = PIND6 ;-----------------------------------------------------------------------; ; map data in EEPROM ;-----------------------------------------------------------------------; ;.equ km1 = 0x00 ;.equ km2 = 0x01 ;.equ km3 = 0x02 ;.equ km4 = 0x03 ;.equ insp0 = 0x04 ;.equ insp1 = 0x05 ;.equ insp2 = 0x06 ;.equ insp3 = 0x07 ;.equ insp4 = 0x08 ;.equ insp5 = 0x09 ;.equ insp6 = 0x0A ;.equ insp7 = 0x0B ;.equ DelL = 0x0C ; devided = 0x1C7(455 pulse for 100 m) ;.equ DelH = 0x0D ; ;-------------------------------; ; map data in SRAM ;-------------------------------; .equ km1 = 0x60 .equ km2 = 0x61 .equ km3 = 0x62 .equ km4 = 0x63 .equ insp0 = 0x64 .equ insp1 = 0x65 .equ insp2 = 0x66 .equ insp3 = 0x67 .equ insp4 = 0x68 .equ insp5 = 0x69 .equ insp6 = 0x6A .equ insp7 = 0x6B ;-----------------------------------------------------------------------; .def KMx01 = r9 .def KMx1 = r10 .def KMx10 = r11 .def KMx100 = r12 .def KMx1000 = r13 .def KMx10000 = r14 .def KMx100000 = r15 .def KmTmp1 = r16 .def KmTmp2 = r17 .def Adress = r18 .def Tmp = r19 .def CountPulseH = r20 .def CountPulseL = r21 .def WriteEnable = r22 .def count = r23 .def AleInd = r24 ;-----------------------------------------------------------------------; .ORG 0 ; ; rjmp start ; 0x00 Reset Handle reti ; 0x01 External Interrupt0 Vector Address rjmp CounterProbeg ; 0x02 External Interrupt1 Vector Address reti ; 0x03 Input Capture1 Interrupt Vector Address reti ; 0x04 Output Compare1 Interrupt Vector Address reti ; 0x05 Overflow1 Interrupt Vector Address reti ; 0x06 Output Compare0 Interrupt Vector Address reti ; 0x07 Overflow0 Interrupt Vector Address reti ; 0x08 UART Receive Complete Interrupt Vector Address reti ; 0x09 UART Data Register Empty Interrupt Vector Address reti ; 0x0A UART Transmit Complete Interrupt Vector Address reti ; 0x0B Analog Comparator Interrupt Vector Address ;-----------------------------------------------------------------------; Start: ; cli wdr ; cbi EECR, EEMWE ; ;-------------------------------; ; begin instalation registers ;-------------------------------; ldi tmp, 0x80 ; out SPL, tmp ; set steck pounter ldi tmp, 0x0F ; out WDTCR, tmp ; set period WDT ldi tmp, 0x00 ; out DDRB, tmp ; PORTB set in ldi tmp, 0xFF ; out PORTB, tmp ; ldi tmp, 0x40 ; out DDRD, tmp ; set PORTD d0-d5 to in d6 to out sbi PORTD, INDIC ; off ind ldi WriteEnable,0x00; write EEPROM dis ;-------------------------------; sbis CONTROL, POWER ; rjmp start ; ;-------------------------------; ; read counter vehicle probeg ; and data inspetion ;-------------------------------; ldi count, 12 ; count bata byte ldi adress, 0x00 ; begin adress read EEPROM ldi ZH, 0 ; ldi ZL, km1 ; degin adress SRAM ReadStoreData: ; out EEAR, adress ; sbi EECR, EERE ; in tmp, EEDR ; st Z, tmp ; inc adress ; inc ZL ; cpse adress, count ; rjmp ReadStoreData ; out EEAR, adress ; sbi EECR, EERE ; in tmp, EEDR ; mov CountPulseL, tmp; inc adress ; inc ZL ; out EEAR, adress ; sbi EECR, EERE ; in tmp, EEDR ; mov CountPulseH, tmp; clr XL ; clr XH ; ; ldi ZL, km1 ; degin adress SRAM ld tmp, Z ; andi tmp, 0x0F ; ori tmp, 0x50 ; st Z, tmp ; set kn x 0.1 = 500 m ;-------------------------------; ; begin loader counter ;-------------------------------; ldi KmTmp1, 0x05 ; mov KMx01, KmTmp1 ; km x 0.1 ; ldi KmTmp1, 0xF0 ; ldi KmTmp2, 0x0F ; ldi YH, 0 ; ldi YL, km1 ; begin adress array data odometr ; ld KMx100000, Y ; and KMx100000,KmTmp2; km x 100 000 ; inc YL ; ld KMx1, Y ; and KMx1, KmTmp1 ; swap KMx1 ; km x 1 ld KMx10, Y ; and KMx10, KmTmp2 ; km x 10 ; inc YL ; ld KMx100, Y ; and KMx100, KmTmp1 ; swap KMx100 ; km x 100 ld KMx1000, Y ; and KMx1000, KmTmp2 ; km x 1 000 ; inc YL ; ld KMx10000, Y ; and KMx10000,KmTmp1 ; swap KMx10000 ; km x 10 000 ;-------------------------------; ldi AleInd, 0x00 ; reset ALE indicator ;-------------------------------; ldi Tmp, 0 ; out GIFR, Tmp ; clear interrupt flag ldi Tmp, 0x08 ; set positive front INT1 out MCUCR, Tmp ; ldi tmp, 0x80 ; eneble INT1 out GIMSK, Tmp ; sei ; interrrupt eneble ;-----------------------------------------------------------------------; ; main cikl interfeising instrument claster - code chip ;-----------------------------------------------------------------------; Cikl: ; wdr ; ldi tmp, 0 ; out DDRB, tmp ; set PORTD in sbis CONTROL, POWER ; control 15 wire on rjmp WriteEndWork ; sbi PORTD, INDIC ; off ind sbic CONTROL, CE ; control low level CE rjmp cikl ; sbic CONTROL, ALE ; rjmp LoadAdress ; control high level ALE sbis CONTROL, CS ; rjmp read_write ; control low level CS rjmp cikl ; ;-----------------------------------------------------------------------; ; selector cikls read/write ;-----------------------------------------------------------------------; read_write: ; cbi PORTD, INDIC ; on ind sbrs AleInd, 0 ; control adress set rjmp cikl ; sbis CONTROL, WR ; control cikl WRITE rjmp write ; ;-----------------------------------------------------------------------; ; cikl read CS = 0, WR = 1 ; ;-----------------------------------------------------------------------; Rread: ; sbrs AleInd, 0 ; contol unable adress rjmp cs_r ; ldi tmp, 0xFF ; out DDRB, tmp ; set PORB to out cs_r: ; wdr ; sbic CONTROL, CE ; control CE=0 rjmp cikl ; sbis CONTROL, CS ; control CS=1 rjmp cs_r ; ; ldi tmp, 0x00 ; out DDRB, tmp ; set PORTB to in ldi AleInd, 0x00 ; reset ALE indicator rjmp cikl ; ;-----------------------------------------------------------------------; ; cikl write WR = 0 ;-----------------------------------------------------------------------; Write: ; sbrs AleInd, 0 ; control unable adress rjmp cikl ; sbrs WriteEnable, 0 ; control set write unable rjmp wt_wr ; in tmp, DATA_in ; read data from PORTB ldi ZH, 0 ; mov ZL, adress ; set adress store st Z, tmp ; store data to SRAM ldi WriteEnable,0x00; clear write unebl bit ldi AleInd, 0x00 ; clear ALE indicator wt_wr: ; wdr ; sbic CONTROL, CE ; control CE=0 rjmp cikl ; sbis CONTROL, CS ; control CS=1 rjmp wt_wr ; rjmp cikl ; ;-----------------------------------------------------------------------; ; load adress ALE=1 ;-----------------------------------------------------------------------; LoadAdress: ; wdr ; cbi PORTD, INDIC ; on ind sbis CONTROL, POWER ; control power on rjmp start ; sbic CONTROL, CE ; control CE=0 rjmp cikl ; sbis CONTROL, CS ; control CS=1 rjmp cikl ; sbic CONTROL, ALE ; control ALE=0 (negative front) rjmp LoadAdress ; in adress, DATA_in ; read adress rcall SortAdress ; sort adress ldi AleInd, 0xFF ; set adress unable rjmp cikl ; ;-----------------------------------------------------------------------; ; save to EEPROM ;-----------------------------------------------------------------------; WriteEndWork: ; cli ; disebel interapt ldi count, 12 ; count store byte ldi adress, 0x00 ; adress EEPROM ldi ZH, 0 ; ldi ZL, 0x60 ; adress EEPROM wr_st: ; out EEAR, adress ; ld tmp, Z ; out EEDR, tmp ; sbi EECR, EEMWE ; sbi EECR, EEWE ; wr_wt: ; wdr ; sbic EECR, EEWE ; rjmp wr_wt ; inc adress ; inc ZL ; cpse adress, count ; rjmp wr_st ; rjmp Start ; ;-----------------------------------------------------------------------; ; sort adress and return to PORTB data ;-----------------------------------------------------------------------; SortAdress: ; mov ZL, adress ; adress read/write andi ZL, 0xE0 ; mask high nible cpi ZL, 0x40 ; adress ferst block inspect breq SortInspect ; cpi ZL, 0xC0 ; adress ferst block counter breq SortProbeg ; mov ZL, adress ; load pounter ozer data, low byte ldi ZH, 0x04 ; loat pounter ozer data, high byte lpm ; load data to R0 out DATA_out, R0 ; out data in PORTB ldi WriteEnable, 0 ; write deseble ret ; ; SortProbeg: ; ldi ZH, 0 ; mov ZL, Adress ; andi ZL, 0x03 ; sort to 4 blocks ori ZL, 0x60 ; ld Tmp, Z ; read SRAM out DATA_out, Tmp ; return data to read counter block ldi WriteEnable, 0 ; write deseble ret ; ; SortInspect: ; ldi ZH, 0 ; mov ZL, Adress ; andi ZL, 0x07 ; sort to 4 blocks ldi Tmp, insp0 ; add ZL, tmp ; recursive to block inspc ld Tmp, Z ; read SRAM out PORTB, Tmp ; return data to read inspect block mov adress, ZL ; return adress to write inspect block ldi WriteEnable, 1 ; write enable ret ; ;-----------------------------------------------------------------------; ; counter probega ;-----------------------------------------------------------------------; CounterProbeg: ; cli ; ldi Tmp, 0 ; out GIFR, Tmp ; clear interrupt flag adiw XL, 1 ; cp XH, CountPulseH ; brne EndCounter ; cp XL, CountPulseL ; brne EndCounter ; clr XL ; clr XH ; ldi YH, 0 ; ; ldi KmTmp1, 9 ldi KmTmp2, 0 inc KMx01 cp KMx01, KmTmp1 brne StoreCounter mov KMx01, KmTmp2 inc KMx1 cp KMx1, KmTmp1 brne StoreCounter mov KMx1, KmTmp2 inc KMx10 cp KMx10, KmTmp1 brne StoreCounter mov KMx10, KmTmp2 inc KMx100 cp KMx100, KmTmp1 brne StoreCounter mov KMx100, KmTmp2 inc KMx1000 cp KMx1000, KmTmp1 brne StoreCounter mov KMx1000, KmTmp2 inc KMx10000 cp KMx10000, KmTmp1 brne StoreCounter mov KMx10000, KmTmp2 inc KMx100000 cp KMx100000, KmTmp1 brne StoreCounter StoreCounter: ldi YL, km1 mov KmTmp1, KMx01 swap KmTmp1 or KmTmp1, KMx100000 st Y, KmTmp1 inc YL mov KmTmp1, KMx1 swap KmTmp1 or KmTmp1, KMx10 st Y, KmTmp1 inc YL mov KmTmp1, KMx100 swap KmTmp1 or KmTmp1, KMx1000 st Y, KmTmp1 inc YL mov KmTmp1, KMx10000 swap KmTmp1 ori KmTmp1, 0x07 st Y, KmTmp1 EndCounter: ; sei ; interrrupt eneble reti ; ;=======================================================================; .ORG 0x0200 DATA: .dw 0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF .dw 0x7F7F,0x7F7F,0x7F7F,0x7F7F,0x7F7F,0x7F7F,0x7F7F,0x7F7F .dw 0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF .dw 0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF .dw 0x0000,0x0000,0x0E00,0xA329,0x0000,0x0000,0x000E,0xA329 .dw 0x0000,0x0000,0x0E00,0xA329,0x0000,0x0000,0x000E,0xA329 .dw 0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF .dw 0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF .dw 0xF695,0x5DC0,0x01B9,0x050A,0x134B,0x4F26,0xD36E,0x7FFF .dw 0x4571,0x1A00,0x0F00,0x0064,0x0000,0x69B4,0x2D46,0x0F10 .dw 0xCEAD,0xEEDD,0x0000,0x90CB,0x5D01,0xBA0E,0xDAC6,0xF8E5 .dw 0xEC14,0xD30E,0xAA09,0x7A05,0x0602,0x0000,0x552B,0x7FAA .dw 0x0400,0x0000 .dw 0x0400,0x0000 .dw 0x0400,0x0000 .dw 0x0400,0x0000 .dw 0x0400,0x0000 .dw 0x0400,0x0000 .dw 0x0400,0x0000 .dw 0x0400,0x0000 ; |||| |||| ; |||| ||| \__ km x 1 000 ; |||| || \___ km x 100 ; |||| | \____ NU ; |||| \_____ km x 10 000 ; ||| \_________ km x 100 000 ; || \__________ km x 0.1 ; | \___________ km x 10 ; \____________ km x 1 .dw 0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF .dw 0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF ;=======================================================================; ;EEPROM ;00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D ; ;KM1 KM2 KM3 KM4 DivL DivH INS0 INS1 INS2 INS3 INS4 INS5 INS6 INS7 ;51 01 01 07 | | | | ;|| || || || \__/ \________________________________/ ;|| || || || count pulse data INSPECTION ;|| || || || for 100m ;|| || || | \_ not used ;|| || || \__ km x 10 000 \ ;|| || | \_____ km x 1 000 | ;|| || \______ km x 100 | ;|| | \_________ km x 10 | - 40 km = counter odometr ;|| \__________ km x 1 | ;| \_____________ km x 100 000 | ; \______________ km x 0.1 / ;=======================================================================;