Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/menu_logbook.asm @ 486:c7b663939737
making waitms speed-independent, desat-time fix
author | heinrichsweikamp |
---|---|
date | Sat, 15 Oct 2011 15:03:53 +0200 |
parents | 8d69c040b9fc |
children | ab819be6193f |
rev | line source |
---|---|
0 | 1 |
2 ; OSTC - diving computer code | |
3 ; Copyright (C) 2008 HeinrichsWeikamp GbR | |
4 | |
5 ; This program is free software: you can redistribute it and/or modify | |
6 ; it under the terms of the GNU General Public License as published by | |
7 ; the Free Software Foundation, either version 3 of the License, or | |
8 ; (at your option) any later version. | |
9 | |
10 ; This program is distributed in the hope that it will be useful, | |
11 ; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 ; GNU General Public License for more details. | |
14 | |
15 ; You should have received a copy of the GNU General Public License | |
16 ; along with this program. If not, see <http://www.gnu.org/licenses/>. | |
17 | |
18 | |
19 ; Menu "Logbook" | |
20 ; written by: Matthias Heinrichs, info@heinrichsweikamp.com | |
21 ; written: 060107 | |
22 ; last updated: 081026 | |
23 ; known bugs: | |
24 ; ToDo: | |
25 | |
430 | 26 ;============================================================================= |
27 ; Temp data, local to this module, moved to ACCES0 area. | |
28 ; | |
29 CBLOCK 0x010 ; Keep space for aa_wordprocessor's temp. | |
30 count_temperature ; Current sample count for temperature divisor | |
31 count_deco ; Current sample count for deco (ceiling) divisor | |
32 logbook0_ptr:2 ; Loogbook pointer inside EEPROM Bank0 | |
33 logbook1_ptr:2 ; Loogbook pointer inside EEPROM Bank1 | |
34 logbook_cur_depth:2 ; Current depth, for drawing profile. | |
35 logbook_cur_tp:2 ; Current temperature, for drawing profile. | |
36 logbook_last_tp ; Y of the last item in Tp° curve. | |
37 logbook_min_tp:2 ; Min temperature, for drawing profile. | |
451 | 38 logbook_max_tp:2 ; Maximum temperature, for drawing profile. |
430 | 39 logbook_ceiling ; Current ceiling, for drawing profile. |
40 ENDC | |
41 | |
42 ;============================================================================= | |
0 | 43 ; searches external EEPROM for dive headers and displays them in a list |
44 ; a detailed view with all informations and profile can be selected | |
45 ; does not require a FAT, will work with other profile intervals as ten seconds, too | |
46 | |
47 menu_logbook: | |
207 | 48 bcf return_from_profileview ; clear some flags |
0 | 49 menu_logbook1: |
50 bcf logbook_header_drawn | |
51 call PLED_ClearScreen ; Clear screen | |
52 bcf all_dives_shown ; clear some flags | |
53 bcf logbook_profile_view | |
54 bcf logbook_page_not_empty | |
55 clrf menupos3 ; Here: used rows on current logbook-page | |
56 clrf menupos2 ; Here: # of current displayed page | |
57 clrf divenumber ; # of dive in list during search | |
58 | |
59 | |
60 menu_logbook1a: | |
61 WIN_INVERT .1 | |
62 DISPLAYTEXT .12 ;" Wait.." | |
63 WIN_INVERT .0 | |
64 call I2CReset ; Reset I2C Bus | |
65 call get_free_EEPROM_location ; search from "here" backwards through the external memory | |
66 | |
430 | 67 movff eeprom_address+0,logbook1_ptr+0 |
68 movff eeprom_address+1,logbook1_ptr+1 ; Store Pointer to 0xFE (From 0xFD, 0xFD, 0xFE sequence) for faster display | |
207 | 69 |
70 menu_logbook1a_no_get_free: ; Without repeated search for dive | |
208 | 71 clrf divemins+0 ; Here: used as temp variables |
72 clrf divemins+1 | |
0 | 73 movlw d'5' |
74 movwf menupos ; Here: stores current position on display (5-x) | |
148 | 75 |
76 ;----------------------------------------------------------------------------- | |
77 ; search external EEPROM backwards from eeprom_address | |
78 ; for 0xFA, 0xFA (store 1st. 0xFA position for next search) | |
79 ; read header data and display it | |
80 ; wait for user to confirm/exit | |
81 ; recopy data to search from here | |
82 | |
0 | 83 menu_logbook1b: |
84 WIN_INVERT .1 | |
85 DISPLAYTEXT .12 ;" Wait.." | |
86 WIN_INVERT .0 | |
87 | |
148 | 88 ;---- fast loop: check every other byte ---------------------------------- |
0 | 89 menu_logbook2: |
351
5c186a72cb5d
Debugging the new logbook format, 64kB download routine
heinrichsweikamp
parents:
350
diff
changeset
|
90 movlw d'2' |
5c186a72cb5d
Debugging the new logbook format, 64kB download routine
heinrichsweikamp
parents:
350
diff
changeset
|
91 addwf divemins+0,F |
5c186a72cb5d
Debugging the new logbook format, 64kB download routine
heinrichsweikamp
parents:
350
diff
changeset
|
92 movlw d'0' |
5c186a72cb5d
Debugging the new logbook format, 64kB download routine
heinrichsweikamp
parents:
350
diff
changeset
|
93 addwfc divemins+1,F ; increase 16Bit value, twice |
0 | 94 |
425 | 95 incf divemins+1,W ; = 0xFF.. ? |
96 bnz menu_logbook2a ; No. | |
97 incf divemins+0,W ; = 0x..FF ? | |
98 bz menu_logbook_reset ; Yes: FFFF --> loop. | |
0 | 99 |
350
7250ca7c8d24
64kByte logbook (Still incompatible to existing PC software)
heinrichsweikamp
parents:
349
diff
changeset
|
100 menu_logbook2a: |
425 | 101 movf divemins+1,W ; = 0x00.. ? |
102 bnz menu_logbook2b ; No. | |
103 movf divemins+0,W ; = 0x..00 ? | |
104 bz menu_logbook_reset ; yes, restart (if not empty) | |
351
5c186a72cb5d
Debugging the new logbook format, 64kB download routine
heinrichsweikamp
parents:
350
diff
changeset
|
105 |
5c186a72cb5d
Debugging the new logbook format, 64kB download routine
heinrichsweikamp
parents:
350
diff
changeset
|
106 menu_logbook2b: |
245
dee88c962653
Some clean up and minor I2C speed improvements
heinrichsweikamp
parents:
244
diff
changeset
|
107 decf_eeprom_address d'2' ; -2 to eeprom address. |
148 | 108 |
0 | 109 call I2CREAD ; reads one byte (Slow! Better use Blockread!) |
110 | |
148 | 111 movlw 0xFA ; That was a FA ? |
0 | 112 cpfseq SSPBUF |
148 | 113 bra menu_logbook2 ; No: continue the fast loop... |
114 | |
115 ;---- Slow check : was it before or after that one ? --------------------- | |
0 | 116 |
148 | 117 incf_eeprom_address d'1' ; Been one step too far ? |
118 call I2CREAD ; reads one byte (Slow! Better use Blockread!) | |
119 movlw 0xFA ; That was a FA ? | |
120 xorwf SSPBUF,W | |
151 | 121 bz menu_loop_tooFar ; Got both of them... |
148 | 122 |
151 | 123 infsnz divemins+0,F ; Advance to the next byte. |
124 incf divemins+1,F | |
125 decf_eeprom_address d'2' ; One step back, two steps forward. | |
148 | 126 call I2CREAD ; reads one byte (Slow! Better use Blockread!) |
127 movlw 0xFA ; It was the second FA ? | |
128 xorwf SSPBUF,W | |
129 bz test_FA_DONE | |
130 bra menu_logbook2 ; No: continue the fast loop... | |
131 | |
132 menu_loop_tooFar; | |
151 | 133 decf_eeprom_address d'1' ; So stays pointing at the second one. |
0 | 134 |
135 test_FA_DONE: ; Found 0xFA 0xFA! | |
136 movff eeprom_address+0,eeprom_header_address+0 ; store current address into temp register | |
137 movff eeprom_address+1,eeprom_header_address+1 ; we must continue search here later | |
148 | 138 incf divenumber,F ; new header found, increase divenumber |
139 bra menu_logbook4 ; Done with searching, display the header! | |
0 | 140 |
141 menu_logbook3b: | |
207 | 142 btfss logbook_page_not_empty ; Was there at least one dive? |
0 | 143 goto menu ; Not a single header was found, leave logbook. |
207 | 144 bra menu_logbook_display_loop2 ; rcall of get_free_eeprom_location not required here (faster) |
0 | 145 |
146 menu_logbook_reset: | |
147 movf divenumber,W | |
148 btfsc STATUS,Z ; Was there at least one dive? | |
207 | 149 bra menu_logbook3b ; No, Nothing to do |
0 | 150 |
207 | 151 bsf all_dives_shown ; Yes |
152 bra menu_logbook_display_loop2 ; rcall of get_free_eeprom_location not required here (faster) | |
0 | 153 |
154 | |
155 menu_logbook4: | |
156 ; Adjust eeprom_address to set pointer on first headerbyte | |
457 | 157 incf_eeprom_address d'2' ; Macro, that adds 8Bit to eeprom_address:2 |
0 | 158 |
159 btfss logbook_profile_view ; Display profile (search routine is used in profileview, too) | |
160 bra menu_logbook_display_loop ; No, display overwiev list | |
161 | |
162 movf divesecs,W ; divenumber that is searched | |
163 cpfseq divenumber ; current divenumber | |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
164 goto next_logbook ; No match, continue search |
245
dee88c962653
Some clean up and minor I2C speed improvements
heinrichsweikamp
parents:
244
diff
changeset
|
165 bra display_profile2 ; Match: Show header and profile |
0 | 166 |
167 | |
168 menu_logbook_display_loop: | |
169 btfsc all_dives_shown ; All dives displayed? | |
170 bra menu_logbook_display_loop2 ; Yes, but display first page again. | |
171 | |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
172 call display_listdive ; display short header for list on current list position |
0 | 173 |
174 movlw d'5' | |
175 cpfseq menupos ; first dive on list (top place)? | |
176 bra menu_logbook_display_loop1 ; no, so skip saving of address | |
177 | |
178 | |
179 movff divenumber,mintemp+0 ; store all registered required to rebuilt the current logbookpage after the detail/profile view | |
180 movff eeprom_header_address+0,decodata+0 ; several registers are used as temp registers here | |
181 movff eeprom_header_address+1,decodata+1 | |
182 movff divemins+0,max_pressure+0 | |
183 movff divemins+1,max_pressure+1 | |
184 | |
185 movlw d'3' | |
186 addwf decodata+0,F | |
187 movlw d'0' | |
188 addwfc decodata+1,F ; Re-Adjust pointer again | |
189 movlw d'3' ; So first row will be the same again after detail/profile view | |
190 subwf max_pressure+0,F | |
191 movlw d'0' | |
192 subwfb max_pressure+1,F | |
193 | |
194 menu_logbook_display_loop1: | |
207 | 195 decfsz menupos,F ; List full? |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
196 goto next_logbook ; no, search another dive for our current logbook page |
0 | 197 |
198 menu_logbook_display_loop2: | |
207 | 199 btfss logbook_page_not_empty ; Was there one dive at all? |
200 bra menu_logbook ; Yes, so reload the first page | |
0 | 201 |
207 | 202 call PLED_topline_box ; Draw box |
0 | 203 WIN_INVERT .1 |
207 | 204 DISPLAYTEXT .26 ; "Logbook" |
0 | 205 WIN_INVERT .0 |
206 | |
207 | 207 DISPLAYTEXT .11 ; Displays "Exit" in the last row on the current page |
0 | 208 |
207 | 209 bcf sleepmode ; clear some flags for user input |
210 bcf menubit2 | |
211 bcf menubit3 | |
212 bcf cursor | |
213 bcf switch_right | |
214 bcf switch_left | |
0 | 215 clrf timeout_counter2 |
216 | |
217 movlw d'1' ; Set cursor to position 1... | |
218 btfsc return_from_profileview ; .. unless we are returning from a detail/profile view | |
219 movf mintemp+1,W ; load last cursor position again | |
220 movwf menupos ; and set menupos byte | |
221 bcf return_from_profileview ; Do this only once while the page is loaded again! | |
222 | |
223 bcf logbook_page_not_empty ; Obviously the current page is NOT empty | |
224 call PLED_logbook_cursor | |
225 | |
226 menu_logbook_loop: | |
227 call check_switches_logbook | |
228 | |
229 btfsc menubit3 ; SET/MENU? | |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
230 goto next_logbook3 ; adjust cursor or create new page |
0 | 231 |
232 btfsc menubit2 ; ENTER? | |
233 bra display_profile_or_exit ; view details/profile or exit logbook | |
234 | |
235 btfsc onesecupdate | |
236 call timeout_surfmode ; Timeout | |
237 | |
238 btfsc onesecupdate | |
239 call set_dive_modes ; Check, if divemode must be entered | |
240 | |
241 bcf onesecupdate ; one second update | |
242 | |
243 btfsc sleepmode ; Timeout? | |
244 goto menu ; Yes | |
245 | |
246 btfsc divemode | |
247 goto restart ; Enter Divemode if required | |
248 | |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
249 goto menu_logbook_loop ; Wait for something to do |
0 | 250 |
251 display_profile_or_exit: | |
252 bcf menubit2 ; debounce | |
253 movlw d'6' ; exit? | |
254 cpfseq menupos | |
255 bra display_profile ; No, show details/profile | |
256 goto menu | |
257 | |
258 display_profile: | |
259 movff menupos,mintemp+1 ; store current cursor position | |
260 bsf return_from_profileview ; tweak search routine to exit after found | |
261 | |
262 movf menupos2,W ; Number of page | |
263 mullw d'5' | |
264 movf PRODL,W | |
265 addwf menupos,W ; page*5+menupos= | |
266 movwf divesecs ; # of dive to search | |
267 | |
268 call PLED_ClearScreen ; search for dive | |
269 bsf logbook_profile_view ; set flag for search routine | |
270 | |
207 | 271 clrf divenumber ; search from scratch |
272 | |
430 | 273 movff logbook1_ptr+0,eeprom_address+0 |
274 movff logbook1_ptr+1,eeprom_address+1 ; Restore Pointer to 0xFE (From 0xFD, 0xFD, 0xFE sequence) for faster display | |
207 | 275 |
276 bra menu_logbook1a_no_get_free ; Start Search for Dive (Without get_free_EEPROM_location) | |
277 | |
0 | 278 display_profile2: |
279 bcf logbook_profile_view ; clear flag for search routine | |
280 | |
371 | 281 clrf average_divesecs+0 |
282 clrf average_divesecs+1 ; holds amount of read samples | |
283 | |
0 | 284 call PLED_display_wait_clear |
204 | 285 call PLED_standard_color |
0 | 286 WIN_TOP .0 |
287 WIN_LEFT .0 | |
123 | 288 STRCPY "#" |
0 | 289 |
290 GETCUSTOM15 .28 ; Logbook Offset -> lo, hi | |
291 tstfsz lo ; lo=0? | |
292 bra display_profile_offset1 ; No, adjust offset | |
293 tstfsz hi ; hi=0? | |
294 bra display_profile_offset1 ; No, adjust offset | |
295 bra display_profile_offset2 ; lo=0 and hi=0 -> skip Offset routine | |
296 | |
297 display_profile_offset1: | |
298 movlw d'1' | |
299 addwf lo,F | |
300 movlw d'0' | |
301 addwfc hi,F ; hi:lo = hi:lo + 1 | |
302 movff lo,sub_a+0 | |
303 movff hi,sub_a+1 | |
304 movff divesecs,sub_b+0 | |
305 clrf sub_b+1 | |
306 call sub16 ; sub_c = sub_a - sub_b | |
307 movff sub_c+0,lo | |
308 movff sub_c+1,hi | |
309 bsf leftbind | |
310 output_16dp d'10' ; # of dive with offset | |
311 bra display_profile_offset3 ; Skip normal routine | |
312 | |
313 display_profile_offset2: | |
207 | 314 movff divesecs,lo ; |
0 | 315 output_99x ; # of dive |
316 | |
317 display_profile_offset3: | |
123 | 318 PUTC ' ' |
349
ed137d66ac65
Preparations for new "0x21" logbook format
heinrichsweikamp
parents:
337
diff
changeset
|
319 call I2CREAD2 ; Read Profile version |
ed137d66ac65
Preparations for new "0x21" logbook format
heinrichsweikamp
parents:
337
diff
changeset
|
320 movff SSPBUF,lo ; store in lo |
ed137d66ac65
Preparations for new "0x21" logbook format
heinrichsweikamp
parents:
337
diff
changeset
|
321 |
ed137d66ac65
Preparations for new "0x21" logbook format
heinrichsweikamp
parents:
337
diff
changeset
|
322 bsf logbook_format_0x21 ; Set flag for new 0x21 Format |
ed137d66ac65
Preparations for new "0x21" logbook format
heinrichsweikamp
parents:
337
diff
changeset
|
323 movlw 0x21 |
ed137d66ac65
Preparations for new "0x21" logbook format
heinrichsweikamp
parents:
337
diff
changeset
|
324 cpfseq lo ; Skip if 0x21 |
ed137d66ac65
Preparations for new "0x21" logbook format
heinrichsweikamp
parents:
337
diff
changeset
|
325 bcf logbook_format_0x21 ; Clear flag for new 0x21 Format |
ed137d66ac65
Preparations for new "0x21" logbook format
heinrichsweikamp
parents:
337
diff
changeset
|
326 |
207 | 327 call I2CREAD2 ; read month |
328 movff SSPBUF,lo ; store in lo | |
0 | 329 |
330 ; Offset to SamplingRate | |
457 | 331 incf_eeprom_address d'32' ; Macro, that adds 8Bit to eeprom_address:2 |
0 | 332 call I2CREAD ; Read Sampling rate |
333 movff SSPBUF,samplesecs_value ; Copy sampling rate | |
457 | 334 decf_eeprom_address d'32' ; Macro, that subtracts 8Bit from eeprom_address:2 |
0 | 335 |
336 movff lo,convert_value_temp+0 ; Month (in lo, see above) | |
337 call I2CREAD2 ; Day | |
338 movff SSPBUF,convert_value_temp+1 | |
339 call I2CREAD2 ; Year | |
340 movff SSPBUF,convert_value_temp+2 | |
208 | 341 call PLED_convert_date ; converts into "DD/MM/YY" or "MM/DD/YY" or "YY/MM/DD" in postinc2 |
0 | 342 |
123 | 343 PUTC ' ' |
366 | 344 PUTC 0x94 ; "End of dive" icon |
0 | 345 call I2CREAD2 ; hour |
346 movff SSPBUF,lo | |
347 output_99x | |
123 | 348 PUTC ':' |
0 | 349 call I2CREAD2 ; Minute |
350 movff SSPBUF,lo | |
351 output_99x | |
352 call word_processor ; Display 1st row of details | |
353 | |
354 WIN_TOP .25 | |
355 WIN_LEFT .05 | |
356 lfsr FSR2,letter | |
208 | 357 call I2CREAD2 ; read max depth |
358 movff SSPBUF,lo | |
359 call I2CREAD2 ; read max depth | |
0 | 360 movff SSPBUF,hi |
361 movff lo,xA+0 ; calculate y-scale for profile display | |
362 movff hi,xA+1 | |
297
ceedf078b2d8
Gas Setup page 2 reworked, Texts 107, 108, 109,150, 149, 168, 42, 43, 53,54,55, 165 need update in french, spanish and german
Heinrichsweikamp
parents:
268
diff
changeset
|
363 movlw d'163' ; 163pixel height available |
0 | 364 movwf xB+0 |
365 clrf xB+1 | |
366 call div16x16 ; does xA/xB=xC | |
367 movff xC+0,sim_pressure+0 ; holds LOW byte of y-scale (mbar/pixel!) | |
368 movff xC+1,sim_pressure+1 ; holds HIGH byte of y-scale (mbar/pixel!) | |
369 incf sim_pressure+0,F ; increase one, because there may be a remainder | |
370 movlw d'0' | |
371 addwfc sim_pressure+1,F | |
426 | 372 |
208 | 373 movlw LOW d'164000' ; 164pixel*1000 height |
374 movwf xC+0 | |
337 | 375 movlw HIGH (d'164000' & h'FFFF') ; 164pixel*1000 height |
208 | 376 movwf xC+1 |
377 movlw UPPER d'164000' ; 164pixel*1000 height | |
378 movwf xC+2 | |
379 clrf xC+3 | |
380 | |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
384
diff
changeset
|
381 movff lo,xB+0 ; Max. Depth in mbar |
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
384
diff
changeset
|
382 movff hi,xB+1 ; Max. Depth in mbar |
208 | 383 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder |
384 | |
385 movff xC+0,last_temperature+0 ; | |
386 movff xC+1,last_temperature+1 ; = Pixels/10m (For scale, draw any xx rows a scale-line) | |
0 | 387 |
415
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
414
diff
changeset
|
388 movf last_temperature+0,W |
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
414
diff
changeset
|
389 iorwf last_temperature+1,W ; last_temperature:2 = Null? |
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
414
diff
changeset
|
390 bnz display_profile_offset4 ; No, continue |
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
414
diff
changeset
|
391 incf last_temperature+1,F ; Yes, make last_temperature+1>1 to make "display_profile2e" working |
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
414
diff
changeset
|
392 |
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
414
diff
changeset
|
393 display_profile_offset4: |
207 | 394 bsf leftbind |
208 | 395 output_16dp d'3' ; max. depth |
445 | 396 STRCAT TXT_METER2 |
208 | 397 call I2CREAD2 ; divetime in minutes |
0 | 398 movff SSPBUF,lo |
399 call I2CREAD2 | |
208 | 400 movff SSPBUF,hi ; divetime in minutes |
0 | 401 |
402 movff lo,xA+0 ; calculate x-scale for profile display | |
403 movff hi,xA+1 ; calculate total diveseconds first | |
208 | 404 movlw d'60' ; 60seconds are one minute... |
0 | 405 movwf xB+0 |
406 clrf xB+1 | |
407 call mult16x16 ; result is in xC:2 ! | |
408 | |
207 | 409 bsf leftbind |
426 | 410 PUTC 0x95 ; "duration of dive" icon |
0 | 411 output_16 ; divetime minutes |
208 | 412 |
366 | 413 movlw LOW d'600' |
371 | 414 movwf xA+0 |
366 | 415 movlw HIGH d'600' |
371 | 416 movwf xA+1 ; A vertical line every 600 seconds |
417 movff samplesecs_value,xB+0 ; Copy sampling rate | |
418 clrf xB+1 | |
366 | 419 call div16x16 ; xA/xB=xC with xA as remainder |
371 | 420 movff xC+0,average_depth_hold_total+0 |
421 movff xC+1,average_depth_hold_total+1 | |
422 ;average_depth_hold_total:2 holds interval of samples for vertical 10min line | |
208 | 423 |
424 ; Restore divetime in minutes: | |
366 | 425 btfss logbook_format_0x21 ; Dive made with new 0x21 format? |
426 bra display_profile_old_xscale ; No | |
427 ; Yes, get real sample time | |
428 incf_eeprom_address d'35' ; Skip Bytes in EEPROM | |
429 call I2CREAD2 ; Total sample time in seconds | |
430 movff SSPBUF,xC+0 | |
431 call I2CREAD2 ; Total sample time in seconds | |
432 movff SSPBUF,xC+1 | |
433 decf_eeprom_address d'37' ; Macro, that subtracts 8Bit from eeprom_address:2 | |
434 PUTC ':' | |
435 call I2CREAD2 ; read divetime seconds | |
436 movff SSPBUF,lo | |
437 bra display_profile_xscale ; continue below | |
438 | |
439 display_profile_old_xscale: | |
208 | 440 movff lo,xA+0 ; calculate x-scale for profile display |
441 movff hi,xA+1 ; calculate total diveseconds first | |
442 movlw d'60' ; 60seconds are one minute... | |
443 movwf xB+0 | |
444 clrf xB+1 | |
445 call mult16x16 ; result is in xC:2 ! | |
366 | 446 PUTC ':' |
208 | 447 call I2CREAD2 ; read divetime seconds |
0 | 448 movff SSPBUF,lo |
449 movf lo,W ; add seconds to total seconds | |
450 addwf xC+0 | |
451 movlw d'0' | |
452 addwfc xC+1 ; xC:2 now holds total dive seconds! | |
366 | 453 |
454 display_profile_xscale: | |
0 | 455 movff xC+0,xA+0 ; now calculate x-scale value |
456 movff xC+1,xA+1 | |
297
ceedf078b2d8
Gas Setup page 2 reworked, Texts 107, 108, 109,150, 149, 168, 42, 43, 53,54,55, 165 need update in french, spanish and german
Heinrichsweikamp
parents:
268
diff
changeset
|
457 movlw d'154' ; 154pix width available |
0 | 458 movwf xB+0 |
459 clrf xB+1 | |
460 call div16x16 ; xA/xB=xC | |
461 movff xC+0,xA+0 | |
462 movff xC+1,xA+1 | |
463 movf samplesecs_value,W ; devide through sample interval! | |
464 movwf xB+0 | |
465 clrf xB+1 | |
466 call div16x16 ; xA/xB=xC | |
467 movff xC+0,profile_temp+0 ; store value (use any #xC sample, skip xC-1) into temp registers | |
468 movff xC+1,profile_temp+1 ; store value (use any #xC sample, skip xC-1) into temp registers | |
469 incf profile_temp+0,F ; increase one, because there may be a remainder | |
470 movlw d'0' | |
471 addwfc profile_temp+1,F | |
472 | |
208 | 473 |
207 | 474 bsf leftbind |
0 | 475 output_99x ; divetime seconds |
426 | 476 STRCAT_PRINT " " |
477 | |
478 WIN_LEFT .05 + 7*.15 | |
479 lfsr FSR2,letter | |
480 | |
0 | 481 call I2CREAD2 |
482 movff SSPBUF,lo | |
483 call I2CREAD2 | |
382
f2d5d93b4ca3
negative temperature in logbook and battery info menu
heinrichsweikamp
parents:
376
diff
changeset
|
484 movff SSPBUF,hi ; Read min. Temperature |
426 | 485 movff lo,logbook_min_tp+0 ; Backup min Tp° too. |
486 movff hi,logbook_min_tp+1 | |
452
05ec97e106da
Minor changes: Tp? curve in orange. Ceilling stippled area.
JeanDo
parents:
451
diff
changeset
|
487 movlw color_orange ; Use same color as tp° curve |
426 | 488 call PLED_set_color |
489 | |
382
f2d5d93b4ca3
negative temperature in logbook and battery info menu
heinrichsweikamp
parents:
376
diff
changeset
|
490 call PLED_convert_signed_temperature ; converts lo:hi into signed-short and adds '-' to POSTINC2 if required |
0 | 491 movlw d'3' |
492 movwf ignore_digits | |
207 | 493 bsf leftbind |
382
f2d5d93b4ca3
negative temperature in logbook and battery info menu
heinrichsweikamp
parents:
376
diff
changeset
|
494 output_16dp d'2' ; temperature |
123 | 495 STRCAT_PRINT "°C" ; Display 2nd row of details |
426 | 496 call PLED_standard_color ; Back to normal |
497 | |
0 | 498 WIN_TOP .50 |
499 WIN_LEFT .05 | |
500 lfsr FSR2,letter | |
501 | |
207 | 502 call I2CREAD2 ; read Air pressure |
0 | 503 movff SSPBUF,lo |
207 | 504 call I2CREAD2 ; read Air pressure |
0 | 505 movff SSPBUF,hi |
266 | 506 |
207 | 507 bsf leftbind |
0 | 508 output_16 ; Air pressure before dive |
445 | 509 STRCAT TXT_MBAR5 |
199 | 510 OUTPUTTEXT .014 ; Desat |
511 PUTC ' ' | |
0 | 512 |
207 | 513 call I2CREAD2 ; read Desaturation time |
514 movff SSPBUF,lo | |
515 call I2CREAD2 ; read Desaturation time | |
516 movff SSPBUF,hi | |
0 | 517 call convert_time ; converts hi:lo in minutes to hours (hi) and minutes (lo) |
518 bsf leftbind | |
519 movf lo,W | |
520 movff hi,lo | |
521 movwf hi ; exchange lo and hi... | |
522 output_8 ; Hours | |
123 | 523 PUTC ':' |
0 | 524 movff hi,lo ; Minutes |
525 output_99x | |
526 bcf leftbind | |
527 call word_processor ; display 3rd page of details | |
528 | |
244 | 529 movff eeprom_address+0,average_depth_hold+0 |
530 movff eeprom_address+1,average_depth_hold+1 ; Pointer to Gaslist (For Page 2) | |
207 | 531 |
248
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
532 incf_eeprom_address d'12' ; Skip 12 Bytes in EEPROM (faster) (Gaslist) |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
533 call I2CREAD2 ; Read start gas (1-5) |
426 | 534 movff SSPBUF,average_depth_hold_total+3 ; keep copy to restore color |
535 rcall profile_display_color ; Back to normal profile color. | |
248
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
536 incf_eeprom_address d'5' ; Skip 5 Bytes in EEPROM (faster) (Battery, firmware) |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
537 |
426 | 538 call I2CREAD2 ; Read Tp° divisor |
539 movf SSPBUF,W | |
540 andlw 0x0F ; Clear extra bits. | |
541 movwf divisor_temperature ; Store divisor | |
430 | 542 movwf count_temperature ; Store to tp° counter too. |
426 | 543 |
0 | 544 call I2CREAD2 ; Read divisor |
426 | 545 movf SSPBUF,W |
546 andlw 0x0F | |
547 movwf divisor_deco ; Store divisor | |
430 | 548 movwf count_deco ; Store as temp, too |
426 | 549 |
0 | 550 call I2CREAD2 ; Read divisor |
374 | 551 movff SSPBUF,divisor_gf ; Store divisor |
0 | 552 call I2CREAD2 ; Read divisor |
553 movff SSPBUF,divisor_ppo2 ; Store divisor | |
554 call I2CREAD2 ; Read divisor | |
555 movff SSPBUF,divisor_deco_debug ; Store divisor | |
556 call I2CREAD2 ; Read divisor | |
367 | 557 movff SSPBUF,divisor_cns ; Store divisor |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
558 incf_eeprom_address d'2' ; Skip 2Bytes in EEPROM (faster) |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
559 ; 2 bytes salinity, GF |
351
5c186a72cb5d
Debugging the new logbook format, 64kB download routine
heinrichsweikamp
parents:
350
diff
changeset
|
560 btfss logbook_format_0x21 ; 10byte extra? |
5c186a72cb5d
Debugging the new logbook format, 64kB download routine
heinrichsweikamp
parents:
350
diff
changeset
|
561 bra display_profile2d ; No |
5c186a72cb5d
Debugging the new logbook format, 64kB download routine
heinrichsweikamp
parents:
350
diff
changeset
|
562 incf_eeprom_address d'10' ; Skip another 10 byte from the header for 0x21 format |
5c186a72cb5d
Debugging the new logbook format, 64kB download routine
heinrichsweikamp
parents:
350
diff
changeset
|
563 ; Average Depth, spare bytes |
0 | 564 |
565 display_profile2d: | |
566 ; Start Profile display | |
208 | 567 ; Write 0m X-Line.. |
568 movlw color_grey | |
569 call PLED_set_color ; Make this configurable? | |
570 | |
571 movlw d'75' | |
572 movff WREG,win_top | |
573 movlw d'5' | |
574 movff WREG,win_leftx2 ; Left border (0-159) | |
575 movlw d'1' | |
576 movff WREG,win_height | |
577 movlw d'155' | |
578 movff WREG,win_width ; Right border (0-159) | |
579 display_profile2e: | |
580 call PLED_box ; Inputs: win_top, win_leftx2, win_height, win_width, win_color1, win_color2 | |
581 movff win_top,WREG ; Get row | |
582 addwf last_temperature+0,W ; Add line interval distance to win_top | |
583 tstfsz last_temperature+1 ; >255? | |
584 movlw d'255' ; Yes, make win_top>239 -> Abort here | |
585 btfsc STATUS,C ; A Cary from the addwf above? | |
586 movlw d'255' ; Yes, make win_top>239 -> Abort here | |
587 movff WREG,win_top ; Result in win_top again | |
588 movff win_top,lo ; Get win_top in Bank1... | |
589 movlw d'239' ; Limit | |
590 cpfsgt lo ; >239? | |
591 bra display_profile2e ; No, draw another line | |
0 | 592 |
208 | 593 ; Write 0min Y-Line.. |
594 movlw color_grey | |
595 call PLED_set_color ; Make this configurable? | |
596 | |
597 movlw d'75' | |
598 movff WREG,win_top | |
599 movlw d'4' | |
600 movff WREG,win_leftx2 ; Left border (0-159) | |
601 movlw d'164' | |
602 movff WREG,win_height | |
603 movlw d'1' | |
604 movff WREG,win_width ; "Window" Width | |
605 call PLED_box ; Inputs: win_top, win_leftx2, win_height, win_width, win_color1, win_color2 | |
606 | |
371 | 607 ; Draw frame around profile |
209
cdba979821ee
frame around logbook scale, some more speed improvements
heinrichsweikamp
parents:
208
diff
changeset
|
608 movlw color_blue |
cdba979821ee
frame around logbook scale, some more speed improvements
heinrichsweikamp
parents:
208
diff
changeset
|
609 WIN_FRAME_COLOR .75, .239, .4, .159 ;top, bottom, left, right with color in WREG |
cdba979821ee
frame around logbook scale, some more speed improvements
heinrichsweikamp
parents:
208
diff
changeset
|
610 |
0 | 611 call I2CREAD2 ; skip 0xFB (Header-end) |
612 clrf timeout_counter2 ; here: used as counter for depth readings | |
613 call I2CREAD2 ; skip 0xFB (Header-end) | |
614 movlw d'158' | |
615 movwf ignore_digits ; here: used as counter for x-pixels | |
616 bcf second_FD ; clear flag | |
617 movlw d'5' | |
618 movwf timeout_counter3 ; here: used as colum x2 (Start at Colum 5) | |
619 movlw d'75' ; Zero-m row | |
620 movwf apnoe_mins ; here: used for fill between rows | |
426 | 621 movwf logbook_last_tp ; Initialise for Tp° curve too. |
0 | 622 incf timeout_counter3,W ; Init Column |
146 | 623 |
451 | 624 movlw LOW(-.100) ; Initialize max tp° to -10.0 °C. |
625 movwf logbook_max_tp+0 | |
626 movlw HIGH 0xFFFF & (-.100) | |
627 movwf logbook_max_tp+1 | |
426 | 628 |
451 | 629 setf logbook_cur_tp+0 ; Initialize Tp°, before the first recorded point. |
630 setf logbook_cur_tp+1 | |
631 clrf logbook_last_tp ; Also reset previous Y for Tp° | |
632 clrf logbook_ceiling ; Ceiling = 0, correct value for no ceiling. | |
633 | |
248
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
634 INIT_PIXEL_WROTE timeout_counter3 ; pixel x2 (Also sets standard Color!) |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
635 |
0 | 636 profile_display_loop: |
637 movff profile_temp+0,profile_temp2+0 | |
638 movff profile_temp+1,profile_temp2+1 ; 16Bit x-scaler | |
639 incf profile_temp2+1,F | |
42 | 640 tstfsz profile_temp2+0 ; Must not be Zero |
641 bra profile_display_loop2 ; Not Zero! | |
642 incf profile_temp2+0,F ; Zero, Increase! | |
0 | 643 |
644 profile_display_loop2: | |
426 | 645 rcall profile_view_get_depth ; reads depth, temp and profile data |
0 | 646 |
647 btfsc second_FD ; end-of profile reached? | |
648 bra profile_display_loop_done ; Yes, skip all remaining pixels | |
649 | |
426 | 650 ;---- Draw Ceiling curve, if any --------------------------------------------- |
651 movf divisor_deco,W | |
652 bz profile_display_skip_deco | |
452
05ec97e106da
Minor changes: Tp? curve in orange. Ceilling stippled area.
JeanDo
parents:
451
diff
changeset
|
653 |
426 | 654 movf logbook_ceiling,W ; Any deco ceiling ? |
655 bz profile_display_skip_deco | |
656 | |
657 mullw .100 ; Yes: convert to mbar | |
658 movff PRODL,sub_a+0 | |
659 movff PRODH,sub_a+1 | |
660 movff logbook_cur_depth+0,sub_b+0 ; Compare with UNSIGNED current depth (16bits) | |
661 movff logbook_cur_depth+1,sub_b+1 | |
662 call subU16 ; set (or not) neg_flag | |
663 | |
664 movlw color_dark_green ; Dark green if Ok, | |
665 btfss neg_flag | |
666 movlw color_dark_red ; Or dark red if ceiling overflown. | |
667 call PLED_set_color | |
668 | |
669 movff PRODL,xA+0 | |
670 movff PRODH,xA+1 | |
0 | 671 movff sim_pressure+0,xB+0 ; devide pressure in mbar/quant for row offsett |
672 movff sim_pressure+1,xB+1 | |
426 | 673 call div16x16 ; xA/xB=xC |
452
05ec97e106da
Minor changes: Tp? curve in orange. Ceilling stippled area.
JeanDo
parents:
451
diff
changeset
|
674 |
426 | 675 movlw d'76' ; Starts right after the top blue line. |
676 movff WREG,win_top | |
677 movff timeout_counter3,win_leftx2 ; Left border (0-159) | |
678 movff xC+0,win_height | |
679 call half_vertical_line ; Inputs: win_top, win_leftx2, win_height, win_color1, win_color2 | |
452
05ec97e106da
Minor changes: Tp? curve in orange. Ceilling stippled area.
JeanDo
parents:
451
diff
changeset
|
680 |
05ec97e106da
Minor changes: Tp? curve in orange. Ceilling stippled area.
JeanDo
parents:
451
diff
changeset
|
681 ; Horizontal bar: jaggy line, so don't keep it. |
05ec97e106da
Minor changes: Tp? curve in orange. Ceilling stippled area.
JeanDo
parents:
451
diff
changeset
|
682 ; movlw d'75' |
05ec97e106da
Minor changes: Tp? curve in orange. Ceilling stippled area.
JeanDo
parents:
451
diff
changeset
|
683 ; addwf xC+0,F ; add 75 pixel offset to result |
05ec97e106da
Minor changes: Tp? curve in orange. Ceilling stippled area.
JeanDo
parents:
451
diff
changeset
|
684 ; PIXEL_WRITE timeout_counter3,xC+0 ; Set col(0..159) x row (0..239), put a current color pixel. |
05ec97e106da
Minor changes: Tp? curve in orange. Ceilling stippled area.
JeanDo
parents:
451
diff
changeset
|
685 |
426 | 686 profile_display_skip_deco: |
687 | |
688 ;---- Draw Tp° curve, if any --------------------------------------------- | |
689 movf divisor_temperature,W | |
690 bz profile_display_skip_temp | |
691 | |
451 | 692 movf logbook_cur_tp+0,W ; Did we had already a valid Tp°C record ? |
693 andwf logbook_cur_tp+1,W | |
694 incf WREG | |
695 bz profile_display_skip_temp ; No: just skip drawing. | |
696 | |
452
05ec97e106da
Minor changes: Tp? curve in orange. Ceilling stippled area.
JeanDo
parents:
451
diff
changeset
|
697 movlw LOW((.153*.256)/.370) ; fixed tp° scale: (-2 .. +35°C * scale256 )/153pix |
426 | 698 movwf xB+0 |
427 | 699 movlw HIGH((.153*.256)/.370) |
426 | 700 movwf xB+1 |
701 | |
427 | 702 movf logbook_cur_tp+0,W ; Current Tp° - (-2.0°C) == Tp° + 20. |
703 addlw LOW(.20) ; Low byte. | |
426 | 704 movwf xA+0 |
705 movf logbook_cur_tp+1,W | |
427 | 706 btfsc STATUS,C ; Propagate carry, if any |
707 incf WREG | |
426 | 708 movwf xA+1 |
709 call mult16x16 ; xA*xB=xC | |
710 | |
427 | 711 ; scale: divide by 256, ie. take just high byte. |
712 movf xC+1,W | |
713 sublw .75+.153 ; Upside-down: Y = .75 + (.153 - result) | |
714 movwf xC+0 | |
426 | 715 |
437 | 716 ; Check limits |
717 movlw d'75' | |
718 movwf xC+1 | |
719 cpfsgt xC+0 | |
720 movff xC+1,xC+0 | |
721 | |
452
05ec97e106da
Minor changes: Tp? curve in orange. Ceilling stippled area.
JeanDo
parents:
451
diff
changeset
|
722 movlw color_orange |
426 | 723 call PLED_set_color |
724 | |
451 | 725 movf logbook_last_tp,W ; do we have a valid previous value ? |
726 bz profile_display_temp_1 ; No: skip the vertical line. | |
727 movwf xC+1 | |
427 | 728 call profile_display_fill ; In this column between this row (xC+0) and the last row (xC+1) |
451 | 729 profile_display_temp_1: |
426 | 730 movff xC+0,logbook_last_tp |
427 | 731 |
732 PIXEL_WRITE timeout_counter3,xC+0 ; Set col(0..159) x row (0..239), put a current color pixel. | |
733 | |
426 | 734 profile_display_skip_temp: |
735 | |
736 ;---- Draw depth curve --------------------------------------------------- | |
737 movff sim_pressure+0,xB+0 ; devide pressure in mbar/quant for row offsett | |
738 movff sim_pressure+1,xB+1 | |
739 movff logbook_cur_depth+0,xA+0 | |
740 movff logbook_cur_depth+1,xA+1 | |
0 | 741 call div16x16 ; xA/xB=xC |
742 movlw d'75' | |
743 addwf xC+0,F ; add 75 pixel offset to result | |
41 | 744 |
426 | 745 btfsc STATUS,C ; Ignore potential profile errors |
44 | 746 movff apnoe_mins,xC+0 |
41 | 747 |
426 | 748 rcall profile_display_color ; Back to normal profile color. |
427 | 749 |
426 | 750 movff apnoe_mins,xC+1 |
427 | 751 call profile_display_fill ; In this column between this row (xC+0) and the last row (xC+1) |
0 | 752 movff xC+0,apnoe_mins ; Store last row for fill routine |
427 | 753 PIXEL_WRITE timeout_counter3,xC+0 ; Set col(0..159) x row (0..239), put a std color pixel. |
142 | 754 |
427 | 755 incf timeout_counter3,F |
0 | 756 |
426 | 757 ;---- Draw CNS curve, if any --------------------------------------------- |
758 movf divisor_cns,W | |
759 bz profile_display_skip_cns | |
760 ; | |
761 ; TODO HERE | |
762 ; | |
763 profile_display_skip_cns: | |
764 | |
765 ;---- Draw GF curve, if any ---------------------------------------------- | |
766 movf divisor_gf,W | |
767 bz profile_display_skip_gf | |
768 ; | |
769 ; TODO HERE | |
770 ; | |
771 profile_display_skip_gf: | |
772 | |
773 ;---- All curves done. | |
774 | |
0 | 775 profile_display_skip_loop1: ; skips readings! |
776 dcfsnz profile_temp2+0,F | |
777 bra profile_display_loop3 ; check 16bit.... | |
778 | |
426 | 779 rcall profile_view_get_depth ; reads depth, temp and profile data |
0 | 780 bra profile_display_skip_loop1 |
781 | |
782 profile_display_loop3: | |
783 decfsz profile_temp2+1,F ; 16 bit x-scaler test | |
784 bra profile_display_skip_loop1 ; skips readings! | |
785 | |
268 | 786 decfsz ignore_digits,F ; counts drawn x-pixels to zero |
0 | 787 bra profile_display_loop ; Not ready yet |
788 ; Done. | |
789 profile_display_loop_done: | |
248
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
790 call PLED_standard_color ; Restore color |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
791 |
0 | 792 bcf sleepmode ; clear some flags |
793 bcf menubit2 | |
794 bcf menubit3 | |
795 bcf switch_right | |
796 bcf switch_left | |
797 clrf timeout_counter2 | |
798 | |
799 display_profile_loop: | |
800 call check_switches_logbook | |
801 btfsc menubit2 ; SET/MENU? | |
802 bra exit_profileview ; back to list | |
803 btfsc menubit3 ; ENTER? | |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
804 bra profileview_page2 ; Switch to Page2 of profile view |
0 | 805 btfsc onesecupdate |
806 call timeout_surfmode ; timeout | |
807 btfsc onesecupdate | |
808 call set_dive_modes ; check, if divemode must be entered | |
809 bcf onesecupdate ; one second update | |
810 btfsc sleepmode ; Timeout? | |
811 bra exit_profileview ; back to list | |
812 btfsc divemode | |
813 goto restart ; Enter Divemode if required | |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
814 bra display_profile_loop ; wait for something to do |
0 | 815 |
426 | 816 ;============================================================================= |
817 profile_display_color: | |
818 movff average_depth_hold_total+3,active_gas ; Restore gas color. | |
819 dcfsnz active_gas,F | |
820 movlw color_white ; Color for Gas 1 | |
821 dcfsnz active_gas,F | |
822 movlw color_green ; Color for Gas 2 | |
823 dcfsnz active_gas,F | |
824 movlw color_red ; Color for Gas 3 | |
825 dcfsnz active_gas,F | |
826 movlw color_yellow ; Color for Gas 4 | |
827 dcfsnz active_gas,F | |
828 movlw color_violet ; Color for Gas 5 | |
829 dcfsnz active_gas,F | |
830 movlw color_cyan ; Color for Gas 6 | |
831 goto PLED_set_color ; Set Color... | |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
832 |
426 | 833 ;============================================================================= |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
834 profileview_page2: |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
835 WIN_BOX_BLACK .0, .74, .0, .159 ;top, bottom, left, right |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
836 |
244 | 837 movff average_depth_hold+0,eeprom_address+0 |
838 movff average_depth_hold+1,eeprom_address+1 ; Pointer to Gaslist | |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
839 |
248
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
840 movlw color_white ; Color for Gas 1 |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
841 call PLED_set_color ; Set Color... |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
842 bsf leftbind |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
843 WIN_TOP .0 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
844 WIN_LEFT .0 |
445 | 845 STRCPY TXT_G1_3 |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
846 call I2CREAD2 ; Gas1 current O2 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
847 movff SSPBUF,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
848 output_99x |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
849 PUTC '/' |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
850 call I2CREAD2 ; Gas1 current HE |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
851 movff SSPBUF,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
852 output_8 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
853 call word_processor ; Display Gas information |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
854 |
248
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
855 movlw color_green ; Color for Gas 2 |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
856 call PLED_set_color ; Set Color... |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
857 WIN_TOP .25 |
445 | 858 STRCPY TXT_G2_3 |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
859 call I2CREAD2 ; Gas2 current O2 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
860 movff SSPBUF,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
861 output_8 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
862 PUTC '/' |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
863 call I2CREAD2 ; Gas2 current HE |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
864 movff SSPBUF,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
865 output_8 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
866 call word_processor ; Display Gas information |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
867 |
248
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
868 movlw color_red ; Color for Gas 3 |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
869 call PLED_set_color ; Set Color... |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
870 WIN_TOP .50 |
445 | 871 STRCPY TXT_G3_3 |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
872 call I2CREAD2 ; Gas3 current O2 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
873 movff SSPBUF,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
874 output_8 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
875 PUTC '/' |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
876 call I2CREAD2 ; Gas3 current HE |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
877 movff SSPBUF,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
878 output_8 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
879 call word_processor ; Display Gas information |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
880 |
248
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
881 movlw color_yellow ; Color for Gas 4 |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
882 call PLED_set_color ; Set Color... |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
883 WIN_TOP .0 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
884 WIN_LEFT .60 |
445 | 885 STRCPY TXT_G4_3 |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
886 call I2CREAD2 ; Gas4 current O2 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
887 movff SSPBUF,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
888 output_8 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
889 PUTC '/' |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
890 call I2CREAD2 ; Gas4 current HE |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
891 movff SSPBUF,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
892 output_8 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
893 call word_processor ; Display Gas information |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
894 |
248
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
895 movlw color_violet ; Color for Gas 5 |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
896 call PLED_set_color ; Set Color... |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
897 WIN_TOP .25 |
445 | 898 STRCPY TXT_G5_3 |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
899 call I2CREAD2 ; Gas5 current O2 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
900 movff SSPBUF,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
901 output_8 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
902 PUTC '/' |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
903 call I2CREAD2 ; Gas5 current HE |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
904 movff SSPBUF,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
905 output_8 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
906 call word_processor ; Display Gas information |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
907 |
248
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
908 movlw color_cyan ; Color for Gas 6 |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
909 call PLED_set_color ; Set Color... |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
910 WIN_TOP .50 |
445 | 911 STRCPY TXT_G6_3 |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
912 call I2CREAD2 ; Gas6 current O2 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
913 movff SSPBUF,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
914 output_8 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
915 PUTC '/' |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
916 call I2CREAD2 ; Gas6 current HE |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
917 movff SSPBUF,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
918 output_8 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
919 call word_processor ; Display Gas information |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
920 |
248
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
921 call PLED_standard_color |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
922 WIN_TOP .0 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
923 WIN_LEFT .120 |
445 | 924 STRCPY TXT_1ST4 |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
925 call I2CREAD2 ; Start Gas |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
926 movff SSPBUF,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
927 output_8 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
928 call word_processor ; Display Gas information |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
929 |
253
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
930 |
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
931 bcf show_cns_in_logbook ; clear flag |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
932 WIN_TOP .25 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
933 STRCPY "V" |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
934 call I2CREAD2 ; Firmware x |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
935 movff SSPBUF,lo |
253
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
936 movff SSPBUF,hi |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
937 output_8 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
938 PUTC '.' |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
939 call I2CREAD2 ; Firmware y |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
940 movff SSPBUF,lo |
253
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
941 movlw .83 ; Check firmware y > 83 |
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
942 cpfslt lo ; <83? |
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
943 bsf show_cns_in_logbook ; No, set flag |
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
944 movlw .2 ; Check firmware x > 1 |
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
945 cpfslt hi ; <2? |
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
946 bsf show_cns_in_logbook ; No, set flag |
468
8d69c040b9fc
show firmware version in logbook correctly
heinrichsweikamp
parents:
457
diff
changeset
|
947 output_99x |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
948 call word_processor ; Display Gas information |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
949 bcf leftbind ; Clear flag |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
950 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
951 WIN_TOP .50 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
952 lfsr FSR2,letter |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
953 call I2CREAD2 ; Battery lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
954 movff SSPBUF,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
955 call I2CREAD2 ; Battery hi |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
956 movff SSPBUF,hi |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
957 movlw d'1' |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
958 movwf ignore_digits |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
959 bsf ignore_digit5 ; do not display mV |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
960 bsf leftbind |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
961 output_16dp d'2' ; e.g. 3.45V |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
962 bcf leftbind |
445 | 963 STRCAT_PRINT TXT_VOLT1 |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
964 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
965 bcf leftbind ; Clear flag |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
966 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
967 ; call I2CREAD2 ; Skip Sampling rate |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
968 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
969 bcf menubit2 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
970 bcf menubit3 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
971 bcf switch_right |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
972 bcf switch_left |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
973 clrf timeout_counter2 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
974 display_profile2_loop: |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
975 call check_switches_logbook |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
976 btfsc menubit2 ; SET/MENU? |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
977 bra exit_profileview ; back to list |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
978 btfsc menubit3 ; ENTER? |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
979 bra profileview_page3 ; Switch to Page3 of profile view |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
980 btfsc onesecupdate |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
981 call timeout_surfmode ; timeout |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
982 btfsc onesecupdate |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
983 call set_dive_modes ; check, if divemode must be entered |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
984 bcf onesecupdate ; one second update |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
985 btfsc sleepmode ; Timeout? |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
986 bra exit_profileview ; back to list |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
987 btfsc divemode |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
988 goto restart ; Enter Divemode if required |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
989 bra display_profile2_loop ; wait for something to do |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
990 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
991 profileview_page3: |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
992 WIN_BOX_BLACK .0, .74, .0, .159 ;top, bottom, left, right |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
993 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
994 call PLED_standard_color |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
995 |
244 | 996 movff average_depth_hold+0,eeprom_address+0 |
997 movff average_depth_hold+1,eeprom_address+1 ; Pointer to Gaslist | |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
998 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
999 incf_eeprom_address d'24' ; Point to "Salinity" |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1000 bsf leftbind |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1001 WIN_TOP .0 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1002 WIN_LEFT .0 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1003 call I2CREAD2 ; read Salinity |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1004 lfsr FSR2,letter |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1005 movff SSPBUF,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1006 clrf hi |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1007 output_16dp d'3' |
445 | 1008 STRCAT_PRINT TXT_KGL4 |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1009 |
253
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
1010 call I2CREAD2 ; Read CNS% |
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
1011 |
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
1012 btfss show_cns_in_logbook ; Show CNS? |
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
1013 bra logbook_skip_cns ; No |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1014 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1015 movff SSPBUF,lo |
253
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
1016 WIN_TOP .25 |
445 | 1017 STRCPY TXT_CNS4 |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1018 output_8 |
253
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
1019 STRCAT_PRINT "%" ; Display CNS % |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1020 |
253
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
1021 logbook_skip_cns: |
349
ed137d66ac65
Preparations for new "0x21" logbook format
heinrichsweikamp
parents:
337
diff
changeset
|
1022 btfss logbook_format_0x21 |
ed137d66ac65
Preparations for new "0x21" logbook format
heinrichsweikamp
parents:
337
diff
changeset
|
1023 bra skip_new_format_0x21_info ; Do not show remaining info from dive |
268 | 1024 |
374 | 1025 ; Show all new 0x21 data |
1026 ; Show average depth | |
349
ed137d66ac65
Preparations for new "0x21" logbook format
heinrichsweikamp
parents:
337
diff
changeset
|
1027 WIN_TOP .50 |
ed137d66ac65
Preparations for new "0x21" logbook format
heinrichsweikamp
parents:
337
diff
changeset
|
1028 call I2CREAD2 ; Read average depth |
ed137d66ac65
Preparations for new "0x21" logbook format
heinrichsweikamp
parents:
337
diff
changeset
|
1029 movff SSPBUF,lo |
ed137d66ac65
Preparations for new "0x21" logbook format
heinrichsweikamp
parents:
337
diff
changeset
|
1030 call I2CREAD2 ; Read average depth |
ed137d66ac65
Preparations for new "0x21" logbook format
heinrichsweikamp
parents:
337
diff
changeset
|
1031 movff SSPBUF,hi |
445 | 1032 STRCPY TXT_AVR4 |
349
ed137d66ac65
Preparations for new "0x21" logbook format
heinrichsweikamp
parents:
337
diff
changeset
|
1033 output_16dp d'3' ; Average depth |
445 | 1034 STRCAT_PRINT TXT_METER1 |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1035 |
375 | 1036 incf_eeprom_address d'4' ; Skip total dive time and GF factors |
1037 call I2CREAD ; Read deco modell | |
1038 decf_eeprom_address d'2' ; back to GF factos | |
1039 | |
374 | 1040 WIN_TOP .0 |
1041 WIN_LEFT .75 | |
375 | 1042 |
1043 movff SSPBUF,lo | |
1044 movlw d'3' | |
434 | 1045 cpfsgt lo ; GF model used for this dive? |
1046 bra logbook_show_sat ; No | |
1047 | |
375 | 1048 |
1049 ; Show GF settings | |
374 | 1050 call I2CREAD2 ; Read GF_lo |
433
b0f3ab805879
apply salinity and 0.98bar/10m in internal logbook, show gf_lo/gf_hi on page three (Instead of gf_hi/gf_lo)
heinrichsweikamp
parents:
427
diff
changeset
|
1051 movff SSPBUF,lo |
374 | 1052 call I2CREAD2 ; Read GF_hi |
433
b0f3ab805879
apply salinity and 0.98bar/10m in internal logbook, show gf_lo/gf_hi on page three (Instead of gf_hi/gf_lo)
heinrichsweikamp
parents:
427
diff
changeset
|
1053 movff SSPBUF,hi |
445 | 1054 STRCPY TXT_GF3 |
433
b0f3ab805879
apply salinity and 0.98bar/10m in internal logbook, show gf_lo/gf_hi on page three (Instead of gf_hi/gf_lo)
heinrichsweikamp
parents:
427
diff
changeset
|
1055 output_8 ; GF_lo |
374 | 1056 PUTC '/' |
433
b0f3ab805879
apply salinity and 0.98bar/10m in internal logbook, show gf_lo/gf_hi on page three (Instead of gf_hi/gf_lo)
heinrichsweikamp
parents:
427
diff
changeset
|
1057 movff hi,lo ; copy GF_hi |
b0f3ab805879
apply salinity and 0.98bar/10m in internal logbook, show gf_lo/gf_hi on page three (Instead of gf_hi/gf_lo)
heinrichsweikamp
parents:
427
diff
changeset
|
1058 output_8 ; GF_hi |
374 | 1059 call word_processor |
375 | 1060 bra logbook_deco_model ; Skip Sat |
374 | 1061 |
375 | 1062 logbook_show_sat: |
1063 call I2CREAD2 ; Read Saturation x | |
1064 movff SSPBUF,hi | |
1065 call I2CREAD2 ; Read Desaturation x | |
1066 movff SSPBUF,lo | |
445 | 1067 STRCPY TXT_SAT4 |
375 | 1068 output_8 ; Sat x |
1069 STRCAT "%/" | |
1070 movff hi,lo ; copy Desat x | |
1071 output_8 ; Desat x | |
1072 STRCAT_PRINT "%" | |
1073 | |
1074 logbook_deco_model: | |
374 | 1075 ; Show deco model |
1076 WIN_TOP .25 | |
1077 call I2CREAD2 ; Read deco modell | |
1078 movff SSPBUF,lo | |
1079 lfsr FSR2,letter | |
1080 incf lo,F ; +1 | |
1081 dcfsnz lo,F ; ZH-L16 OC? | |
1082 movlw d'101' ; Textnumber | |
1083 dcfsnz lo,F ; Gauge? | |
1084 movlw d'102' ; Textnumber | |
1085 dcfsnz lo,F ; ZH-L16 CC? | |
1086 movlw d'104' ; Textnumber | |
1087 dcfsnz lo,F ; Apnoe? | |
1088 movlw d'138' ; Textnumber | |
1089 dcfsnz lo,F ; L16-GF OC? | |
1090 movlw d'152' ; Textnumber | |
1091 dcfsnz lo,F ; L16-GF CC? | |
1092 movlw d'236' ; Textnumber | |
1093 call displaytext0_low ; Outputs to POSTINC2 | |
1094 call word_processor | |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1095 |
349
ed137d66ac65
Preparations for new "0x21" logbook format
heinrichsweikamp
parents:
337
diff
changeset
|
1096 skip_new_format_0x21_info: |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1097 bcf menubit2 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1098 bcf menubit3 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1099 bcf switch_right |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1100 bcf switch_left |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1101 clrf timeout_counter2 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1102 display_profile3_loop: |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1103 call check_switches_logbook |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1104 btfsc menubit2 ; SET/MENU? |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1105 bra exit_profileview ; back to list |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1106 btfsc menubit3 ; ENTER? |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1107 bra exit_profileview ; back to list |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1108 btfsc onesecupdate |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1109 call timeout_surfmode ; timeout |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1110 btfsc onesecupdate |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1111 call set_dive_modes ; check, if divemode must be entered |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1112 bcf onesecupdate ; one second update |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1113 btfsc sleepmode ; Timeout? |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1114 bra exit_profileview ; back to list |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1115 btfsc divemode |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1116 goto restart ; Enter Divemode if required |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1117 bra display_profile3_loop ; wait for something to do |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1118 |
426 | 1119 ;============================================================================= |
1120 ; Draw a vertical line between xC+1 and xC+0, at current X position. | |
1121 ; | |
1122 ; Note: should keep xC+0 | |
1123 ; Note: ascending or descending ! | |
1124 ; | |
1125 profile_display_fill: | |
1126 ; First, check if xC+0>apnoe_mins or xC+0<aponoe_mins | |
0 | 1127 movf xC+0,W |
426 | 1128 cpfseq xC+1 ; xC+0 = apone_mins? |
0 | 1129 bra profile_display_fill2 ; No! |
1130 return | |
130 | 1131 |
0 | 1132 profile_display_fill2: |
427 | 1133 ; Make sure to init X position. |
1134 movf timeout_counter3,W | |
1135 mullw 2 | |
1136 decf PRODL,F | |
1137 movlw 0 | |
1138 subwfb PRODH,F | |
1139 call pixel_write_col320 | |
1140 | |
1141 movf xC+0,W | |
426 | 1142 cpfsgt xC+1 ; apnoe_mins>xC+0? |
0 | 1143 bra profile_display_fill_up ; Yes! |
1144 | |
1145 profile_display_fill_down2: ; Loop | |
1146 decf xC+1,F | |
142 | 1147 |
146 | 1148 HALF_PIXEL_WRITE xC+1 ; Updates just row (0..239) |
3 | 1149 |
0 | 1150 movf xC+0,W |
1151 cpfseq xC+1 ; Loop until xC+1=xC+0 | |
1152 bra profile_display_fill_down2 | |
1153 return ; apnoe_mins and xC+0 are untouched | |
1154 | |
1155 profile_display_fill_up: ; Fill upwards from xC+0 to apone_mins! | |
426 | 1156 incf xC+1,F |
142 | 1157 |
146 | 1158 HALF_PIXEL_WRITE xC+1 ; Updates just row (0..239) |
3 | 1159 |
426 | 1160 movf xC+0,W |
0 | 1161 cpfseq xC+1 ; Loop until xC+1=apnoe_mins |
426 | 1162 bra profile_display_fill_up |
0 | 1163 return ; apnoe_mins and xC+0 are untouched |
1164 | |
426 | 1165 ;============================================================================= |
1166 | |
371 | 1167 profile_view_get_depth: |
1168 incf average_divesecs+0,F | |
1169 movlw d'0' | |
1170 addwfc average_divesecs+1,F ; Count read pixels | |
1171 | |
1172 movf average_divesecs+0,W | |
1173 cpfseq average_depth_hold_total+0 | |
1174 bra profile_view_get_depth_no_line ; no need to draw a 10min line, continue | |
1175 movf average_divesecs+1,W | |
1176 cpfseq average_depth_hold_total+1 | |
1177 bra profile_view_get_depth_no_line ; no need to draw a 10min line, continue | |
1178 ; draw a new 10min line here... | |
1179 clrf average_divesecs+0 | |
1180 clrf average_divesecs+1 ; clear counting registers for next line | |
1181 | |
1182 movlw color_grey | |
1183 call PLED_set_color ; Make this configurable? | |
373
8781d1cf96d8
added GF_hi, GF_lo and deco model to dive header
Heinrichsweikamp
parents:
371
diff
changeset
|
1184 movlw d'76' |
371 | 1185 movff WREG,win_top |
1186 incf timeout_counter3,W ; draw one line to right to make sure it's the background of the profile | |
1187 movff WREG,win_leftx2 ; Left border (0-159) | |
373
8781d1cf96d8
added GF_hi, GF_lo and deco model to dive header
Heinrichsweikamp
parents:
371
diff
changeset
|
1188 movlw d'163' |
371 | 1189 movff WREG,win_height |
1190 movlw d'1' | |
1191 movff WREG,win_width ; "Window" Width | |
1192 call PLED_box ; Inputs: win_top, win_leftx2, win_height, win_width, win_color1, win_color2 | |
1193 | |
1194 profile_view_get_depth_no_line: | |
0 | 1195 call I2CREAD2 ; read first depth |
426 | 1196 movff SSPBUF,logbook_cur_depth+0 ; low value |
0 | 1197 call I2CREAD2 ; read first depth |
426 | 1198 movff SSPBUF,logbook_cur_depth+1 ; high value |
0 | 1199 call I2CREAD2 ; read Profile Flag Byte |
1200 movff SSPBUF,timeout_counter2 ; Read Profile Flag Byte | |
268 | 1201 |
0 | 1202 bcf event_occured ; clear flag |
1203 btfsc timeout_counter2,7 | |
1204 bsf event_occured ; We also have an Event byte! | |
1205 bcf timeout_counter2,7 ; Clear Event Byte Flag (If any) | |
1206 ; timeout_counter2 now holds the number of additional bytes to ignore (0-127) | |
1207 movlw 0xFD ; end of profile bytes? | |
426 | 1208 cpfseq logbook_cur_depth+0 |
0 | 1209 bra profile_view_get_depth_new1 ; no 0xFD |
1210 movlw 0xFD ; end of profile bytes? | |
426 | 1211 cpfseq logbook_cur_depth+1 |
0 | 1212 bra profile_view_get_depth_new1 ; no 0xFD |
1213 bsf second_FD ; End found! Set Flag! Skip remaining pixels! | |
1214 return | |
1215 | |
1216 profile_view_get_depth_new1: | |
248
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1217 btfsc event_occured ; Was there an event attached to this sample? |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1218 rcall profile_view_get_depth_new2 ; Yes, get information about this event |
426 | 1219 |
1220 ;---- Read Tp°, if any AND divisor reached AND bytes available ----------- | |
1221 movf divisor_temperature,W ; Is Tp° divisor null ? | |
1222 bz profile_view_get_depth_no_tp; Yes: no Tp° curve. | |
430 | 1223 decf count_temperature,F ; Decrement tp° counter |
426 | 1224 bnz profile_view_get_depth_no_tp; No temperature this time |
1225 | |
1226 call I2CREAD2 ; Tp° low | |
1227 movff SSPBUF,logbook_cur_tp+0 | |
1228 call I2CREAD2 ; Tp° high | |
1229 movff SSPBUF,logbook_cur_tp+1 | |
1230 decf timeout_counter2,F | |
1231 decf timeout_counter2,F | |
430 | 1232 movff divisor_temperature,count_temperature ; Restart counter. |
426 | 1233 |
451 | 1234 ; Compute Tp° max on the fly... |
1235 movff logbook_cur_tp+0,sub_a+0 ; Compare cur_tp > max_tp ? | |
1236 movff logbook_cur_tp+1,sub_a+1 | |
1237 movff logbook_max_tp+0,sub_b+0 | |
1238 movff logbook_max_tp+1,sub_b+1 | |
1239 call sub16 ; SIGNED sub_a - sub_b | |
1240 btfsc neg_flag | |
1241 bra profile_view_get_depth_no_tp | |
1242 | |
1243 movff logbook_cur_tp+0,logbook_max_tp+0 | |
1244 movff logbook_cur_tp+1,logbook_max_tp+1 | |
1245 | |
426 | 1246 ;---- Read deco, if any AND divisor=0 AND bytes available ---------------- |
1247 profile_view_get_depth_no_tp: | |
1248 movf divisor_deco,W | |
1249 bz profile_view_get_depth_no_deco | |
430 | 1250 decf count_deco,F |
426 | 1251 bnz profile_view_get_depth_no_deco |
1252 | |
1253 call I2CREAD2 | |
1254 movff SSPBUF,logbook_ceiling | |
1255 decf timeout_counter2,F | |
430 | 1256 movff divisor_deco,count_deco ; Restart counter. |
248
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1257 |
426 | 1258 ;---- Read GF, if any AND divisor=0 AND bytes available ------------------ |
1259 profile_view_get_depth_no_deco: | |
1260 | |
1261 movf timeout_counter2,W ; No more extra bytes ? | |
1262 btfsc STATUS,Z | |
1263 return ; No: done. | |
1264 | |
1265 ; Then skip remaining bytes... | |
207 | 1266 movf timeout_counter2,W ; number of additional bytes to ignore (0-127) |
1267 call incf_eeprom_address0 ; increases bytes in eeprom_address:2 with 0x8000 bank switching | |
0 | 1268 return |
1269 | |
248
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1270 profile_view_get_depth_new2: |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1271 call I2CREAD2 ; Read Event byte |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1272 movff SSPBUF,EventByte ; store EventByte |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1273 decf timeout_counter2,F ; reduce counter |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1274 ; Check Event flags in the EventByte |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1275 btfsc EventByte,4 ; Manual Gas Changed? |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1276 bra logbook_event1 ; Yes! |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1277 btfss EventByte,5 ; Stored Gas Changed? |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1278 return ; No, return |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1279 ; Stored Gas changed! |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1280 call I2CREAD2 ; Read Gas# |
426 | 1281 movff SSPBUF,average_depth_hold_total+3 |
1282 rcall profile_display_color ; Back to normal profile color. | |
1283 | |
248
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1284 decf timeout_counter2,F ; reduce counter |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1285 return |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1286 |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1287 logbook_event1: |
426 | 1288 movlw 6 ; Just color backup to 6 |
1289 movwf average_depth_hold_total+3 | |
1290 rcall profile_display_color ; Back to normal profile color. | |
248
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1291 return ;(The two bytes indicating the manual gas change will be ignored in the standard "ignore loop" above...) |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1292 |
0 | 1293 exit_profileview: |
1294 bcf sleepmode | |
1295 clrf timeout_counter2 ; restore all registers to build same page again | |
1296 movff decodata+0,eeprom_address+0 | |
1297 movff decodata+1,eeprom_address+1 | |
1298 movff max_pressure+0,divemins+0 | |
1299 movff max_pressure+1,divemins+1 | |
1300 movff mintemp+0, divenumber | |
1301 decf divenumber,F | |
1302 bcf all_dives_shown | |
1303 | |
1304 decf menupos2,F | |
1305 | |
1306 clrf menupos3 ; here: used row on current page | |
1307 movlw d'5' | |
1308 movwf menupos ; here: active row on current page | |
1309 incf menupos2,F ; start new page | |
1310 call PLED_ClearScreen ; clear details/profile | |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1311 goto menu_logbook1b ; start search |
0 | 1312 |
1313 next_logbook2: | |
1314 btfsc all_dives_shown ; all shown | |
1315 goto menu_logbook1 ; all reset | |
1316 | |
1317 clrf menupos3 | |
1318 movlw d'5' | |
1319 movwf menupos ; | |
1320 incf menupos2,F ; start new screen | |
1321 call PLED_ClearScreen | |
1322 | |
1323 next_logbook: | |
1324 movff eeprom_header_address+0,eeprom_address+0 | |
1325 movff eeprom_header_address+1,eeprom_address+1 ; continue search here | |
1326 goto menu_logbook1b | |
1327 | |
1328 check_switches_logbook: | |
1329 btfsc switch_right | |
1330 bsf menubit3 | |
1331 btfsc switch_left | |
1332 bsf menubit2 ; Enter | |
337 | 1333 |
1334 btfsc uart_dump_screen ; Dumps screen contains ? | |
1335 call dump_screen ; Yes! | |
1336 | |
0 | 1337 return |
1338 | |
1339 next_logbook3: | |
1340 incf menupos,F | |
1341 movlw d'7' | |
1342 cpfseq menupos ; =7? | |
1343 bra next_logbook3a ; No | |
1344 bra next_logbook2 ; yes, new page please | |
1345 | |
1346 next_logbook3a: | |
1347 incf menupos3,W ; | |
1348 cpfseq menupos | |
1349 bra next_logbook3b | |
1350 movlw d'6' | |
1351 movwf menupos ; Jump directly to exit if page is not full | |
1352 | |
1353 next_logbook3b: | |
1354 clrf timeout_counter2 | |
1355 call PLED_logbook_cursor | |
1356 | |
1357 bcf switch_right | |
1358 bcf menubit3 ; clear flag | |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
1359 goto menu_logbook_loop |
0 | 1360 |
1361 display_listdive: | |
1362 bsf logbook_page_not_empty ; Page not empty | |
1363 incf menupos3,F | |
1364 | |
1365 btfsc logbook_header_drawn ; "Logbook already displayed? | |
1366 bra display_listdive1a | |
1367 call PLED_topline_box ; Draw box | |
1368 WIN_INVERT .1 | |
1369 DISPLAYTEXT .26 ; "Logbook" | |
1370 WIN_INVERT .0 | |
1371 bsf logbook_header_drawn | |
1372 | |
1373 display_listdive1a: | |
1374 WIN_LEFT .20 | |
1375 | |
1376 movf menupos2,W | |
1377 mullw d'5' | |
1378 movf PRODL,W | |
1379 subwf divenumber,W ; current row on page | |
1380 | |
1381 mullw d'30' ; x30 | |
1382 movf PRODL,W ; is pixel-row for entry | |
1383 addlw d'5' ; +5 Pixel, so list entries are at rows 35,65,95,125,155,185 | |
1384 movff WREG,win_top | |
1385 | |
1386 lfsr FSR2,letter | |
1387 movff divenumber,lo | |
1388 output_99x ; # of dive | |
123 | 1389 PUTC ' ' |
245
dee88c962653
Some clean up and minor I2C speed improvements
heinrichsweikamp
parents:
244
diff
changeset
|
1390 call I2CREAD3 ; logbook_profile_version (1st. byte of Header after the 0xFA, 0xFA) (Block read start) |
0 | 1391 movff SSPBUF,lo |
1392 movlw d'13' | |
1393 cpfsgt lo ; Skip if lo>13 | |
349
ed137d66ac65
Preparations for new "0x21" logbook format
heinrichsweikamp
parents:
337
diff
changeset
|
1394 bra display_listdive2 ; use old (Pre 0x20) format |
0 | 1395 |
351
5c186a72cb5d
Debugging the new logbook format, 64kB download routine
heinrichsweikamp
parents:
350
diff
changeset
|
1396 bsf logbook_format_0x21 ; Set flag for new 0x21 Format |
5c186a72cb5d
Debugging the new logbook format, 64kB download routine
heinrichsweikamp
parents:
350
diff
changeset
|
1397 movlw 0x21 |
5c186a72cb5d
Debugging the new logbook format, 64kB download routine
heinrichsweikamp
parents:
350
diff
changeset
|
1398 cpfseq lo ; Skip if 0x21 |
5c186a72cb5d
Debugging the new logbook format, 64kB download routine
heinrichsweikamp
parents:
350
diff
changeset
|
1399 bcf logbook_format_0x21 ; Clear flag for new 0x21 Format |
5c186a72cb5d
Debugging the new logbook format, 64kB download routine
heinrichsweikamp
parents:
350
diff
changeset
|
1400 |
245
dee88c962653
Some clean up and minor I2C speed improvements
heinrichsweikamp
parents:
244
diff
changeset
|
1401 call I2CREAD4 ; Skip Profile version (Block read) |
0 | 1402 movff SSPBUF,lo ; in new format, read month |
1403 | |
1404 display_listdive2: | |
1405 movff lo,convert_value_temp+0 ; Month (in lo, see above) | |
245
dee88c962653
Some clean up and minor I2C speed improvements
heinrichsweikamp
parents:
244
diff
changeset
|
1406 call I2CREAD4 ; Day (Block read) |
0 | 1407 movff SSPBUF,convert_value_temp+1 |
245
dee88c962653
Some clean up and minor I2C speed improvements
heinrichsweikamp
parents:
244
diff
changeset
|
1408 call I2CREAD4 ; Year (Block read) |
0 | 1409 movff SSPBUF,convert_value_temp+2 |
123 | 1410 call PLED_convert_date_short ; converts into "DD/MM" or "MM/DD" or "MM/DD" in s |
0 | 1411 |
1412 | |
209
cdba979821ee
frame around logbook scale, some more speed improvements
heinrichsweikamp
parents:
208
diff
changeset
|
1413 incf_eeprom_address d'2' ; Skip Bytes in EEPROM (faster) |
cdba979821ee
frame around logbook scale, some more speed improvements
heinrichsweikamp
parents:
208
diff
changeset
|
1414 ; call I2CREAD2 ; hours (Skip) |
cdba979821ee
frame around logbook scale, some more speed improvements
heinrichsweikamp
parents:
208
diff
changeset
|
1415 ; call I2CREAD2 ; minutes (skip) |
cdba979821ee
frame around logbook scale, some more speed improvements
heinrichsweikamp
parents:
208
diff
changeset
|
1416 |
123 | 1417 PUTC ' ' |
245
dee88c962653
Some clean up and minor I2C speed improvements
heinrichsweikamp
parents:
244
diff
changeset
|
1418 call I2CREAD3 ; Depth (Block read start) |
0 | 1419 movff SSPBUF,lo |
245
dee88c962653
Some clean up and minor I2C speed improvements
heinrichsweikamp
parents:
244
diff
changeset
|
1420 call I2CREAD4 ; Block read |
0 | 1421 movff SSPBUF,hi |
433
b0f3ab805879
apply salinity and 0.98bar/10m in internal logbook, show gf_lo/gf_hi on page three (Instead of gf_hi/gf_lo)
heinrichsweikamp
parents:
427
diff
changeset
|
1422 |
0 | 1423 bsf leftbind |
1424 bsf ignore_digit5 ; Do not display 1cm figure | |
1425 output_16dp d'3' ; max. depth | |
445 | 1426 STRCAT TXT_METER2 |
438
ec28f64bfeff
max depth in logbook had salinity applied already...
heinrichsweikamp
parents:
437
diff
changeset
|
1427 call I2CREAD4 ; Block read |
209
cdba979821ee
frame around logbook scale, some more speed improvements
heinrichsweikamp
parents:
208
diff
changeset
|
1428 movff SSPBUF,lo ; read divetime in minutes |
245
dee88c962653
Some clean up and minor I2C speed improvements
heinrichsweikamp
parents:
244
diff
changeset
|
1429 call I2CREAD4 ; Block read |
209
cdba979821ee
frame around logbook scale, some more speed improvements
heinrichsweikamp
parents:
208
diff
changeset
|
1430 movff SSPBUF,hi ; read divetime in minutes |
0 | 1431 bsf leftbind |
1432 output_16 ; Divetime minutes | |
209
cdba979821ee
frame around logbook scale, some more speed improvements
heinrichsweikamp
parents:
208
diff
changeset
|
1433 STRCAT_PRINT "'" ; Display header-row in list |
cdba979821ee
frame around logbook scale, some more speed improvements
heinrichsweikamp
parents:
208
diff
changeset
|
1434 incf_eeprom_address d'37' ; 12 Bytes read from header, skip 37 Bytes in EEPROM (Remaining Header) |
351
5c186a72cb5d
Debugging the new logbook format, 64kB download routine
heinrichsweikamp
parents:
350
diff
changeset
|
1435 btfss logbook_format_0x21 ; 10byte extra? |
5c186a72cb5d
Debugging the new logbook format, 64kB download routine
heinrichsweikamp
parents:
350
diff
changeset
|
1436 return ; No, Done. |
5c186a72cb5d
Debugging the new logbook format, 64kB download routine
heinrichsweikamp
parents:
350
diff
changeset
|
1437 incf_eeprom_address d'10' ; Skip another 10 byte from the header for 0x21 format |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1438 return |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1439 |
374 | 1440 logbook_convert_64k: ; Converts <1.91 logbook (32kB) to 64kB variant |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1441 call PLED_boot |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1442 call PLED_ClearScreen ; Clear screen |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1443 movlw color_red |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1444 call PLED_set_color ; Set to Red |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1445 DISPLAYTEXTH d'303' ; Please wait! |
384
904863f96582
Work-Around for "Reset all" overwriting 0x00 to 0x04 in EEPROM Bank1
heinrichsweikamp
parents:
382
diff
changeset
|
1446 clrf EEADR |
904863f96582
Work-Around for "Reset all" overwriting 0x00 to 0x04 in EEPROM Bank1
heinrichsweikamp
parents:
382
diff
changeset
|
1447 movlw d'1' |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1448 movwf EEADRH |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1449 movlw 0xAA |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1450 movwf EEDATA |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1451 call write_eeprom ; write 0xAA to indicate the logbook is already converted |
384
904863f96582
Work-Around for "Reset all" overwriting 0x00 to 0x04 in EEPROM Bank1
heinrichsweikamp
parents:
382
diff
changeset
|
1452 clrf EEADRH ; Restore EEADRH |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1453 ; convert logbook: |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1454 ; Step 1: Copy 32k from 0xFE + 1 with bank switching to bank1 |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1455 ; Step 2: Copy 32k from bank1 to bank0 |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1456 ; Step 3: delete bank1 |
430 | 1457 call get_free_EEPROM_location ; Searches 0xFD, 0xFD, 0xFE and sets Pointer to 0xFE |
1458 rcall incf_eeprom_bank0 ; eeprom_address:2 now at 0xFE+1 | |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1459 ; Do Step 1: |
430 | 1460 ;logbook1_ptr+0 and logbook1_ptr+1 hold address in bank1 |
1461 ;logbook0_ptr+0 and logbook0_ptr+1 hold address in bank0 | |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1462 movlw HIGH 0x8000 |
430 | 1463 movwf logbook1_ptr+1 |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1464 movlw LOW 0x8000 |
430 | 1465 movwf logbook1_ptr+0 ; load address for bank1 |
1466 movff eeprom_address+0,logbook0_ptr+0 | |
1467 movff eeprom_address+1,logbook0_ptr+1 ; load address for bank0 | |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1468 movlw 0x80 |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1469 movwf uart2_temp |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1470 logbook_convert2: |
430 | 1471 clrf uart1_temp ; counter for copy operation |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1472 logbook_convert3: |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1473 ; read source |
430 | 1474 movff logbook0_ptr+0,eeprom_address+0 |
1475 movff logbook0_ptr+1,eeprom_address+1 | |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1476 call I2CREAD |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1477 movff SSPBUF,lo ; hold read value |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1478 rcall incf_eeprom_bank0 ; eeprom_address:2 +1 with bank switching |
430 | 1479 movff eeprom_address+0,logbook0_ptr+0 |
1480 movff eeprom_address+1,logbook0_ptr+1 ; write source address | |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1481 ; write target |
430 | 1482 movff logbook1_ptr+0,eeprom_address+0 |
1483 movff logbook1_ptr+1,eeprom_address+1 | |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1484 movf lo,W |
430 | 1485 call I2CWRITE ; writes WREG into EEPROM@eeprom_address |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1486 movlw d'1' |
430 | 1487 addwf logbook1_ptr+0,F |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1488 movlw d'0' |
430 | 1489 addwfc logbook1_ptr+1,F ; increase target address |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1490 decfsz uart1_temp,F |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1491 bra logbook_convert3 |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1492 btg LED_blue |
430 | 1493 decfsz uart2_temp,F ; 32kByte done? |
1494 bra logbook_convert2 ; No, continue | |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1495 ; Step 1 done. |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1496 bcf LED_blue |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1497 ; Do Step 2: |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1498 movlw HIGH 0x0000 |
430 | 1499 movwf logbook1_ptr+1 |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1500 movlw LOW 0x0000 |
430 | 1501 movwf logbook1_ptr+0 ; load address for bank0 |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1502 movlw HIGH 0x8000 |
430 | 1503 movwf logbook0_ptr+1 |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1504 movlw LOW 0x8000 |
430 | 1505 movwf logbook0_ptr+0 ; load address for bank1 |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1506 movlw 0x80 |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1507 movwf uart2_temp |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1508 logbook_convert4: |
430 | 1509 clrf uart1_temp ; counter for copy operation |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1510 logbook_convert5: |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1511 ; read source |
430 | 1512 movff logbook0_ptr+0,eeprom_address+0 |
1513 movff logbook0_ptr+1,eeprom_address+1 | |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1514 call I2CREAD |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1515 movff SSPBUF,lo ; hold read value |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1516 incf_eeprom_address d'1' |
430 | 1517 movff eeprom_address+0,logbook0_ptr+0 |
1518 movff eeprom_address+1,logbook0_ptr+1 ; write source address | |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1519 ; write target |
430 | 1520 movff logbook1_ptr+0,eeprom_address+0 |
1521 movff logbook1_ptr+1,eeprom_address+1 | |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1522 movf lo,W |
430 | 1523 call I2CWRITE ; writes WREG into EEPROM@eeprom_address |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1524 incf_eeprom_address d'1' |
430 | 1525 movff eeprom_address+0,logbook1_ptr+0 |
1526 movff eeprom_address+1,logbook1_ptr+1; write target address | |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1527 decfsz uart1_temp,F |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1528 bra logbook_convert5 |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1529 btg LED_red |
430 | 1530 decfsz uart2_temp,F ; 32kByte done? |
1531 bra logbook_convert4 ; No, continue | |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1532 ; Step 2 done. |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1533 bcf LED_red |
366 | 1534 ; Do Step 3: |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1535 movlw HIGH 0x8000 |
430 | 1536 movwf logbook0_ptr+1 |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1537 movlw LOW 0x8000 |
430 | 1538 movwf logbook0_ptr+0 ; load address for bank1 |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1539 movlw 0x80 |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1540 movwf uart2_temp |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1541 logbook_convert6: |
430 | 1542 clrf uart1_temp ; counter for copy operation |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1543 logbook_convert7: |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1544 ; write target |
430 | 1545 movff logbook0_ptr+0,eeprom_address+0 |
1546 movff logbook0_ptr+1,eeprom_address+1 | |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1547 movlw 0xFF |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1548 call I2CWRITE ; writes WREG into EEPROM@eeprom_address |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1549 incf_eeprom_address d'1' |
430 | 1550 movff eeprom_address+0,logbook0_ptr+0 |
1551 movff eeprom_address+1,logbook0_ptr+1 ; write target address | |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1552 decfsz uart1_temp,F |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1553 bra logbook_convert7 |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1554 btg LED_red |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1555 btg LED_blue |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1556 decfsz uart2_temp,F ; 32kByte done? |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1557 bra logbook_convert6 ; No, continue |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1558 ; Step 3 done. |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1559 bcf LED_red |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1560 bcf LED_blue |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1561 return |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1562 |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1563 incf_eeprom_bank0: |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1564 movlw d'1' ; increase address |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1565 addwf eeprom_address+0,F |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1566 movlw d'0' |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1567 addwfc eeprom_address+1,F |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1568 btfss eeprom_address+1,7 ; at address 8000? |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1569 return ; no, skip |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1570 clrf eeprom_address+0 ; Clear eeprom address |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
351
diff
changeset
|
1571 clrf eeprom_address+1 |
351
5c186a72cb5d
Debugging the new logbook format, 64kB download routine
heinrichsweikamp
parents:
350
diff
changeset
|
1572 return |