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