annotate code_part1/OSTC_code_asm_part1/menu_logbook.asm @ 142:8b75ba28d641

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