First Commit
[owSlave2.git] / common / OWSet_ATTINYX5.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 //#define __4M__
35
36 #define OW_PORT _SFR_IO_ADDR(PORTB) //1 Wire Port
37 #define OW_PIN _SFR_IO_ADDR(PINB) //1 Wire Pin as number
38 #define OW_PINN PORTB2
39 #define OW_DDR _SFR_IO_ADDR(DDRB)  //pin direction register
40 #define TCNT_REG _SFR_IO_ADDR(TCNT0)
41
42 #define DB_PORT _SFR_IO_ADDR(PORTB) //1 Wire Port
43 #define DB_PIN _SFR_IO_ADDR(PINB) //1 Wire Pin as number
44 #define DB_PINN PORTB1
45
46 #define SETZEROMARKER sbi _SFR_IO_ADDR(DDRB),5
47 #define RESETZEROMARKER cbi _SFR_IO_ADDR(DDRB),5
48 #define TESTZEROMARKER sbic _SFR_IO_ADDR(DDRB),5
49
50 ;#define sdb sbi _SFR_IO_ADDR(PORTB),1
51 ;#define cdb cbi _SFR_IO_ADDR(PORTB),1
52
53 #define TIMER_INTERRUPT TIM0_OVF_vect
54 #define PIN_INTERRIPT INT0_vect
55
56 #ifdef __4M__
57
58 #define OWT_MIN_RESET 70 
59 #define OWT_RESET2 40
60 #define OWT_RESET_PRESENT 15
61 #define OWT_PRESENT 50
62 #define OWT_WRITE 18
63 #define OWT_READ 5
64
65 #else
66
67 #define OWT_MIN_RESET 120 
68 #define OWT_RESET2 60
69 #define OWT_RESET_PRESENT 30
70 #define OWT_PRESENT 130
71 //#define OWT_WRITE 35
72 //#define OWT_READ 12
73 #define OWT_WRITE 35
74 #define OWT_READ 12
75
76 #endif
77
78
79
80 .macro CLEAR_INTERRUPT_FLAG 
81         ldi r_temp,(1<<INTF0);inerrupt flags durch 1 loeschen..... 0 macht nix
82         out _SFR_IO_ADDR(GIFR),r_temp
83 .endm
84
85 .macro EN_TIM_INT
86         in r_temp,_SFR_IO_ADDR(TIMSK)
87         sbr r_temp,(1<<TOIE0)
88         out _SFR_IO_ADDR(TIMSK),r_temp
89         ldi r_temp,(1<<TOV0) ;inerrupt flags durch 1 loeschen..... 0 macht nix
90         out _SFR_IO_ADDR(TIFR),r_temp
91 .endm
92
93 .macro DIS_TIM_INT
94         in r_temp,_SFR_IO_ADDR(TIMSK)
95         cbr r_temp,(1<<TOIE0)
96         out _SFR_IO_ADDR(TIMSK),r_temp
97 .endm
98
99
100 .macro SET_FALLING
101         in r_temp,_SFR_IO_ADDR(MCUCR)
102         ori r_temp,(1<<ISC01)
103         out     _SFR_IO_ADDR(MCUCR),r_temp
104 .endm
105
106
107
108
109 .macro HW_INIT
110         ;set clock to 8 MHz
111         ldi r_temp,0x80;
112         out _SFR_IO_ADDR(CLKPR),r_temp
113 #ifdef __4M__
114         ldi r_temp,(1<<CLKPS0)
115 #else
116         ldi r_temp,0
117 #endif
118         out _SFR_IO_ADDR(CLKPR),r_temp
119         ;Disable Timer int
120         ldi r_temp,0
121         out _SFR_IO_ADDR(TIMSK),r_temp ;; is default
122         ;Enable Pin int
123         ldi r_temp,(1<<INT0)
124         out _SFR_IO_ADDR(GIMSK),r_temp
125         ;Set Timerclock to Clock / 8 (2us)
126         ldi r_temp,(1<<CS01)
127         out _SFR_IO_ADDR(TCCR0B),r_temp
128         ;OWPin as input
129         cbi OW_DDR,OW_PINN ;; is default.... 
130         ;set falling edge
131         ldi r_temp,(1<<ISC01)
132         out _SFR_IO_ADDR(MCUCR),r_temp
133 .endm