Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/adc_rtc.asm @ 113:deb004054279
Minor two-pages decoplan fixes.
author | JeanDo |
---|---|
date | Thu, 23 Dec 2010 13:43:00 +0100 |
parents | 31fa973a70fd |
children | 17de42ab02b6 |
rev | line source |
---|---|
0 | 1 ; OSTC - diving computer code |
2 ; Copyright (C) 2008 HeinrichsWeikamp GbR | |
3 | |
4 ; This program is free software: you can redistribute it and/or modify | |
5 ; it under the terms of the GNU General Public License as published by | |
6 ; the Free Software Foundation, either version 3 of the License, or | |
7 ; (at your option) any later version. | |
8 | |
9 ; This program is distributed in the hope that it will be useful, | |
10 ; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 ; GNU General Public License for more details. | |
13 | |
14 ; You should have received a copy of the GNU General Public License | |
15 ; along with this program. If not, see <http://www.gnu.org/licenses/>. | |
16 | |
17 | |
18 ; routines for AD converter, Realtime clock initialisation | |
19 ; written by: Matthias Heinrichs, info@heinrichsweikamp.com | |
20 ; written: 10/30/05 | |
21 ; last updated: 05/15/08 | |
22 ; known bugs: | |
23 ; ToDo: | |
24 | |
25 get_battery_voltage: ; starts ADC and waits until fnished | |
81
31fa973a70fd
Kludges to emulate inexisting devices when debugged with the MPLAB software SIMulator.
JeanDo
parents:
53
diff
changeset
|
26 ; In MPLAB Sim mode (hardware emulation), use a DMCI slider to |
31fa973a70fd
Kludges to emulate inexisting devices when debugged with the MPLAB software SIMulator.
JeanDo
parents:
53
diff
changeset
|
27 ; directly set a 16 bit value in the range 0..1023 |
31fa973a70fd
Kludges to emulate inexisting devices when debugged with the MPLAB software SIMulator.
JeanDo
parents:
53
diff
changeset
|
28 ; In normal mode, jut wait for the value to be ready: |
31fa973a70fd
Kludges to emulate inexisting devices when debugged with the MPLAB software SIMulator.
JeanDo
parents:
53
diff
changeset
|
29 |
31fa973a70fd
Kludges to emulate inexisting devices when debugged with the MPLAB software SIMulator.
JeanDo
parents:
53
diff
changeset
|
30 ifndef TESTING |
0 | 31 bsf ADCON0,0 ; power on ADC |
32 nop | |
33 bsf ADCON0,1 ; start ADC | |
81
31fa973a70fd
Kludges to emulate inexisting devices when debugged with the MPLAB software SIMulator.
JeanDo
parents:
53
diff
changeset
|
34 |
0 | 35 get_battery_voltage2: |
36 btfsc ADCON0,1 ; Wait... | |
37 bra get_battery_voltage2 | |
81
31fa973a70fd
Kludges to emulate inexisting devices when debugged with the MPLAB software SIMulator.
JeanDo
parents:
53
diff
changeset
|
38 endif |
0 | 39 |
40 ; 3.3V/1024=3,2227mV Input/Bit=9,6680mV Battery/Bit. | |
41 ; Example: 434*9,6680mV=4195,9mV Battery. | |
42 | |
43 movff ADRESH,xA+1 | |
44 movff ADRESL,xA+0 | |
45 movlw LOW d'966' | |
46 movwf xB+0 | |
47 movlw HIGH d'966' | |
48 movwf xB+1 | |
49 call mult16x16 ; AD_Result*966 | |
50 movlw d'100' | |
51 movwf xB+0 | |
52 clrf xB+1 | |
53 call div32x16 ;xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder | |
54 movff xC+0,batt_voltage+0 ; store value | |
55 movff xC+1,batt_voltage+1 | |
56 bcf ADCON0,0 ; power off ADC | |
57 | |
58 ; Check if we should enter deep-sleep mode | |
59 | |
60 movff batt_voltage+0,sub_b+0 | |
61 movff batt_voltage+1,sub_b+1 | |
62 movlw LOW d'2600' ; must be greater then 2600mV... | |
63 movwf sub_a+0 | |
64 movlw HIGH d'2600' | |
65 movwf sub_a+1 | |
66 call sub16 ; sub_c = sub_a - sub_b | |
67 bcf enter_error_sleep ; Clear flag | |
68 btfsc neg_flag ; neg_flag=1 if eeprom40:41 < 2000 | |
69 bra get_battery_voltage3 ; Battery in OK range | |
70 | |
71 movlw d'2' | |
72 movwf fatal_error_code ; Battery very low! | |
73 bsf enter_error_sleep ; enter error routine | |
74 | |
75 get_battery_voltage3: | |
76 movff amb_pressure+0,sub_b+0 | |
77 movff amb_pressure+1,sub_b+1 | |
78 movlw LOW d'15001' ; must be lower then 15001mBar | |
79 movwf sub_a+0 | |
80 movlw HIGH d'15001' | |
81 movwf sub_a+1 | |
82 call sub16 ; sub_c = sub_a - sub_b | |
83 bcf enter_error_sleep ; Clear flag | |
84 btfss neg_flag ; | |
85 bra get_battery_voltage4 ; Pressure in OK range | |
86 | |
87 movlw d'3' | |
88 movwf fatal_error_code ; too deep | |
89 bsf enter_error_sleep ; enter error routine | |
90 ; Continue with rest of routine | |
91 | |
92 get_battery_voltage4: | |
93 ; check if the battery control memory needs to be initialised! | |
94 bcf initialize_battery1 ; clear check-flags | |
95 bcf initialize_battery2 | |
96 | |
97 read_int_eeprom d'40' ; get lowest battery voltage seen in mV | |
98 movff EEDATA,sub_b+0 | |
99 read_int_eeprom d'41' | |
100 movff EEDATA,sub_b+1 | |
101 | |
102 movlw LOW d'2000' ; must be greater then 2000mV... | |
103 movwf sub_a+0 | |
104 movlw HIGH d'2000' | |
105 movwf sub_a+1 | |
106 call sub16 ; sub_c = sub_a - sub_b | |
107 btfss neg_flag ; neg_flag=1 if eeprom40:41 < 2000 | |
108 bsf initialize_battery1 ; battery need to be initialised | |
109 | |
110 movlw LOW d'4500' ; must be lower then 4500mV... | |
111 movwf sub_a+0 | |
112 movlw HIGH d'4500' | |
113 movwf sub_a+1 | |
114 call sub16 ; sub_c = sub_a - sub_b | |
115 btfss neg_flag ; neg_flag=1 if eeprom40:41 < 4500 | |
116 bsf initialize_battery2 ; battery need to be initialised | |
117 | |
118 btfss initialize_battery1 ; battery need to be initialised? | |
119 bra get_battery_no_init ; No, we have already valid values, just check for new extremas | |
120 | |
121 btfss initialize_battery2 ; battery need to be initialised? | |
122 bra get_battery_no_init ; No, we have already valid values, just check for new extremas | |
123 | |
124 ; Init EEPROM for battery control | |
125 ; Reset lowest battery seen | |
126 movlw LOW d'4200' ; reset to 4.2V | |
127 movwf EEDATA | |
128 write_int_eeprom d'40' | |
129 movlw HIGH d'4200' ; reset to 4.2V | |
130 movwf EEDATA | |
131 write_int_eeprom d'41' | |
132 movff month,EEDATA | |
133 write_int_eeprom d'42' | |
134 movff day,EEDATA | |
135 write_int_eeprom d'43' | |
136 movff year,EEDATA | |
137 write_int_eeprom d'44' | |
138 movff temperature+0,EEDATA | |
139 write_int_eeprom d'45' | |
140 movff temperature+1,EEDATA | |
141 write_int_eeprom d'46' | |
142 ; Reset charge statistics | |
53 | 143 clrf EEDATA |
144 write_int_eeprom d'47' ; last complete charge | |
145 write_int_eeprom d'48' ; last complete charge | |
146 write_int_eeprom d'49' ; last complete charge | |
147 write_int_eeprom d'50' ; total cycles | |
148 write_int_eeprom d'51' ; total cycles | |
149 write_int_eeprom d'52' ; total complete cycles | |
150 write_int_eeprom d'53' ; total complete cycles | |
0 | 151 ; Reset temperature extremas |
152 movff temperature+0,EEDATA ; Reset mimimum extrema | |
153 write_int_eeprom d'54' | |
154 movff temperature+1,EEDATA | |
155 write_int_eeprom d'55' | |
156 movff month,EEDATA | |
157 write_int_eeprom d'56' | |
158 movff day,EEDATA | |
159 write_int_eeprom d'57' | |
160 movff year,EEDATA | |
161 write_int_eeprom d'58' | |
162 movff temperature+0,EEDATA ; Reset maximum extrema | |
163 write_int_eeprom d'59' | |
164 movff temperature+1,EEDATA | |
165 write_int_eeprom d'60' | |
166 movff month,EEDATA | |
167 write_int_eeprom d'61' | |
168 movff day,EEDATA | |
169 write_int_eeprom d'62' | |
170 movff year,EEDATA | |
171 write_int_eeprom d'63' | |
172 | |
173 get_battery_no_init: | |
174 read_int_eeprom d'40' ; get lowest battery voltage seen in mV | |
175 movff EEDATA,sub_b+0 | |
176 read_int_eeprom d'41' | |
177 movff EEDATA,sub_b+1 | |
178 movff batt_voltage+0,sub_a+0 | |
179 movff batt_voltage+1,sub_a+1 | |
180 call sub16 ; sub_c = sub_a - sub_b | |
181 btfss neg_flag ; new lowest battery voltage? | |
182 return ; no, quit routine | |
183 ; Yes, store new value together with the date and temperature values | |
184 movff batt_voltage+0,EEDATA | |
185 write_int_eeprom d'40' | |
186 movff batt_voltage+1,EEDATA | |
187 write_int_eeprom d'41' | |
188 movff month,EEDATA | |
189 write_int_eeprom d'42' | |
190 movff day,EEDATA | |
191 write_int_eeprom d'43' | |
192 movff year,EEDATA | |
193 write_int_eeprom d'44' | |
194 movff temperature+0,EEDATA | |
195 write_int_eeprom d'45' | |
196 movff temperature+1,EEDATA | |
197 write_int_eeprom d'46' | |
198 return | |
199 | |
200 RTCinit: ; resets RTC | |
201 movlw 0x80 | |
202 movwf TMR1H | |
203 clrf TMR1L | |
204 | |
205 ; Reset RTC if any part of the time/date is out of range | |
206 movlw d'60' ; Limit | |
207 cpfslt secs ; Check part | |
208 bra RTCinit2 ; Reset time... | |
209 movlw d'60' ; Limit | |
210 cpfslt mins ; Check part | |
211 bra RTCinit2 ; Reset time... | |
212 movlw d'24' ; Limit | |
213 cpfslt hours ; Check part | |
214 bra RTCinit2 ; Reset time... | |
215 movlw d'32' ; Limit | |
216 cpfslt day ; Check part | |
217 bra RTCinit2 ; Reset time... | |
218 movlw d'12' ; Limit | |
219 cpfslt month ; Check part | |
220 bra RTCinit2 ; Reset time... | |
221 movlw d'100' ; Limit | |
222 cpfslt year ; Check part | |
223 bra RTCinit2 ; Reset time... | |
224 | |
225 bsf PIE1, TMR1IE | |
226 return | |
227 | |
228 RTCinit2: | |
229 movlw .00 | |
230 movwf secs | |
231 movlw .00 | |
232 movwf mins | |
233 movlw .12 | |
234 movwf hours | |
53 | 235 movlw .1 |
0 | 236 movwf day |
53 | 237 movlw .8 |
0 | 238 movwf month |
12 | 239 movlw .10 |
0 | 240 movwf year |
241 bsf PIE1, TMR1IE | |
242 return |