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