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