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
|
123
|
265 STRCPY "#"
|
0
|
266
|
|
267 GETCUSTOM15 .28 ; Logbook Offset -> lo, hi
|
|
268 tstfsz lo ; lo=0?
|
|
269 bra display_profile_offset1 ; No, adjust offset
|
|
270 tstfsz hi ; hi=0?
|
|
271 bra display_profile_offset1 ; No, adjust offset
|
|
272 bra display_profile_offset2 ; lo=0 and hi=0 -> skip Offset routine
|
|
273
|
|
274 display_profile_offset1:
|
|
275 movlw d'1'
|
|
276 addwf lo,F
|
|
277 movlw d'0'
|
|
278 addwfc hi,F ; hi:lo = hi:lo + 1
|
|
279 movff lo,sub_a+0
|
|
280 movff hi,sub_a+1
|
|
281 movff divesecs,sub_b+0
|
|
282 clrf sub_b+1
|
|
283 call sub16 ; sub_c = sub_a - sub_b
|
|
284 movff sub_c+0,lo
|
|
285 movff sub_c+1,hi
|
|
286 bsf leftbind
|
|
287 output_16dp d'10' ; # of dive with offset
|
|
288 bra display_profile_offset3 ; Skip normal routine
|
|
289
|
|
290 display_profile_offset2:
|
|
291 movff divesecs,lo
|
|
292 output_99x ; # of dive
|
|
293
|
|
294 display_profile_offset3:
|
123
|
295 PUTC ' '
|
0
|
296 call I2CREAD2
|
|
297 movff SSPBUF,lo ;
|
|
298
|
|
299 call I2CREAD2 ; Skip Profile version
|
|
300 movff SSPBUF,lo ; read month
|
|
301
|
41
|
302 ; movff eeprom_address+0, EventByte ; Store current EEPROM position
|
|
303 ; movff eeprom_address+1, ProfileFlagByte
|
0
|
304 ; Offset to SamplingRate
|
|
305 incf_eeprom_address d'32' ; Macro, that adds 8Bit to eeprom_address:2 with banking at 0x8000
|
|
306 call I2CREAD ; Read Sampling rate
|
|
307 movff SSPBUF,samplesecs_value ; Copy sampling rate
|
41
|
308 decf_eeprom_address d'32' ; Macro, that subtracts 8Bit from eeprom_address:2 with banking at 0x8000
|
|
309 ; movff EventByte, eeprom_address+0 ; Re-Store current EEPROM position
|
|
310 ; movff ProfileFlagByte, eeprom_address+1 ; Re-Store current EEPROM position
|
0
|
311
|
|
312 ;display_profile2a:
|
|
313
|
|
314 movff lo,convert_value_temp+0 ; Month (in lo, see above)
|
|
315 call I2CREAD2 ; Day
|
|
316 movff SSPBUF,convert_value_temp+1
|
|
317 call I2CREAD2 ; Year
|
|
318 movff SSPBUF,convert_value_temp+2
|
|
319 call PLED_convert_date ; converts into "DD/MM/YY" or "MM/DD/YY" or "YY/MM/DD" in postinc2
|
|
320
|
123
|
321 PUTC ' '
|
0
|
322 call I2CREAD2 ; hour
|
|
323 movff SSPBUF,lo
|
|
324 output_99x
|
123
|
325 PUTC ':'
|
0
|
326 call I2CREAD2 ; Minute
|
|
327 movff SSPBUF,lo
|
|
328 output_99x
|
|
329 call word_processor ; Display 1st row of details
|
|
330
|
|
331 WIN_TOP .25
|
|
332 WIN_LEFT .05
|
|
333 lfsr FSR2,letter
|
|
334 call I2CREAD2
|
|
335 movff SSPBUF,lo
|
|
336 call I2CREAD2
|
|
337 movff SSPBUF,hi
|
|
338 movff lo,xA+0 ; calculate y-scale for profile display
|
|
339 movff hi,xA+1
|
|
340 movlw d'164' ; 164pixel height available
|
|
341 movwf xB+0
|
|
342 clrf xB+1
|
|
343 call div16x16 ; does xA/xB=xC
|
|
344 movff xC+0,sim_pressure+0 ; holds LOW byte of y-scale (mbar/pixel!)
|
|
345 movff xC+1,sim_pressure+1 ; holds HIGH byte of y-scale (mbar/pixel!)
|
|
346 incf sim_pressure+0,F ; increase one, because there may be a remainder
|
|
347 movlw d'0'
|
|
348 addwfc sim_pressure+1,F
|
|
349
|
|
350 bsf leftbind
|
|
351 output_16dp d'3' ; max. depth
|
123
|
352 STRCAT "m "
|
0
|
353 call I2CREAD2
|
|
354 movff SSPBUF,lo
|
|
355 call I2CREAD2
|
|
356 movff SSPBUF,hi
|
|
357
|
|
358 movff lo,xA+0 ; calculate x-scale for profile display
|
|
359 movff hi,xA+1 ; calculate total diveseconds first
|
|
360 movlw d'60' ; 60seconds are one minute
|
|
361 movwf xB+0
|
|
362 clrf xB+1
|
|
363 call mult16x16 ; result is in xC:2 !
|
|
364
|
|
365 bsf leftbind
|
|
366 output_16 ; divetime minutes
|
123
|
367 PUTC d'39'
|
0
|
368 call I2CREAD2
|
|
369 movff SSPBUF,lo
|
|
370 movf lo,W ; add seconds to total seconds
|
|
371 addwf xC+0
|
|
372 movlw d'0'
|
|
373 addwfc xC+1 ; xC:2 now holds total dive seconds!
|
|
374 movff xC+0,xA+0 ; now calculate x-scale value
|
|
375 movff xC+1,xA+1
|
|
376 movlw d'159' ; 159pix width available
|
|
377 movwf xB+0
|
|
378 clrf xB+1
|
|
379 call div16x16 ; xA/xB=xC
|
|
380 movff xC+0,xA+0
|
|
381 movff xC+1,xA+1
|
|
382 movf samplesecs_value,W ; devide through sample interval!
|
|
383 movwf xB+0
|
|
384 clrf xB+1
|
|
385 call div16x16 ; xA/xB=xC
|
|
386 movff xC+0,profile_temp+0 ; store value (use any #xC sample, skip xC-1) into temp registers
|
|
387 movff xC+1,profile_temp+1 ; store value (use any #xC sample, skip xC-1) into temp registers
|
|
388 incf profile_temp+0,F ; increase one, because there may be a remainder
|
|
389 movlw d'0'
|
|
390 addwfc profile_temp+1,F
|
|
391
|
|
392 bsf leftbind
|
|
393 output_99x ; divetime seconds
|
123
|
394 STRCAT "\" "
|
0
|
395 call I2CREAD2
|
|
396 movff SSPBUF,lo
|
|
397 call I2CREAD2
|
|
398 movff SSPBUF,hi
|
|
399 movlw d'3'
|
|
400 movwf ignore_digits
|
|
401 bsf leftbind
|
|
402 output_16dp d'2' ; temperature
|
123
|
403 STRCAT_PRINT "°C" ; Display 2nd row of details
|
0
|
404
|
|
405 WIN_TOP .50
|
|
406 WIN_LEFT .05
|
|
407 lfsr FSR2,letter
|
|
408
|
|
409 call I2CREAD2
|
|
410 movff SSPBUF,lo
|
|
411 call I2CREAD2
|
|
412 movff SSPBUF,hi
|
|
413 bsf leftbind
|
|
414 output_16 ; Air pressure before dive
|
123
|
415 STRCAT "mbar Desat "
|
0
|
416
|
|
417 call I2CREAD2
|
|
418 movff SSPBUF,lo
|
|
419 call I2CREAD2
|
|
420 movff SSPBUF,hi
|
|
421 call convert_time ; converts hi:lo in minutes to hours (hi) and minutes (lo)
|
|
422 bsf leftbind
|
|
423 movf lo,W
|
|
424 movff hi,lo
|
|
425 movwf hi ; exchange lo and hi...
|
|
426 output_8 ; Hours
|
123
|
427 PUTC ':'
|
0
|
428 movff hi,lo ; Minutes
|
|
429 output_99x
|
|
430 bcf leftbind
|
|
431 call word_processor ; display 3rd page of details
|
|
432
|
|
433 call I2CREAD2 ; Skip Gas1 current O2
|
|
434 call I2CREAD2 ; Skip Gas1 current HE
|
|
435 call I2CREAD2 ; Skip Gas2 current O2
|
|
436 call I2CREAD2 ; Skip Gas2 current HE
|
|
437 call I2CREAD2 ; Skip Gas3 current O2
|
|
438 call I2CREAD2 ; Skip Gas3 current HE
|
|
439 call I2CREAD2 ; Skip Gas4 current O2
|
|
440 call I2CREAD2 ; Skip Gas4 current HE
|
|
441 call I2CREAD2 ; Skip Gas5 current O2
|
|
442 call I2CREAD2 ; Skip Gas5 current HE
|
|
443 call I2CREAD2 ; Skip Gas6 current O2
|
|
444 call I2CREAD2 ; Skip Gas6 current HE
|
|
445 call I2CREAD2 ; Skip Start Gas
|
|
446 call I2CREAD2 ; Skip Firmware x
|
|
447 call I2CREAD2 ; Skip Firmware y
|
|
448 call I2CREAD2 ; Skip battery
|
|
449 call I2CREAD2 ; Skip battery
|
|
450 call I2CREAD2 ; Skip Sampling rate
|
|
451 call I2CREAD2 ; Read divisor
|
|
452 movff SSPBUF,divisor_temperature ; Store divisor
|
|
453 bcf divisor_temperature,4 ; Clear information length
|
|
454 bcf divisor_temperature,5
|
|
455 bcf divisor_temperature,6
|
|
456 bcf divisor_temperature,7
|
|
457 incf divisor_temperature,F ; increase divisor
|
|
458 movff divisor_temperature,logbook_temp1 ; Store as temp, too
|
|
459 call I2CREAD2 ; Read divisor
|
|
460 movff SSPBUF,divisor_deco ; Store divisor
|
|
461 bcf divisor_deco,4 ; Clear information length
|
|
462 bcf divisor_deco,5
|
|
463 bcf divisor_deco,6
|
|
464 bcf divisor_deco,7
|
|
465 movff divisor_deco,logbook_temp2 ; Store as temp, too
|
|
466 call I2CREAD2 ; Read divisor
|
|
467 movff SSPBUF,divisor_tank ; Store divisor
|
|
468 call I2CREAD2 ; Read divisor
|
|
469 movff SSPBUF,divisor_ppo2 ; Store divisor
|
|
470 call I2CREAD2 ; Read divisor
|
|
471 movff SSPBUF,divisor_deco_debug ; Store divisor
|
|
472 call I2CREAD2 ; Read divisor
|
|
473 movff SSPBUF,divisor_nuy2 ; Store divisor
|
|
474 call I2CREAD2 ; Read Salinity
|
|
475 call I2CREAD2 ; Skip Dummy byte
|
|
476
|
|
477 display_profile2d:
|
|
478 ; Start Profile display
|
|
479
|
|
480 movlw color_deepblue
|
123
|
481 WIN_BOX_COLOR .75, .239, .0, .159
|
0
|
482
|
|
483 call I2CREAD2 ; skip 0xFB (Header-end)
|
|
484 clrf timeout_counter2 ; here: used as counter for depth readings
|
|
485 call I2CREAD2 ; skip 0xFB (Header-end)
|
|
486 movlw d'158'
|
|
487 movwf ignore_digits ; here: used as counter for x-pixels
|
|
488 bcf second_FD ; clear flag
|
|
489 movlw d'5'
|
|
490 movwf timeout_counter3 ; here: used as colum x2 (Start at Colum 5)
|
|
491 movlw d'75' ; Zero-m row
|
|
492 movwf apnoe_mins ; here: used for fill between rows
|
|
493 incf timeout_counter3,W ; Init Column
|
|
494 call PLED_SetColumnPixel ; pixel x2
|
|
495
|
|
496 profile_display_loop:
|
|
497 movff profile_temp+0,profile_temp2+0
|
|
498 movff profile_temp+1,profile_temp2+1 ; 16Bit x-scaler
|
|
499 incf profile_temp2+1,F
|
42
|
500 tstfsz profile_temp2+0 ; Must not be Zero
|
|
501 bra profile_display_loop2 ; Not Zero!
|
|
502 incf profile_temp2+0,F ; Zero, Increase!
|
0
|
503
|
|
504 profile_display_loop2:
|
|
505 rcall profile_view_get_depth ; reads depth, ignores temp and profile data -> hi, lo
|
|
506
|
|
507 btfsc second_FD ; end-of profile reached?
|
|
508 bra profile_display_loop_done ; Yes, skip all remaining pixels
|
|
509
|
|
510 movff sim_pressure+0,xB+0 ; devide pressure in mbar/quant for row offsett
|
|
511 movff sim_pressure+1,xB+1
|
|
512 movff lo,xA+0
|
|
513 movff hi,xA+1
|
|
514 call div16x16 ; xA/xB=xC
|
|
515 movlw d'75'
|
|
516 addwf xC+0,F ; add 75 pixel offset to result
|
41
|
517
|
44
|
518 btfsc STATUS,C ; Ignore potential profile errors
|
|
519 movff apnoe_mins,xC+0
|
41
|
520
|
0
|
521 call profile_display_fill ; In this column between this row (xC+0) and the last row (apnoe_mins)
|
|
522 movff xC+0,apnoe_mins ; Store last row for fill routine
|
|
523 movf xC+0,W
|
|
524 call PLED_SetRow ; 0...259
|
|
525
|
|
526 incf timeout_counter3,F
|
|
527 movf timeout_counter3,W
|
|
528 call PLED_SetColumnPixel ; pixel x2
|
3
|
529 call PLED_standard_color
|
0
|
530 call PLED_PxlWrite ; Write two pixels
|
|
531
|
|
532 profile_display_skip_loop1: ; skips readings!
|
|
533 dcfsnz profile_temp2+0,F
|
|
534 bra profile_display_loop3 ; check 16bit....
|
|
535
|
|
536 rcall profile_view_get_depth ; reads depth, ignores temp and profile data
|
|
537 bra profile_display_skip_loop1
|
|
538
|
|
539 profile_display_loop3:
|
|
540 decfsz profile_temp2+1,F ; 16 bit x-scaler test
|
|
541 bra profile_display_skip_loop1 ; skips readings!
|
|
542
|
|
543 decfsz ignore_digits,F ; counts x-pixels to zero
|
|
544 bra profile_display_loop ; Not ready yet
|
|
545 ; Done.
|
|
546 profile_display_loop_done:
|
|
547 bcf sleepmode ; clear some flags
|
|
548 bcf menubit2
|
|
549 bcf menubit3
|
|
550 bcf switch_right
|
|
551 bcf switch_left
|
|
552 clrf timeout_counter2
|
|
553
|
|
554 display_profile_loop:
|
|
555 call check_switches_logbook
|
|
556
|
|
557 btfsc menubit2 ; SET/MENU?
|
|
558 bra exit_profileview ; back to list
|
|
559
|
|
560 btfsc menubit3 ; ENTER?
|
33
|
561 bra exit_profileview ; back to list
|
|
562 ; bra profileview_menu ; Switch to the Profileview menu
|
0
|
563
|
|
564 btfsc onesecupdate
|
|
565 call timeout_surfmode ; timeout
|
|
566
|
|
567 btfsc onesecupdate
|
|
568 call set_dive_modes ; check, if divemode must be entered
|
|
569
|
|
570 bcf onesecupdate ; one second update
|
|
571
|
|
572 btfsc sleepmode ; Timeout?
|
|
573 bra exit_profileview ; back to list
|
|
574
|
|
575 btfsc divemode
|
|
576 goto restart ; Enter Divemode if required
|
|
577
|
|
578 bra display_profile_loop ; wait for something to do
|
|
579
|
|
580 profile_display_fill: ; In this column between this row (xC+0) and the last row (apnoe_mins), keep xC+0!!
|
|
581 ; First, check if xC+0>apnoe_mins or xC+0<aponoe_mins
|
|
582 movf xC+0,W
|
|
583 cpfseq apnoe_mins ; xC+0 = apone_mins?
|
|
584 bra profile_display_fill2 ; No!
|
|
585 return
|
130
|
586
|
0
|
587 profile_display_fill2:
|
|
588 movf xC+0,W
|
|
589 cpfsgt apnoe_mins ; apnoe_mins>xC+0?
|
|
590 bra profile_display_fill_up ; Yes!
|
|
591
|
|
592 profile_display_fill_down: ; Fill downwards from apone_mins to xC+0!
|
|
593 movff apnoe_mins,xC+1 ; Copy
|
|
594 profile_display_fill_down2: ; Loop
|
|
595 decf xC+1,F
|
|
596 movf xC+1,W ; Row
|
|
597 call PLED_SetRow ; 0...259
|
130
|
598
|
3
|
599 call PLED_standard_color
|
|
600
|
0
|
601 call PLED_PxlWrite_Single; Write one Pixel
|
|
602 movf xC+0,W
|
|
603 cpfseq xC+1 ; Loop until xC+1=xC+0
|
|
604 bra profile_display_fill_down2
|
|
605 return ; apnoe_mins and xC+0 are untouched
|
|
606
|
|
607 profile_display_fill_up: ; Fill upwards from xC+0 to apone_mins!
|
|
608 movff xC+0,xC+1 ; Copy
|
|
609 profile_display_fill_up2: ; Loop
|
|
610 decf xC+1,F
|
|
611 movf xC+1,W ; Row
|
|
612 call PLED_SetRow ; 0...259
|
130
|
613
|
3
|
614 call PLED_standard_color
|
|
615
|
0
|
616 call PLED_PxlWrite_Single; Write one Pixel
|
|
617 movf apnoe_mins,W
|
|
618 cpfseq xC+1 ; Loop until xC+1=apnoe_mins
|
|
619 bra profile_display_fill_up2
|
|
620 return ; apnoe_mins and xC+0 are untouched
|
|
621
|
|
622 profile_view_get_depth:
|
|
623 call I2CREAD2 ; read first depth
|
|
624 movff SSPBUF,lo ; low value
|
|
625 call I2CREAD2 ; read first depth
|
|
626 movff SSPBUF,hi ; high value
|
|
627 call I2CREAD2 ; read Profile Flag Byte
|
|
628 movff SSPBUF,timeout_counter2 ; Read Profile Flag Byte
|
|
629 bcf event_occured ; clear flag
|
|
630 btfsc timeout_counter2,7
|
|
631 bsf event_occured ; We also have an Event byte!
|
|
632 bcf timeout_counter2,7 ; Clear Event Byte Flag (If any)
|
|
633 ; timeout_counter2 now holds the number of additional bytes to ignore (0-127)
|
|
634 movlw 0xFD ; end of profile bytes?
|
|
635 cpfseq lo
|
|
636 bra profile_view_get_depth_new1 ; no 0xFD
|
|
637 movlw 0xFD ; end of profile bytes?
|
|
638 cpfseq hi
|
|
639 bra profile_view_get_depth_new1 ; no 0xFD
|
|
640 bsf second_FD ; End found! Set Flag! Skip remaining pixels!
|
|
641 return
|
|
642
|
|
643 profile_view_get_depth_new1:
|
41
|
644 ;bra profile_view_get_depth_new1_1 ; Skip all data to ignore...
|
0
|
645
|
41
|
646 ; decfsz divisor_deco,F ; Check divisor
|
|
647 ; bra profile_view_get_depth_new1_1 ; Divisor not zero...
|
|
648 ;
|
|
649 ;; tstfsz timeout_counter2 ; Any bytes to ignore
|
|
650 ;; bra profile_view_get_depth_new2 ; Yes (1-127)
|
|
651 ;; return ; No (0)
|
|
652 ;
|
|
653 ; movff logbook_temp2,divisor_deco ; Restore divisor value!
|
|
654 ;; check for event byte and the extra informations
|
|
655 ; btfss event_occured
|
|
656 ; bra profile_view_get_depth_new2 ; No event!
|
|
657 ;
|
|
658 ; call I2CREAD2 ; read event byte
|
|
659 ; decf timeout_counter2,F ; Reduce number of bytes to ignore
|
|
660 ;
|
|
661 ; movlw d'0' ; Extra bytes to ignore because of event
|
|
662 ; btfsc SSPBUF,4
|
|
663 ; addlw d'2' ; two bytes for manual gas set
|
|
664 ; btfsc SSPBUF,5
|
|
665 ; addlw d'1' ; one byte for gas change
|
|
666 ; movwf logbook_temp5 ; store extra bytes to ignore
|
|
667 ;
|
|
668 ; tstfsz logbook_temp5 ; Anything to ignore?
|
|
669 ; bra profile_view_get_depth_new1_2 ; Yes
|
|
670 ; bra profile_view_get_depth_new2 ; No, continue with normal routine
|
|
671 ;
|
|
672 ;profile_view_get_depth_new1_2:
|
|
673 ; call I2CREAD2 ; ignore byte
|
|
674 ; decf timeout_counter2,F ; Reduce number of bytes to ignore
|
|
675 ; decfsz logbook_temp5,F ; reduce extra bytes ignore counter
|
|
676 ; bra profile_view_get_depth_new1_2 ; loop
|
|
677 ;
|
|
678 ;profile_view_get_depth_new2:
|
|
679 ; movlw d'4' ; Temp (2) and Deko (2) in the sample?
|
|
680 ; cpfseq timeout_counter2
|
|
681 ; bra profile_view_get_depth_new2_2 ; No
|
|
682 ; ; Yes, skip Temp!
|
|
683 ; call I2CREAD2 ; ignore byte
|
|
684 ; decf timeout_counter2,F ; Reduce number of bytes to ignore
|
|
685 ; call I2CREAD2 ; ignore byte
|
|
686 ; decf timeout_counter2,F ; Reduce number of bytes to ignore
|
|
687 ;
|
|
688 ;profile_view_get_depth_new2_2:
|
|
689 ; call I2CREAD2 ; ignore byte
|
|
690 ;
|
|
691 ; decfsz timeout_counter2,F ; reduce counter
|
|
692 ; bra profile_view_get_depth_new2_2; Loop
|
|
693 ; return
|
0
|
694
|
|
695 profile_view_get_depth_new1_1:
|
|
696 tstfsz timeout_counter2 ; Any bytes to ignore
|
|
697 bra profile_view_get_depth_new3 ; Yes (1-127)
|
|
698 return ; No (0)
|
|
699
|
|
700 ; timeout_counter2 now holds the number of additional bytes to ignore (0-127)
|
|
701 profile_view_get_depth_new3:
|
|
702 call I2CREAD2 ; ignore byte
|
|
703 decfsz timeout_counter2,F ; reduce counter
|
|
704 bra profile_view_get_depth_new3 ; Loop
|
|
705 return
|
|
706
|
|
707 exit_profileview:
|
|
708 bcf sleepmode
|
|
709 clrf timeout_counter2 ; restore all registers to build same page again
|
|
710 movff decodata+0,eeprom_address+0
|
|
711 movff decodata+1,eeprom_address+1
|
|
712 movff max_pressure+0,divemins+0
|
|
713 movff max_pressure+1,divemins+1
|
|
714 movff mintemp+0, divenumber
|
|
715 movff logbook_temp6,temp1
|
|
716 movff samplesecs,temp2
|
|
717 decf divenumber,F
|
|
718 bcf all_dives_shown
|
|
719
|
|
720 decf menupos2,F
|
|
721
|
|
722 clrf menupos3 ; here: used row on current page
|
|
723 movlw d'5'
|
|
724 movwf menupos ; here: active row on current page
|
|
725 incf menupos2,F ; start new page
|
|
726 call PLED_ClearScreen ; clear details/profile
|
|
727 bra menu_logbook1b ; start search
|
|
728
|
|
729 next_logbook2:
|
|
730 btfsc all_dives_shown ; all shown
|
|
731 goto menu_logbook1 ; all reset
|
|
732
|
|
733 clrf menupos3
|
|
734 movlw d'5'
|
|
735 movwf menupos ;
|
|
736 incf menupos2,F ; start new screen
|
|
737 call PLED_ClearScreen
|
|
738
|
|
739 next_logbook:
|
|
740 movff eeprom_header_address+0,eeprom_address+0
|
|
741 movff eeprom_header_address+1,eeprom_address+1 ; continue search here
|
|
742 goto menu_logbook1b
|
|
743
|
|
744 check_switches_logbook:
|
|
745 btfsc switch_right
|
|
746 bsf menubit3
|
|
747 btfsc switch_left
|
|
748 bsf menubit2 ; Enter
|
|
749 return
|
|
750
|
|
751 next_logbook3:
|
|
752 incf menupos,F
|
|
753 movlw d'7'
|
|
754 cpfseq menupos ; =7?
|
|
755 bra next_logbook3a ; No
|
|
756 bra next_logbook2 ; yes, new page please
|
|
757
|
|
758 next_logbook3a:
|
|
759 incf menupos3,W ;
|
|
760 cpfseq menupos
|
|
761 bra next_logbook3b
|
|
762 movlw d'6'
|
|
763 movwf menupos ; Jump directly to exit if page is not full
|
|
764
|
|
765 next_logbook3b:
|
|
766 clrf timeout_counter2
|
|
767 call PLED_logbook_cursor
|
|
768
|
|
769 bcf switch_right
|
|
770 bcf menubit3 ; clear flag
|
|
771 bra menu_logbook_loop
|
|
772
|
|
773 display_listdive:
|
|
774 bsf logbook_page_not_empty ; Page not empty
|
|
775 incf menupos3,F
|
|
776
|
|
777 btfsc logbook_header_drawn ; "Logbook already displayed?
|
|
778 bra display_listdive1a
|
|
779 call PLED_topline_box ; Draw box
|
|
780 WIN_INVERT .1
|
|
781 DISPLAYTEXT .26 ; "Logbook"
|
|
782 WIN_INVERT .0
|
|
783 bsf logbook_header_drawn
|
|
784
|
|
785 display_listdive1a:
|
|
786 WIN_LEFT .20
|
|
787
|
|
788 movf menupos2,W
|
|
789 mullw d'5'
|
|
790 movf PRODL,W
|
|
791 subwf divenumber,W ; current row on page
|
|
792
|
|
793 mullw d'30' ; x30
|
|
794 movf PRODL,W ; is pixel-row for entry
|
|
795 addlw d'5' ; +5 Pixel, so list entries are at rows 35,65,95,125,155,185
|
|
796 movff WREG,win_top
|
|
797
|
|
798 lfsr FSR2,letter
|
|
799 movff divenumber,lo
|
|
800 output_99x ; # of dive
|
123
|
801 PUTC ' '
|
0
|
802 call I2CREAD2
|
|
803 movff SSPBUF,lo
|
|
804 movlw d'13'
|
|
805 cpfsgt lo ; Skip if lo>13
|
|
806 bra display_listdive2 ; use old format
|
|
807
|
|
808 call I2CREAD2 ; Skip Profile version
|
|
809 movff SSPBUF,lo ; in new format, read month
|
|
810
|
|
811 display_listdive2:
|
|
812 movff lo,convert_value_temp+0 ; Month (in lo, see above)
|
|
813 call I2CREAD2 ; Day
|
|
814 movff SSPBUF,convert_value_temp+1
|
|
815 call I2CREAD2 ; Year
|
|
816 movff SSPBUF,convert_value_temp+2
|
123
|
817 call PLED_convert_date_short ; converts into "DD/MM" or "MM/DD" or "MM/DD" in s
|
0
|
818
|
|
819
|
|
820 call I2CREAD2 ; hours (Skip)
|
|
821 call I2CREAD2 ; minutes (skip)
|
123
|
822 PUTC ' '
|
0
|
823 call I2CREAD2 ; Depth
|
|
824 movff SSPBUF,lo
|
|
825 call I2CREAD2
|
|
826 movff SSPBUF,hi
|
|
827 bsf leftbind
|
|
828 bsf ignore_digit5 ; Do not display 1cm figure
|
|
829 output_16dp d'3' ; max. depth
|
123
|
830 STRCAT "m "
|
0
|
831 call I2CREAD2
|
|
832 movff SSPBUF,lo
|
|
833 call I2CREAD2
|
|
834 movff SSPBUF,hi
|
|
835 bsf leftbind
|
|
836 output_16 ; Divetime minutes
|
123
|
837 STRCAT_PRINT "'" ; Display header-row in list
|
0
|
838 return
|
|
839
|
|
840
|
33
|
841 ;profileview_menu:
|
|
842 ; movlw d'1'
|
|
843 ; movwf menupos
|
|
844 ;profileview_menu1:
|
|
845 ; call PLED_clear_divemode_menu
|
|
846 ; call PLED_profileview_menu ; Displays Menu
|
|
847 ;profileview_menu2:
|
|
848 ; call PLED_divemenu_cursor
|
|
849 ; bcf sleepmode ; clear some flags
|
|
850 ; bcf menubit2
|
|
851 ; bcf menubit3
|
|
852 ; bcf switch_right
|
|
853 ; bcf switch_left
|
|
854 ; clrf timeout_counter2
|
|
855 ;
|
|
856 ;profileview_menu_loop:
|
|
857 ; call check_switches_logbook
|
|
858 ;
|
|
859 ; btfsc menubit3 ; SET/MENU?
|
|
860 ; bra profileview_menu_move_cursor; Move Cursor
|
|
861 ; btfsc menubit2 ; ENTER?
|
|
862 ; bra profileview_menu_do ; Do task
|
|
863 ;
|
|
864 ; btfsc onesecupdate
|
|
865 ; call timeout_surfmode ; timeout
|
|
866 ; btfsc onesecupdate
|
|
867 ; call set_dive_modes ; check, if divemode must be entered
|
|
868 ; bcf onesecupdate ; one second update
|
|
869 ; btfsc sleepmode ; Timeout?
|
|
870 ; bra exit_profileview ; back to list
|
|
871 ; btfsc divemode
|
|
872 ; goto restart ; Enter Divemode if required
|
|
873 ;
|
|
874 ; bra profileview_menu_loop ; wait for something to do
|
|
875 ;
|
|
876 ;profileview_menu_do:
|
17
|
877 ; dcfsnz menupos,F
|
33
|
878 ; bra exit_profileview ; back to list, quit profileview menu
|
|
879 ; dcfsnz menupos,F
|
|
880 ; bra profileview_menu_delete ; Delete Dive from external EEPROM
|
|
881 ;; dcfsnz menupos,F
|
|
882 ;; bra profileview_menu_format ; Delete all Dives from external EEPROM
|
|
883 ;;
|
|
884 ;profileview_menu_move_cursor:
|
|
885 ; incf menupos,F
|
|
886 ; movlw d'3' ; number of menu options+1
|
|
887 ; cpfseq menupos ; =limit?
|
|
888 ; bra profileview_menu_move_cursor2 ; No!
|
|
889 ; movlw d'1' ; Yes, reset to position 1!
|
|
890 ; movwf menupos
|
|
891 ;profileview_menu_move_cursor2:
|
|
892 ; bra profileview_menu2 ; Return to Profile Menu, also updates cursor
|
0
|
893
|
33
|
894 ;profileview_menu_format:
|
|
895 ; call PLED_confirmbox ; Returns WREG=0 for Cancel (Or Timeout) and WREG=1 for OK!
|
|
896 ;
|
|
897 ; movwf menupos ; Used as temp
|
|
898 ; tstfsz menupos
|
|
899 ; bra profileview_menu_format_loop2 ; Format now!
|
|
900 ;
|
|
901 ; bra exit_profileview ; back to list, quit profileview menu
|
|
902 ;
|
|
903 ;profileview_menu_format_loop2: ; Do now format!
|
|
904 ; call PLED_ClearScreen
|
|
905 ; DISPLAYTEXT .12 ; "Wait.."
|
|
906 ; call reset_external_eeprom ; delete profile memory
|
|
907 ; goto menu ; Return to Menu
|
0
|
908
|
33
|
909 ;profileview_menu_delete:
|
|
910 ; call PLED_confirmbox ; Returns WREG=0 for Cancel (Or Timeout) and WREG=1 for OK!
|
|
911 ; movwf menupos ; Used as temp
|
|
912 ; tstfsz menupos
|
|
913 ; bra profileview_menu_delete_loop2 ; Delete now!
|
|
914 ;
|
|
915 ; bra exit_profileview ; back to list, quit profileview menu
|
|
916 ;
|
|
917 ;profileview_menu_delete_loop2: ; Do now delete
|
|
918 ; call PLED_ClearScreen
|
|
919 ; DISPLAYTEXT .12 ; "Wait.."
|
|
920 ;
|
|
921 ;; eeprom_address:2 is set to the second byte after the ending 0xFD 0xFD
|
|
922 ;; eeprom_address:2 - 1 -> set to the last byte after the 0xFD 0xFD of the current dive
|
|
923 ;
|
|
924 ;; Set pointer to Byte after the final "0xFD 0xFD"
|
|
925 ; decf_eeprom_address d'1' ; Macro, that subtracts 8Bit from eeprom_address:2 with banking at 0x8000
|
|
926 ; movff eeprom_address+0,divemins+0
|
|
927 ; movff eeprom_address+1,divemins+1
|
|
928 ;
|
|
929 ;; eeprom_header_address:2 + 1 -> set to the first 0xFA of the 0xFA 0xFA start bytes of the header
|
|
930 ; movlw d'1' ;
|
|
931 ; addwf eeprom_header_address+0,F
|
|
932 ; movlw d'0'
|
|
933 ; addwfc eeprom_header_address+1,F ; eeprom_header_address:2 + 1
|
|
934 ; btfsc eeprom_header_address+1,7 ; at 7FFF?
|
|
935 ; clrf eeprom_header_address+0 ; Yes, clear address (+0 first!)
|
|
936 ; btfsc eeprom_header_address+1,7 ; at 7FFF?
|
|
937 ; clrf eeprom_header_address+1 ; Yes, clear address
|
|
938 ;
|
|
939 ; movff divemins+0,eeprom_address+0
|
|
940 ; movff divemins+1,eeprom_address+1 ; Read source
|
|
941 ; call I2CREAD ; reads one byte (Slow! Better use Blockread!)
|
|
942 ; movwf profile_temp+0
|
|
943 ; movlw 0xFE
|
|
944 ; cpfseq profile_temp+0
|
|
945 ; bra profileview_menu_delete_notlast ; we're not deleting the last dive....
|
|
946 ;
|
|
947 ;; Just move the 0xFE after the dive and delete the rest with 0xFF
|
|
948 ; movff eeprom_header_address+0, eeprom_address+0
|
|
949 ; movff eeprom_header_address+1, eeprom_address+1 ; Write target
|
|
950 ; movlw 0xFE
|
|
951 ; call I2CWRITE ; Write the byte
|
|
952 ;
|
|
953 ;; Now, delete everything _between_ eeprom_header_address and divemins:2+2 with 0xFF
|
|
954 ; movlw d'1' ;
|
|
955 ; addwf eeprom_header_address+0,F
|
|
956 ; movlw d'0'
|
|
957 ; addwfc eeprom_header_address+1,F ; eeprom_header_address:2 + 1
|
|
958 ; btfsc eeprom_header_address+1,7 ; at 7FFF?
|
|
959 ; clrf eeprom_header_address+0 ; Yes, clear address (+0 first!)
|
|
960 ; btfsc eeprom_header_address+1,7 ; at 7FFF?
|
|
961 ; clrf eeprom_header_address+1 ; Yes, clear address
|
|
962 ;
|
0
|
963 ; movff eeprom_header_address+0,eeprom_address+0
|
|
964 ; movff eeprom_header_address+1,eeprom_address+1
|
33
|
965 ;
|
|
966 ; movlw d'1' ;
|
|
967 ; addwf divemins+0,F
|
|
968 ; movlw d'0'
|
|
969 ; addwfc divemins+1,F ; divemins:2 + 1
|
|
970 ; btfss divemins+1,7 ; at 7FFF?
|
|
971 ; bra profileview_menu_delete_loop2a ; Skip
|
|
972 ; clrf divemins+0 ; Yes, clear address
|
|
973 ; clrf divemins+1
|
|
974 ;
|
|
975 ;; movff eeprom_header_address+0,eeprom_address+0
|
|
976 ;; movff eeprom_header_address+1,eeprom_address+1
|
|
977 ;
|
|
978 ;
|
|
979 ;profileview_menu_delete_loop2a:
|
|
980 ; movlw 0xFF
|
|
981 ; call I2CWRITE ; Write the byte
|
|
982 ;
|
|
983 ; incf_eeprom_address d'1' ; Macro, that adds 8Bit to eeprom_address:2 with banking at 0x8000
|
|
984 ;
|
|
985 ; movff divemins+0,sub_a+0
|
|
986 ; movff divemins+1,sub_a+1
|
|
987 ; movff eeprom_address+0,sub_b+0
|
|
988 ; movff eeprom_address+1,sub_b+1
|
|
989 ; call sub16 ; sub_c = sub_a - sub_b
|
|
990 ; tstfsz sub_c+0 ; Done (Result=Zero?) ?
|
|
991 ; bra profileview_menu_delete_loop2a ; No, continue
|
|
992 ; tstfsz sub_c+1 ; Done (Result=Zero?) ?
|
|
993 ; bra profileview_menu_delete_loop2a ; No, continue
|
|
994 ; goto menu_logbook ; Return to list when done deleting
|
|
995 ;
|
|
996 ;profileview_menu_delete_notlast:
|
|
997 ;; Move everything byte-wise from divemins:2 to eeprom_header_address:2 until 0xFD 0xFD 0xFE is found and were moved
|
|
998 ; call get_free_EEPROM_location ; Searches 0xFD, 0xFD, 0xFE and sets Pointer to 0xFE
|
|
999 ;
|
|
1000 ; incf_eeprom_address d'2' ; Macro, that adds 8Bit to eeprom_address:2 with banking at 0x8000
|
|
1001 ; movff eeprom_address+0,profile_temp+0
|
|
1002 ; movff eeprom_address+1,profile_temp+1
|
|
1003 ;; holds now address of 0xFE + 2 (Abort condition....)
|
|
1004 ; decf_eeprom_address d'2' ; Macro, that subtracts 8Bit from eeprom_address:2 with banking at 0x8000
|
|
1005 ;; holds now address of 0xFE again
|
|
1006 ; movff eeprom_address+0,divemins+0
|
|
1007 ; movff eeprom_address+1,divemins+1 ; Copy to working read registers
|
|
1008 ;
|
|
1009 ;profileview_menu_delete_loop3:
|
|
1010 ; movff divemins+0,eeprom_address+0
|
|
1011 ; movff divemins+1,eeprom_address+1 ; Read source
|
|
1012 ; call I2CREAD ; reads one byte (Slow! Better use Blockread!)
|
|
1013 ; movff eeprom_header_address+0, eeprom_address+0
|
|
1014 ; movff eeprom_header_address+1, eeprom_address+1 ; Write target
|
|
1015 ; call I2CWRITE ; Write the byte
|
|
1016 ;
|
|
1017 ; movff divemins+0,eeprom_address+0
|
|
1018 ; movff divemins+1,eeprom_address+1 ; Set to source again
|
|
1019 ; movlw 0xFF
|
|
1020 ; call I2CWRITE ; Delete the source....
|
|
1021 ;
|
|
1022 ; movlw d'1'
|
|
1023 ; addwf divemins+0,F ; Increase source (Divemins:2)
|
|
1024 ; movlw d'0'
|
|
1025 ; addwfc divemins+1,F
|
|
1026 ; btfsc divemins+1,7 ; at 0x8000?
|
|
1027 ; clrf divemins+0 ; Yes, clear address (+0 first!)
|
|
1028 ; btfsc divemins+1,7 ; at 0x8000?
|
|
1029 ; clrf divemins+1 ; Yes, clear address
|
|
1030 ;
|
|
1031 ; movlw d'1' ; Increase target (eeprom_header_address:2)
|
|
1032 ; addwf eeprom_header_address+0,F
|
|
1033 ; movlw d'0'
|
|
1034 ; addwfc eeprom_header_address+1,F ; eeprom_header_address:2 + 1
|
|
1035 ; btfsc eeprom_header_address+1,7 ; at 7FFF?
|
|
1036 ; clrf eeprom_header_address+0 ; Yes, clear address (+0 first!)
|
|
1037 ; btfsc eeprom_header_address+1,7 ; at 7FFF?
|
|
1038 ; clrf eeprom_header_address+1 ; Yes, clear address
|
|
1039 ;
|
|
1040 ; movff divemins+0,sub_a+0
|
|
1041 ; movff divemins+1,sub_a+1
|
|
1042 ; movff profile_temp+0,sub_b+0
|
|
1043 ; movff profile_temp+1,sub_b+1
|
|
1044 ; call sub16 ; sub_c = sub_a - sub_b
|
|
1045 ; tstfsz sub_c+0 ; Done (Result=Zero?) ?
|
|
1046 ; bra profileview_menu_delete_loop3 ; No, continue
|
|
1047 ; tstfsz sub_c+1 ; Done (Result=Zero?) ?
|
|
1048 ; bra profileview_menu_delete_loop3 ; No, continue
|
|
1049 ;
|
|
1050 ; goto menu_logbook ; Return to list when done deleting
|
0
|
1051
|
|
1052
|
|
1053 |