Rename Files of different Devices
[owSlave2.git] / DS18B20_MAX44009 / OWDS18B20.S
1
2 // Copyright (c) 2015, Tobias Mueller tm(at)tm3d.de
3 // All rights reserved. 
4 // 
5 // Redistribution and use in source and binary forms, with or without 
6 // modification, are permitted provided that the following conditions are 
7 // met: 
8 // 
9 //  * Redistributions of source code must retain the above copyright 
10 //    notice, this list of conditions and the following disclaimer. 
11 //  * Redistributions in binary form must reproduce the above copyright 
12 //    notice, this list of conditions and the following disclaimer in the 
13 //    documentation and/or other materials provided with the 
14 //    distribution. 
15 //  * All advertising materials mentioning features or use of this 
16 //    software must display the following acknowledgement: This product 
17 //    includes software developed by tm3d.de and its contributors. 
18 //  * Neither the name of tm3d.de nor the names of its contributors may 
19 //    be used to endorse or promote products derived from this software 
20 //    without specific prior written permission. 
21 // 
22 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
23 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
24 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
25 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
26 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
27 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
28 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
29 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
30 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
31 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
32 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
33
34 #define _CHANGEABLE_ID_
35 #define _ZERO_POLLING_
36
37 #include "../common/OWConfig.s"
38 #include "../common/OWCRC8.s"
39
40 .extern pack,8
41
42 //.extern  am2302_temp,2
43
44
45
46 .macro CHIP_INIT        
47 Init_EEPROM_read:
48         sbic _SFR_IO_ADDR(EECR), EEPE
49         rjmp Init_EEPROM_read
50         ldi r_temp,0
51         out _SFR_IO_ADDR(EEARH), r_temp
52         ldi r_temp,2
53         out _SFR_IO_ADDR(EEARL), r_temp
54         sbi _SFR_IO_ADDR(EECR), EERE
55         in r_temp,_SFR_IO_ADDR(EEDR)
56         sbrs r_temp,7
57         rcall hrc_recall_eeprom_func
58 .endm
59
60 .macro COMMAND_TABLE
61                 rjmp h_readscratchpad
62                 rjmp h_writescratchpad
63 .endm
64
65 #include "../common/OWRomFunctions.s"
66 #include "../common/OWTimerInterrupt.s"
67
68
69
70 ; Ab hier Geraeteabhaenging
71 #define OW_READ_SCRATCHPAD OW_FIRST_COMMAND+0
72 #define OW_WRITE_SCRATCHPAD OW_FIRST_COMMAND+1
73
74
75 ;---------------------------------------------------
76 ;       READ COMMAND and start operation
77 ;---------------------------------------------------
78
79
80 h_readcommand:
81         clr r_bytep
82 #ifndef _DIS_FLASH_
83         FLASH_COMMANDS ; muss zu erst sein....
84 #endif
85         cjmp 0xBE,hrc_set_readscratchpad
86         cjmp 0x4E,hrc_set_writescratchpad
87         cjmp 0x44,hrc_set_convertT
88         cjmp 0x48,hrc_copy_scratchpad
89         cjmp 0xB8,hrc_recall_eeprom
90         FW_CONFIG_INFO
91 #ifdef _CHANGEABLE_ID_
92         CHANGE_ID_COMMANDS
93 #endif
94         //ldi r_mode,OW_SLEEP
95         rjmp handle_end_sleep
96
97 hrc_set_readscratchpad:
98         ldi r_mode,OW_READ_SCRATCHPAD
99         ldi r_sendflag,1
100         CRCInit2
101         rjmp h_readscratchpad
102
103 hrc_set_writescratchpad:
104         ldi r_mode,OW_WRITE_SCRATCHPAD
105         ldi r_bytep,2 ;start to write in 2
106         rjmp handle_end
107
108 hrc_recall_eeprom:
109         rcall hrc_recall_eeprom_func
110         rjmp handle_end
111
112
113
114 hrc_set_convertT:
115         ldi r_temp,1
116         sts gcontrol,r_temp
117         ;lds temp,am2302_temp
118         //sts pack+1,temp
119         ;lds temp,am2302_temp+1
120         //sts pack+2,temp
121 ;       ldi r_rwbyte,0
122 ;       lds r_temp,pack
123 ;       swap r_temp
124 ;       andi r_temp,0x0F
125 ;       lds r_temp2,pack+1
126 ;       swap r_temp2
127 ;       andi r_temp2,0xF0
128 ;       or r_temp,r_temp2
129 ;       lds r_temp2,pack+2
130 ;       cp r_temp,r_temp2  ;higher than or equal to TH
131 ;       brge hrc_set_convertT_set_arlarm
132 ;       lds r_temp2,pack+3 
133 ;       cp r_temp,r_temp2 ;lower than or equal to TL
134 ;       brlt hrc_set_convertT_set_arlarm
135 ;       breq hrc_set_convertT_set_arlarm
136 ;       rjmp hrc_set_convertT_end
137 ;hrc_set_convertT_set_arlarm:
138 ;       ldi r_rwbyte,1
139 ;hrc_set_convertT_end:
140 ;       sts alarmflag,r_rwbyte
141         rjmp handle_end_sleep
142
143
144 hrc_copy_scratchpad:
145         ldi r_bytep,2
146         configZ pack,r_bytep
147         clr r_bytep
148 hrc_copy_scratchpad_EEPROM_write:
149         sbic _SFR_IO_ADDR(EECR), EEPE   
150         rjmp hrc_copy_scratchpad_EEPROM_write
151         ldi r_temp, (0<<EEPM1)|(0<<EEPM0)
152         out _SFR_IO_ADDR(EECR), r_temp
153         ldi r_temp,0
154         out _SFR_IO_ADDR(EEARH),r_temp
155         out _SFR_IO_ADDR(EEARL), r_bytep
156         ld  r_rwbyte,Z+
157         out _SFR_IO_ADDR(EEDR), r_rwbyte
158         sbi _SFR_IO_ADDR(EECR), EEMPE
159         sbi _SFR_IO_ADDR(EECR), EEPE
160         inc r_bytep
161         cpi r_bytep,3
162         brne hrc_copy_scratchpad_EEPROM_write
163         rjmp handle_end
164
165
166 hrc_recall_eeprom_func:
167         ldi r_bytep,2
168         configZ pack,r_bytep
169         clr r_bytep
170         clr r_temp
171 hrc_recall_eeprom_EEPROM_read:
172         sbic _SFR_IO_ADDR(EECR), EEPE
173         rjmp hrc_recall_eeprom_EEPROM_read
174         out _SFR_IO_ADDR(EEARH), r_temp
175         out _SFR_IO_ADDR(EEARL), r_bytep
176         sbi _SFR_IO_ADDR(EECR), EERE
177         in r_rwbyte,_SFR_IO_ADDR(EEDR)
178         st Z+,r_rwbyte
179         inc r_bytep
180         cpi r_bytep,3
181         brne hrc_recall_eeprom_EEPROM_read
182         ret
183
184
185
186
187
188
189 ;---------------------------------------------------
190 ;   READ SCRATCHPAD
191 ;---------------------------------------------------
192
193 h_readscratchpad:
194         cpi  r_bytep,8
195         breq h_readscratchpad_crc
196         cpi  r_bytep,9
197         breq h_readscratchpad_all
198         configZ pack,r_bytep
199         ld   r_rwbyte,Z
200         rjmp h_readscratchpad_endc
201 h_readscratchpad_crc:
202         lds  r_rwbyte,crc
203 h_readscratchpad_endc:
204         inc  r_bytep
205         ldi  r_bcount,1 
206         rjmp handle_end
207 h_readscratchpad_all:
208         rjmp handle_end_sleep
209
210
211
212
213
214 ;---------------------------------------------------
215 ;   WRITE SCRATCHPAD
216 ;---------------------------------------------------
217
218 h_writescratchpad:
219         configZ pack,r_bytep
220         inc  r_bytep
221         cpi  r_bytep,5
222         breq h_writescratchpad_all
223         st   Z,r_rwbyte
224         rjmp handle_end
225 h_writescratchpad_all:
226         ori r_rwbyte,0x1F ; Alle unteren Bits sind immer 1
227         st   Z,r_rwbyte
228         rjmp handle_end_sleep
229
230
231
232
233
234
235 #include "../common/OWPinInterrupt.s"
236 .end