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