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