Change Slave sends '0' during convert prozess on all DS18B20
[owSlave2.git] / DS18B20_Thermocouble / 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
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
151 hrc_copy_scratchpad:
152         ldi r_bytep,2
153         configZ pack,r_bytep
154         clr r_bytep
155 hrc_copy_scratchpad_EEPROM_write:
156         sbic _SFR_IO_ADDR(EECR), EEPE   
157         rjmp hrc_copy_scratchpad_EEPROM_write
158         ldi r_temp, (0<<EEPM1)|(0<<EEPM0)
159         out _SFR_IO_ADDR(EECR), r_temp
160         ldi r_temp,0
161         out _SFR_IO_ADDR(EEARH),r_temp
162         out _SFR_IO_ADDR(EEARL), r_bytep
163         ld  r_rwbyte,Z+
164         out _SFR_IO_ADDR(EEDR), r_rwbyte
165         sbi _SFR_IO_ADDR(EECR), EEMPE
166         sbi _SFR_IO_ADDR(EECR), EEPE
167         inc r_bytep
168         cpi r_bytep,3
169         brne hrc_copy_scratchpad_EEPROM_write
170         rjmp handle_end
171
172
173 hrc_recall_eeprom_func:
174         ldi r_bytep,2
175         configZ pack,r_bytep
176         clr r_bytep
177         clr r_temp
178 hrc_recall_eeprom_EEPROM_read:
179         sbic _SFR_IO_ADDR(EECR), EEPE
180         rjmp hrc_recall_eeprom_EEPROM_read
181         out _SFR_IO_ADDR(EEARH), r_temp
182         out _SFR_IO_ADDR(EEARL), r_bytep
183         sbi _SFR_IO_ADDR(EECR), EERE
184         in r_rwbyte,_SFR_IO_ADDR(EEDR)
185         st Z+,r_rwbyte
186         inc r_bytep
187         cpi r_bytep,3
188         brne hrc_recall_eeprom_EEPROM_read
189         ret
190
191
192
193
194
195
196 ;---------------------------------------------------
197 ;   READ SCRATCHPAD
198 ;---------------------------------------------------
199
200 h_readscratchpad:
201         cpi  r_bytep,8
202         breq h_readscratchpad_crc
203         cpi  r_bytep,9
204         breq h_readscratchpad_all
205         configZ pack,r_bytep
206         ld   r_rwbyte,Z
207         rjmp h_readscratchpad_endc
208 h_readscratchpad_crc:
209         lds  r_rwbyte,crc
210 h_readscratchpad_endc:
211         inc  r_bytep
212         ldi  r_bcount,1 
213         rjmp handle_end
214 h_readscratchpad_all:
215         rjmp handle_end_sleep
216
217
218
219
220
221 ;---------------------------------------------------
222 ;   WRITE SCRATCHPAD
223 ;---------------------------------------------------
224
225 h_writescratchpad:
226         configZ pack,r_bytep
227         inc  r_bytep
228         cpi  r_bytep,5
229         breq h_writescratchpad_all
230         st   Z,r_rwbyte
231         rjmp handle_end
232 h_writescratchpad_all:
233         ori r_rwbyte,0x1F ; Alle unteren Bits sind immer 1
234         st   Z,r_rwbyte
235         rjmp handle_end_sleep
236
237
238
239
240
241
242 #include "../common/OWPinInterrupt.s"
243 .end