X-Git-Url: https://hackdaworld.org/gitweb/?p=my-code%2Fatmel.git;a=blobdiff_plain;f=beginners%2Fseason_junior.asm;h=9171e7c57128f3289017444e242ce0789a0f557b;hp=540c152daf51bdfb438f2b50a8dc554f5a975b64;hb=322f236d2088f0ffc8335fa10fd52a7cc2317519;hpb=584c899914df33403e5e087ee093667445048758 diff --git a/beginners/season_junior.asm b/beginners/season_junior.asm index 540c152..9171e7c 100644 --- a/beginners/season_junior.asm +++ b/beginners/season_junior.asm @@ -6,10 +6,11 @@ ; at90s2313 ; setup: +; ; vcc card --- atmel vcc ; vcc cam --- ; rst cam --- atmel int0 (pd2) -; rst card --- atmel (pb4) +; rst card --- atmel (pd4) ; clk card -\ ; - atmel t1 (pd5) ; clk cam -/ @@ -19,23 +20,71 @@ .include "../include/2313def.inc" -; functions by now: -; -; stupid mode only by now. just see what cam/card do and redirect -; this to card/cam. -; -; next implementation: -; -; try to read one byte of card/cam communication and output via uart. -; output time information in some way. -; -; future: -; -; buffer/parse whole strings and decide whether to send to card or not. -; +; ####### +; defines +; ####### + +; baudrate = clock freq / etu +; std smartcard etu: 372 +; other smartcards: 625 +.equ etu = 625 +.equ etu_h = 312 +.equ baudrate = 8 ; UBRR value for 57600 bits/s (8mhz clock) + +; sizes +.equ uart_data_len = 4 + +; names for registers +.def tmp = r16 +.def bitcount = r17 +.def tmp1 = r18 +.def tmp2 = r19 +.def byte = r20 +.def overflow_counter = r21 +.def counter_l = r22 +.def counter_h = r23 +.def state = r24 +.def state_m = r25 +.def mode = r26 +.def counter_l_tmp = r27 +.def counter_h_tmp = r28 +.def one = r1 +.def zero = r0 + +; state +.equ LOW = (1<<0) +.equ LOW_F = 1 +.equ HIGH = (1<<1) +.equ HIGH_F = 2 +; mode +.equ STUPID = (1<<0) ; forward cam <-> card communication +.equ STUPID_F = 1 +.equ COOL = (1<<1) ; send time (clocks) & state via uart +.equ COOL_F = 2 +.equ ELITE = (1<<2) ; create bytes, maybe even whole command arrays +.equ ELITE_F = 3 +.equ GODLIKE = (1<<3) ; filter and mask for commands to card - send rejected via uart only +.equ GODLIKE_F = 4 +.equ INCREDIBLE_HACK = (1<<4) ; destroy all your hardware +.equ INCREDIBLE_HACK_F = 5 +; leds +.equ LED_CARD = PB0 +.equ LED_CAM = PB1 +.equ LED_FWD_TO_CAM = PB2 +.equ LED_FWD_TO_CARD = PB3 +.equ LED_OVERFLOW = PB4 + +; but there is only stupid and cool mode right now %) + + +; ############# +; programm code +; ############# + +; ------------------ ; interrupt vectors: -; +; ------------------ ; reset rjmp INIT @@ -53,7 +102,7 @@ rjmp REC_CARD reti ; timer/counter overflow 1 -rjmp CLK_OVERFLOW +rjmp T1_OVERFLOW ; timer/counter overflow 0 reti @@ -70,145 +119,421 @@ reti ; analog comparator reti -; +; ------------ ; init routine -; - -MAIN: -rjmp MAIN +; ------------ INIT: -; set stackpointer -ldi r16,low(RAMEND) -out SPL,r16 +; output low on rst to card while init +sbi DDRD,DDD4 +cbi PORTD,PD4 -; -; hier weiter .... -; +; set stackpointer +ldi tmp,low(RAMEND) +out SPL,tmp -; enable interrupts int0,int1 -ldi r16,((1< input, int1 -> output -ldi r16,(1< input, int0 -> output -ldi r16,(1<