Change Time Values so it works for all Adapters
[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         sdb
37         push r_temp
38         in r_temp,_SFR_IO_ADDR(SREG)  
39         push r_temp
40         cdb
41         sbic OW_PIN,OW_PINN  ; abkuerzung wenn Leitung schon h
42         rjmp tint_end ; Leitung 1 kein Reset
43         ldi r_temp,0  
44         out TCNT_REG,r_temp
45         CLEAR_TOV_FLAG
46 tint_loop_rend:
47         sbis OW_PIN,OW_PINN ;warten bis leitung wieder h 
48         rjmp tint_loop_rend
49         JMP_NO_TOV ;ueberspringe wenn kein ueberlauf
50         rjmp tint_overrun
51         in r_temp,TCNT_REG ;schauen ob es lange genug gedauert hat fuer reset
52         cpi r_temp,OWT_RESET2 
53         brlo tint_end
54 tint_overrun:
55         ldi r_temp,0
56         out TCNT_REG,r_temp
57         ;zwischen Reset und Presets
58 tint_loop_res_pres:
59         in r_temp,TCNT_REG
60         cpi r_temp,OWT_RESET_PRESENT
61         brlo tint_loop_res_pres ;Warten zwischen reset und presets
62         sbi OW_DDR,OW_PINN  ;presents impuls
63         ;reset impuls
64 tint_loop_pres:
65         in r_temp,TCNT_REG
66         cpi r_temp,OWT_PRESENT
67         brlo tint_loop_pres
68         cbi OW_DDR,OW_PINN  
69         ldi r_temp,OW_READ_ROM_COMMAND ; Initialisieren von Rom command
70         sts mode,r_temp
71         ldi r_temp,1
72         sts reset_indicator,r_temp
73         sts bcount,r_temp ;bit eins
74         clr r_temp
75         sts sendflag,r_temp ;empfangen (rom_command)
76         ;sts wzero,r_temp ;alles 0 
77         RESETZEROMARKER
78         CLEAR_INTERRUPT_FLAG
79 tint_end:
80         ;CLEAR_INTERRUPT_FLAG
81         DIS_TIM_INT
82         pop r_temp
83         out _SFR_IO_ADDR(SREG),r_temp
84         pop r_temp
85         reti
86 ;;;