annotate code_part1/OSTC_code_asm_part1/menu_logbook.asm @ 244:976260083540

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