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