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