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