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