Change Slave sends '0' during convert prozess on all DS18B20
[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                 rjmp h_convert_run
64 .endm
65
66 #include "../common/OWRomFunctions.s"
67 #include "../common/OWTimerInterrupt.s"
68
69
70
71 ; Ab hier Geraeteabhaenging
72 #define OW_READ_SCRATCHPAD OW_FIRST_COMMAND+0
73 #define OW_WRITE_SCRATCHPAD OW_FIRST_COMMAND+1
74 #define OW_CONVERT_RUN  OW_FIRST_COMMAND+2
75
76
77 ;---------------------------------------------------
78 ;       READ COMMAND and start operation
79 ;---------------------------------------------------
80
81
82 h_readcommand:
83         clr r_bytep
84 #ifndef _DIS_FLASH_
85         FLASH_COMMANDS ; muss zu erst sein....
86 #endif
87         cjmp 0xBE,hrc_set_readscratchpad
88         cjmp 0x4E,hrc_set_writescratchpad
89         cjmp 0x44,hrc_set_convertT
90         cjmp 0x48,hrc_copy_scratchpad
91         cjmp 0xB8,hrc_recall_eeprom
92         FW_CONFIG_INFO
93 #ifdef _CHANGEABLE_ID_
94         CHANGE_ID_COMMANDS
95 #endif
96         //ldi r_mode,OW_SLEEP
97         rjmp handle_end_sleep
98
99 hrc_set_readscratchpad:
100         ldi r_mode,OW_READ_SCRATCHPAD
101         ldi r_sendflag,1
102         CRCInit2
103         rjmp h_readscratchpad
104
105 hrc_set_writescratchpad:
106         ldi r_mode,OW_WRITE_SCRATCHPAD
107         ldi r_bytep,2 ;start to write in 2
108         rjmp handle_end
109
110 hrc_recall_eeprom:
111         rcall hrc_recall_eeprom_func
112         rjmp handle_end
113
114
115
116 hrc_set_convertT:
117         ldi r_temp,1
118         sts gcontrol,r_temp
119         ;lds temp,am2302_temp
120         //sts pack+1,temp
121         ;lds temp,am2302_temp+1
122         //sts pack+2,temp
123 ;       ldi r_rwbyte,0
124 ;       lds r_temp,pack
125 ;       swap r_temp
126 ;       andi r_temp,0x0F
127 ;       lds r_temp2,pack+1
128 ;       swap r_temp2
129 ;       andi r_temp2,0xF0
130 ;       or r_temp,r_temp2
131 ;       lds r_temp2,pack+2
132 ;       cp r_temp,r_temp2  ;higher than or equal to TH
133 ;       brge hrc_set_convertT_set_arlarm
134 ;       lds r_temp2,pack+3 
135 ;       cp r_temp,r_temp2 ;lower than or equal to TL
136 ;       brlt hrc_set_convertT_set_arlarm
137 ;       breq hrc_set_convertT_set_arlarm
138 ;       rjmp hrc_set_convertT_end
139 ;hrc_set_convertT_set_arlarm:
140 ;       ldi r_rwbyte,1
141 ;hrc_set_convertT_end:
142 ;       sts alarmflag,r_rwbyte
143         ldi r_mode,OW_CONVERT_RUN
144         ldi r_sendflag,3 ;set bit 0 and 1 for no zero polling
145 h_convert_run:
146         ldi r_bcount,0
147         ldi r_rwbyte,0
148         rjmp handle_end_no_bcount       
149
150 hrc_copy_scratchpad:
151         ldi r_bytep,2
152         configZ pack,r_bytep
153         clr r_bytep
154 hrc_copy_scratchpad_EEPROM_write:
155         sbic _SFR_IO_ADDR(EECR), EEPE   
156         rjmp hrc_copy_scratchpad_EEPROM_write
157         ldi r_temp, (0<<EEPM1)|(0<<EEPM0)
158         out _SFR_IO_ADDR(EECR), r_temp
159         ldi r_temp,0
160         out _SFR_IO_ADDR(EEARH),r_temp
161         out _SFR_IO_ADDR(EEARL), r_bytep
162         ld  r_rwbyte,Z+
163         out _SFR_IO_ADDR(EEDR), r_rwbyte
164         sbi _SFR_IO_ADDR(EECR), EEMPE
165         sbi _SFR_IO_ADDR(EECR), EEPE
166         inc r_bytep
167         cpi r_bytep,3
168         brne hrc_copy_scratchpad_EEPROM_write
169         rjmp handle_end
170
171
172 hrc_recall_eeprom_func:
173         ldi r_bytep,2
174         configZ pack,r_bytep
175         clr r_bytep
176         clr r_temp
177 hrc_recall_eeprom_EEPROM_read:
178         sbic _SFR_IO_ADDR(EECR), EEPE
179         rjmp hrc_recall_eeprom_EEPROM_read
180         out _SFR_IO_ADDR(EEARH), r_temp
181         out _SFR_IO_ADDR(EEARL), r_bytep
182         sbi _SFR_IO_ADDR(EECR), EERE
183         in r_rwbyte,_SFR_IO_ADDR(EEDR)
184         st Z+,r_rwbyte
185         inc r_bytep
186         cpi r_bytep,3
187         brne hrc_recall_eeprom_EEPROM_read
188         ret
189
190
191
192
193
194
195 ;---------------------------------------------------
196 ;   READ SCRATCHPAD
197 ;---------------------------------------------------
198
199 h_readscratchpad:
200         cpi  r_bytep,8
201         breq h_readscratchpad_crc
202         cpi  r_bytep,9
203         breq h_readscratchpad_all
204         configZ pack,r_bytep
205         ld   r_rwbyte,Z
206         rjmp h_readscratchpad_endc
207 h_readscratchpad_crc:
208         lds  r_rwbyte,crc
209 h_readscratchpad_endc:
210         inc  r_bytep
211         ldi  r_bcount,1 
212         rjmp handle_end
213 h_readscratchpad_all:
214         rjmp handle_end_sleep
215
216
217
218
219
220 ;---------------------------------------------------
221 ;   WRITE SCRATCHPAD
222 ;---------------------------------------------------
223
224 h_writescratchpad:
225         configZ pack,r_bytep
226         inc  r_bytep
227         cpi  r_bytep,5
228         breq h_writescratchpad_all
229         st   Z,r_rwbyte
230         rjmp handle_end
231 h_writescratchpad_all:
232         ori r_rwbyte,0x1F ; Alle unteren Bits sind immer 1
233         st   Z,r_rwbyte
234         rjmp handle_end_sleep
235
236
237
238
239
240 #include "../common/OWPinInterrupt.s"
241 .end