0
|
1
|
|
2 ; OSTC - diving computer code
|
|
3 ; Copyright (C) 2008 HeinrichsWeikamp GbR
|
|
4
|
|
5 ; This program is free software: you can redistribute it and/or modify
|
|
6 ; it under the terms of the GNU General Public License as published by
|
|
7 ; the Free Software Foundation, either version 3 of the License, or
|
|
8 ; (at your option) any later version.
|
|
9
|
|
10 ; This program is distributed in the hope that it will be useful,
|
|
11 ; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13 ; GNU General Public License for more details.
|
|
14
|
|
15 ; You should have received a copy of the GNU General Public License
|
|
16 ; along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
17
|
|
18
|
|
19 ; Menu "Logbook"
|
|
20 ; written by: Matthias Heinrichs, info@heinrichsweikamp.com
|
|
21 ; written: 060107
|
|
22 ; last updated: 081026
|
|
23 ; known bugs:
|
|
24 ; ToDo:
|
|
25
|
|
26 ; searches external EEPROM for dive headers and displays them in a list
|
|
27 ; a detailed view with all informations and profile can be selected
|
|
28 ; does not require a FAT, will work with other profile intervals as ten seconds, too
|
|
29
|
|
30 menu_logbook:
|
207
|
31 bcf return_from_profileview ; clear some flags
|
0
|
32 ;call enable_rs232
|
|
33 menu_logbook1:
|
|
34 bcf logbook_header_drawn
|
|
35 call PLED_ClearScreen ; Clear screen
|
|
36 bcf all_dives_shown ; clear some flags
|
|
37 bcf logbook_profile_view
|
|
38 bcf logbook_page_not_empty
|
|
39 clrf menupos3 ; Here: used rows on current logbook-page
|
|
40 clrf menupos2 ; Here: # of current displayed page
|
|
41 clrf divenumber ; # of dive in list during search
|
|
42
|
|
43
|
|
44 menu_logbook1a:
|
|
45 WIN_INVERT .1
|
|
46 DISPLAYTEXT .12 ;" Wait.."
|
|
47 WIN_INVERT .0
|
|
48 clrf divemins+0 ; Here: used as temp variables
|
|
49 clrf divemins+1
|
|
50 call I2CReset ; Reset I2C Bus
|
|
51 call get_free_EEPROM_location ; search from "here" backwards through the external memory
|
|
52
|
207
|
53 movff eeprom_address+0,logbook_temp5
|
|
54 movff eeprom_address+1,logbook_temp6 ; Store Pointer to 0xFE (From 0xFD, 0xFD, 0xFE sequence) for faster display
|
|
55
|
|
56 menu_logbook1a_no_get_free: ; Without repeated search for dive
|
0
|
57 movlw d'5'
|
|
58 movwf menupos ; Here: stores current position on display (5-x)
|
148
|
59
|
|
60 ;-----------------------------------------------------------------------------
|
|
61 ; search external EEPROM backwards from eeprom_address
|
|
62 ; for 0xFA, 0xFA (store 1st. 0xFA position for next search)
|
|
63 ; read header data and display it
|
|
64 ; wait for user to confirm/exit
|
|
65 ; recopy data to search from here
|
|
66
|
0
|
67 menu_logbook1b:
|
|
68 WIN_INVERT .1
|
|
69 DISPLAYTEXT .12 ;" Wait.."
|
|
70 WIN_INVERT .0
|
|
71
|
148
|
72 ;---- fast loop: check every other byte ----------------------------------
|
0
|
73 menu_logbook2:
|
148
|
74 infsnz divemins+0,F ; increase 16Bit value
|
|
75 incf divemins+1,F
|
|
76 infsnz divemins+0,F ; increase 16Bit value, twice
|
|
77 incf divemins+1,F
|
0
|
78
|
148
|
79 btfsc divemins+1,7 ; At 0x8000?
|
|
80 bra menu_logbook_reset ; yes, restart (if not empty)
|
0
|
81
|
148
|
82 decf_eeprom_address d'2' ; +2 to eeprom address.
|
|
83
|
0
|
84 call I2CREAD ; reads one byte (Slow! Better use Blockread!)
|
|
85
|
148
|
86 movlw 0xFA ; That was a FA ?
|
0
|
87 cpfseq SSPBUF
|
148
|
88 bra menu_logbook2 ; No: continue the fast loop...
|
|
89
|
|
90 ;---- Slow check : was it before or after that one ? ---------------------
|
0
|
91
|
148
|
92 incf_eeprom_address d'1' ; Been one step too far ?
|
|
93 call I2CREAD ; reads one byte (Slow! Better use Blockread!)
|
|
94 movlw 0xFA ; That was a FA ?
|
|
95 xorwf SSPBUF,W
|
151
|
96 bz menu_loop_tooFar ; Got both of them...
|
148
|
97
|
151
|
98 infsnz divemins+0,F ; Advance to the next byte.
|
|
99 incf divemins+1,F
|
|
100 decf_eeprom_address d'2' ; One step back, two steps forward.
|
148
|
101 call I2CREAD ; reads one byte (Slow! Better use Blockread!)
|
|
102 movlw 0xFA ; It was the second FA ?
|
|
103 xorwf SSPBUF,W
|
|
104 bz test_FA_DONE
|
|
105 bra menu_logbook2 ; No: continue the fast loop...
|
|
106
|
|
107 menu_loop_tooFar;
|
151
|
108 decf_eeprom_address d'1' ; So stays pointing at the second one.
|
0
|
109
|
|
110 test_FA_DONE: ; Found 0xFA 0xFA!
|
|
111 movff eeprom_address+0,eeprom_header_address+0 ; store current address into temp register
|
|
112 movff eeprom_address+1,eeprom_header_address+1 ; we must continue search here later
|
148
|
113 incf divenumber,F ; new header found, increase divenumber
|
|
114 bra menu_logbook4 ; Done with searching, display the header!
|
0
|
115
|
|
116 menu_logbook3b:
|
207
|
117 btfss logbook_page_not_empty ; Was there at least one dive?
|
0
|
118 goto menu ; Not a single header was found, leave logbook.
|
207
|
119 bra menu_logbook_display_loop2 ; rcall of get_free_eeprom_location not required here (faster)
|
0
|
120
|
|
121 menu_logbook_reset:
|
|
122 movf divenumber,W
|
|
123 btfsc STATUS,Z ; Was there at least one dive?
|
207
|
124 bra menu_logbook3b ; No, Nothing to do
|
0
|
125
|
207
|
126 bsf all_dives_shown ; Yes
|
|
127 bra menu_logbook_display_loop2 ; rcall of get_free_eeprom_location not required here (faster)
|
0
|
128
|
|
129
|
|
130 menu_logbook4:
|
|
131 ; Adjust eeprom_address to set pointer on first headerbyte
|
148
|
132 incf_eeprom_address d'2' ; Macro, that adds 8Bit to eeprom_address:2 with banking at 0x8000
|
0
|
133
|
|
134 btfss logbook_profile_view ; Display profile (search routine is used in profileview, too)
|
|
135 bra menu_logbook_display_loop ; No, display overwiev list
|
|
136
|
|
137 movf divesecs,W ; divenumber that is searched
|
|
138 cpfseq divenumber ; current divenumber
|
|
139 bra next_logbook ; No match, continue search
|
|
140 bra display_profile2
|
|
141
|
|
142
|
|
143 menu_logbook_display_loop:
|
|
144 btfsc all_dives_shown ; All dives displayed?
|
|
145 bra menu_logbook_display_loop2 ; Yes, but display first page again.
|
|
146
|
|
147 rcall display_listdive ; display short header for list on current list position
|
|
148
|
|
149 movlw d'5'
|
|
150 cpfseq menupos ; first dive on list (top place)?
|
|
151 bra menu_logbook_display_loop1 ; no, so skip saving of address
|
|
152
|
|
153
|
|
154 movff divenumber,mintemp+0 ; store all registered required to rebuilt the current logbookpage after the detail/profile view
|
|
155 movff eeprom_header_address+0,decodata+0 ; several registers are used as temp registers here
|
|
156 movff eeprom_header_address+1,decodata+1
|
|
157 movff divemins+0,max_pressure+0
|
|
158 movff divemins+1,max_pressure+1
|
|
159
|
|
160 movlw d'3'
|
|
161 addwf decodata+0,F
|
|
162 movlw d'0'
|
|
163 addwfc decodata+1,F ; Re-Adjust pointer again
|
|
164 movlw d'3' ; So first row will be the same again after detail/profile view
|
|
165 subwf max_pressure+0,F
|
|
166 movlw d'0'
|
|
167 subwfb max_pressure+1,F
|
|
168
|
|
169 menu_logbook_display_loop1:
|
207
|
170 decfsz menupos,F ; List full?
|
|
171 bra next_logbook ; no, search another dive for our current logbook page
|
0
|
172
|
|
173 menu_logbook_display_loop2:
|
207
|
174 btfss logbook_page_not_empty ; Was there one dive at all?
|
|
175 bra menu_logbook ; Yes, so reload the first page
|
0
|
176
|
207
|
177 call PLED_topline_box ; Draw box
|
0
|
178 WIN_INVERT .1
|
207
|
179 DISPLAYTEXT .26 ; "Logbook"
|
0
|
180 WIN_INVERT .0
|
|
181
|
207
|
182 DISPLAYTEXT .11 ; Displays "Exit" in the last row on the current page
|
0
|
183
|
207
|
184 bcf sleepmode ; clear some flags for user input
|
|
185 bcf menubit2
|
|
186 bcf menubit3
|
|
187 bcf cursor
|
|
188 bcf switch_right
|
|
189 bcf switch_left
|
0
|
190 clrf timeout_counter2
|
|
191
|
|
192 movlw d'1' ; Set cursor to position 1...
|
|
193 btfsc return_from_profileview ; .. unless we are returning from a detail/profile view
|
|
194 movf mintemp+1,W ; load last cursor position again
|
|
195 movwf menupos ; and set menupos byte
|
|
196 bcf return_from_profileview ; Do this only once while the page is loaded again!
|
|
197
|
|
198 bcf logbook_page_not_empty ; Obviously the current page is NOT empty
|
|
199 call PLED_logbook_cursor
|
|
200
|
|
201 menu_logbook_loop:
|
|
202 call check_switches_logbook
|
|
203
|
|
204 btfsc menubit3 ; SET/MENU?
|
|
205 bra next_logbook3 ; adjust cursor or create new page
|
|
206
|
|
207 btfsc menubit2 ; ENTER?
|
|
208 bra display_profile_or_exit ; view details/profile or exit logbook
|
|
209
|
|
210 btfsc onesecupdate
|
|
211 call timeout_surfmode ; Timeout
|
|
212
|
|
213 btfsc onesecupdate
|
|
214 call set_dive_modes ; Check, if divemode must be entered
|
|
215
|
|
216 bcf onesecupdate ; one second update
|
|
217
|
|
218 btfsc sleepmode ; Timeout?
|
|
219 goto menu ; Yes
|
|
220
|
|
221 btfsc divemode
|
|
222 goto restart ; Enter Divemode if required
|
|
223
|
|
224 bra menu_logbook_loop ; Wait for something to do
|
|
225
|
|
226 display_profile_or_exit:
|
|
227 bcf menubit2 ; debounce
|
|
228 movlw d'6' ; exit?
|
|
229 cpfseq menupos
|
|
230 bra display_profile ; No, show details/profile
|
|
231 goto menu
|
|
232
|
|
233 display_profile:
|
|
234 movff menupos,mintemp+1 ; store current cursor position
|
|
235 bsf return_from_profileview ; tweak search routine to exit after found
|
|
236
|
|
237 movf menupos2,W ; Number of page
|
|
238 mullw d'5'
|
|
239 movf PRODL,W
|
|
240 addwf menupos,W ; page*5+menupos=
|
|
241 movwf divesecs ; # of dive to search
|
|
242
|
|
243 call PLED_ClearScreen ; search for dive
|
|
244 bsf logbook_profile_view ; set flag for search routine
|
|
245
|
207
|
246 clrf divenumber ; search from scratch
|
|
247
|
|
248 movff logbook_temp5,eeprom_address+0
|
|
249 movff logbook_temp6,eeprom_address+1 ; Restore Pointer to 0xFE (From 0xFD, 0xFD, 0xFE sequence) for faster display
|
|
250
|
|
251 bra menu_logbook1a_no_get_free ; Start Search for Dive (Without get_free_EEPROM_location)
|
|
252
|
0
|
253 display_profile2:
|
|
254 bcf logbook_profile_view ; clear flag for search routine
|
|
255
|
|
256 call PLED_display_wait_clear
|
204
|
257 call PLED_standard_color
|
0
|
258 WIN_TOP .0
|
|
259 WIN_LEFT .0
|
123
|
260 STRCPY "#"
|
0
|
261
|
|
262 GETCUSTOM15 .28 ; Logbook Offset -> lo, hi
|
|
263 tstfsz lo ; lo=0?
|
|
264 bra display_profile_offset1 ; No, adjust offset
|
|
265 tstfsz hi ; hi=0?
|
|
266 bra display_profile_offset1 ; No, adjust offset
|
|
267 bra display_profile_offset2 ; lo=0 and hi=0 -> skip Offset routine
|
|
268
|
|
269 display_profile_offset1:
|
|
270 movlw d'1'
|
|
271 addwf lo,F
|
|
272 movlw d'0'
|
|
273 addwfc hi,F ; hi:lo = hi:lo + 1
|
|
274 movff lo,sub_a+0
|
|
275 movff hi,sub_a+1
|
|
276 movff divesecs,sub_b+0
|
|
277 clrf sub_b+1
|
|
278 call sub16 ; sub_c = sub_a - sub_b
|
|
279 movff sub_c+0,lo
|
|
280 movff sub_c+1,hi
|
|
281 bsf leftbind
|
|
282 output_16dp d'10' ; # of dive with offset
|
|
283 bra display_profile_offset3 ; Skip normal routine
|
|
284
|
|
285 display_profile_offset2:
|
207
|
286 movff divesecs,lo ;
|
0
|
287 output_99x ; # of dive
|
|
288
|
|
289 display_profile_offset3:
|
123
|
290 PUTC ' '
|
207
|
291 call I2CREAD2 ; Skip Profile version
|
|
292 call I2CREAD2 ; read month
|
|
293 movff SSPBUF,lo ; store in lo
|
0
|
294
|
|
295 ; Offset to SamplingRate
|
|
296 incf_eeprom_address d'32' ; Macro, that adds 8Bit to eeprom_address:2 with banking at 0x8000
|
|
297 call I2CREAD ; Read Sampling rate
|
|
298 movff SSPBUF,samplesecs_value ; Copy sampling rate
|
41
|
299 decf_eeprom_address d'32' ; Macro, that subtracts 8Bit from eeprom_address:2 with banking at 0x8000
|
0
|
300
|
|
301 movff lo,convert_value_temp+0 ; Month (in lo, see above)
|
|
302 call I2CREAD2 ; Day
|
|
303 movff SSPBUF,convert_value_temp+1
|
|
304 call I2CREAD2 ; Year
|
|
305 movff SSPBUF,convert_value_temp+2
|
|
306 call PLED_convert_date ; converts into "DD/MM/YY" or "MM/DD/YY" or "YY/MM/DD" in postinc2
|
|
307
|
123
|
308 PUTC ' '
|
0
|
309 call I2CREAD2 ; hour
|
|
310 movff SSPBUF,lo
|
|
311 output_99x
|
123
|
312 PUTC ':'
|
0
|
313 call I2CREAD2 ; Minute
|
|
314 movff SSPBUF,lo
|
|
315 output_99x
|
|
316 call word_processor ; Display 1st row of details
|
|
317
|
|
318 WIN_TOP .25
|
|
319 WIN_LEFT .05
|
|
320 lfsr FSR2,letter
|
|
321 call I2CREAD2
|
|
322 movff SSPBUF,lo
|
|
323 call I2CREAD2
|
|
324 movff SSPBUF,hi
|
|
325 movff lo,xA+0 ; calculate y-scale for profile display
|
|
326 movff hi,xA+1
|
|
327 movlw d'164' ; 164pixel height available
|
|
328 movwf xB+0
|
|
329 clrf xB+1
|
|
330 call div16x16 ; does xA/xB=xC
|
|
331 movff xC+0,sim_pressure+0 ; holds LOW byte of y-scale (mbar/pixel!)
|
|
332 movff xC+1,sim_pressure+1 ; holds HIGH byte of y-scale (mbar/pixel!)
|
|
333 incf sim_pressure+0,F ; increase one, because there may be a remainder
|
|
334 movlw d'0'
|
|
335 addwfc sim_pressure+1,F
|
|
336
|
207
|
337 bsf leftbind
|
0
|
338 output_16dp d'3' ; max. depth
|
123
|
339 STRCAT "m "
|
0
|
340 call I2CREAD2
|
|
341 movff SSPBUF,lo
|
|
342 call I2CREAD2
|
|
343 movff SSPBUF,hi
|
|
344
|
|
345 movff lo,xA+0 ; calculate x-scale for profile display
|
|
346 movff hi,xA+1 ; calculate total diveseconds first
|
|
347 movlw d'60' ; 60seconds are one minute
|
|
348 movwf xB+0
|
|
349 clrf xB+1
|
|
350 call mult16x16 ; result is in xC:2 !
|
|
351
|
207
|
352 bsf leftbind
|
0
|
353 output_16 ; divetime minutes
|
123
|
354 PUTC d'39'
|
0
|
355 call I2CREAD2
|
|
356 movff SSPBUF,lo
|
|
357 movf lo,W ; add seconds to total seconds
|
|
358 addwf xC+0
|
|
359 movlw d'0'
|
|
360 addwfc xC+1 ; xC:2 now holds total dive seconds!
|
|
361 movff xC+0,xA+0 ; now calculate x-scale value
|
|
362 movff xC+1,xA+1
|
|
363 movlw d'159' ; 159pix width available
|
|
364 movwf xB+0
|
|
365 clrf xB+1
|
|
366 call div16x16 ; xA/xB=xC
|
|
367 movff xC+0,xA+0
|
|
368 movff xC+1,xA+1
|
|
369 movf samplesecs_value,W ; devide through sample interval!
|
|
370 movwf xB+0
|
|
371 clrf xB+1
|
|
372 call div16x16 ; xA/xB=xC
|
|
373 movff xC+0,profile_temp+0 ; store value (use any #xC sample, skip xC-1) into temp registers
|
|
374 movff xC+1,profile_temp+1 ; store value (use any #xC sample, skip xC-1) into temp registers
|
|
375 incf profile_temp+0,F ; increase one, because there may be a remainder
|
|
376 movlw d'0'
|
|
377 addwfc profile_temp+1,F
|
|
378
|
207
|
379 bsf leftbind
|
0
|
380 output_99x ; divetime seconds
|
123
|
381 STRCAT "\" "
|
0
|
382 call I2CREAD2
|
|
383 movff SSPBUF,lo
|
|
384 call I2CREAD2
|
|
385 movff SSPBUF,hi
|
|
386 movlw d'3'
|
|
387 movwf ignore_digits
|
207
|
388 bsf leftbind
|
0
|
389 output_16dp d'2' ; temperature
|
123
|
390 STRCAT_PRINT "°C" ; Display 2nd row of details
|
0
|
391
|
|
392 WIN_TOP .50
|
|
393 WIN_LEFT .05
|
|
394 lfsr FSR2,letter
|
|
395
|
207
|
396 call I2CREAD2 ; read Air pressure
|
0
|
397 movff SSPBUF,lo
|
207
|
398 call I2CREAD2 ; read Air pressure
|
0
|
399 movff SSPBUF,hi
|
207
|
400 bsf leftbind
|
0
|
401 output_16 ; Air pressure before dive
|
199
|
402 STRCAT "mbar "
|
|
403 OUTPUTTEXT .014 ; Desat
|
|
404 PUTC ' '
|
0
|
405
|
207
|
406 call I2CREAD2 ; read Desaturation time
|
|
407 movff SSPBUF,lo
|
|
408 call I2CREAD2 ; read Desaturation time
|
|
409 movff SSPBUF,hi
|
0
|
410 call convert_time ; converts hi:lo in minutes to hours (hi) and minutes (lo)
|
|
411 bsf leftbind
|
|
412 movf lo,W
|
|
413 movff hi,lo
|
|
414 movwf hi ; exchange lo and hi...
|
|
415 output_8 ; Hours
|
123
|
416 PUTC ':'
|
0
|
417 movff hi,lo ; Minutes
|
|
418 output_99x
|
|
419 bcf leftbind
|
|
420 call word_processor ; display 3rd page of details
|
|
421
|
207
|
422 incf_eeprom_address d'18' ; Skip 18Bytes in EEPROM (faster)
|
|
423
|
|
424 ; Do not remove comments below!
|
|
425 ; call I2CREAD2 ; Skip Gas1 current O2
|
|
426 ; call I2CREAD2 ; Skip Gas1 current HE
|
|
427 ; call I2CREAD2 ; Skip Gas2 current O2
|
|
428 ; call I2CREAD2 ; Skip Gas2 current HE
|
|
429 ; call I2CREAD2 ; Skip Gas3 current O2
|
|
430 ; call I2CREAD2 ; Skip Gas3 current HE
|
|
431 ; call I2CREAD2 ; Skip Gas4 current O2
|
|
432 ; call I2CREAD2 ; Skip Gas4 current HE
|
|
433 ; call I2CREAD2 ; Skip Gas5 current O2
|
|
434 ; call I2CREAD2 ; Skip Gas5 current HE
|
|
435 ; call I2CREAD2 ; Skip Gas6 current O2
|
|
436 ; call I2CREAD2 ; Skip Gas6 current HE
|
|
437 ; call I2CREAD2 ; Skip Start Gas
|
|
438 ; call I2CREAD2 ; Skip Firmware x
|
|
439 ; call I2CREAD2 ; Skip Firmware y
|
|
440 ; call I2CREAD2 ; Skip battery
|
|
441 ; call I2CREAD2 ; Skip battery
|
|
442 ; call I2CREAD2 ; Skip Sampling rate
|
|
443
|
0
|
444 call I2CREAD2 ; Read divisor
|
|
445 movff SSPBUF,divisor_temperature ; Store divisor
|
|
446 bcf divisor_temperature,4 ; Clear information length
|
|
447 bcf divisor_temperature,5
|
|
448 bcf divisor_temperature,6
|
|
449 bcf divisor_temperature,7
|
|
450 incf divisor_temperature,F ; increase divisor
|
|
451 movff divisor_temperature,logbook_temp1 ; Store as temp, too
|
|
452 call I2CREAD2 ; Read divisor
|
|
453 movff SSPBUF,divisor_deco ; Store divisor
|
|
454 bcf divisor_deco,4 ; Clear information length
|
|
455 bcf divisor_deco,5
|
|
456 bcf divisor_deco,6
|
|
457 bcf divisor_deco,7
|
|
458 movff divisor_deco,logbook_temp2 ; Store as temp, too
|
|
459 call I2CREAD2 ; Read divisor
|
|
460 movff SSPBUF,divisor_tank ; Store divisor
|
|
461 call I2CREAD2 ; Read divisor
|
|
462 movff SSPBUF,divisor_ppo2 ; Store divisor
|
|
463 call I2CREAD2 ; Read divisor
|
|
464 movff SSPBUF,divisor_deco_debug ; Store divisor
|
|
465 call I2CREAD2 ; Read divisor
|
|
466 movff SSPBUF,divisor_nuy2 ; Store divisor
|
|
467 call I2CREAD2 ; Read Salinity
|
207
|
468 call I2CREAD2 ; Skip GF_HI (Upper nibble), GF_LO (Lower nibble)
|
0
|
469
|
|
470 display_profile2d:
|
|
471 ; Start Profile display
|
|
472 movlw color_deepblue
|
207
|
473 WIN_BOX_COLOR .75, .239, .0, .159 ; Background "image"
|
0
|
474
|
|
475 call I2CREAD2 ; skip 0xFB (Header-end)
|
|
476 clrf timeout_counter2 ; here: used as counter for depth readings
|
|
477 call I2CREAD2 ; skip 0xFB (Header-end)
|
|
478 movlw d'158'
|
|
479 movwf ignore_digits ; here: used as counter for x-pixels
|
|
480 bcf second_FD ; clear flag
|
|
481 movlw d'5'
|
|
482 movwf timeout_counter3 ; here: used as colum x2 (Start at Colum 5)
|
|
483 movlw d'75' ; Zero-m row
|
|
484 movwf apnoe_mins ; here: used for fill between rows
|
|
485 incf timeout_counter3,W ; Init Column
|
146
|
486
|
|
487 INIT_PIXEL_WROTE timeout_counter3 ; pixel x2
|
0
|
488
|
|
489 profile_display_loop:
|
|
490 movff profile_temp+0,profile_temp2+0
|
|
491 movff profile_temp+1,profile_temp2+1 ; 16Bit x-scaler
|
|
492 incf profile_temp2+1,F
|
42
|
493 tstfsz profile_temp2+0 ; Must not be Zero
|
|
494 bra profile_display_loop2 ; Not Zero!
|
|
495 incf profile_temp2+0,F ; Zero, Increase!
|
0
|
496
|
|
497 profile_display_loop2:
|
|
498 rcall profile_view_get_depth ; reads depth, ignores temp and profile data -> hi, lo
|
|
499
|
|
500 btfsc second_FD ; end-of profile reached?
|
|
501 bra profile_display_loop_done ; Yes, skip all remaining pixels
|
|
502
|
|
503 movff sim_pressure+0,xB+0 ; devide pressure in mbar/quant for row offsett
|
|
504 movff sim_pressure+1,xB+1
|
|
505 movff lo,xA+0
|
|
506 movff hi,xA+1
|
|
507 call div16x16 ; xA/xB=xC
|
|
508 movlw d'75'
|
|
509 addwf xC+0,F ; add 75 pixel offset to result
|
41
|
510
|
44
|
511 btfsc STATUS,C ; Ignore potential profile errors
|
|
512 movff apnoe_mins,xC+0
|
41
|
513
|
0
|
514 call profile_display_fill ; In this column between this row (xC+0) and the last row (apnoe_mins)
|
|
515 movff xC+0,apnoe_mins ; Store last row for fill routine
|
142
|
516 incf timeout_counter3,F
|
|
517
|
146
|
518 PIXEL_WRITE timeout_counter3,xC+0 ; Set col(0..159) x row (0..239), put a std color pixel.
|
0
|
519
|
|
520 profile_display_skip_loop1: ; skips readings!
|
|
521 dcfsnz profile_temp2+0,F
|
|
522 bra profile_display_loop3 ; check 16bit....
|
|
523
|
|
524 rcall profile_view_get_depth ; reads depth, ignores temp and profile data
|
|
525 bra profile_display_skip_loop1
|
|
526
|
|
527 profile_display_loop3:
|
|
528 decfsz profile_temp2+1,F ; 16 bit x-scaler test
|
|
529 bra profile_display_skip_loop1 ; skips readings!
|
|
530
|
|
531 decfsz ignore_digits,F ; counts x-pixels to zero
|
|
532 bra profile_display_loop ; Not ready yet
|
|
533 ; Done.
|
|
534 profile_display_loop_done:
|
|
535 bcf sleepmode ; clear some flags
|
|
536 bcf menubit2
|
|
537 bcf menubit3
|
|
538 bcf switch_right
|
|
539 bcf switch_left
|
|
540 clrf timeout_counter2
|
|
541
|
|
542 display_profile_loop:
|
|
543 call check_switches_logbook
|
|
544
|
|
545 btfsc menubit2 ; SET/MENU?
|
|
546 bra exit_profileview ; back to list
|
|
547
|
|
548 btfsc menubit3 ; ENTER?
|
33
|
549 bra exit_profileview ; back to list
|
|
550 ; bra profileview_menu ; Switch to the Profileview menu
|
0
|
551
|
|
552 btfsc onesecupdate
|
|
553 call timeout_surfmode ; timeout
|
|
554
|
|
555 btfsc onesecupdate
|
|
556 call set_dive_modes ; check, if divemode must be entered
|
|
557
|
|
558 bcf onesecupdate ; one second update
|
|
559
|
|
560 btfsc sleepmode ; Timeout?
|
|
561 bra exit_profileview ; back to list
|
|
562
|
|
563 btfsc divemode
|
|
564 goto restart ; Enter Divemode if required
|
|
565
|
|
566 bra display_profile_loop ; wait for something to do
|
|
567
|
|
568 profile_display_fill: ; In this column between this row (xC+0) and the last row (apnoe_mins), keep xC+0!!
|
|
569 ; First, check if xC+0>apnoe_mins or xC+0<aponoe_mins
|
|
570 movf xC+0,W
|
|
571 cpfseq apnoe_mins ; xC+0 = apone_mins?
|
|
572 bra profile_display_fill2 ; No!
|
|
573 return
|
130
|
574
|
0
|
575 profile_display_fill2:
|
|
576 movf xC+0,W
|
|
577 cpfsgt apnoe_mins ; apnoe_mins>xC+0?
|
|
578 bra profile_display_fill_up ; Yes!
|
|
579
|
|
580 profile_display_fill_down: ; Fill downwards from apone_mins to xC+0!
|
|
581 movff apnoe_mins,xC+1 ; Copy
|
|
582 profile_display_fill_down2: ; Loop
|
|
583 decf xC+1,F
|
142
|
584
|
146
|
585 HALF_PIXEL_WRITE xC+1 ; Updates just row (0..239)
|
3
|
586
|
0
|
587 movf xC+0,W
|
|
588 cpfseq xC+1 ; Loop until xC+1=xC+0
|
|
589 bra profile_display_fill_down2
|
|
590 return ; apnoe_mins and xC+0 are untouched
|
|
591
|
|
592 profile_display_fill_up: ; Fill upwards from xC+0 to apone_mins!
|
|
593 movff xC+0,xC+1 ; Copy
|
|
594 profile_display_fill_up2: ; Loop
|
|
595 decf xC+1,F
|
142
|
596
|
146
|
597 HALF_PIXEL_WRITE xC+1 ; Updates just row (0..239)
|
3
|
598
|
0
|
599 movf apnoe_mins,W
|
|
600 cpfseq xC+1 ; Loop until xC+1=apnoe_mins
|
|
601 bra profile_display_fill_up2
|
|
602 return ; apnoe_mins and xC+0 are untouched
|
|
603
|
|
604 profile_view_get_depth:
|
|
605 call I2CREAD2 ; read first depth
|
|
606 movff SSPBUF,lo ; low value
|
|
607 call I2CREAD2 ; read first depth
|
|
608 movff SSPBUF,hi ; high value
|
|
609 call I2CREAD2 ; read Profile Flag Byte
|
|
610 movff SSPBUF,timeout_counter2 ; Read Profile Flag Byte
|
|
611 bcf event_occured ; clear flag
|
|
612 btfsc timeout_counter2,7
|
|
613 bsf event_occured ; We also have an Event byte!
|
|
614 bcf timeout_counter2,7 ; Clear Event Byte Flag (If any)
|
|
615 ; timeout_counter2 now holds the number of additional bytes to ignore (0-127)
|
|
616 movlw 0xFD ; end of profile bytes?
|
|
617 cpfseq lo
|
|
618 bra profile_view_get_depth_new1 ; no 0xFD
|
|
619 movlw 0xFD ; end of profile bytes?
|
|
620 cpfseq hi
|
|
621 bra profile_view_get_depth_new1 ; no 0xFD
|
|
622 bsf second_FD ; End found! Set Flag! Skip remaining pixels!
|
|
623 return
|
|
624
|
|
625 profile_view_get_depth_new1:
|
|
626 tstfsz timeout_counter2 ; Any bytes to ignore
|
|
627 bra profile_view_get_depth_new3 ; Yes (1-127)
|
|
628 return ; No (0)
|
|
629
|
|
630 profile_view_get_depth_new3:
|
207
|
631 movf timeout_counter2,W ; number of additional bytes to ignore (0-127)
|
|
632 call incf_eeprom_address0 ; increases bytes in eeprom_address:2 with 0x8000 bank switching
|
0
|
633 return
|
|
634
|
207
|
635 ;Keep comments for future temperature graph
|
|
636 ; call I2CREAD2 ; ignore byte
|
|
637 ; decfsz timeout_counter2,F ; reduce counter
|
|
638 ; bra profile_view_get_depth_new3 ; Loop
|
|
639 ; return
|
|
640
|
0
|
641 exit_profileview:
|
|
642 bcf sleepmode
|
|
643 clrf timeout_counter2 ; restore all registers to build same page again
|
|
644 movff decodata+0,eeprom_address+0
|
|
645 movff decodata+1,eeprom_address+1
|
|
646 movff max_pressure+0,divemins+0
|
|
647 movff max_pressure+1,divemins+1
|
|
648 movff mintemp+0, divenumber
|
|
649 decf divenumber,F
|
|
650 bcf all_dives_shown
|
|
651
|
|
652 decf menupos2,F
|
|
653
|
|
654 clrf menupos3 ; here: used row on current page
|
|
655 movlw d'5'
|
|
656 movwf menupos ; here: active row on current page
|
|
657 incf menupos2,F ; start new page
|
|
658 call PLED_ClearScreen ; clear details/profile
|
|
659 bra menu_logbook1b ; start search
|
|
660
|
|
661 next_logbook2:
|
|
662 btfsc all_dives_shown ; all shown
|
|
663 goto menu_logbook1 ; all reset
|
|
664
|
|
665 clrf menupos3
|
|
666 movlw d'5'
|
|
667 movwf menupos ;
|
|
668 incf menupos2,F ; start new screen
|
|
669 call PLED_ClearScreen
|
|
670
|
|
671 next_logbook:
|
|
672 movff eeprom_header_address+0,eeprom_address+0
|
|
673 movff eeprom_header_address+1,eeprom_address+1 ; continue search here
|
|
674 goto menu_logbook1b
|
|
675
|
|
676 check_switches_logbook:
|
|
677 btfsc switch_right
|
|
678 bsf menubit3
|
|
679 btfsc switch_left
|
|
680 bsf menubit2 ; Enter
|
|
681 return
|
|
682
|
|
683 next_logbook3:
|
|
684 incf menupos,F
|
|
685 movlw d'7'
|
|
686 cpfseq menupos ; =7?
|
|
687 bra next_logbook3a ; No
|
|
688 bra next_logbook2 ; yes, new page please
|
|
689
|
|
690 next_logbook3a:
|
|
691 incf menupos3,W ;
|
|
692 cpfseq menupos
|
|
693 bra next_logbook3b
|
|
694 movlw d'6'
|
|
695 movwf menupos ; Jump directly to exit if page is not full
|
|
696
|
|
697 next_logbook3b:
|
|
698 clrf timeout_counter2
|
|
699 call PLED_logbook_cursor
|
|
700
|
|
701 bcf switch_right
|
|
702 bcf menubit3 ; clear flag
|
|
703 bra menu_logbook_loop
|
|
704
|
|
705 display_listdive:
|
|
706 bsf logbook_page_not_empty ; Page not empty
|
|
707 incf menupos3,F
|
|
708
|
|
709 btfsc logbook_header_drawn ; "Logbook already displayed?
|
|
710 bra display_listdive1a
|
|
711 call PLED_topline_box ; Draw box
|
|
712 WIN_INVERT .1
|
|
713 DISPLAYTEXT .26 ; "Logbook"
|
|
714 WIN_INVERT .0
|
|
715 bsf logbook_header_drawn
|
|
716
|
|
717 display_listdive1a:
|
|
718 WIN_LEFT .20
|
|
719
|
|
720 movf menupos2,W
|
|
721 mullw d'5'
|
|
722 movf PRODL,W
|
|
723 subwf divenumber,W ; current row on page
|
|
724
|
|
725 mullw d'30' ; x30
|
|
726 movf PRODL,W ; is pixel-row for entry
|
|
727 addlw d'5' ; +5 Pixel, so list entries are at rows 35,65,95,125,155,185
|
|
728 movff WREG,win_top
|
|
729
|
|
730 lfsr FSR2,letter
|
|
731 movff divenumber,lo
|
|
732 output_99x ; # of dive
|
123
|
733 PUTC ' '
|
0
|
734 call I2CREAD2
|
|
735 movff SSPBUF,lo
|
|
736 movlw d'13'
|
|
737 cpfsgt lo ; Skip if lo>13
|
|
738 bra display_listdive2 ; use old format
|
|
739
|
|
740 call I2CREAD2 ; Skip Profile version
|
|
741 movff SSPBUF,lo ; in new format, read month
|
|
742
|
|
743 display_listdive2:
|
|
744 movff lo,convert_value_temp+0 ; Month (in lo, see above)
|
|
745 call I2CREAD2 ; Day
|
|
746 movff SSPBUF,convert_value_temp+1
|
|
747 call I2CREAD2 ; Year
|
|
748 movff SSPBUF,convert_value_temp+2
|
123
|
749 call PLED_convert_date_short ; converts into "DD/MM" or "MM/DD" or "MM/DD" in s
|
0
|
750
|
|
751
|
|
752 call I2CREAD2 ; hours (Skip)
|
|
753 call I2CREAD2 ; minutes (skip)
|
123
|
754 PUTC ' '
|
0
|
755 call I2CREAD2 ; Depth
|
|
756 movff SSPBUF,lo
|
|
757 call I2CREAD2
|
|
758 movff SSPBUF,hi
|
|
759 bsf leftbind
|
|
760 bsf ignore_digit5 ; Do not display 1cm figure
|
|
761 output_16dp d'3' ; max. depth
|
123
|
762 STRCAT "m "
|
0
|
763 call I2CREAD2
|
|
764 movff SSPBUF,lo
|
|
765 call I2CREAD2
|
|
766 movff SSPBUF,hi
|
|
767 bsf leftbind
|
|
768 output_16 ; Divetime minutes
|
123
|
769 STRCAT_PRINT "'" ; Display header-row in list
|
0
|
770 return
|