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:
|
|
31 bcf return_from_profileview ; clear some flags
|
|
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 clrf temp1 ; max. 32KB
|
|
53 clrf temp2
|
|
54
|
|
55 movlw d'5'
|
|
56 movwf menupos ; Here: stores current position on display (5-x)
|
|
57
|
|
58 menu_logbook1b:
|
|
59 ; search external EEPROM backwards from eeprom_address
|
|
60 ; for 0xFA, 0xFA (store 1st. 0xFA position for next search)
|
|
61 ; read header data and display it
|
|
62 ; wait for user to confirm/exit
|
|
63 ; recopy data to search from here
|
|
64 WIN_INVERT .1
|
|
65 DISPLAYTEXT .12 ;" Wait.."
|
|
66 WIN_INVERT .0
|
|
67 bcf first_FA ; clear flags
|
|
68 bcf second_FA
|
|
69
|
|
70 menu_logbook2:
|
|
71 movlw d'1' ; increase 16Bit value
|
|
72 addwf divemins+0,F
|
|
73 movlw d'0'
|
|
74 addwfc divemins+1,F
|
|
75
|
|
76 btfsc divemins+1,7 ; At 0x8000?
|
|
77 bra menu_logbook_reset ; yes, restart (if not empty)
|
|
78
|
|
79 decf_eeprom_address d'1' ; Macro, that subtracts 8Bit from eeprom_address:2 with banking at 0x8000
|
|
80
|
|
81 call I2CREAD ; reads one byte (Slow! Better use Blockread!)
|
|
82
|
|
83 btfsc first_FA ;
|
|
84 bra test_2nd_FA
|
|
85
|
|
86 bsf first_FA ; Found 1st. 0xFA?
|
|
87 movlw 0xFA
|
|
88 cpfseq SSPBUF
|
|
89 bcf first_FA ; No, clear flag
|
|
90 bra menu_logbook3 ; and continue search
|
|
91
|
|
92 test_2nd_FA:
|
|
93 btfsc second_FA
|
|
94 bra test_FA_DONE
|
|
95
|
|
96 bsf second_FA ; found 2nd 0xFA?
|
|
97 movlw 0xFA
|
|
98 cpfseq SSPBUF
|
|
99 rcall no_second_FA ; No, clear both flags!
|
|
100 bra menu_logbook3 ; and continue search
|
|
101
|
|
102 test_FA_DONE: ; Found 0xFA 0xFA!
|
|
103 movff eeprom_address+0,eeprom_header_address+0 ; store current address into temp register
|
|
104 movff eeprom_address+1,eeprom_header_address+1 ; we must continue search here later
|
|
105 incf divenumber,F ; new header found, increase divenumber
|
|
106 bra menu_logbook4 ; Done with searching, display the header!
|
|
107
|
|
108 no_second_FA: ; discard both flags!
|
|
109 bcf second_FA
|
|
110 bcf first_FA
|
|
111 return
|
|
112
|
|
113
|
|
114 menu_logbook3:
|
|
115 movlw d'1' ; increase global counter
|
|
116 addwf temp1,F
|
|
117 movlw d'0'
|
|
118 addwfc temp2,F
|
|
119
|
|
120 btfsc temp2,7 ; 32KB searched?
|
|
121 bra menu_logbook3b ; Yes
|
|
122 bra menu_logbook2 ; No, not now
|
|
123
|
|
124
|
|
125 menu_logbook3b:
|
|
126 btfss logbook_page_not_empty ; Was there at least one dive?
|
|
127 goto menu ; Not a single header was found, leave logbook.
|
|
128 bra menu_logbook_display_loop2 ; rcall of get_free_eeprom_location not required here (faster)
|
|
129
|
|
130 menu_logbook_reset:
|
|
131 movf divenumber,W
|
|
132 btfsc STATUS,Z ; Was there at least one dive?
|
|
133 bra menu_logbook3b ; No, Nothing to do
|
|
134
|
|
135 bsf all_dives_shown ; Yes
|
|
136 bra menu_logbook_display_loop2 ; rcall of get_free_eeprom_location not required here (faster)
|
|
137
|
|
138
|
|
139 menu_logbook4:
|
|
140 ; Adjust eeprom_address to set pointer on first headerbyte
|
|
141 incf_eeprom_address d'3' ; Macro, that adds 8Bit to eeprom_address:2 with banking at 0x8000
|
|
142
|
|
143 btfss logbook_profile_view ; Display profile (search routine is used in profileview, too)
|
|
144 bra menu_logbook_display_loop ; No, display overwiev list
|
|
145
|
|
146 movf divesecs,W ; divenumber that is searched
|
|
147 cpfseq divenumber ; current divenumber
|
|
148 bra next_logbook ; No match, continue search
|
|
149 bra display_profile2
|
|
150
|
|
151
|
|
152 menu_logbook_display_loop:
|
|
153 btfsc all_dives_shown ; All dives displayed?
|
|
154 bra menu_logbook_display_loop2 ; Yes, but display first page again.
|
|
155
|
|
156 rcall display_listdive ; display short header for list on current list position
|
|
157
|
|
158 movlw d'5'
|
|
159 cpfseq menupos ; first dive on list (top place)?
|
|
160 bra menu_logbook_display_loop1 ; no, so skip saving of address
|
|
161
|
|
162
|
|
163 movff divenumber,mintemp+0 ; store all registered required to rebuilt the current logbookpage after the detail/profile view
|
|
164 movff eeprom_header_address+0,decodata+0 ; several registers are used as temp registers here
|
|
165 movff eeprom_header_address+1,decodata+1
|
|
166 movff divemins+0,max_pressure+0
|
|
167 movff divemins+1,max_pressure+1
|
|
168 movff temp1,logbook_temp6
|
|
169 movff temp2,samplesecs
|
|
170
|
|
171 movlw d'3'
|
|
172 addwf decodata+0,F
|
|
173 movlw d'0'
|
|
174 addwfc decodata+1,F ; Re-Adjust pointer again
|
|
175 movlw d'3' ; So first row will be the same again after detail/profile view
|
|
176 subwf max_pressure+0,F
|
|
177 movlw d'0'
|
|
178 subwfb max_pressure+1,F
|
|
179
|
|
180 menu_logbook_display_loop1:
|
|
181 decfsz menupos,F ; List full?
|
|
182 bra next_logbook ; no, search another dive for our current logbook page
|
|
183
|
|
184 menu_logbook_display_loop2:
|
|
185 btfss logbook_page_not_empty ; Was there one dive at all?
|
|
186 bra menu_logbook ; Yes, so reload the first page
|
|
187
|
|
188 call PLED_topline_box ; Draw box
|
|
189 WIN_INVERT .1
|
|
190 DISPLAYTEXT .26 ; "Logbook"
|
|
191 WIN_INVERT .0
|
|
192
|
|
193 DISPLAYTEXT .11 ; Displays "Exit" in the last row on the current page
|
|
194
|
|
195 bcf sleepmode ; clear some flags for user input
|
|
196 bcf menubit2
|
|
197 bcf menubit3
|
|
198 bcf cursor
|
|
199 bcf switch_right
|
|
200 bcf switch_left
|
|
201 clrf timeout_counter2
|
|
202
|
|
203 movlw d'1' ; Set cursor to position 1...
|
|
204 btfsc return_from_profileview ; .. unless we are returning from a detail/profile view
|
|
205 movf mintemp+1,W ; load last cursor position again
|
|
206 movwf menupos ; and set menupos byte
|
|
207 bcf return_from_profileview ; Do this only once while the page is loaded again!
|
|
208
|
|
209 bcf logbook_page_not_empty ; Obviously the current page is NOT empty
|
|
210 call PLED_logbook_cursor
|
|
211
|
|
212 menu_logbook_loop:
|
|
213 call check_switches_logbook
|
|
214
|
|
215 btfsc menubit3 ; SET/MENU?
|
|
216 bra next_logbook3 ; adjust cursor or create new page
|
|
217
|
|
218 btfsc menubit2 ; ENTER?
|
|
219 bra display_profile_or_exit ; view details/profile or exit logbook
|
|
220
|
|
221 btfsc onesecupdate
|
|
222 call timeout_surfmode ; Timeout
|
|
223
|
|
224 btfsc onesecupdate
|
|
225 call set_dive_modes ; Check, if divemode must be entered
|
|
226
|
|
227 bcf onesecupdate ; one second update
|
|
228
|
|
229 btfsc sleepmode ; Timeout?
|
|
230 goto menu ; Yes
|
|
231
|
|
232 btfsc divemode
|
|
233 goto restart ; Enter Divemode if required
|
|
234
|
|
235 bra menu_logbook_loop ; Wait for something to do
|
|
236
|
|
237 display_profile_or_exit:
|
|
238 bcf menubit2 ; debounce
|
|
239 movlw d'6' ; exit?
|
|
240 cpfseq menupos
|
|
241 bra display_profile ; No, show details/profile
|
|
242 goto menu
|
|
243
|
|
244 display_profile:
|
|
245 movff menupos,mintemp+1 ; store current cursor position
|
|
246 bsf return_from_profileview ; tweak search routine to exit after found
|
|
247
|
|
248 movf menupos2,W ; Number of page
|
|
249 mullw d'5'
|
|
250 movf PRODL,W
|
|
251 addwf menupos,W ; page*5+menupos=
|
|
252 movwf divesecs ; # of dive to search
|
|
253
|
|
254 call PLED_ClearScreen ; search for dive
|
|
255 bsf logbook_profile_view ; set flag for search routine
|
|
256
|
|
257 clrf divenumber ; search from scratch
|
|
258 bra menu_logbook1a ; start search
|
|
259 display_profile2:
|
|
260 bcf logbook_profile_view ; clear flag for search routine
|
|
261
|
|
262 call PLED_display_wait_clear
|
|
263 WIN_TOP .0
|
|
264 WIN_LEFT .0
|
|
265 lfsr FSR2,letter
|
|
266 movlw '#'
|
|
267 movwf POSTINC2
|
|
268
|
|
269 GETCUSTOM15 .28 ; Logbook Offset -> lo, hi
|
|
270 tstfsz lo ; lo=0?
|
|
271 bra display_profile_offset1 ; No, adjust offset
|
|
272 tstfsz hi ; hi=0?
|
|
273 bra display_profile_offset1 ; No, adjust offset
|
|
274 bra display_profile_offset2 ; lo=0 and hi=0 -> skip Offset routine
|
|
275
|
|
276 display_profile_offset1:
|
|
277 movlw d'1'
|
|
278 addwf lo,F
|
|
279 movlw d'0'
|
|
280 addwfc hi,F ; hi:lo = hi:lo + 1
|
|
281 movff lo,sub_a+0
|
|
282 movff hi,sub_a+1
|
|
283 movff divesecs,sub_b+0
|
|
284 clrf sub_b+1
|
|
285 call sub16 ; sub_c = sub_a - sub_b
|
|
286 movff sub_c+0,lo
|
|
287 movff sub_c+1,hi
|
|
288 bsf leftbind
|
|
289 output_16dp d'10' ; # of dive with offset
|
|
290 bra display_profile_offset3 ; Skip normal routine
|
|
291
|
|
292 display_profile_offset2:
|
|
293 movff divesecs,lo
|
|
294 output_99x ; # of dive
|
|
295
|
|
296 display_profile_offset3:
|
|
297 movlw ' '
|
|
298 movwf POSTINC2
|
|
299 call I2CREAD2
|
|
300 movff SSPBUF,lo ;
|
|
301
|
|
302 call I2CREAD2 ; Skip Profile version
|
|
303 movff SSPBUF,lo ; read month
|
|
304
|
41
|
305 ; movff eeprom_address+0, EventByte ; Store current EEPROM position
|
|
306 ; movff eeprom_address+1, ProfileFlagByte
|
0
|
307 ; Offset to SamplingRate
|
|
308 incf_eeprom_address d'32' ; Macro, that adds 8Bit to eeprom_address:2 with banking at 0x8000
|
|
309 call I2CREAD ; Read Sampling rate
|
|
310 movff SSPBUF,samplesecs_value ; Copy sampling rate
|
41
|
311 decf_eeprom_address d'32' ; Macro, that subtracts 8Bit from eeprom_address:2 with banking at 0x8000
|
|
312 ; movff EventByte, eeprom_address+0 ; Re-Store current EEPROM position
|
|
313 ; movff ProfileFlagByte, eeprom_address+1 ; Re-Store current EEPROM position
|
0
|
314
|
|
315 ;display_profile2a:
|
|
316
|
|
317 movff lo,convert_value_temp+0 ; Month (in lo, see above)
|
|
318 call I2CREAD2 ; Day
|
|
319 movff SSPBUF,convert_value_temp+1
|
|
320 call I2CREAD2 ; Year
|
|
321 movff SSPBUF,convert_value_temp+2
|
|
322 call PLED_convert_date ; converts into "DD/MM/YY" or "MM/DD/YY" or "YY/MM/DD" in postinc2
|
|
323
|
|
324 movlw ' '
|
|
325 movwf POSTINC2
|
|
326 call I2CREAD2 ; hour
|
|
327 movff SSPBUF,lo
|
|
328 output_99x
|
|
329 movlw ':'
|
|
330 movwf POSTINC2
|
|
331 call I2CREAD2 ; Minute
|
|
332 movff SSPBUF,lo
|
|
333 output_99x
|
|
334 call word_processor ; Display 1st row of details
|
|
335
|
|
336 WIN_TOP .25
|
|
337 WIN_LEFT .05
|
|
338 lfsr FSR2,letter
|
|
339 call I2CREAD2
|
|
340 movff SSPBUF,lo
|
|
341 call I2CREAD2
|
|
342 movff SSPBUF,hi
|
|
343 movff lo,xA+0 ; calculate y-scale for profile display
|
|
344 movff hi,xA+1
|
|
345 movlw d'164' ; 164pixel height available
|
|
346 movwf xB+0
|
|
347 clrf xB+1
|
|
348 call div16x16 ; does xA/xB=xC
|
|
349 movff xC+0,sim_pressure+0 ; holds LOW byte of y-scale (mbar/pixel!)
|
|
350 movff xC+1,sim_pressure+1 ; holds HIGH byte of y-scale (mbar/pixel!)
|
|
351 incf sim_pressure+0,F ; increase one, because there may be a remainder
|
|
352 movlw d'0'
|
|
353 addwfc sim_pressure+1,F
|
|
354
|
|
355 bsf leftbind
|
|
356 output_16dp d'3' ; max. depth
|
|
357 movlw 'm'
|
|
358 movwf POSTINC2
|
|
359 movlw ' '
|
|
360 movwf POSTINC2
|
|
361 call I2CREAD2
|
|
362 movff SSPBUF,lo
|
|
363 call I2CREAD2
|
|
364 movff SSPBUF,hi
|
|
365
|
|
366 movff lo,xA+0 ; calculate x-scale for profile display
|
|
367 movff hi,xA+1 ; calculate total diveseconds first
|
|
368 movlw d'60' ; 60seconds are one minute
|
|
369 movwf xB+0
|
|
370 clrf xB+1
|
|
371 call mult16x16 ; result is in xC:2 !
|
|
372
|
|
373 bsf leftbind
|
|
374 output_16 ; divetime minutes
|
|
375 movlw d'39'
|
|
376 movwf POSTINC2
|
|
377 call I2CREAD2
|
|
378 movff SSPBUF,lo
|
|
379 movf lo,W ; add seconds to total seconds
|
|
380 addwf xC+0
|
|
381 movlw d'0'
|
|
382 addwfc xC+1 ; xC:2 now holds total dive seconds!
|
|
383 movff xC+0,xA+0 ; now calculate x-scale value
|
|
384 movff xC+1,xA+1
|
|
385 movlw d'159' ; 159pix width available
|
|
386 movwf xB+0
|
|
387 clrf xB+1
|
|
388 call div16x16 ; xA/xB=xC
|
|
389 movff xC+0,xA+0
|
|
390 movff xC+1,xA+1
|
|
391 movf samplesecs_value,W ; devide through sample interval!
|
|
392 movwf xB+0
|
|
393 clrf xB+1
|
|
394 call div16x16 ; xA/xB=xC
|
|
395 movff xC+0,profile_temp+0 ; store value (use any #xC sample, skip xC-1) into temp registers
|
|
396 movff xC+1,profile_temp+1 ; store value (use any #xC sample, skip xC-1) into temp registers
|
|
397 incf profile_temp+0,F ; increase one, because there may be a remainder
|
|
398 movlw d'0'
|
|
399 addwfc profile_temp+1,F
|
|
400
|
|
401 bsf leftbind
|
|
402 output_99x ; divetime seconds
|
|
403 movlw '"'
|
|
404 movwf POSTINC2
|
|
405 movlw ' '
|
|
406 movwf POSTINC2
|
|
407 call I2CREAD2
|
|
408 movff SSPBUF,lo
|
|
409 call I2CREAD2
|
|
410 movff SSPBUF,hi
|
|
411 movlw d'3'
|
|
412 movwf ignore_digits
|
|
413 bsf leftbind
|
|
414 output_16dp d'2' ; temperature
|
|
415 movlw '°'
|
|
416 movwf POSTINC2
|
|
417 movlw 'C'
|
|
418 movwf POSTINC2
|
|
419 call word_processor ; Display 2nd row of details
|
|
420
|
|
421 WIN_TOP .50
|
|
422 WIN_LEFT .05
|
|
423 lfsr FSR2,letter
|
|
424
|
|
425 call I2CREAD2
|
|
426 movff SSPBUF,lo
|
|
427 call I2CREAD2
|
|
428 movff SSPBUF,hi
|
|
429 bsf leftbind
|
|
430 output_16 ; Air pressure before dive
|
|
431 movlw 'm'
|
|
432 movwf POSTINC2
|
|
433 movlw 'b'
|
|
434 movwf POSTINC2
|
|
435 movlw 'a'
|
|
436 movwf POSTINC2
|
|
437 movlw 'r'
|
|
438 movwf POSTINC2
|
|
439 movlw ' '
|
|
440 movwf POSTINC2
|
|
441
|
|
442 movlw 'D'
|
|
443 movwf POSTINC2
|
|
444 movlw 'e'
|
|
445 movwf POSTINC2
|
|
446 movlw 's'
|
|
447 movwf POSTINC2
|
|
448 movlw 'a'
|
|
449 movwf POSTINC2
|
|
450 movlw 't'
|
|
451 movwf POSTINC2
|
|
452 movlw ' '
|
|
453 movwf POSTINC2
|
|
454
|
|
455 call I2CREAD2
|
|
456 movff SSPBUF,lo
|
|
457 call I2CREAD2
|
|
458 movff SSPBUF,hi
|
|
459 call convert_time ; converts hi:lo in minutes to hours (hi) and minutes (lo)
|
|
460 bsf leftbind
|
|
461 movf lo,W
|
|
462 movff hi,lo
|
|
463 movwf hi ; exchange lo and hi...
|
|
464 output_8 ; Hours
|
|
465 movlw ':'
|
|
466 movwf POSTINC2
|
|
467 movff hi,lo ; Minutes
|
|
468 output_99x
|
|
469 bcf leftbind
|
|
470 call word_processor ; display 3rd page of details
|
|
471
|
|
472 call I2CREAD2 ; Skip Gas1 current O2
|
|
473 call I2CREAD2 ; Skip Gas1 current HE
|
|
474 call I2CREAD2 ; Skip Gas2 current O2
|
|
475 call I2CREAD2 ; Skip Gas2 current HE
|
|
476 call I2CREAD2 ; Skip Gas3 current O2
|
|
477 call I2CREAD2 ; Skip Gas3 current HE
|
|
478 call I2CREAD2 ; Skip Gas4 current O2
|
|
479 call I2CREAD2 ; Skip Gas4 current HE
|
|
480 call I2CREAD2 ; Skip Gas5 current O2
|
|
481 call I2CREAD2 ; Skip Gas5 current HE
|
|
482 call I2CREAD2 ; Skip Gas6 current O2
|
|
483 call I2CREAD2 ; Skip Gas6 current HE
|
|
484 call I2CREAD2 ; Skip Start Gas
|
|
485 call I2CREAD2 ; Skip Firmware x
|
|
486 call I2CREAD2 ; Skip Firmware y
|
|
487 call I2CREAD2 ; Skip battery
|
|
488 call I2CREAD2 ; Skip battery
|
|
489 call I2CREAD2 ; Skip Sampling rate
|
|
490 call I2CREAD2 ; Read divisor
|
|
491 movff SSPBUF,divisor_temperature ; Store divisor
|
|
492 bcf divisor_temperature,4 ; Clear information length
|
|
493 bcf divisor_temperature,5
|
|
494 bcf divisor_temperature,6
|
|
495 bcf divisor_temperature,7
|
|
496 incf divisor_temperature,F ; increase divisor
|
|
497 movff divisor_temperature,logbook_temp1 ; Store as temp, too
|
|
498 call I2CREAD2 ; Read divisor
|
|
499 movff SSPBUF,divisor_deco ; Store divisor
|
|
500 bcf divisor_deco,4 ; Clear information length
|
|
501 bcf divisor_deco,5
|
|
502 bcf divisor_deco,6
|
|
503 bcf divisor_deco,7
|
|
504 movff divisor_deco,logbook_temp2 ; Store as temp, too
|
|
505 call I2CREAD2 ; Read divisor
|
|
506 movff SSPBUF,divisor_tank ; Store divisor
|
|
507 call I2CREAD2 ; Read divisor
|
|
508 movff SSPBUF,divisor_ppo2 ; Store divisor
|
|
509 call I2CREAD2 ; Read divisor
|
|
510 movff SSPBUF,divisor_deco_debug ; Store divisor
|
|
511 call I2CREAD2 ; Read divisor
|
|
512 movff SSPBUF,divisor_nuy2 ; Store divisor
|
|
513 call I2CREAD2 ; Read Salinity
|
|
514 call I2CREAD2 ; Skip Dummy byte
|
|
515
|
|
516 display_profile2d:
|
|
517 ; Start Profile display
|
|
518
|
|
519 movlw color_deepblue
|
|
520 movff WREG,box_temp+0 ; Data
|
|
521 movlw .75
|
|
522 movff WREG,box_temp+1 ; row top (0-239)
|
|
523 movlw .239
|
|
524 movff WREG,box_temp+2 ; row bottom (0-239)
|
|
525 movlw .0
|
|
526 movff WREG,box_temp+3 ; column left (0-159)
|
|
527 movlw .159
|
|
528 movff WREG,box_temp+4 ; column right (0-159)
|
|
529 call PLED_box
|
|
530
|
|
531
|
|
532 call I2CREAD2 ; skip 0xFB (Header-end)
|
|
533 clrf timeout_counter2 ; here: used as counter for depth readings
|
|
534 call I2CREAD2 ; skip 0xFB (Header-end)
|
|
535 movlw d'158'
|
|
536 movwf ignore_digits ; here: used as counter for x-pixels
|
|
537 bcf second_FD ; clear flag
|
|
538 movlw d'5'
|
|
539 movwf timeout_counter3 ; here: used as colum x2 (Start at Colum 5)
|
|
540 movlw d'75' ; Zero-m row
|
|
541 movwf apnoe_mins ; here: used for fill between rows
|
|
542 incf timeout_counter3,W ; Init Column
|
|
543 call PLED_SetColumnPixel ; pixel x2
|
|
544
|
|
545 profile_display_loop:
|
|
546 movff profile_temp+0,profile_temp2+0
|
|
547 movff profile_temp+1,profile_temp2+1 ; 16Bit x-scaler
|
|
548 incf profile_temp2+1,F
|
42
|
549 tstfsz profile_temp2+0 ; Must not be Zero
|
|
550 bra profile_display_loop2 ; Not Zero!
|
|
551 incf profile_temp2+0,F ; Zero, Increase!
|
0
|
552
|
|
553 profile_display_loop2:
|
|
554 rcall profile_view_get_depth ; reads depth, ignores temp and profile data -> hi, lo
|
|
555
|
|
556 btfsc second_FD ; end-of profile reached?
|
|
557 bra profile_display_loop_done ; Yes, skip all remaining pixels
|
|
558
|
|
559 movff sim_pressure+0,xB+0 ; devide pressure in mbar/quant for row offsett
|
|
560 movff sim_pressure+1,xB+1
|
|
561 movff lo,xA+0
|
|
562 movff hi,xA+1
|
|
563 call div16x16 ; xA/xB=xC
|
|
564 movlw d'75'
|
|
565 addwf xC+0,F ; add 75 pixel offset to result
|
41
|
566
|
44
|
567 btfsc STATUS,C ; Ignore potential profile errors
|
|
568 movff apnoe_mins,xC+0
|
41
|
569
|
0
|
570 call profile_display_fill ; In this column between this row (xC+0) and the last row (apnoe_mins)
|
|
571 movff xC+0,apnoe_mins ; Store last row for fill routine
|
|
572 movf xC+0,W
|
|
573 call PLED_SetRow ; 0...259
|
|
574
|
|
575 incf timeout_counter3,F
|
|
576 movf timeout_counter3,W
|
|
577 call PLED_SetColumnPixel ; pixel x2
|
3
|
578 call PLED_standard_color
|
0
|
579 call PLED_PxlWrite ; Write two pixels
|
|
580
|
|
581 profile_display_skip_loop1: ; skips readings!
|
|
582 dcfsnz profile_temp2+0,F
|
|
583 bra profile_display_loop3 ; check 16bit....
|
|
584
|
|
585 rcall profile_view_get_depth ; reads depth, ignores temp and profile data
|
|
586 bra profile_display_skip_loop1
|
|
587
|
|
588 profile_display_loop3:
|
|
589 decfsz profile_temp2+1,F ; 16 bit x-scaler test
|
|
590 bra profile_display_skip_loop1 ; skips readings!
|
|
591
|
|
592 decfsz ignore_digits,F ; counts x-pixels to zero
|
|
593 bra profile_display_loop ; Not ready yet
|
|
594 ; Done.
|
|
595 profile_display_loop_done:
|
|
596 bcf sleepmode ; clear some flags
|
|
597 bcf menubit2
|
|
598 bcf menubit3
|
|
599 bcf switch_right
|
|
600 bcf switch_left
|
|
601 clrf timeout_counter2
|
|
602
|
|
603 display_profile_loop:
|
|
604 call check_switches_logbook
|
|
605
|
|
606 btfsc menubit2 ; SET/MENU?
|
|
607 bra exit_profileview ; back to list
|
|
608
|
|
609 btfsc menubit3 ; ENTER?
|
33
|
610 bra exit_profileview ; back to list
|
|
611 ; bra profileview_menu ; Switch to the Profileview menu
|
0
|
612
|
|
613 btfsc onesecupdate
|
|
614 call timeout_surfmode ; timeout
|
|
615
|
|
616 btfsc onesecupdate
|
|
617 call set_dive_modes ; check, if divemode must be entered
|
|
618
|
|
619 bcf onesecupdate ; one second update
|
|
620
|
|
621 btfsc sleepmode ; Timeout?
|
|
622 bra exit_profileview ; back to list
|
|
623
|
|
624 btfsc divemode
|
|
625 goto restart ; Enter Divemode if required
|
|
626
|
|
627 bra display_profile_loop ; wait for something to do
|
|
628
|
|
629 profile_display_fill: ; In this column between this row (xC+0) and the last row (apnoe_mins), keep xC+0!!
|
|
630 ; First, check if xC+0>apnoe_mins or xC+0<aponoe_mins
|
|
631 movf xC+0,W
|
|
632 cpfseq apnoe_mins ; xC+0 = apone_mins?
|
|
633 bra profile_display_fill2 ; No!
|
|
634 return
|
|
635 profile_display_fill2:
|
|
636 movf xC+0,W
|
|
637 cpfsgt apnoe_mins ; apnoe_mins>xC+0?
|
|
638 bra profile_display_fill_up ; Yes!
|
|
639
|
|
640 profile_display_fill_down: ; Fill downwards from apone_mins to xC+0!
|
|
641 movff apnoe_mins,xC+1 ; Copy
|
|
642 profile_display_fill_down2: ; Loop
|
|
643 decf xC+1,F
|
|
644 movf xC+1,W ; Row
|
|
645 call PLED_SetRow ; 0...259
|
3
|
646 call PLED_standard_color
|
|
647
|
0
|
648 call PLED_PxlWrite_Single; Write one Pixel
|
|
649 movf xC+0,W
|
|
650 cpfseq xC+1 ; Loop until xC+1=xC+0
|
|
651 bra profile_display_fill_down2
|
|
652 return ; apnoe_mins and xC+0 are untouched
|
|
653
|
|
654 profile_display_fill_up: ; Fill upwards from xC+0 to apone_mins!
|
|
655 movff xC+0,xC+1 ; Copy
|
|
656 profile_display_fill_up2: ; Loop
|
|
657 decf xC+1,F
|
|
658 movf xC+1,W ; Row
|
|
659 call PLED_SetRow ; 0...259
|
3
|
660 call PLED_standard_color
|
|
661
|
0
|
662 call PLED_PxlWrite_Single; Write one Pixel
|
|
663 movf apnoe_mins,W
|
|
664 cpfseq xC+1 ; Loop until xC+1=apnoe_mins
|
|
665 bra profile_display_fill_up2
|
|
666 return ; apnoe_mins and xC+0 are untouched
|
|
667
|
|
668 profile_view_get_depth:
|
|
669 call I2CREAD2 ; read first depth
|
|
670 movff SSPBUF,lo ; low value
|
|
671 call I2CREAD2 ; read first depth
|
|
672 movff SSPBUF,hi ; high value
|
|
673 call I2CREAD2 ; read Profile Flag Byte
|
|
674 movff SSPBUF,timeout_counter2 ; Read Profile Flag Byte
|
|
675 bcf event_occured ; clear flag
|
|
676 btfsc timeout_counter2,7
|
|
677 bsf event_occured ; We also have an Event byte!
|
|
678 bcf timeout_counter2,7 ; Clear Event Byte Flag (If any)
|
|
679 ; timeout_counter2 now holds the number of additional bytes to ignore (0-127)
|
|
680 movlw 0xFD ; end of profile bytes?
|
|
681 cpfseq lo
|
|
682 bra profile_view_get_depth_new1 ; no 0xFD
|
|
683 movlw 0xFD ; end of profile bytes?
|
|
684 cpfseq hi
|
|
685 bra profile_view_get_depth_new1 ; no 0xFD
|
|
686 bsf second_FD ; End found! Set Flag! Skip remaining pixels!
|
|
687 return
|
|
688
|
|
689 profile_view_get_depth_new1:
|
41
|
690 ;bra profile_view_get_depth_new1_1 ; Skip all data to ignore...
|
0
|
691
|
41
|
692 ; decfsz divisor_deco,F ; Check divisor
|
|
693 ; bra profile_view_get_depth_new1_1 ; Divisor not zero...
|
|
694 ;
|
|
695 ;; tstfsz timeout_counter2 ; Any bytes to ignore
|
|
696 ;; bra profile_view_get_depth_new2 ; Yes (1-127)
|
|
697 ;; return ; No (0)
|
|
698 ;
|
|
699 ; movff logbook_temp2,divisor_deco ; Restore divisor value!
|
|
700 ;; check for event byte and the extra informations
|
|
701 ; btfss event_occured
|
|
702 ; bra profile_view_get_depth_new2 ; No event!
|
|
703 ;
|
|
704 ; call I2CREAD2 ; read event byte
|
|
705 ; decf timeout_counter2,F ; Reduce number of bytes to ignore
|
|
706 ;
|
|
707 ; movlw d'0' ; Extra bytes to ignore because of event
|
|
708 ; btfsc SSPBUF,4
|
|
709 ; addlw d'2' ; two bytes for manual gas set
|
|
710 ; btfsc SSPBUF,5
|
|
711 ; addlw d'1' ; one byte for gas change
|
|
712 ; movwf logbook_temp5 ; store extra bytes to ignore
|
|
713 ;
|
|
714 ; tstfsz logbook_temp5 ; Anything to ignore?
|
|
715 ; bra profile_view_get_depth_new1_2 ; Yes
|
|
716 ; bra profile_view_get_depth_new2 ; No, continue with normal routine
|
|
717 ;
|
|
718 ;profile_view_get_depth_new1_2:
|
|
719 ; call I2CREAD2 ; ignore byte
|
|
720 ; decf timeout_counter2,F ; Reduce number of bytes to ignore
|
|
721 ; decfsz logbook_temp5,F ; reduce extra bytes ignore counter
|
|
722 ; bra profile_view_get_depth_new1_2 ; loop
|
|
723 ;
|
|
724 ;profile_view_get_depth_new2:
|
|
725 ; movlw d'4' ; Temp (2) and Deko (2) in the sample?
|
|
726 ; cpfseq timeout_counter2
|
|
727 ; bra profile_view_get_depth_new2_2 ; No
|
|
728 ; ; Yes, skip Temp!
|
|
729 ; call I2CREAD2 ; ignore byte
|
|
730 ; decf timeout_counter2,F ; Reduce number of bytes to ignore
|
|
731 ; call I2CREAD2 ; ignore byte
|
|
732 ; decf timeout_counter2,F ; Reduce number of bytes to ignore
|
|
733 ;
|
|
734 ;profile_view_get_depth_new2_2:
|
|
735 ; call I2CREAD2 ; ignore byte
|
|
736 ;
|
|
737 ; decfsz timeout_counter2,F ; reduce counter
|
|
738 ; bra profile_view_get_depth_new2_2; Loop
|
|
739 ; return
|
0
|
740
|
|
741 profile_view_get_depth_new1_1:
|
|
742 tstfsz timeout_counter2 ; Any bytes to ignore
|
|
743 bra profile_view_get_depth_new3 ; Yes (1-127)
|
|
744 return ; No (0)
|
|
745
|
|
746 ; timeout_counter2 now holds the number of additional bytes to ignore (0-127)
|
|
747 profile_view_get_depth_new3:
|
|
748 call I2CREAD2 ; ignore byte
|
|
749 decfsz timeout_counter2,F ; reduce counter
|
|
750 bra profile_view_get_depth_new3 ; Loop
|
|
751 return
|
|
752
|
|
753 exit_profileview:
|
|
754 bcf sleepmode
|
|
755 clrf timeout_counter2 ; restore all registers to build same page again
|
|
756 movff decodata+0,eeprom_address+0
|
|
757 movff decodata+1,eeprom_address+1
|
|
758 movff max_pressure+0,divemins+0
|
|
759 movff max_pressure+1,divemins+1
|
|
760 movff mintemp+0, divenumber
|
|
761 movff logbook_temp6,temp1
|
|
762 movff samplesecs,temp2
|
|
763 decf divenumber,F
|
|
764 bcf all_dives_shown
|
|
765
|
|
766 decf menupos2,F
|
|
767
|
|
768 clrf menupos3 ; here: used row on current page
|
|
769 movlw d'5'
|
|
770 movwf menupos ; here: active row on current page
|
|
771 incf menupos2,F ; start new page
|
|
772 call PLED_ClearScreen ; clear details/profile
|
|
773 bra menu_logbook1b ; start search
|
|
774
|
|
775 next_logbook2:
|
|
776 btfsc all_dives_shown ; all shown
|
|
777 goto menu_logbook1 ; all reset
|
|
778
|
|
779 clrf menupos3
|
|
780 movlw d'5'
|
|
781 movwf menupos ;
|
|
782 incf menupos2,F ; start new screen
|
|
783 call PLED_ClearScreen
|
|
784
|
|
785 next_logbook:
|
|
786 movff eeprom_header_address+0,eeprom_address+0
|
|
787 movff eeprom_header_address+1,eeprom_address+1 ; continue search here
|
|
788 goto menu_logbook1b
|
|
789
|
|
790 check_switches_logbook:
|
|
791 btfsc switch_right
|
|
792 bsf menubit3
|
|
793 btfsc switch_left
|
|
794 bsf menubit2 ; Enter
|
|
795 return
|
|
796
|
|
797 next_logbook3:
|
|
798 incf menupos,F
|
|
799 movlw d'7'
|
|
800 cpfseq menupos ; =7?
|
|
801 bra next_logbook3a ; No
|
|
802 bra next_logbook2 ; yes, new page please
|
|
803
|
|
804 next_logbook3a:
|
|
805 incf menupos3,W ;
|
|
806 cpfseq menupos
|
|
807 bra next_logbook3b
|
|
808 movlw d'6'
|
|
809 movwf menupos ; Jump directly to exit if page is not full
|
|
810
|
|
811 next_logbook3b:
|
|
812 clrf timeout_counter2
|
|
813 call PLED_logbook_cursor
|
|
814
|
|
815 bcf switch_right
|
|
816 bcf menubit3 ; clear flag
|
|
817 bra menu_logbook_loop
|
|
818
|
|
819 display_listdive:
|
|
820 bsf logbook_page_not_empty ; Page not empty
|
|
821 incf menupos3,F
|
|
822
|
|
823 btfsc logbook_header_drawn ; "Logbook already displayed?
|
|
824 bra display_listdive1a
|
|
825 call PLED_topline_box ; Draw box
|
|
826 WIN_INVERT .1
|
|
827 DISPLAYTEXT .26 ; "Logbook"
|
|
828 WIN_INVERT .0
|
|
829 bsf logbook_header_drawn
|
|
830
|
|
831 display_listdive1a:
|
|
832 WIN_LEFT .20
|
|
833
|
|
834 movf menupos2,W
|
|
835 mullw d'5'
|
|
836 movf PRODL,W
|
|
837 subwf divenumber,W ; current row on page
|
|
838
|
|
839 mullw d'30' ; x30
|
|
840 movf PRODL,W ; is pixel-row for entry
|
|
841 addlw d'5' ; +5 Pixel, so list entries are at rows 35,65,95,125,155,185
|
|
842 movff WREG,win_top
|
|
843
|
|
844 lfsr FSR2,letter
|
|
845 movff divenumber,lo
|
|
846 output_99x ; # of dive
|
|
847 movlw ' '
|
|
848 movwf POSTINC2
|
|
849 call I2CREAD2
|
|
850 movff SSPBUF,lo
|
|
851 movlw d'13'
|
|
852 cpfsgt lo ; Skip if lo>13
|
|
853 bra display_listdive2 ; use old format
|
|
854
|
|
855 call I2CREAD2 ; Skip Profile version
|
|
856 movff SSPBUF,lo ; in new format, read month
|
|
857
|
|
858 display_listdive2:
|
|
859 movff lo,convert_value_temp+0 ; Month (in lo, see above)
|
|
860 call I2CREAD2 ; Day
|
|
861 movff SSPBUF,convert_value_temp+1
|
|
862 call I2CREAD2 ; Year
|
|
863 movff SSPBUF,convert_value_temp+2
|
|
864 call PLED_convert_date_short ; converts into "DD/MM" or "MM/DD" or "MM/DD" in postinc2
|
|
865
|
|
866
|
|
867 call I2CREAD2 ; hours (Skip)
|
|
868 call I2CREAD2 ; minutes (skip)
|
|
869 movlw ' '
|
|
870 movwf POSTINC2
|
|
871 call I2CREAD2 ; Depth
|
|
872 movff SSPBUF,lo
|
|
873 call I2CREAD2
|
|
874 movff SSPBUF,hi
|
|
875 bsf leftbind
|
|
876 bsf ignore_digit5 ; Do not display 1cm figure
|
|
877 output_16dp d'3' ; max. depth
|
|
878 movlw 'm'
|
|
879 movwf POSTINC2
|
|
880 movlw ' '
|
|
881 movwf POSTINC2
|
|
882 call I2CREAD2
|
|
883 movff SSPBUF,lo
|
|
884 call I2CREAD2
|
|
885 movff SSPBUF,hi
|
|
886 bsf leftbind
|
|
887 output_16 ; Divetime minutes
|
|
888 movlw d'39' ; "'"
|
|
889 movwf POSTINC2
|
|
890
|
|
891 call word_processor ; Display header-row in list
|
|
892 return
|
|
893
|
|
894
|
33
|
895 ;profileview_menu:
|
|
896 ; movlw d'1'
|
|
897 ; movwf menupos
|
|
898 ;profileview_menu1:
|
|
899 ; call PLED_clear_divemode_menu
|
|
900 ; call PLED_profileview_menu ; Displays Menu
|
|
901 ;profileview_menu2:
|
|
902 ; call PLED_divemenu_cursor
|
|
903 ; bcf sleepmode ; clear some flags
|
|
904 ; bcf menubit2
|
|
905 ; bcf menubit3
|
|
906 ; bcf switch_right
|
|
907 ; bcf switch_left
|
|
908 ; clrf timeout_counter2
|
|
909 ;
|
|
910 ;profileview_menu_loop:
|
|
911 ; call check_switches_logbook
|
|
912 ;
|
|
913 ; btfsc menubit3 ; SET/MENU?
|
|
914 ; bra profileview_menu_move_cursor; Move Cursor
|
|
915 ; btfsc menubit2 ; ENTER?
|
|
916 ; bra profileview_menu_do ; Do task
|
|
917 ;
|
|
918 ; btfsc onesecupdate
|
|
919 ; call timeout_surfmode ; timeout
|
|
920 ; btfsc onesecupdate
|
|
921 ; call set_dive_modes ; check, if divemode must be entered
|
|
922 ; bcf onesecupdate ; one second update
|
|
923 ; btfsc sleepmode ; Timeout?
|
|
924 ; bra exit_profileview ; back to list
|
|
925 ; btfsc divemode
|
|
926 ; goto restart ; Enter Divemode if required
|
|
927 ;
|
|
928 ; bra profileview_menu_loop ; wait for something to do
|
|
929 ;
|
|
930 ;profileview_menu_do:
|
17
|
931 ; dcfsnz menupos,F
|
33
|
932 ; bra exit_profileview ; back to list, quit profileview menu
|
|
933 ; dcfsnz menupos,F
|
|
934 ; bra profileview_menu_delete ; Delete Dive from external EEPROM
|
|
935 ;; dcfsnz menupos,F
|
|
936 ;; bra profileview_menu_format ; Delete all Dives from external EEPROM
|
|
937 ;;
|
|
938 ;profileview_menu_move_cursor:
|
|
939 ; incf menupos,F
|
|
940 ; movlw d'3' ; number of menu options+1
|
|
941 ; cpfseq menupos ; =limit?
|
|
942 ; bra profileview_menu_move_cursor2 ; No!
|
|
943 ; movlw d'1' ; Yes, reset to position 1!
|
|
944 ; movwf menupos
|
|
945 ;profileview_menu_move_cursor2:
|
|
946 ; bra profileview_menu2 ; Return to Profile Menu, also updates cursor
|
0
|
947
|
33
|
948 ;profileview_menu_format:
|
|
949 ; call PLED_confirmbox ; Returns WREG=0 for Cancel (Or Timeout) and WREG=1 for OK!
|
|
950 ;
|
|
951 ; movwf menupos ; Used as temp
|
|
952 ; tstfsz menupos
|
|
953 ; bra profileview_menu_format_loop2 ; Format now!
|
|
954 ;
|
|
955 ; bra exit_profileview ; back to list, quit profileview menu
|
|
956 ;
|
|
957 ;profileview_menu_format_loop2: ; Do now format!
|
|
958 ; call PLED_ClearScreen
|
|
959 ; DISPLAYTEXT .12 ; "Wait.."
|
|
960 ; call reset_external_eeprom ; delete profile memory
|
|
961 ; goto menu ; Return to Menu
|
0
|
962
|
33
|
963 ;profileview_menu_delete:
|
|
964 ; call PLED_confirmbox ; Returns WREG=0 for Cancel (Or Timeout) and WREG=1 for OK!
|
|
965 ; movwf menupos ; Used as temp
|
|
966 ; tstfsz menupos
|
|
967 ; bra profileview_menu_delete_loop2 ; Delete now!
|
|
968 ;
|
|
969 ; bra exit_profileview ; back to list, quit profileview menu
|
|
970 ;
|
|
971 ;profileview_menu_delete_loop2: ; Do now delete
|
|
972 ; call PLED_ClearScreen
|
|
973 ; DISPLAYTEXT .12 ; "Wait.."
|
|
974 ;
|
|
975 ;; eeprom_address:2 is set to the second byte after the ending 0xFD 0xFD
|
|
976 ;; eeprom_address:2 - 1 -> set to the last byte after the 0xFD 0xFD of the current dive
|
|
977 ;
|
|
978 ;; Set pointer to Byte after the final "0xFD 0xFD"
|
|
979 ; decf_eeprom_address d'1' ; Macro, that subtracts 8Bit from eeprom_address:2 with banking at 0x8000
|
|
980 ; movff eeprom_address+0,divemins+0
|
|
981 ; movff eeprom_address+1,divemins+1
|
|
982 ;
|
|
983 ;; eeprom_header_address:2 + 1 -> set to the first 0xFA of the 0xFA 0xFA start bytes of the header
|
|
984 ; movlw d'1' ;
|
|
985 ; addwf eeprom_header_address+0,F
|
|
986 ; movlw d'0'
|
|
987 ; addwfc eeprom_header_address+1,F ; eeprom_header_address:2 + 1
|
|
988 ; btfsc eeprom_header_address+1,7 ; at 7FFF?
|
|
989 ; clrf eeprom_header_address+0 ; Yes, clear address (+0 first!)
|
|
990 ; btfsc eeprom_header_address+1,7 ; at 7FFF?
|
|
991 ; clrf eeprom_header_address+1 ; Yes, clear address
|
|
992 ;
|
|
993 ; movff divemins+0,eeprom_address+0
|
|
994 ; movff divemins+1,eeprom_address+1 ; Read source
|
|
995 ; call I2CREAD ; reads one byte (Slow! Better use Blockread!)
|
|
996 ; movwf profile_temp+0
|
|
997 ; movlw 0xFE
|
|
998 ; cpfseq profile_temp+0
|
|
999 ; bra profileview_menu_delete_notlast ; we're not deleting the last dive....
|
|
1000 ;
|
|
1001 ;; Just move the 0xFE after the dive and delete the rest with 0xFF
|
|
1002 ; movff eeprom_header_address+0, eeprom_address+0
|
|
1003 ; movff eeprom_header_address+1, eeprom_address+1 ; Write target
|
|
1004 ; movlw 0xFE
|
|
1005 ; call I2CWRITE ; Write the byte
|
|
1006 ;
|
|
1007 ;; Now, delete everything _between_ eeprom_header_address and divemins:2+2 with 0xFF
|
|
1008 ; movlw d'1' ;
|
|
1009 ; addwf eeprom_header_address+0,F
|
|
1010 ; movlw d'0'
|
|
1011 ; addwfc eeprom_header_address+1,F ; eeprom_header_address:2 + 1
|
|
1012 ; btfsc eeprom_header_address+1,7 ; at 7FFF?
|
|
1013 ; clrf eeprom_header_address+0 ; Yes, clear address (+0 first!)
|
|
1014 ; btfsc eeprom_header_address+1,7 ; at 7FFF?
|
|
1015 ; clrf eeprom_header_address+1 ; Yes, clear address
|
|
1016 ;
|
0
|
1017 ; movff eeprom_header_address+0,eeprom_address+0
|
|
1018 ; movff eeprom_header_address+1,eeprom_address+1
|
33
|
1019 ;
|
|
1020 ; movlw d'1' ;
|
|
1021 ; addwf divemins+0,F
|
|
1022 ; movlw d'0'
|
|
1023 ; addwfc divemins+1,F ; divemins:2 + 1
|
|
1024 ; btfss divemins+1,7 ; at 7FFF?
|
|
1025 ; bra profileview_menu_delete_loop2a ; Skip
|
|
1026 ; clrf divemins+0 ; Yes, clear address
|
|
1027 ; clrf divemins+1
|
|
1028 ;
|
|
1029 ;; movff eeprom_header_address+0,eeprom_address+0
|
|
1030 ;; movff eeprom_header_address+1,eeprom_address+1
|
|
1031 ;
|
|
1032 ;
|
|
1033 ;profileview_menu_delete_loop2a:
|
|
1034 ; movlw 0xFF
|
|
1035 ; call I2CWRITE ; Write the byte
|
|
1036 ;
|
|
1037 ; incf_eeprom_address d'1' ; Macro, that adds 8Bit to eeprom_address:2 with banking at 0x8000
|
|
1038 ;
|
|
1039 ; movff divemins+0,sub_a+0
|
|
1040 ; movff divemins+1,sub_a+1
|
|
1041 ; movff eeprom_address+0,sub_b+0
|
|
1042 ; movff eeprom_address+1,sub_b+1
|
|
1043 ; call sub16 ; sub_c = sub_a - sub_b
|
|
1044 ; tstfsz sub_c+0 ; Done (Result=Zero?) ?
|
|
1045 ; bra profileview_menu_delete_loop2a ; No, continue
|
|
1046 ; tstfsz sub_c+1 ; Done (Result=Zero?) ?
|
|
1047 ; bra profileview_menu_delete_loop2a ; No, continue
|
|
1048 ; goto menu_logbook ; Return to list when done deleting
|
|
1049 ;
|
|
1050 ;profileview_menu_delete_notlast:
|
|
1051 ;; Move everything byte-wise from divemins:2 to eeprom_header_address:2 until 0xFD 0xFD 0xFE is found and were moved
|
|
1052 ; call get_free_EEPROM_location ; Searches 0xFD, 0xFD, 0xFE and sets Pointer to 0xFE
|
|
1053 ;
|
|
1054 ; incf_eeprom_address d'2' ; Macro, that adds 8Bit to eeprom_address:2 with banking at 0x8000
|
|
1055 ; movff eeprom_address+0,profile_temp+0
|
|
1056 ; movff eeprom_address+1,profile_temp+1
|
|
1057 ;; holds now address of 0xFE + 2 (Abort condition....)
|
|
1058 ; decf_eeprom_address d'2' ; Macro, that subtracts 8Bit from eeprom_address:2 with banking at 0x8000
|
|
1059 ;; holds now address of 0xFE again
|
|
1060 ; movff eeprom_address+0,divemins+0
|
|
1061 ; movff eeprom_address+1,divemins+1 ; Copy to working read registers
|
|
1062 ;
|
|
1063 ;profileview_menu_delete_loop3:
|
|
1064 ; movff divemins+0,eeprom_address+0
|
|
1065 ; movff divemins+1,eeprom_address+1 ; Read source
|
|
1066 ; call I2CREAD ; reads one byte (Slow! Better use Blockread!)
|
|
1067 ; movff eeprom_header_address+0, eeprom_address+0
|
|
1068 ; movff eeprom_header_address+1, eeprom_address+1 ; Write target
|
|
1069 ; call I2CWRITE ; Write the byte
|
|
1070 ;
|
|
1071 ; movff divemins+0,eeprom_address+0
|
|
1072 ; movff divemins+1,eeprom_address+1 ; Set to source again
|
|
1073 ; movlw 0xFF
|
|
1074 ; call I2CWRITE ; Delete the source....
|
|
1075 ;
|
|
1076 ; movlw d'1'
|
|
1077 ; addwf divemins+0,F ; Increase source (Divemins:2)
|
|
1078 ; movlw d'0'
|
|
1079 ; addwfc divemins+1,F
|
|
1080 ; btfsc divemins+1,7 ; at 0x8000?
|
|
1081 ; clrf divemins+0 ; Yes, clear address (+0 first!)
|
|
1082 ; btfsc divemins+1,7 ; at 0x8000?
|
|
1083 ; clrf divemins+1 ; Yes, clear address
|
|
1084 ;
|
|
1085 ; movlw d'1' ; Increase target (eeprom_header_address:2)
|
|
1086 ; addwf eeprom_header_address+0,F
|
|
1087 ; movlw d'0'
|
|
1088 ; addwfc eeprom_header_address+1,F ; eeprom_header_address:2 + 1
|
|
1089 ; btfsc eeprom_header_address+1,7 ; at 7FFF?
|
|
1090 ; clrf eeprom_header_address+0 ; Yes, clear address (+0 first!)
|
|
1091 ; btfsc eeprom_header_address+1,7 ; at 7FFF?
|
|
1092 ; clrf eeprom_header_address+1 ; Yes, clear address
|
|
1093 ;
|
|
1094 ; movff divemins+0,sub_a+0
|
|
1095 ; movff divemins+1,sub_a+1
|
|
1096 ; movff profile_temp+0,sub_b+0
|
|
1097 ; movff profile_temp+1,sub_b+1
|
|
1098 ; call sub16 ; sub_c = sub_a - sub_b
|
|
1099 ; tstfsz sub_c+0 ; Done (Result=Zero?) ?
|
|
1100 ; bra profileview_menu_delete_loop3 ; No, continue
|
|
1101 ; tstfsz sub_c+1 ; Done (Result=Zero?) ?
|
|
1102 ; bra profileview_menu_delete_loop3 ; No, continue
|
|
1103 ;
|
|
1104 ; goto menu_logbook ; Return to list when done deleting
|
0
|
1105
|
|
1106
|
|
1107 |