Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/menu_logbook.asm @ 266:ba109a7948df
OSTC 2N uses exchanged switches...
author | heinrichsweikamp |
---|---|
date | Tue, 12 Apr 2011 08:11:50 +0200 |
parents | 3a4096f32526 |
children | 7d24c9d62095 |
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 | |
26 ; searches external EEPROM for dive headers and displays them in a list | |
27 ; a detailed view with all informations and profile can be selected | |
28 ; does not require a FAT, will work with other profile intervals as ten seconds, too | |
29 | |
30 menu_logbook: | |
207 | 31 bcf return_from_profileview ; clear some flags |
0 | 32 ;call enable_rs232 |
33 menu_logbook1: | |
34 bcf logbook_header_drawn | |
35 call PLED_ClearScreen ; Clear screen | |
36 bcf all_dives_shown ; clear some flags | |
37 bcf logbook_profile_view | |
38 bcf logbook_page_not_empty | |
39 clrf menupos3 ; Here: used rows on current logbook-page | |
40 clrf menupos2 ; Here: # of current displayed page | |
41 clrf divenumber ; # of dive in list during search | |
42 | |
43 | |
44 menu_logbook1a: | |
45 WIN_INVERT .1 | |
46 DISPLAYTEXT .12 ;" Wait.." | |
47 WIN_INVERT .0 | |
48 call I2CReset ; Reset I2C Bus | |
49 call get_free_EEPROM_location ; search from "here" backwards through the external memory | |
50 | |
207 | 51 movff eeprom_address+0,logbook_temp5 |
52 movff eeprom_address+1,logbook_temp6 ; Store Pointer to 0xFE (From 0xFD, 0xFD, 0xFE sequence) for faster display | |
53 | |
54 menu_logbook1a_no_get_free: ; Without repeated search for dive | |
208 | 55 clrf divemins+0 ; Here: used as temp variables |
56 clrf divemins+1 | |
0 | 57 movlw d'5' |
58 movwf menupos ; Here: stores current position on display (5-x) | |
148 | 59 |
60 ;----------------------------------------------------------------------------- | |
61 ; search external EEPROM backwards from eeprom_address | |
62 ; for 0xFA, 0xFA (store 1st. 0xFA position for next search) | |
63 ; read header data and display it | |
64 ; wait for user to confirm/exit | |
65 ; recopy data to search from here | |
66 | |
0 | 67 menu_logbook1b: |
68 WIN_INVERT .1 | |
69 DISPLAYTEXT .12 ;" Wait.." | |
70 WIN_INVERT .0 | |
71 | |
148 | 72 ;---- fast loop: check every other byte ---------------------------------- |
0 | 73 menu_logbook2: |
148 | 74 infsnz divemins+0,F ; increase 16Bit value |
75 incf divemins+1,F | |
76 infsnz divemins+0,F ; increase 16Bit value, twice | |
77 incf divemins+1,F | |
0 | 78 |
148 | 79 btfsc divemins+1,7 ; At 0x8000? |
80 bra menu_logbook_reset ; yes, restart (if not empty) | |
0 | 81 |
245
dee88c962653
Some clean up and minor I2C speed improvements
heinrichsweikamp
parents:
244
diff
changeset
|
82 decf_eeprom_address d'2' ; -2 to eeprom address. |
148 | 83 |
0 | 84 call I2CREAD ; reads one byte (Slow! Better use Blockread!) |
85 | |
148 | 86 movlw 0xFA ; That was a FA ? |
0 | 87 cpfseq SSPBUF |
148 | 88 bra menu_logbook2 ; No: continue the fast loop... |
89 | |
90 ;---- Slow check : was it before or after that one ? --------------------- | |
0 | 91 |
148 | 92 incf_eeprom_address d'1' ; Been one step too far ? |
93 call I2CREAD ; reads one byte (Slow! Better use Blockread!) | |
94 movlw 0xFA ; That was a FA ? | |
95 xorwf SSPBUF,W | |
151 | 96 bz menu_loop_tooFar ; Got both of them... |
148 | 97 |
151 | 98 infsnz divemins+0,F ; Advance to the next byte. |
99 incf divemins+1,F | |
100 decf_eeprom_address d'2' ; One step back, two steps forward. | |
148 | 101 call I2CREAD ; reads one byte (Slow! Better use Blockread!) |
102 movlw 0xFA ; It was the second FA ? | |
103 xorwf SSPBUF,W | |
104 bz test_FA_DONE | |
105 bra menu_logbook2 ; No: continue the fast loop... | |
106 | |
107 menu_loop_tooFar; | |
151 | 108 decf_eeprom_address d'1' ; So stays pointing at the second one. |
0 | 109 |
110 test_FA_DONE: ; Found 0xFA 0xFA! | |
111 movff eeprom_address+0,eeprom_header_address+0 ; store current address into temp register | |
112 movff eeprom_address+1,eeprom_header_address+1 ; we must continue search here later | |
148 | 113 incf divenumber,F ; new header found, increase divenumber |
114 bra menu_logbook4 ; Done with searching, display the header! | |
0 | 115 |
116 menu_logbook3b: | |
207 | 117 btfss logbook_page_not_empty ; Was there at least one dive? |
0 | 118 goto menu ; Not a single header was found, leave logbook. |
207 | 119 bra menu_logbook_display_loop2 ; rcall of get_free_eeprom_location not required here (faster) |
0 | 120 |
121 menu_logbook_reset: | |
122 movf divenumber,W | |
123 btfsc STATUS,Z ; Was there at least one dive? | |
207 | 124 bra menu_logbook3b ; No, Nothing to do |
0 | 125 |
207 | 126 bsf all_dives_shown ; Yes |
127 bra menu_logbook_display_loop2 ; rcall of get_free_eeprom_location not required here (faster) | |
0 | 128 |
129 | |
130 menu_logbook4: | |
131 ; Adjust eeprom_address to set pointer on first headerbyte | |
148 | 132 incf_eeprom_address d'2' ; Macro, that adds 8Bit to eeprom_address:2 with banking at 0x8000 |
0 | 133 |
134 btfss logbook_profile_view ; Display profile (search routine is used in profileview, too) | |
135 bra menu_logbook_display_loop ; No, display overwiev list | |
136 | |
137 movf divesecs,W ; divenumber that is searched | |
138 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
|
139 goto next_logbook ; No match, continue search |
245
dee88c962653
Some clean up and minor I2C speed improvements
heinrichsweikamp
parents:
244
diff
changeset
|
140 bra display_profile2 ; Match: Show header and profile |
0 | 141 |
142 | |
143 menu_logbook_display_loop: | |
144 btfsc all_dives_shown ; All dives displayed? | |
145 bra menu_logbook_display_loop2 ; Yes, but display first page again. | |
146 | |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
147 call display_listdive ; display short header for list on current list position |
0 | 148 |
149 movlw d'5' | |
150 cpfseq menupos ; first dive on list (top place)? | |
151 bra menu_logbook_display_loop1 ; no, so skip saving of address | |
152 | |
153 | |
154 movff divenumber,mintemp+0 ; store all registered required to rebuilt the current logbookpage after the detail/profile view | |
155 movff eeprom_header_address+0,decodata+0 ; several registers are used as temp registers here | |
156 movff eeprom_header_address+1,decodata+1 | |
157 movff divemins+0,max_pressure+0 | |
158 movff divemins+1,max_pressure+1 | |
159 | |
160 movlw d'3' | |
161 addwf decodata+0,F | |
162 movlw d'0' | |
163 addwfc decodata+1,F ; Re-Adjust pointer again | |
164 movlw d'3' ; So first row will be the same again after detail/profile view | |
165 subwf max_pressure+0,F | |
166 movlw d'0' | |
167 subwfb max_pressure+1,F | |
168 | |
169 menu_logbook_display_loop1: | |
207 | 170 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
|
171 goto next_logbook ; no, search another dive for our current logbook page |
0 | 172 |
173 menu_logbook_display_loop2: | |
207 | 174 btfss logbook_page_not_empty ; Was there one dive at all? |
175 bra menu_logbook ; Yes, so reload the first page | |
0 | 176 |
207 | 177 call PLED_topline_box ; Draw box |
0 | 178 WIN_INVERT .1 |
207 | 179 DISPLAYTEXT .26 ; "Logbook" |
0 | 180 WIN_INVERT .0 |
181 | |
207 | 182 DISPLAYTEXT .11 ; Displays "Exit" in the last row on the current page |
0 | 183 |
207 | 184 bcf sleepmode ; clear some flags for user input |
185 bcf menubit2 | |
186 bcf menubit3 | |
187 bcf cursor | |
188 bcf switch_right | |
189 bcf switch_left | |
0 | 190 clrf timeout_counter2 |
191 | |
192 movlw d'1' ; Set cursor to position 1... | |
193 btfsc return_from_profileview ; .. unless we are returning from a detail/profile view | |
194 movf mintemp+1,W ; load last cursor position again | |
195 movwf menupos ; and set menupos byte | |
196 bcf return_from_profileview ; Do this only once while the page is loaded again! | |
197 | |
198 bcf logbook_page_not_empty ; Obviously the current page is NOT empty | |
199 call PLED_logbook_cursor | |
200 | |
201 menu_logbook_loop: | |
202 call check_switches_logbook | |
203 | |
204 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
|
205 goto next_logbook3 ; adjust cursor or create new page |
0 | 206 |
207 btfsc menubit2 ; ENTER? | |
208 bra display_profile_or_exit ; view details/profile or exit logbook | |
209 | |
210 btfsc onesecupdate | |
211 call timeout_surfmode ; Timeout | |
212 | |
213 btfsc onesecupdate | |
214 call set_dive_modes ; Check, if divemode must be entered | |
215 | |
216 bcf onesecupdate ; one second update | |
217 | |
218 btfsc sleepmode ; Timeout? | |
219 goto menu ; Yes | |
220 | |
221 btfsc divemode | |
222 goto restart ; Enter Divemode if required | |
223 | |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
224 goto menu_logbook_loop ; Wait for something to do |
0 | 225 |
226 display_profile_or_exit: | |
227 bcf menubit2 ; debounce | |
228 movlw d'6' ; exit? | |
229 cpfseq menupos | |
230 bra display_profile ; No, show details/profile | |
231 goto menu | |
232 | |
233 display_profile: | |
234 movff menupos,mintemp+1 ; store current cursor position | |
235 bsf return_from_profileview ; tweak search routine to exit after found | |
236 | |
237 movf menupos2,W ; Number of page | |
238 mullw d'5' | |
239 movf PRODL,W | |
240 addwf menupos,W ; page*5+menupos= | |
241 movwf divesecs ; # of dive to search | |
242 | |
243 call PLED_ClearScreen ; search for dive | |
244 bsf logbook_profile_view ; set flag for search routine | |
245 | |
207 | 246 clrf divenumber ; search from scratch |
247 | |
248 movff logbook_temp5,eeprom_address+0 | |
249 movff logbook_temp6,eeprom_address+1 ; Restore Pointer to 0xFE (From 0xFD, 0xFD, 0xFE sequence) for faster display | |
250 | |
251 bra menu_logbook1a_no_get_free ; Start Search for Dive (Without get_free_EEPROM_location) | |
252 | |
0 | 253 display_profile2: |
254 bcf logbook_profile_view ; clear flag for search routine | |
255 | |
256 call PLED_display_wait_clear | |
204 | 257 call PLED_standard_color |
0 | 258 WIN_TOP .0 |
259 WIN_LEFT .0 | |
123 | 260 STRCPY "#" |
0 | 261 |
262 GETCUSTOM15 .28 ; Logbook Offset -> lo, hi | |
263 tstfsz lo ; lo=0? | |
264 bra display_profile_offset1 ; No, adjust offset | |
265 tstfsz hi ; hi=0? | |
266 bra display_profile_offset1 ; No, adjust offset | |
267 bra display_profile_offset2 ; lo=0 and hi=0 -> skip Offset routine | |
268 | |
269 display_profile_offset1: | |
270 movlw d'1' | |
271 addwf lo,F | |
272 movlw d'0' | |
273 addwfc hi,F ; hi:lo = hi:lo + 1 | |
274 movff lo,sub_a+0 | |
275 movff hi,sub_a+1 | |
276 movff divesecs,sub_b+0 | |
277 clrf sub_b+1 | |
278 call sub16 ; sub_c = sub_a - sub_b | |
279 movff sub_c+0,lo | |
280 movff sub_c+1,hi | |
281 bsf leftbind | |
282 output_16dp d'10' ; # of dive with offset | |
283 bra display_profile_offset3 ; Skip normal routine | |
284 | |
285 display_profile_offset2: | |
207 | 286 movff divesecs,lo ; |
0 | 287 output_99x ; # of dive |
288 | |
289 display_profile_offset3: | |
123 | 290 PUTC ' ' |
207 | 291 call I2CREAD2 ; Skip Profile version |
292 call I2CREAD2 ; read month | |
293 movff SSPBUF,lo ; store in lo | |
0 | 294 |
295 ; Offset to SamplingRate | |
296 incf_eeprom_address d'32' ; Macro, that adds 8Bit to eeprom_address:2 with banking at 0x8000 | |
297 call I2CREAD ; Read Sampling rate | |
298 movff SSPBUF,samplesecs_value ; Copy sampling rate | |
41 | 299 decf_eeprom_address d'32' ; Macro, that subtracts 8Bit from eeprom_address:2 with banking at 0x8000 |
0 | 300 |
301 movff lo,convert_value_temp+0 ; Month (in lo, see above) | |
302 call I2CREAD2 ; Day | |
303 movff SSPBUF,convert_value_temp+1 | |
304 call I2CREAD2 ; Year | |
305 movff SSPBUF,convert_value_temp+2 | |
208 | 306 call PLED_convert_date ; converts into "DD/MM/YY" or "MM/DD/YY" or "YY/MM/DD" in postinc2 |
0 | 307 |
123 | 308 PUTC ' ' |
0 | 309 call I2CREAD2 ; hour |
310 movff SSPBUF,lo | |
311 output_99x | |
123 | 312 PUTC ':' |
0 | 313 call I2CREAD2 ; Minute |
314 movff SSPBUF,lo | |
315 output_99x | |
316 call word_processor ; Display 1st row of details | |
317 | |
318 WIN_TOP .25 | |
319 WIN_LEFT .05 | |
320 lfsr FSR2,letter | |
208 | 321 call I2CREAD2 ; read max depth |
322 movff SSPBUF,lo | |
323 call I2CREAD2 ; read max depth | |
0 | 324 movff SSPBUF,hi |
325 movff lo,xA+0 ; calculate y-scale for profile display | |
326 movff hi,xA+1 | |
327 movlw d'164' ; 164pixel height available | |
328 movwf xB+0 | |
329 clrf xB+1 | |
330 call div16x16 ; does xA/xB=xC | |
331 movff xC+0,sim_pressure+0 ; holds LOW byte of y-scale (mbar/pixel!) | |
332 movff xC+1,sim_pressure+1 ; holds HIGH byte of y-scale (mbar/pixel!) | |
333 incf sim_pressure+0,F ; increase one, because there may be a remainder | |
334 movlw d'0' | |
335 addwfc sim_pressure+1,F | |
208 | 336 movlw LOW d'164000' ; 164pixel*1000 height |
337 movwf xC+0 | |
338 movlw HIGH d'164000' ; 164pixel*1000 height | |
339 movwf xC+1 | |
340 movlw UPPER d'164000' ; 164pixel*1000 height | |
341 movwf xC+2 | |
342 clrf xC+3 | |
343 | |
344 movff lo,xB+0 ; Max. Depth in mBar | |
345 movff hi,xB+1 ; Max. Depth in mBar | |
346 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder | |
347 | |
348 movff xC+0,last_temperature+0 ; | |
349 movff xC+1,last_temperature+1 ; = Pixels/10m (For scale, draw any xx rows a scale-line) | |
0 | 350 |
207 | 351 bsf leftbind |
208 | 352 output_16dp d'3' ; max. depth |
123 | 353 STRCAT "m " |
208 | 354 call I2CREAD2 ; divetime in minutes |
0 | 355 movff SSPBUF,lo |
356 call I2CREAD2 | |
208 | 357 movff SSPBUF,hi ; divetime in minutes |
0 | 358 |
359 movff lo,xA+0 ; calculate x-scale for profile display | |
360 movff hi,xA+1 ; calculate total diveseconds first | |
208 | 361 movlw d'60' ; 60seconds are one minute... |
0 | 362 movwf xB+0 |
363 clrf xB+1 | |
364 call mult16x16 ; result is in xC:2 ! | |
365 | |
207 | 366 bsf leftbind |
0 | 367 output_16 ; divetime minutes |
208 | 368 |
369 ; Compute spacing between 10min lines | |
370 movff lo,xA+0 | |
371 movff hi,xA+1 ; divetime in minutes | |
372 movlw d'10' | |
373 movwf xB+0 | |
374 clrf xB+1 ; A vertical line every 10 minutes | |
375 call div16x16 ;xA/xB=xC with xA as remainder | |
376 ; xC now holds number of lines | |
377 movlw d'1' | |
378 addwf xC+0 ; Add one line... | |
379 movff xC+0,xB+0 | |
380 clrf xB+1 ; No more then 255 lines... | |
381 movlw d'159' ; Available width | |
382 movwf xA+0 | |
383 clrf xA+1 | |
384 call div16x16 ;xA/xB=xC with xA as remainder | |
385 ; xC now holds spacing between vertical 10min lines | |
386 movff xC+0,avr_rel_pressure+0 | |
387 movff xC+1,avr_rel_pressure+1 ; spacing between 10min lines (1-159) | |
388 | |
389 ; Restore divetime in minutes: | |
390 movff lo,xA+0 ; calculate x-scale for profile display | |
391 movff hi,xA+1 ; calculate total diveseconds first | |
392 movlw d'60' ; 60seconds are one minute... | |
393 movwf xB+0 | |
394 clrf xB+1 | |
395 call mult16x16 ; result is in xC:2 ! | |
396 | |
397 PUTC d'39' ;"'" | |
398 call I2CREAD2 ; read divetime seconds | |
0 | 399 movff SSPBUF,lo |
400 movf lo,W ; add seconds to total seconds | |
401 addwf xC+0 | |
402 movlw d'0' | |
403 addwfc xC+1 ; xC:2 now holds total dive seconds! | |
404 movff xC+0,xA+0 ; now calculate x-scale value | |
405 movff xC+1,xA+1 | |
406 movlw d'159' ; 159pix width available | |
407 movwf xB+0 | |
408 clrf xB+1 | |
409 call div16x16 ; xA/xB=xC | |
410 movff xC+0,xA+0 | |
411 movff xC+1,xA+1 | |
412 movf samplesecs_value,W ; devide through sample interval! | |
413 movwf xB+0 | |
414 clrf xB+1 | |
415 call div16x16 ; xA/xB=xC | |
416 movff xC+0,profile_temp+0 ; store value (use any #xC sample, skip xC-1) into temp registers | |
417 movff xC+1,profile_temp+1 ; store value (use any #xC sample, skip xC-1) into temp registers | |
418 incf profile_temp+0,F ; increase one, because there may be a remainder | |
419 movlw d'0' | |
420 addwfc profile_temp+1,F | |
421 | |
208 | 422 |
207 | 423 bsf leftbind |
0 | 424 output_99x ; divetime seconds |
123 | 425 STRCAT "\" " |
0 | 426 call I2CREAD2 |
427 movff SSPBUF,lo | |
428 call I2CREAD2 | |
429 movff SSPBUF,hi | |
430 movlw d'3' | |
431 movwf ignore_digits | |
207 | 432 bsf leftbind |
0 | 433 output_16dp d'2' ; temperature |
123 | 434 STRCAT_PRINT "°C" ; Display 2nd row of details |
0 | 435 |
436 WIN_TOP .50 | |
437 WIN_LEFT .05 | |
438 lfsr FSR2,letter | |
439 | |
207 | 440 call I2CREAD2 ; read Air pressure |
0 | 441 movff SSPBUF,lo |
207 | 442 call I2CREAD2 ; read Air pressure |
0 | 443 movff SSPBUF,hi |
266 | 444 |
445 movff lo,average_depth_hold+2 | |
446 movff hi,average_depth_hold+3 ; Store here for correct average | |
447 | |
207 | 448 bsf leftbind |
0 | 449 output_16 ; Air pressure before dive |
199 | 450 STRCAT "mbar " |
451 OUTPUTTEXT .014 ; Desat | |
452 PUTC ' ' | |
0 | 453 |
207 | 454 call I2CREAD2 ; read Desaturation time |
455 movff SSPBUF,lo | |
456 call I2CREAD2 ; read Desaturation time | |
457 movff SSPBUF,hi | |
0 | 458 call convert_time ; converts hi:lo in minutes to hours (hi) and minutes (lo) |
459 bsf leftbind | |
460 movf lo,W | |
461 movff hi,lo | |
462 movwf hi ; exchange lo and hi... | |
463 output_8 ; Hours | |
123 | 464 PUTC ':' |
0 | 465 movff hi,lo ; Minutes |
466 output_99x | |
467 bcf leftbind | |
468 call word_processor ; display 3rd page of details | |
469 | |
244 | 470 movff eeprom_address+0,average_depth_hold+0 |
471 movff eeprom_address+1,average_depth_hold+1 ; Pointer to Gaslist (For Page 2) | |
207 | 472 |
248
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
473 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
|
474 call I2CREAD2 ; Read start gas (1-5) |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
475 movff SSPBUF,active_gas ; Store |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
476 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
|
477 |
0 | 478 call I2CREAD2 ; Read divisor |
479 movff SSPBUF,divisor_temperature ; Store divisor | |
480 bcf divisor_temperature,4 ; Clear information length | |
481 bcf divisor_temperature,5 | |
482 bcf divisor_temperature,6 | |
483 bcf divisor_temperature,7 | |
484 incf divisor_temperature,F ; increase divisor | |
485 movff divisor_temperature,logbook_temp1 ; Store as temp, too | |
486 call I2CREAD2 ; Read divisor | |
487 movff SSPBUF,divisor_deco ; Store divisor | |
488 bcf divisor_deco,4 ; Clear information length | |
489 bcf divisor_deco,5 | |
490 bcf divisor_deco,6 | |
491 bcf divisor_deco,7 | |
492 movff divisor_deco,logbook_temp2 ; Store as temp, too | |
493 call I2CREAD2 ; Read divisor | |
494 movff SSPBUF,divisor_tank ; Store divisor | |
495 call I2CREAD2 ; Read divisor | |
496 movff SSPBUF,divisor_ppo2 ; Store divisor | |
497 call I2CREAD2 ; Read divisor | |
498 movff SSPBUF,divisor_deco_debug ; Store divisor | |
499 call I2CREAD2 ; Read divisor | |
500 movff SSPBUF,divisor_nuy2 ; Store divisor | |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
501 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
|
502 ; 2 bytes salinity, GF |
0 | 503 |
504 display_profile2d: | |
505 ; Start Profile display | |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
506 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
507 clrf average_depth_hold_total+0 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
508 clrf average_depth_hold_total+1 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
509 clrf average_depth_hold_total+2 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
510 clrf average_depth_hold_total+3 ; Track average depth here... |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
511 |
208 | 512 ; Write 0m X-Line.. |
513 movlw color_grey | |
514 call PLED_set_color ; Make this configurable? | |
515 | |
516 movlw d'75' | |
517 movff WREG,win_top | |
518 movlw d'5' | |
519 movff WREG,win_leftx2 ; Left border (0-159) | |
520 movlw d'1' | |
521 movff WREG,win_height | |
522 movlw d'155' | |
523 movff WREG,win_width ; Right border (0-159) | |
524 display_profile2e: | |
525 call PLED_box ; Inputs: win_top, win_leftx2, win_height, win_width, win_color1, win_color2 | |
526 movff win_top,WREG ; Get row | |
527 addwf last_temperature+0,W ; Add line interval distance to win_top | |
528 tstfsz last_temperature+1 ; >255? | |
529 movlw d'255' ; Yes, make win_top>239 -> Abort here | |
530 btfsc STATUS,C ; A Cary from the addwf above? | |
531 movlw d'255' ; Yes, make win_top>239 -> Abort here | |
532 movff WREG,win_top ; Result in win_top again | |
533 movff win_top,lo ; Get win_top in Bank1... | |
534 movlw d'239' ; Limit | |
535 cpfsgt lo ; >239? | |
536 bra display_profile2e ; No, draw another line | |
0 | 537 |
208 | 538 ; Write 0min Y-Line.. |
539 movlw color_grey | |
540 call PLED_set_color ; Make this configurable? | |
541 | |
542 movlw d'75' | |
543 movff WREG,win_top | |
544 movlw d'4' | |
545 movff WREG,win_leftx2 ; Left border (0-159) | |
546 movlw d'164' | |
547 movff WREG,win_height | |
548 movlw d'1' | |
549 movff WREG,win_width ; "Window" Width | |
550 display_profile2f: | |
551 call PLED_box ; Inputs: win_top, win_leftx2, win_height, win_width, win_color1, win_color2 | |
552 movff win_leftx2,WREG ; Get column | |
553 addwf avr_rel_pressure+0,W ; Add column interval distance to win_leftx2 | |
554 tstfsz avr_rel_pressure+1 ; >255? | |
555 movlw d'255' ; Yes, make win_leftx2>159 -> Abort here | |
556 btfsc STATUS,C ; A Cary from the addwf above? | |
557 movlw d'255' ; Yes, make win_leftx2>159 -> Abort here | |
558 movff WREG,win_leftx2 ; Result in win_leftx2 again | |
559 movff win_leftx2,lo ; Get win_leftx2 in Bank1... | |
560 movlw d'159' ; Limit | |
561 cpfsgt lo ; >159? | |
562 bra display_profile2f ; No, draw another line | |
563 | |
209
cdba979821ee
frame around logbook scale, some more speed improvements
heinrichsweikamp
parents:
208
diff
changeset
|
564 movlw color_blue |
cdba979821ee
frame around logbook scale, some more speed improvements
heinrichsweikamp
parents:
208
diff
changeset
|
565 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
|
566 |
0 | 567 call I2CREAD2 ; skip 0xFB (Header-end) |
568 clrf timeout_counter2 ; here: used as counter for depth readings | |
569 call I2CREAD2 ; skip 0xFB (Header-end) | |
570 movlw d'158' | |
571 movwf ignore_digits ; here: used as counter for x-pixels | |
572 bcf second_FD ; clear flag | |
573 movlw d'5' | |
574 movwf timeout_counter3 ; here: used as colum x2 (Start at Colum 5) | |
575 movlw d'75' ; Zero-m row | |
576 movwf apnoe_mins ; here: used for fill between rows | |
577 incf timeout_counter3,W ; Init Column | |
146 | 578 |
248
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
579 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
|
580 |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
581 dcfsnz active_gas,F |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
582 movlw color_white ; Color for Gas 1 |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
583 dcfsnz active_gas,F |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
584 movlw color_green ; Color for Gas 2 |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
585 dcfsnz active_gas,F |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
586 movlw color_red ; Color for Gas 3 |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
587 dcfsnz active_gas,F |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
588 movlw color_yellow ; Color for Gas 4 |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
589 dcfsnz active_gas,F |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
590 movlw color_violet ; Color for Gas 5 |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
591 call PLED_set_color ; Set Color... |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
592 |
0 | 593 |
594 profile_display_loop: | |
595 movff profile_temp+0,profile_temp2+0 | |
596 movff profile_temp+1,profile_temp2+1 ; 16Bit x-scaler | |
597 incf profile_temp2+1,F | |
42 | 598 tstfsz profile_temp2+0 ; Must not be Zero |
599 bra profile_display_loop2 ; Not Zero! | |
600 incf profile_temp2+0,F ; Zero, Increase! | |
0 | 601 |
602 profile_display_loop2: | |
603 rcall profile_view_get_depth ; reads depth, ignores temp and profile data -> hi, lo | |
604 | |
266 | 605 ; Subtract Surface pressure |
606 movff average_depth_hold+2,sub_b+0 | |
607 movff average_depth_hold+3,sub_b+1 ; ambient pressure in mBar | |
608 movff lo,sub_a+0 | |
609 movff hi,sub_a+1 ; depth in mBar | |
610 call sub16 ; sub_c = sub_a - sub_b | |
611 | |
612 ; add depth to average registers | |
613 movf sub_c+0,W | |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
614 addwf average_depth_hold_total+0,F |
266 | 615 movf sub_c+1,W |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
616 addwfc average_depth_hold_total+1,F |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
617 movlw d'0' |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
618 addwfc average_depth_hold_total+2,F |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
619 addwfc average_depth_hold_total+3,F ; Will work up to 9999mBar*60*60*24=863913600mBar |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
620 |
0 | 621 btfsc second_FD ; end-of profile reached? |
622 bra profile_display_loop_done ; Yes, skip all remaining pixels | |
623 | |
624 movff sim_pressure+0,xB+0 ; devide pressure in mbar/quant for row offsett | |
625 movff sim_pressure+1,xB+1 | |
626 movff lo,xA+0 | |
627 movff hi,xA+1 | |
628 call div16x16 ; xA/xB=xC | |
629 movlw d'75' | |
630 addwf xC+0,F ; add 75 pixel offset to result | |
41 | 631 |
44 | 632 btfsc STATUS,C ; Ignore potential profile errors |
633 movff apnoe_mins,xC+0 | |
41 | 634 |
0 | 635 call profile_display_fill ; In this column between this row (xC+0) and the last row (apnoe_mins) |
636 movff xC+0,apnoe_mins ; Store last row for fill routine | |
142 | 637 incf timeout_counter3,F |
638 | |
146 | 639 PIXEL_WRITE timeout_counter3,xC+0 ; Set col(0..159) x row (0..239), put a std color pixel. |
0 | 640 |
641 profile_display_skip_loop1: ; skips readings! | |
642 dcfsnz profile_temp2+0,F | |
643 bra profile_display_loop3 ; check 16bit.... | |
644 | |
645 rcall profile_view_get_depth ; reads depth, ignores temp and profile data | |
646 bra profile_display_skip_loop1 | |
647 | |
648 profile_display_loop3: | |
649 decfsz profile_temp2+1,F ; 16 bit x-scaler test | |
650 bra profile_display_skip_loop1 ; skips readings! | |
651 | |
652 decfsz ignore_digits,F ; counts x-pixels to zero | |
653 bra profile_display_loop ; Not ready yet | |
654 ; Done. | |
655 profile_display_loop_done: | |
248
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
656 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
|
657 movlw d'159' |
266 | 658 ; movlw d'200' |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
659 subfwb ignore_digits,W ; keep number of X-pixels (For average depth display on Page 3) |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
660 movwf average_divesecs+0 ; Store here for compatibility |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
661 |
0 | 662 bcf sleepmode ; clear some flags |
663 bcf menubit2 | |
664 bcf menubit3 | |
665 bcf switch_right | |
666 bcf switch_left | |
667 clrf timeout_counter2 | |
668 | |
669 display_profile_loop: | |
670 call check_switches_logbook | |
671 btfsc menubit2 ; SET/MENU? | |
672 bra exit_profileview ; back to list | |
673 btfsc menubit3 ; ENTER? | |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
674 bra profileview_page2 ; Switch to Page2 of profile view |
0 | 675 btfsc onesecupdate |
676 call timeout_surfmode ; timeout | |
677 btfsc onesecupdate | |
678 call set_dive_modes ; check, if divemode must be entered | |
679 bcf onesecupdate ; one second update | |
680 btfsc sleepmode ; Timeout? | |
681 bra exit_profileview ; back to list | |
682 btfsc divemode | |
683 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
|
684 bra display_profile_loop ; wait for something to do |
0 | 685 |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
686 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
687 profileview_page2: |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
688 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
|
689 |
244 | 690 movff average_depth_hold+0,eeprom_address+0 |
691 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
|
692 |
248
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
693 movlw color_white ; Color for Gas 1 |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
694 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
|
695 bsf leftbind |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
696 WIN_TOP .0 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
697 WIN_LEFT .0 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
698 STRCPY "G1:" |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
699 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
|
700 movff SSPBUF,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
701 output_99x |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
702 PUTC '/' |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
703 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
|
704 movff SSPBUF,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
705 output_8 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
706 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
|
707 |
248
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
708 movlw color_green ; Color for Gas 2 |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
709 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
|
710 WIN_TOP .25 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
711 STRCPY "G2:" |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
712 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
|
713 movff SSPBUF,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
714 output_8 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
715 PUTC '/' |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
716 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
|
717 movff SSPBUF,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
718 output_8 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
719 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
|
720 |
248
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
721 movlw color_red ; Color for Gas 3 |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
722 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
|
723 WIN_TOP .50 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
724 STRCPY "G3:" |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
725 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
|
726 movff SSPBUF,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
727 output_8 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
728 PUTC '/' |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
729 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
|
730 movff SSPBUF,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
731 output_8 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
732 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
|
733 |
248
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
734 movlw color_yellow ; Color for Gas 4 |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
735 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
|
736 WIN_TOP .0 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
737 WIN_LEFT .60 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
738 STRCPY "G4:" |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
739 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
|
740 movff SSPBUF,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
741 output_8 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
742 PUTC '/' |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
743 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
|
744 movff SSPBUF,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
745 output_8 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
746 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
|
747 |
248
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
748 movlw color_violet ; Color for Gas 5 |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
749 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
|
750 WIN_TOP .25 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
751 STRCPY "G5:" |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
752 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
|
753 movff SSPBUF,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
754 output_8 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
755 PUTC '/' |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
756 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
|
757 movff SSPBUF,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
758 output_8 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
759 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
|
760 |
248
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
761 movlw color_cyan ; Color for Gas 6 |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
762 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
|
763 WIN_TOP .50 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
764 STRCPY "G6:" |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
765 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
|
766 movff SSPBUF,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
767 output_8 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
768 PUTC '/' |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
769 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
|
770 movff SSPBUF,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
771 output_8 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
772 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
|
773 |
248
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
774 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
|
775 WIN_TOP .0 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
776 WIN_LEFT .120 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
777 STRCPY "1st:" |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
778 call I2CREAD2 ; Start Gas |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
779 movff SSPBUF,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
780 output_8 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
781 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
|
782 |
253
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
783 |
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
784 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
|
785 WIN_TOP .25 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
786 STRCPY "V" |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
787 call I2CREAD2 ; Firmware x |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
788 movff SSPBUF,lo |
253
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
789 movff SSPBUF,hi |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
790 output_8 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
791 PUTC '.' |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
792 call I2CREAD2 ; Firmware y |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
793 movff SSPBUF,lo |
253
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
794 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
|
795 cpfslt lo ; <83? |
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
796 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
|
797 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
|
798 cpfslt hi ; <2? |
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
799 bsf show_cns_in_logbook ; No, set flag |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
800 output_8 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
801 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
|
802 bcf leftbind ; Clear flag |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
803 |
253
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
804 |
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
805 |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
806 WIN_TOP .50 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
807 lfsr FSR2,letter |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
808 call I2CREAD2 ; Battery lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
809 movff SSPBUF,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
810 call I2CREAD2 ; Battery hi |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
811 movff SSPBUF,hi |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
812 movlw d'1' |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
813 movwf ignore_digits |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
814 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
|
815 bsf leftbind |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
816 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
|
817 bcf leftbind |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
818 STRCAT_PRINT "V" |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
819 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
820 bcf leftbind ; Clear flag |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
821 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
822 ; 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
|
823 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
824 bcf menubit2 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
825 bcf menubit3 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
826 bcf switch_right |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
827 bcf switch_left |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
828 clrf timeout_counter2 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
829 display_profile2_loop: |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
830 call check_switches_logbook |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
831 btfsc menubit2 ; SET/MENU? |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
832 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
|
833 btfsc menubit3 ; ENTER? |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
834 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
|
835 btfsc onesecupdate |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
836 call timeout_surfmode ; timeout |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
837 btfsc onesecupdate |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
838 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
|
839 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
|
840 btfsc sleepmode ; Timeout? |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
841 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
|
842 btfsc divemode |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
843 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
|
844 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
|
845 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
846 profileview_page3: |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
847 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
|
848 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
849 call PLED_standard_color |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
850 |
244 | 851 movff average_depth_hold+0,eeprom_address+0 |
852 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
|
853 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
854 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
|
855 bsf leftbind |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
856 WIN_TOP .0 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
857 WIN_LEFT .0 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
858 call I2CREAD2 ; read Salinity |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
859 lfsr FSR2,letter |
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 clrf hi |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
862 output_16dp d'3' |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
863 STRCAT_PRINT "kg/l" |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
864 |
253
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
865 call I2CREAD2 ; Read CNS% |
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
866 |
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
867 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
|
868 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
|
869 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
870 movff SSPBUF,lo |
253
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
871 WIN_TOP .25 |
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
872 STRCPY "CNS:" |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
873 output_8 |
253
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
874 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
|
875 |
253
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
876 logbook_skip_cns: |
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
877 WIN_TOP .50 |
266 | 878 |
879 btfsc average_divesecs+0,0 ; Number of drawn pixels even? | |
880 incf average_divesecs+0,W ; No, add +1 -> WREG | |
881 movwf xB+0 ; Copy W to xB+0 | |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
882 clrf xB+1 ; Number of x-pixels displayed |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
883 movff average_depth_hold_total+0,xC+0 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
884 movff average_depth_hold_total+1,xC+1 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
885 movff average_depth_hold_total+2,xC+2 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
886 movff average_depth_hold_total+3,xC+3 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
887 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
888 STRCPY "Avr:" |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
889 movff xC+0,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
890 movff xC+1,hi |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
891 output_16dp d'3' ; Average depth (Re-calculated from the drawn profile - not 100% exact!) |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
892 STRCAT_PRINT "m" |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
893 |
253
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
249
diff
changeset
|
894 ; WIN_TOP .0 |
243
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
895 ; WIN_LEFT .65 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
896 ; lfsr FSR2,letter |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
897 ; movff average_divesecs+0,lo |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
898 ; output_8 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
899 ; call word_processor |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
900 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
901 bcf menubit2 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
902 bcf menubit3 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
903 bcf switch_right |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
904 bcf switch_left |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
905 clrf timeout_counter2 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
906 display_profile3_loop: |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
907 call check_switches_logbook |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
908 btfsc menubit2 ; SET/MENU? |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
909 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
|
910 btfsc menubit3 ; ENTER? |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
911 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
|
912 btfsc onesecupdate |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
913 call timeout_surfmode ; timeout |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
914 btfsc onesecupdate |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
915 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
|
916 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
|
917 btfsc sleepmode ; Timeout? |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
918 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
|
919 btfsc divemode |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
920 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
|
921 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
|
922 |
38cccd304970
more information in logbook: Gaslist, Salinity, Gradient Factors and Average depth displayed in Logbook
heinrichsweikamp
parents:
209
diff
changeset
|
923 |
0 | 924 |
925 profile_display_fill: ; In this column between this row (xC+0) and the last row (apnoe_mins), keep xC+0!! | |
926 ; First, check if xC+0>apnoe_mins or xC+0<aponoe_mins | |
927 movf xC+0,W | |
928 cpfseq apnoe_mins ; xC+0 = apone_mins? | |
929 bra profile_display_fill2 ; No! | |
930 return | |
130 | 931 |
0 | 932 profile_display_fill2: |
933 movf xC+0,W | |
934 cpfsgt apnoe_mins ; apnoe_mins>xC+0? | |
935 bra profile_display_fill_up ; Yes! | |
936 | |
937 profile_display_fill_down: ; Fill downwards from apone_mins to xC+0! | |
938 movff apnoe_mins,xC+1 ; Copy | |
939 profile_display_fill_down2: ; Loop | |
940 decf xC+1,F | |
142 | 941 |
146 | 942 HALF_PIXEL_WRITE xC+1 ; Updates just row (0..239) |
3 | 943 |
0 | 944 movf xC+0,W |
945 cpfseq xC+1 ; Loop until xC+1=xC+0 | |
946 bra profile_display_fill_down2 | |
947 return ; apnoe_mins and xC+0 are untouched | |
948 | |
949 profile_display_fill_up: ; Fill upwards from xC+0 to apone_mins! | |
950 movff xC+0,xC+1 ; Copy | |
951 profile_display_fill_up2: ; Loop | |
952 decf xC+1,F | |
142 | 953 |
146 | 954 HALF_PIXEL_WRITE xC+1 ; Updates just row (0..239) |
3 | 955 |
0 | 956 movf apnoe_mins,W |
957 cpfseq xC+1 ; Loop until xC+1=apnoe_mins | |
958 bra profile_display_fill_up2 | |
959 return ; apnoe_mins and xC+0 are untouched | |
960 | |
961 profile_view_get_depth: | |
962 call I2CREAD2 ; read first depth | |
963 movff SSPBUF,lo ; low value | |
964 call I2CREAD2 ; read first depth | |
965 movff SSPBUF,hi ; high value | |
966 call I2CREAD2 ; read Profile Flag Byte | |
967 movff SSPBUF,timeout_counter2 ; Read Profile Flag Byte | |
968 bcf event_occured ; clear flag | |
969 btfsc timeout_counter2,7 | |
970 bsf event_occured ; We also have an Event byte! | |
971 bcf timeout_counter2,7 ; Clear Event Byte Flag (If any) | |
972 ; timeout_counter2 now holds the number of additional bytes to ignore (0-127) | |
973 movlw 0xFD ; end of profile bytes? | |
974 cpfseq lo | |
975 bra profile_view_get_depth_new1 ; no 0xFD | |
976 movlw 0xFD ; end of profile bytes? | |
977 cpfseq hi | |
978 bra profile_view_get_depth_new1 ; no 0xFD | |
979 bsf second_FD ; End found! Set Flag! Skip remaining pixels! | |
980 return | |
981 | |
982 profile_view_get_depth_new1: | |
248
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
983 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
|
984 rcall profile_view_get_depth_new2 ; Yes, get information about this event |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
985 |
0 | 986 tstfsz timeout_counter2 ; Any bytes to ignore |
987 bra profile_view_get_depth_new3 ; Yes (1-127) | |
988 return ; No (0) | |
989 | |
990 profile_view_get_depth_new3: | |
207 | 991 movf timeout_counter2,W ; number of additional bytes to ignore (0-127) |
992 call incf_eeprom_address0 ; increases bytes in eeprom_address:2 with 0x8000 bank switching | |
0 | 993 return |
994 | |
248
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
995 profile_view_get_depth_new2: |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
996 call I2CREAD2 ; Read Event byte |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
997 movff SSPBUF,EventByte ; store EventByte |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
998 decf timeout_counter2,F ; reduce counter |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
999 ; Check Event flags in the EventByte |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1000 btfsc EventByte,4 ; Manual Gas Changed? |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1001 bra logbook_event1 ; Yes! |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1002 btfss EventByte,5 ; Stored Gas Changed? |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1003 return ; No, return |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1004 ; Stored Gas changed! |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1005 call I2CREAD2 ; Read Gas# |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1006 movff SSPBUF,active_gas ; store gas# |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1007 decf timeout_counter2,F ; reduce counter |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1008 dcfsnz active_gas,F |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1009 movlw color_white ; Color for Gas 1 |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1010 dcfsnz active_gas,F |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1011 movlw color_green ; Color for Gas 2 |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1012 dcfsnz active_gas,F |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1013 movlw color_red ; Color for Gas 3 |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1014 dcfsnz active_gas,F |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1015 movlw color_yellow ; Color for Gas 4 |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1016 dcfsnz active_gas,F |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1017 movlw color_violet ; Color for Gas 5 |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1018 call PLED_set_color ; Set Color... |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1019 return |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1020 |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1021 logbook_event1: |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1022 movlw color_cyan ; Color for Gas 6 |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1023 call PLED_set_color ; Set Color... |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1024 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
|
1025 |
571626276aaa
Logbook now shows gas changes in depth profile
heinrichsweikamp
parents:
245
diff
changeset
|
1026 |
207 | 1027 ;Keep comments for future temperature graph |
1028 ; call I2CREAD2 ; ignore byte | |
1029 ; decfsz timeout_counter2,F ; reduce counter | |
1030 ; bra profile_view_get_depth_new3 ; Loop | |
1031 ; return | |
1032 | |
0 | 1033 exit_profileview: |
1034 bcf sleepmode | |
1035 clrf timeout_counter2 ; restore all registers to build same page again | |
1036 movff decodata+0,eeprom_address+0 | |
1037 movff decodata+1,eeprom_address+1 | |
1038 movff max_pressure+0,divemins+0 | |
1039 movff max_pressure+1,divemins+1 | |
1040 movff mintemp+0, divenumber | |
1041 decf divenumber,F | |
1042 bcf all_dives_shown | |
1043 | |
1044 decf menupos2,F | |
1045 | |
1046 clrf menupos3 ; here: used row on current page | |
1047 movlw d'5' | |
1048 movwf menupos ; here: active row on current page | |
1049 incf menupos2,F ; start new page | |
1050 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
|
1051 goto menu_logbook1b ; start search |
0 | 1052 |
1053 next_logbook2: | |
1054 btfsc all_dives_shown ; all shown | |
1055 goto menu_logbook1 ; all reset | |
1056 | |
1057 clrf menupos3 | |
1058 movlw d'5' | |
1059 movwf menupos ; | |
1060 incf menupos2,F ; start new screen | |
1061 call PLED_ClearScreen | |
1062 | |
1063 next_logbook: | |
1064 movff eeprom_header_address+0,eeprom_address+0 | |
1065 movff eeprom_header_address+1,eeprom_address+1 ; continue search here | |
1066 goto menu_logbook1b | |
1067 | |
1068 check_switches_logbook: | |
1069 btfsc switch_right | |
1070 bsf menubit3 | |
1071 btfsc switch_left | |
1072 bsf menubit2 ; Enter | |
1073 return | |
1074 | |
1075 next_logbook3: | |
1076 incf menupos,F | |
1077 movlw d'7' | |
1078 cpfseq menupos ; =7? | |
1079 bra next_logbook3a ; No | |
1080 bra next_logbook2 ; yes, new page please | |
1081 | |
1082 next_logbook3a: | |
1083 incf menupos3,W ; | |
1084 cpfseq menupos | |
1085 bra next_logbook3b | |
1086 movlw d'6' | |
1087 movwf menupos ; Jump directly to exit if page is not full | |
1088 | |
1089 next_logbook3b: | |
1090 clrf timeout_counter2 | |
1091 call PLED_logbook_cursor | |
1092 | |
1093 bcf switch_right | |
1094 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
|
1095 goto menu_logbook_loop |
0 | 1096 |
1097 display_listdive: | |
1098 bsf logbook_page_not_empty ; Page not empty | |
1099 incf menupos3,F | |
1100 | |
1101 btfsc logbook_header_drawn ; "Logbook already displayed? | |
1102 bra display_listdive1a | |
1103 call PLED_topline_box ; Draw box | |
1104 WIN_INVERT .1 | |
1105 DISPLAYTEXT .26 ; "Logbook" | |
1106 WIN_INVERT .0 | |
1107 bsf logbook_header_drawn | |
1108 | |
1109 display_listdive1a: | |
1110 WIN_LEFT .20 | |
1111 | |
1112 movf menupos2,W | |
1113 mullw d'5' | |
1114 movf PRODL,W | |
1115 subwf divenumber,W ; current row on page | |
1116 | |
1117 mullw d'30' ; x30 | |
1118 movf PRODL,W ; is pixel-row for entry | |
1119 addlw d'5' ; +5 Pixel, so list entries are at rows 35,65,95,125,155,185 | |
1120 movff WREG,win_top | |
1121 | |
1122 lfsr FSR2,letter | |
1123 movff divenumber,lo | |
1124 output_99x ; # of dive | |
123 | 1125 PUTC ' ' |
245
dee88c962653
Some clean up and minor I2C speed improvements
heinrichsweikamp
parents:
244
diff
changeset
|
1126 call I2CREAD3 ; logbook_profile_version (1st. byte of Header after the 0xFA, 0xFA) (Block read start) |
0 | 1127 movff SSPBUF,lo |
1128 movlw d'13' | |
1129 cpfsgt lo ; Skip if lo>13 | |
1130 bra display_listdive2 ; use old format | |
1131 | |
245
dee88c962653
Some clean up and minor I2C speed improvements
heinrichsweikamp
parents:
244
diff
changeset
|
1132 call I2CREAD4 ; Skip Profile version (Block read) |
0 | 1133 movff SSPBUF,lo ; in new format, read month |
1134 | |
1135 display_listdive2: | |
1136 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
|
1137 call I2CREAD4 ; Day (Block read) |
0 | 1138 movff SSPBUF,convert_value_temp+1 |
245
dee88c962653
Some clean up and minor I2C speed improvements
heinrichsweikamp
parents:
244
diff
changeset
|
1139 call I2CREAD4 ; Year (Block read) |
0 | 1140 movff SSPBUF,convert_value_temp+2 |
123 | 1141 call PLED_convert_date_short ; converts into "DD/MM" or "MM/DD" or "MM/DD" in s |
0 | 1142 |
1143 | |
209
cdba979821ee
frame around logbook scale, some more speed improvements
heinrichsweikamp
parents:
208
diff
changeset
|
1144 incf_eeprom_address d'2' ; Skip Bytes in EEPROM (faster) |
cdba979821ee
frame around logbook scale, some more speed improvements
heinrichsweikamp
parents:
208
diff
changeset
|
1145 ; call I2CREAD2 ; hours (Skip) |
cdba979821ee
frame around logbook scale, some more speed improvements
heinrichsweikamp
parents:
208
diff
changeset
|
1146 ; call I2CREAD2 ; minutes (skip) |
cdba979821ee
frame around logbook scale, some more speed improvements
heinrichsweikamp
parents:
208
diff
changeset
|
1147 |
123 | 1148 PUTC ' ' |
245
dee88c962653
Some clean up and minor I2C speed improvements
heinrichsweikamp
parents:
244
diff
changeset
|
1149 call I2CREAD3 ; Depth (Block read start) |
0 | 1150 movff SSPBUF,lo |
245
dee88c962653
Some clean up and minor I2C speed improvements
heinrichsweikamp
parents:
244
diff
changeset
|
1151 call I2CREAD4 ; Block read |
0 | 1152 movff SSPBUF,hi |
1153 bsf leftbind | |
1154 bsf ignore_digit5 ; Do not display 1cm figure | |
1155 output_16dp d'3' ; max. depth | |
123 | 1156 STRCAT "m " |
245
dee88c962653
Some clean up and minor I2C speed improvements
heinrichsweikamp
parents:
244
diff
changeset
|
1157 call I2CREAD4 ; Block read |
209
cdba979821ee
frame around logbook scale, some more speed improvements
heinrichsweikamp
parents:
208
diff
changeset
|
1158 movff SSPBUF,lo ; read divetime in minutes |
245
dee88c962653
Some clean up and minor I2C speed improvements
heinrichsweikamp
parents:
244
diff
changeset
|
1159 call I2CREAD4 ; Block read |
209
cdba979821ee
frame around logbook scale, some more speed improvements
heinrichsweikamp
parents:
208
diff
changeset
|
1160 movff SSPBUF,hi ; read divetime in minutes |
0 | 1161 bsf leftbind |
1162 output_16 ; Divetime minutes | |
209
cdba979821ee
frame around logbook scale, some more speed improvements
heinrichsweikamp
parents:
208
diff
changeset
|
1163 STRCAT_PRINT "'" ; Display header-row in list |
cdba979821ee
frame around logbook scale, some more speed improvements
heinrichsweikamp
parents:
208
diff
changeset
|
1164 incf_eeprom_address d'37' ; 12 Bytes read from header, skip 37 Bytes in EEPROM (Remaining Header) |
0 | 1165 return |