504a68bb8f43e7de510278da0798e54ac5bea053
[owSlave2.git] / common / OWTimerInterrupt.s
1 // Copyright (c) 2015, Tobias Mueller tm(at)tm3d.de
2 // All rights reserved. 
3 // 
4 // Redistribution and use in source and binary forms, with or without 
5 // modification, are permitted provided that the following conditions are 
6 // met: 
7 // 
8 //  * Redistributions of source code must retain the above copyright 
9 //    notice, this list of conditions and the following disclaimer. 
10 //  * Redistributions in binary form must reproduce the above copyright 
11 //    notice, this list of conditions and the following disclaimer in the 
12 //    documentation and/or other materials provided with the 
13 //    distribution. 
14 //  * All advertising materials mentioning features or use of this 
15 //    software must display the following acknowledgement: This product 
16 //    includes software developed by tm3d.de and its contributors. 
17 //  * Neither the name of tm3d.de nor the names of its contributors may 
18 //    be used to endorse or promote products derived from this software 
19 //    without specific prior written permission. 
20 // 
21 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
22 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
23 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
24 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
25 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
26 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
27 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
28 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
29 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
30 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
31 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
32
33
34 .global TIMER_INTERRUPT
35 TIMER_INTERRUPT:
36         push r_temp
37         in r_temp,_SFR_IO_ADDR(SREG)  
38         push r_temp
39         sbic OW_PIN,OW_PINN  ; abkuerzung wenn Leitung schon h
40         rjmp tint_end ; Leitung 1 kein Reset
41         ldi r_temp,0  
42         out TCNT_REG,r_temp
43         CLEAR_TOV_FLAG
44 tint_loop_rend:
45         sbis OW_PIN,OW_PINN ;warten bis leitung wieder h 
46         rjmp tint_loop_rend
47         JMP_NO_TOV ;ueberspringe wenn kein ueberlauf
48         rjmp tint_overrun
49         in r_temp,TCNT_REG ;schauen ob es lange genug gedauert hat fuer reset
50         cpi r_temp,OWT_RESET2 
51         brlo tint_end
52 tint_overrun:
53         ldi r_temp,0
54         out TCNT_REG,r_temp
55         ;zwischen Reset und Presets
56 tint_loop_res_pres:
57         in r_temp,TCNT_REG
58         cpi r_temp,OWT_RESET_PRESENT
59         brlo tint_loop_res_pres ;Warten zwischen reset und presets
60         sbi OW_DDR,OW_PINN  ;presents impuls
61         ;reset impuls
62 tint_loop_pres:
63         in r_temp,TCNT_REG
64         cpi r_temp,OWT_PRESENT
65         brlo tint_loop_pres
66         cbi OW_DDR,OW_PINN  
67         ldi r_temp,OW_READ_ROM_COMMAND ; Initialisieren von Rom command
68         sts mode,r_temp
69         ldi r_temp,1
70         sts reset_indicator,r_temp
71         sts bcount,r_temp ;bit eins
72         clr r_temp
73         sts sendflag,r_temp ;empfangen (rom_command)
74         ;sts wzero,r_temp ;alles 0 
75         RESETZEROMARKER
76         CLEAR_INTERRUPT_FLAG
77 tint_end:
78         ;CLEAR_INTERRUPT_FLAG
79         DIS_TIM_INT
80         pop r_temp
81         out _SFR_IO_ADDR(SREG),r_temp
82         pop r_temp
83         reti
84 ;;;