Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/pled_outputs.asm @ 285:8874b6cd8f36
small fix for the battery sign
author | heinrichsweikamp |
---|---|
date | Wed, 20 Apr 2011 06:54:33 +0200 |
parents | 4ec488f046f4 |
children | 5351d47ee28a |
rev | line source |
---|---|
0 | 1 |
2 ; OSTC - diving computer code | |
3 ; Copyright (C) 2008 HeinrichsWeikamp GbR | |
4 | |
5 ; This program is free software: you can redistribute it and/or modify | |
6 ; it under the terms of the GNU General Public License as published by | |
7 ; the Free Software Foundation, either version 3 of the License, or | |
8 ; (at your option) any later version. | |
9 | |
10 ; This program is distributed in the hope that it will be useful, | |
11 ; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 ; GNU General Public License for more details. | |
14 | |
15 ; You should have received a copy of the GNU General Public License | |
16 ; along with this program. If not, see <http://www.gnu.org/licenses/>. | |
17 | |
18 | |
19 ; routines for display outputs | |
20 ; written by: Matthias Heinrichs, info@heinrichsweikamp.com | |
21 ; written: 15/01/05 | |
124 | 22 ; |
23 ; History: | |
24 ; 2008-06-06 [MH] last updated | |
25 ; 2010-12-31 [jDG] Multi-page display for GF decoplan | |
128 | 26 ; 2011-01-04 [jDG] Saturation graphs in customview divemode |
124 | 27 ; |
0 | 28 ; known bugs: |
29 ; ToDo: More comments | |
30 | |
167 | 31 global PLED_divemask_color |
9 | 32 PLED_divemask_color: |
25 | 33 GETCUSTOM8 d'36' ; Divemask output color |
29 | 34 bra PLED_standard_color_0 |
9 | 35 |
167 | 36 global PLED_warnings_color |
25 | 37 PLED_warnings_color: |
38 GETCUSTOM8 d'37' ; Warnings output color | |
29 | 39 bra PLED_standard_color_0 |
40 | |
167 | 41 global PLED_standard_color |
29 | 42 PLED_standard_color: |
43 GETCUSTOM8 d'35' ; Standard output color | |
44 PLED_standard_color_0: ; Common entry point | |
45 movwf oled1_temp ; copy | |
46 movlw d'0' | |
47 cpfseq oled1_temp | |
48 bra PLED_standard_color_1 | |
49 bra PLED_standard_color2 | |
50 PLED_standard_color_1: | |
51 movlw d'4' | |
52 cpfseq oled1_temp | |
53 bra PLED_standard_color_2 | |
54 bra PLED_standard_color2 | |
55 PLED_standard_color_2: | |
56 movlw d'8' | |
57 cpfseq oled1_temp | |
58 bra PLED_standard_color_3 | |
59 bra PLED_standard_color2 | |
60 PLED_standard_color_3: | |
61 movlw d'192' | |
62 cpfseq oled1_temp | |
63 bra PLED_standard_color_4 | |
64 bra PLED_standard_color2 | |
65 PLED_standard_color_4: | |
66 movlw d'196' | |
67 cpfseq oled1_temp | |
68 bra PLED_standard_color_5 | |
69 bra PLED_standard_color2 | |
70 PLED_standard_color_5: | |
71 movlw d'200' | |
72 cpfseq oled1_temp | |
73 bra PLED_standard_color_6 | |
74 bra PLED_standard_color2 | |
75 PLED_standard_color_6: | |
76 movf oled1_temp,W ; Color should be OK... | |
77 call PLED_set_color | |
78 return | |
79 PLED_standard_color2: | |
77 | 80 movlw 0xFF ; Force full white. |
25 | 81 call PLED_set_color |
82 return | |
3 | 83 |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
84 PLED_color_code macro color_code_temp |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
85 movlw color_code_temp |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
86 call PLED_color_code1 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
87 endm |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
88 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
89 PLED_color_code1: ; Color-codes the output, if required |
142 | 90 dcfsnz WREG |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
91 bra PLED_color_code_depth ; CF43 [mBar], 16Bit |
142 | 92 dcfsnz WREG |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
93 bra PLED_color_code_cns ; CF44 [%] |
142 | 94 dcfsnz WREG |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
95 bra PLED_color_code_gf ; CF45 [%] |
142 | 96 dcfsnz WREG |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
97 bra PLED_color_code_ppo2 ; CF46 [cBar] |
142 | 98 dcfsnz WREG |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
99 bra PLED_color_code_velocity ; CF47 [m/min] |
142 | 100 dcfsnz WREG |
69 | 101 bra PLED_color_code_ceiling ; Show warning if CF41=1 and current depth>shown ceiling |
142 | 102 dcfsnz WREG |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
103 bra PLED_color_code_gaslist ; Color-code current row in Gaslist (%O2 in "EEDATA") |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
104 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
105 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
106 PLED_color_code_gaslist: ; %O2 in "EEDATA" |
74 | 107 ; Check very high ppO2 manually |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
108 movff amb_pressure+0,xA+0 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
109 movff amb_pressure+1,xA+1 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
110 movlw d'10' |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
111 movwf xB+0 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
112 clrf xB+1 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
113 call div16x16 ; xC=p_amb/10 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
114 movff xC+0,xA+0 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
115 movff xC+1,xA+1 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
116 movff EEDATA,xB+0 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
117 clrf xB+1 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
118 call mult16x16 ; EEDATA * p_amb/10 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
119 |
74 | 120 tstfsz xC+2 ; char_I_O2_ratio * p_amb/10 > 65536, ppO2>6,55Bar? |
121 bra PLED_color_code_gaslist1 ; Yes, warn in warning color | |
122 | |
123 movff xC+0,sub_a+0 | |
124 movff xC+1,sub_a+1 | |
125 GETCUSTOM8 d'46' ; color-code ppO2 warning [cBar] | |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
126 mullw d'100' ; ppo2_warning_high*100 |
74 | 127 movff PRODL,sub_b+0 |
128 movff PRODH,sub_b+1 | |
129 call sub16 ; sub_c = sub_a - sub_b | |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
130 btfss neg_flag |
74 | 131 bra PLED_color_code_gaslist1; too high -> Warning Color! |
132 call PLED_standard_color | |
133 return | |
134 | |
135 PLED_color_code_gaslist1: | |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
136 call PLED_warnings_color |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
137 return |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
138 |
69 | 139 PLED_color_code_ceiling: |
140 GETCUSTOM8 d'40' ; =1: Warn at all? | |
141 movwf lo | |
142 movlw d'1' | |
143 cpfseq lo ; =1? | |
144 bra PLED_color_code_ceiling1 ; No, Set to default color | |
145 | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
146 movff char_O_first_deco_depth,lo ; Ceiling in m |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
147 decf lo,F ; -1 |
69 | 148 movff rel_pressure+1,xA+1 |
149 movff rel_pressure+0,xA+0 | |
150 movlw LOW d'100' | |
151 movwf xB+0 | |
152 clrf xB+1 ; Devide/100 -> xC+0 = Depth in m | |
153 call div16x16 ; xA/xB=xC with xA as remainder | |
154 movf xC+0,W ; Depth in m | |
155 subwf lo,W | |
156 btfsc STATUS,C | |
157 bra PLED_color_code_ceiling2 ; Set to warning color | |
158 PLED_color_code_ceiling1: | |
159 call PLED_standard_color | |
160 return | |
161 PLED_color_code_ceiling2: | |
162 call PLED_warnings_color | |
163 return | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
164 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
165 PLED_color_code_depth: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
166 movff hi,hi_temp |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
167 movff lo,lo_temp |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
168 movff rel_pressure+1,hi |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
169 movff rel_pressure+0,lo |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
170 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mBar] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
171 movff lo,sub_a+0 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
172 movff hi,sub_a+1 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
173 GETCUSTOM15 d'43' ; Depth warn [mBar] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
174 movff lo,sub_b+0 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
175 movff hi,sub_b+1 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
176 call sub16 ; sub_c = sub_a - sub_b |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
177 btfss neg_flag |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
178 bra PLED_color_code_depth2; Set to warning color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
179 call PLED_standard_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
180 movff hi_temp,hi |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
181 movff lo_temp,lo ; Restore hi, lo |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
182 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
183 PLED_color_code_depth2: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
184 call PLED_warnings_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
185 movff hi_temp,hi |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
186 movff lo_temp,lo ; Restore hi, lo |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
187 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
188 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
189 PLED_color_code_cns: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
190 movff char_O_CNS_fraction,lo |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
191 GETCUSTOM8 d'44' ; CNS Warn [%] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
192 subwf lo,W |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
193 btfsc STATUS,C |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
194 bra PLED_color_code_cns2 ; Set to warning color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
195 call PLED_standard_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
196 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
197 PLED_color_code_cns2: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
198 call PLED_warnings_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
199 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
200 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
201 PLED_color_code_gf: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
202 movff char_O_gradient_factor,lo ; gradient factor |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
203 GETCUSTOM8 d'45' ; GF Warn [%] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
204 subwf lo,W |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
205 btfsc STATUS,C |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
206 bra PLED_color_code_gf2 ; Set to warning color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
207 call PLED_standard_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
208 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
209 PLED_color_code_gf2: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
210 call PLED_warnings_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
211 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
212 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
213 PLED_color_code_ppo2: |
74 | 214 ; Check very high ppO2 manually |
215 tstfsz xC+2 ; char_I_O2_ratio * p_amb/10 > 65536, ppO2>6,55Bar? | |
216 bra PLED_color_code_ppo22 ; Yes, warn in warning color | |
217 | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
218 movff xC+0,sub_a+0 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
219 movff xC+1,sub_a+1 |
74 | 220 GETCUSTOM8 d'46' ; color-code ppO2 warning [cBar] |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
221 mullw d'100' |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
222 movff PRODL,sub_b+0 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
223 movff PRODH,sub_b+1 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
224 call sub16 ; sub_c = sub_a - sub_b |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
225 btfss neg_flag |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
226 bra PLED_color_code_ppo22; Set to warning color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
227 call PLED_standard_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
228 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
229 PLED_color_code_ppo22: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
230 call PLED_warnings_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
231 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
232 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
233 PLED_color_code_velocity: |
47 | 234 btfss neg_flag ; Ignore for ascend! |
235 bra PLED_color_code_velocity1 ; Skip check! | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
236 movff divA+0,lo |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
237 GETCUSTOM8 d'47' ; Velocity warn [m/min] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
238 subwf lo,W |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
239 btfsc STATUS,C |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
240 bra PLED_color_code_velocity2 ; Set to warning color |
47 | 241 PLED_color_code_velocity1: |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
242 call PLED_standard_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
243 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
244 PLED_color_code_velocity2: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
245 call PLED_warnings_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
246 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
247 |
142 | 248 ostc_debug macro value |
249 movlw value | |
0 | 250 call ostc_debug1 |
251 endm | |
252 | |
253 ostc_debug1: | |
254 movff debug_char+4,debug_char+5 ; Save for background debugger | |
255 movff debug_char+3,debug_char+4 | |
256 movff debug_char+2,debug_char+3 | |
257 movff debug_char+1,debug_char+2 | |
258 movff debug_char+0,debug_char+1 | |
142 | 259 movff WREG,debug_char+0 |
0 | 260 |
261 btfss debug_mode ; Are we in debugmode? | |
262 return ; No, return! | |
263 | |
256 | 264 WIN_TOP .192 |
0 | 265 WIN_LEFT .100 |
266 WIN_FONT FT_SMALL | |
267 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 268 call PLED_standard_color |
0 | 269 lfsr FSR2,letter |
270 movf debug_char+0,W | |
271 movwf POSTINC2 | |
272 movf debug_char+1,W | |
273 movwf POSTINC2 | |
274 movf debug_char+2,W | |
275 movwf POSTINC2 | |
276 movf debug_char+3,W | |
277 movwf POSTINC2 | |
278 movf debug_char+4,W | |
279 movwf POSTINC2 | |
280 movf debug_char+5,W | |
281 movwf POSTINC2 | |
123 | 282 |
283 STRCAT_PRINT " " | |
0 | 284 return |
285 | |
235 | 286 ;============================================================================= |
287 ; BlueScreen function. | |
288 ; | |
0 | 289 PLED_resetdebugger: |
235 | 290 global PLED_resetdebugger |
291 global temp10 | |
292 | |
293 movlb 1 ; For C-code calls | |
0 | 294 call PLED_boot ; PLED boot |
3 | 295 call PLED_standard_color |
47 | 296 WIN_INVERT .0 ; Init new Wordprocessor |
0 | 297 |
298 DISPLAYTEXT .133 | |
299 DISPLAYTEXT .134 | |
300 DISPLAYTEXT .135 | |
301 DISPLAYTEXT .136 ; Display Debug intro | |
302 | |
303 WIN_TOP .100 | |
304 WIN_LEFT .10 | |
235 | 305 |
0 | 306 lfsr FSR2,letter |
235 | 307 movff temp10+0,lo ; Code-stack point at crash time. |
308 movff temp10+1,hi ; Code-stack point at crash time. | |
309 output_16 | |
119 | 310 movlw ' ' |
311 movwf POSTINC2 | |
0 | 312 movf debug_char+0,W |
313 movwf POSTINC2 | |
314 movf debug_char+1,W | |
315 movwf POSTINC2 | |
316 movf debug_char+2,W | |
317 movwf POSTINC2 | |
318 movf debug_char+3,W | |
319 movwf POSTINC2 | |
320 movf debug_char+4,W | |
321 movwf POSTINC2 | |
322 movf debug_char+5,W | |
323 movwf POSTINC2 | |
123 | 324 STRCAT ". " |
0 | 325 movff flag1,lo |
326 output_8 | |
123 | 327 PUTC ' ' |
0 | 328 movff flag2,lo |
329 output_8 | |
330 call word_processor | |
331 | |
332 WIN_TOP .125 | |
333 | |
334 lfsr FSR2,letter | |
335 movff flag3,lo | |
336 output_8 | |
123 | 337 PUTC ' ' |
0 | 338 movff flag4,lo |
339 output_8 | |
123 | 340 PUTC ' ' |
0 | 341 movff flag5,lo |
342 output_8 | |
123 | 343 PUTC ' ' |
0 | 344 movff flag6,lo |
345 output_8 | |
123 | 346 PUTC ' ' |
0 | 347 movff flag7,lo |
348 output_8 | |
349 call word_processor | |
350 | |
351 WIN_TOP .150 | |
352 | |
353 lfsr FSR2,letter | |
354 movff flag8,lo | |
355 output_8 | |
123 | 356 PUTC ' ' |
0 | 357 movff flag9,lo |
358 output_8 | |
123 | 359 PUTC ' ' |
0 | 360 movff flag10,lo |
361 output_8 | |
123 | 362 PUTC ' ' |
0 | 363 movff flag11,lo |
364 output_8 | |
123 | 365 PUTC ' ' |
0 | 366 movff flag12,lo |
367 output_8 | |
368 call word_processor | |
369 | |
119 | 370 bcf switch_left |
0 | 371 PLED_resetdebugger_loop: |
235 | 372 bcf LED_blue ; Blink blue led every seconds.. |
373 btfss secs,0 | |
374 bsf LED_blue | |
375 | |
0 | 376 btfss switch_left |
377 bra PLED_resetdebugger_loop ; Loop | |
235 | 378 |
379 bcf LED_blue | |
252 | 380 bcf switch_left |
0 | 381 return |
382 | |
383 PLED_divemode_mask: ; Displays mask in Dive-Mode | |
9 | 384 call PLED_divemask_color ; Set Color for Divemode mask |
75 | 385 DISPLAYTEXTH .267 ; Max. |
0 | 386 DISPLAYTEXT .86 ; Divetime |
387 DISPLAYTEXT .87 ; Depth | |
3 | 388 call PLED_standard_color |
0 | 389 return |
390 | |
87 | 391 PLED_clear_customview_divemode: |
204 | 392 WIN_BOX_BLACK .168, .239, .90, .159 ;top, bottom, left, right |
87 | 393 return |
394 | |
115 | 395 PLED_clear_customview_surfmode: |
204 | 396 WIN_BOX_BLACK .25, .121, .82, .159 ;top, bottom, left, right |
107 | 397 return |
398 | |
87 | 399 PLED_clear_decoarea: |
204 | 400 WIN_BOX_BLACK .54, .168, .90, .159 ;top, bottom, left, right |
0 | 401 return |
402 | |
403 PLED_display_ndl_mask: | |
277
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
404 btfsc menubit ; Divemode menu active? |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
405 return ; Yes, return |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
406 |
0 | 407 ; Clear Dekostop and Dekosum |
408 rcall PLED_clear_decoarea | |
409 | |
87 | 410 call PLED_divemask_color ; Set Color for Divemode mask |
0 | 411 DISPLAYTEXT d'84' ; NoStop |
3 | 412 call PLED_standard_color |
0 | 413 |
414 PLED_display_ndl_mask2: | |
415 ; Clears Gradient Factor | |
416 movlw d'8' | |
417 movwf temp1 | |
418 WIN_TOP .145 | |
419 WIN_LEFT .0 | |
420 call PLED_display_clear_common_y1 | |
421 return | |
422 | |
423 PLED_display_ndl: | |
87 | 424 btfsc menubit ; Divemode menu active? |
425 return ; Yes, return | |
0 | 426 |
427 ostc_debug 'z' ; Sends debug-information to screen if debugmode active | |
428 | |
87 | 429 WIN_TOP .136 |
0 | 430 WIN_LEFT .119 |
431 WIN_FONT FT_MEDIUM | |
432 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 433 call PLED_standard_color |
434 | |
0 | 435 lfsr FSR2,letter |
436 movff char_O_nullzeit,lo ; NDL in minutes | |
437 output_8 | |
123 | 438 STRCAT_PRINT "'" |
0 | 439 WIN_FONT FT_SMALL |
440 return | |
441 | |
442 PLED_display_deko_mask: | |
277
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
443 btfsc menubit ; Divemode menu active? |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
444 return ; Yes, return |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
445 |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
446 rcall PLED_clear_decoarea |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
447 ; total deco time word |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
448 call PLED_divemask_color ; Set Color for Divemode mask |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
449 DISPLAYTEXT d'85' ; TTS |
280 | 450 DISPLAYTEXT d'82' ; DEKOSTOP |
277
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
451 call PLED_standard_color |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
452 return |
0 | 453 |
454 PLED_display_deko: | |
455 btfsc menubit ; Divemode menu active? | |
87 | 456 bra PLED_display_deko1 ; Yes, do not display deco, only GF (if required) |
0 | 457 |
458 ostc_debug 'y' ; Sends debug-information to screen if debugmode active | |
87 | 459 WIN_TOP .80 |
0 | 460 WIN_LEFT .94 |
461 WIN_FONT FT_MEDIUM | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
462 WIN_INVERT .0 ; Init new Wordprocessor |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
463 PLED_color_code warn_ceiling ; Color-code Output |
0 | 464 lfsr FSR2,letter |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
465 movff char_O_first_deco_depth,lo ; Ceiling in m |
0 | 466 output_99 |
123 | 467 PUTC 'm' |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
468 movff char_O_first_deco_time,lo ; length of first stop in m |
0 | 469 output_99 |
123 | 470 STRCAT_PRINT "'" |
0 | 471 WIN_FONT FT_SMALL |
472 | |
87 | 473 ;PLED_display_deko1: |
0 | 474 ostc_debug 'x' ; Sends debug-information to screen if debugmode active |
475 | |
87 | 476 WIN_TOP .136 |
168 | 477 WIN_LEFT .140 - 6*7 - 4 ; let space for sign + 5 digits + ' |
0 | 478 WIN_FONT FT_MEDIUM |
168 | 479 WIN_INVERT .0 ; Init new Wordprocessor |
480 | |
3 | 481 call PLED_standard_color |
0 | 482 lfsr FSR2,letter |
180 | 483 movff int_O_ascenttime+0,lo ; TTS |
168 | 484 movff int_O_ascenttime+1,hi ; on 16bits |
485 bcf leftbind | |
486 output_16 | |
123 | 487 STRCAT_PRINT "'" |
0 | 488 |
87 | 489 PLED_display_deko1: |
0 | 490 movff char_O_gradient_factor,lo ; gradient factor |
491 GETCUSTOM8 d'8' ; threshold for display | |
492 cpfslt lo ; show value? | |
493 bra PLED_display_deko2 ; Yes | |
494 ; No | |
495 bra PLED_display_ndl_mask2 ; Clear gradient factor | |
496 | |
497 PLED_display_deko2: | |
498 ostc_debug 'w' ; Sends debug-information to screen if debugmode active | |
499 ;GF | |
500 WIN_TOP .145 | |
501 WIN_LEFT .0 | |
502 WIN_FONT FT_SMALL | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
503 PLED_color_code warn_gf ; Color-code Output |
123 | 504 |
505 STRCPY "GF:" | |
0 | 506 movff char_O_gradient_factor,lo ; gradient factor |
507 output_8 | |
123 | 508 STRCAT_PRINT "% " |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
509 call PLED_standard_color |
0 | 510 return |
511 | |
199 | 512 ;============================================================================= |
513 ; Update simulator menu with time/depth | |
514 ; Note: because translations might change a bit the string length, we reprint | |
515 ; that part of the mask to be sure the numbers fit in the right places. | |
0 | 516 PLED_simulator_data: |
199 | 517 WIN_LEFT .20 |
0 | 518 WIN_TOP .65 |
519 WIN_FONT FT_SMALL | |
3 | 520 call PLED_standard_color |
0 | 521 lfsr FSR2,letter |
199 | 522 OUTPUTTEXTH .277 ; Bottom Time: |
523 | |
524 movff logbook_temp1,lo | |
0 | 525 bsf leftbind |
526 output_8 | |
527 bcf leftbind | |
123 | 528 STRCAT_PRINT "min " |
0 | 529 |
199 | 530 WIN_LEFT .20 |
0 | 531 WIN_TOP .95 |
532 lfsr FSR2,letter | |
199 | 533 OUTPUTTEXTH .278 ; Max. Depth: |
534 | |
0 | 535 movff logbook_temp2,lo |
536 bsf leftbind | |
537 output_8 | |
538 bcf leftbind | |
123 | 539 STRCAT_PRINT "m " |
0 | 540 return |
541 | |
199 | 542 ;============================================================================= |
543 | |
0 | 544 PLED_display_velocity: |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
545 ; btfsc multi_gf_display ; Is the Multi-GF Table displayed? |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
546 ; return ; Yes, No update and return! |
0 | 547 |
548 ostc_debug 'v' ; Sends debug-information to screen if debugmode active | |
549 WIN_TOP .90 | |
550 WIN_LEFT .0 | |
551 WIN_FONT FT_SMALL | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
552 PLED_color_code warn_velocity ; Color code output |
0 | 553 lfsr FSR2,letter |
554 movlw '-' | |
555 btfsc neg_flag | |
556 movlw '+' | |
557 movwf POSTINC2 | |
558 movff divA+0,lo | |
559 output_99 | |
560 OUTPUTTEXT d'83' ; m/min | |
561 call word_processor | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
562 call PLED_standard_color |
0 | 563 bsf pled_velocity_display |
564 return | |
565 | |
566 PLED_display_velocity_clear: | |
567 movlw d'8' | |
568 movwf temp1 | |
569 WIN_TOP .90 | |
570 WIN_LEFT .0 | |
571 bcf pled_velocity_display | |
572 bra PLED_display_clear_common_y1 | |
573 | |
204 | 574 PLED_display_wait_clear: |
575 WIN_BOX_BLACK .0, .25, .0, .159 ;top, bottom, left, right | |
576 return | |
0 | 577 |
578 PLED_display_clear_common_y2: ; Clears with y-scale=2 | |
579 WIN_FONT FT_MEDIUM | |
580 bra PLED_display_clear_common1 | |
581 | |
582 PLED_display_clear_common_y1: ; Clears with y-scale=1 | |
583 WIN_FONT FT_SMALL | |
584 PLED_display_clear_common1: | |
585 lfsr FSR2,letter | |
586 PLED_display_clear_common2: | |
123 | 587 PUTC ' ' |
0 | 588 decfsz temp1,F |
589 bra PLED_display_clear_common2 | |
590 call word_processor | |
591 WIN_FONT FT_SMALL | |
592 return | |
593 | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
594 |
63 | 595 PLED_diveclock: |
119 | 596 call PLED_divemask_color ; Set Color for Divemode mask |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
597 DISPLAYTEXT d'255' ; Clock |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
598 call PLED_standard_color |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
599 |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
600 PLED_diveclock2: |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
601 WIN_TOP .192 |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
602 WIN_LEFT .123 |
63 | 603 WIN_FONT FT_SMALL |
604 WIN_INVERT .0 ; Init new Wordprocessor | |
605 call PLED_standard_color | |
606 lfsr FSR2,letter | |
607 movff hours,lo | |
608 output_99x | |
123 | 609 PUTC ':' |
63 | 610 movff mins,lo |
611 output_99x | |
612 call word_processor | |
613 return | |
614 | |
0 | 615 PLED_clock: |
616 ostc_debug 'c' | |
617 WIN_TOP .50 | |
56 | 618 WIN_LEFT .1 |
0 | 619 WIN_FONT FT_SMALL |
620 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 621 call PLED_standard_color |
0 | 622 lfsr FSR2,letter |
623 movff hours,lo | |
624 output_99x | |
123 | 625 PUTC ':' |
0 | 626 movff mins,lo |
627 output_99x | |
123 | 628 PUTC ':' |
0 | 629 movff secs,lo |
630 output_99x | |
123 | 631 STRCAT_PRINT " " |
0 | 632 return |
633 | |
111 | 634 PLED_interval: |
635 WIN_TOP .75 | |
636 WIN_LEFT .90 | |
637 WIN_FONT FT_SMALL | |
638 WIN_INVERT .0 ; Init new Wordprocessor | |
639 call PLED_standard_color | |
640 lfsr FSR2,letter | |
641 | |
642 movff surface_interval+0,lo | |
643 movff surface_interval+1,hi | |
644 call convert_time ; lo=mins, hi=hours | |
645 | |
646 movf hi,W | |
647 movff lo,hi | |
648 movwf lo ; exchange lo and hi | |
649 output_99x | |
123 | 650 PUTC ':' |
111 | 651 movff hi,lo |
652 output_99x | |
123 | 653 STRCAT_PRINT " " |
111 | 654 return |
655 | |
656 | |
657 PLED_show_cf11_cf12_cf29:; Display saturations/desaturation multiplier and last deco in the customview field | |
658 WIN_TOP .25 | |
659 WIN_LEFT .90 | |
660 WIN_FONT FT_SMALL | |
661 WIN_INVERT .0 ; Init new Wordprocessor | |
662 call PLED_standard_color | |
149
55a763d514ed
Changed CF11->BSat, CF12->BDes, and CF29->Last
heinrichsweikamp
parents:
143
diff
changeset
|
663 STRCPY "BSat:" |
123 | 664 |
111 | 665 GETCUSTOM8 d'11' |
666 movwf lo | |
667 bsf leftbind | |
668 output_8 | |
123 | 669 STRCAT_PRINT "%" |
111 | 670 |
671 WIN_TOP .50 | |
149
55a763d514ed
Changed CF11->BSat, CF12->BDes, and CF29->Last
heinrichsweikamp
parents:
143
diff
changeset
|
672 STRCPY "BDes:" |
123 | 673 |
111 | 674 GETCUSTOM8 d'12' |
675 movwf lo | |
676 bsf leftbind | |
677 output_8 | |
123 | 678 STRCAT_PRINT "%" |
111 | 679 |
680 PLED_show_cf11_cf12_cf29_2: | |
681 WIN_TOP .75 | |
149
55a763d514ed
Changed CF11->BSat, CF12->BDes, and CF29->Last
heinrichsweikamp
parents:
143
diff
changeset
|
682 STRCPY "Last:" |
111 | 683 GETCUSTOM8 d'29' |
684 movwf lo | |
685 bsf leftbind | |
686 output_8 | |
123 | 687 STRCAT_PRINT "m" |
688 | |
111 | 689 bcf leftbind |
690 return | |
691 | |
692 PLED_show_cf32_cf33_cf29:; Display GF_LOW, GF_HIGH and last deco in the customview field | |
693 WIN_TOP .25 | |
694 WIN_LEFT .90 | |
695 WIN_FONT FT_SMALL | |
696 WIN_INVERT .0 ; Init new Wordprocessor | |
697 call PLED_standard_color | |
180 | 698 GETCUSTOM8 d'32' ; GF_lo |
111 | 699 movwf lo |
123 | 700 |
701 STRCPY "GF_lo:" | |
111 | 702 bsf leftbind |
703 output_8 | |
123 | 704 STRCAT_PRINT "%" |
111 | 705 |
706 WIN_TOP .50 | |
180 | 707 GETCUSTOM8 d'33' ; GF_hi |
111 | 708 movwf lo |
123 | 709 STRCPY "GF_hi:" |
111 | 710 bsf leftbind |
711 output_8 | |
123 | 712 STRCAT_PRINT "%" |
111 | 713 |
714 bra PLED_show_cf11_cf12_cf29_2 ; Display CF29 in the third row and RETURN | |
715 | |
716 | |
0 | 717 PLED_logbook_cursor: |
718 | |
719 PLED_menu_cursor: | |
204 | 720 WIN_BOX_BLACK .35, .239, .0, .16 ;top, bottom, left, right |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
721 |
0 | 722 WIN_LEFT .0 |
723 WIN_FONT FT_SMALL | |
724 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 725 call PLED_standard_color |
726 | |
0 | 727 movff menupos,temp1 |
728 dcfsnz temp1,F | |
729 movlw d'35' | |
730 dcfsnz temp1,F | |
731 movlw d'65' | |
732 dcfsnz temp1,F | |
733 movlw d'95' | |
734 dcfsnz temp1,F | |
735 movlw d'125' | |
736 dcfsnz temp1,F | |
737 movlw d'155' | |
738 dcfsnz temp1,F | |
739 movlw d'185' | |
740 | |
741 movff WREG,win_top | |
123 | 742 STRCPY_PRINT "\xB7" |
0 | 743 return |
744 | |
188 | 745 PLED_static_raw_data: |
746 WIN_FONT FT_SMALL | |
747 WIN_LEFT .0 | |
748 WIN_TOP .27 | |
749 STRCPY "C1:" | |
750 movff C1+0,lo | |
751 movff C1+1,hi | |
752 output_16 | |
753 call word_processor | |
754 WIN_LEFT .80 | |
755 WIN_TOP .27 | |
756 STRCPY "C2:" | |
757 movff C2+0,lo | |
758 movff C2+1,hi | |
759 output_16 | |
760 call word_processor | |
761 | |
762 WIN_LEFT .0 | |
763 WIN_TOP .52 | |
764 STRCPY "C3:" | |
765 movff C3+0,lo | |
766 movff C3+1,hi | |
767 output_16 | |
768 call word_processor | |
769 WIN_LEFT .80 | |
770 WIN_TOP .52 | |
771 STRCPY "C4:" | |
772 movff C4+0,lo | |
773 movff C4+1,hi | |
774 output_16 | |
775 call word_processor | |
776 | |
777 WIN_LEFT .0 | |
778 WIN_TOP .77 | |
779 STRCPY "C5:" | |
780 movff C5+0,lo | |
781 movff C5+1,hi | |
782 output_16 | |
783 call word_processor | |
784 WIN_LEFT .80 | |
785 WIN_TOP .77 | |
786 STRCPY "C6:" | |
787 movff C6+0,lo | |
788 movff C6+1,hi | |
789 output_16 | |
790 call word_processor | |
791 return | |
792 | |
793 PLED_update_raw_data: | |
794 WIN_LEFT .0 | |
795 WIN_TOP .102 | |
796 STRCPY "D1:" | |
797 movff D1+0,lo | |
798 movff D1+1,hi | |
799 output_16 | |
800 call word_processor | |
801 WIN_LEFT .80 | |
802 WIN_TOP .102 | |
803 STRCPY "D2:" | |
804 movff D2+0,lo | |
805 movff D2+1,hi | |
806 output_16 | |
807 call word_processor | |
808 | |
809 WIN_LEFT .0 | |
810 WIN_TOP .127 | |
811 STRCPY "OFF:" | |
812 movff OFF+0,lo | |
813 movff OFF+1,hi | |
814 output_16 | |
815 call word_processor | |
816 WIN_LEFT .80 | |
817 WIN_TOP .127 | |
818 STRCPY "SENS:" | |
819 movff SENS+0,lo | |
820 movff SENS+1,hi | |
821 output_16 | |
822 call word_processor | |
823 | |
824 WIN_LEFT .0 | |
825 WIN_TOP .152 | |
826 STRCPY "xdT:" | |
827 movff xdT+0,lo | |
828 movff xdT+1,hi | |
829 output_16 | |
830 call word_processor | |
831 WIN_LEFT .80 | |
832 WIN_TOP .152 | |
833 STRCPY "xdT2:" | |
834 movff xdT2+0,lo | |
835 movff xdT2+1,hi | |
836 output_16 | |
837 call word_processor | |
838 | |
839 WIN_LEFT .0 | |
840 WIN_TOP .177 | |
841 STRCPY "amb:" | |
842 movff amb_pressure+0,lo | |
843 movff amb_pressure+1,hi | |
844 output_16 | |
845 call word_processor | |
846 WIN_LEFT .80 | |
847 WIN_TOP .177 | |
848 STRCPY "temp:" | |
849 movff temperature+0,lo | |
850 movff temperature+1,hi | |
851 output_16 | |
852 call word_processor | |
853 | |
854 call get_battery_voltage ; get battery voltage | |
855 WIN_LEFT .0 | |
856 WIN_TOP .202 | |
857 STRCPY "AD0:" | |
858 movff ADRESL,lo | |
859 movff ADRESH,hi | |
860 output_16 | |
861 call word_processor | |
862 WIN_LEFT .80 | |
863 WIN_TOP .202 | |
864 STRCPY "BATT:" | |
865 movff batt_voltage+0,lo | |
866 movff batt_voltage+1,hi | |
867 output_16 | |
868 call word_processor | |
869 return | |
870 | |
0 | 871 PLED_menu_mask: |
872 call PLED_topline_box | |
873 WIN_INVERT .1 ; Init new Wordprocessor | |
874 DISPLAYTEXT .5 ; Menu: | |
875 WIN_INVERT .0 ; Init new Wordprocessor | |
876 DISPLAYTEXT .6 ; Logbook | |
877 DISPLAYTEXT .7 ; Gas Setup | |
878 DISPLAYTEXT .9 ; Reset all | |
879 DISPLAYTEXT .10 ; Setup... | |
880 DISPLAYTEXT .142 ; More... | |
881 DISPLAYTEXT .11 ; Exit | |
882 return | |
883 | |
884 PLED_setup_menu_mask: | |
885 call PLED_topline_box | |
886 WIN_INVERT .1 ; Init new Wordprocessor | |
887 DISPLAYTEXT .98 ; Setup Menu: | |
888 WIN_INVERT .0 ; Init new Wordprocessor | |
889 DISPLAYTEXT .99 ; Custom FunctionsI | |
890 DISPLAYTEXT .153 ; Custom FunctionsII | |
183 | 891 DISPLAYTEXTH .276 ; Salinity: |
0 | 892 DISPLAYTEXT .100 ; Decotype: |
893 DISPLAYTEXT .142 ; More... | |
894 DISPLAYTEXT .11 ; Exit | |
895 return | |
896 | |
897 PLED_more_setup_menu_mask: | |
898 call PLED_topline_box | |
899 WIN_INVERT .1 ; Init new Wordprocessor | |
900 DISPLAYTEXTH .258 ; Setup Menu 2: | |
901 WIN_INVERT .0 ; Init new Wordprocessor | |
902 DISPLAYTEXTH .257 ; Date format: | |
903 DISPLAYTEXT .129 ; Debug: | |
12 | 904 DISPLAYTEXT .187 ; Show License |
188 | 905 DISPLAYTEXTH .295 ; Show raw data |
0 | 906 |
907 DISPLAYTEXT .11 ; Exit | |
908 return | |
909 | |
910 PLED_more_menu_mask: | |
911 call PLED_topline_box | |
912 WIN_INVERT .1 ; Init new Wordprocessor | |
913 DISPLAYTEXT .144 ; Menu 2: | |
914 WIN_INVERT .0 ; Init new Wordprocessor | |
915 DISPLAYTEXT .8 ; Set Time | |
916 DISPLAYTEXT .110 ; Const. ppO2 Setup | |
917 DISPLAYTEXT .113 ; Battery Info | |
918 DISPLAYTEXT .247 ; Simulator | |
125 | 919 DISPLAYTEXTH .287 ; Altimeter |
0 | 920 DISPLAYTEXT .11 ; Exit |
921 return | |
922 | |
923 PLED_reset_menu_mask: | |
924 call PLED_topline_box | |
925 WIN_INVERT .1 ; Init new Wordprocessor | |
926 DISPLAYTEXT .28 ; Reset Menu | |
927 WIN_INVERT .0 ; Init new Wordprocessor | |
928 DISPLAYTEXT .21 ; Cancel Reset | |
929 DISPLAYTEXT .245 ; Reset CF,Gases & Deco | |
930 DISPLAYTEXTH .284 ; Reset Logbook | |
931 DISPLAYTEXTH .285 ; Reboot OSTC | |
932 DISPLAYTEXTH .286 ; Reset Decodata | |
933 DISPLAYTEXT .11 ; Exit | |
934 return | |
935 | |
936 PLED_simulator_mask: | |
937 call PLED_topline_box | |
938 WIN_INVERT .1 ; Init new Wordprocessor | |
939 DISPLAYTEXT .248 ; OSTC Simulator | |
940 WIN_INVERT .0 ; Init new Wordprocessor | |
941 DISPLAYTEXT .249 ; Start Dive | |
942 DISPLAYTEXTH .277 ; Bottom Time: | |
943 DISPLAYTEXTH .278 ; Max. Depth: | |
944 DISPLAYTEXTH .279 ; Calculate Deco | |
945 DISPLAYTEXTH .280 ; Show Decoplan | |
946 DISPLAYTEXT .11 ; Exit | |
947 return | |
948 | |
949 PLED_temp_surfmode: | |
950 ostc_debug 'e' | |
951 movff temperature+0,last_temperature+0 | |
952 movff temperature+1,last_temperature+1 | |
953 WIN_TOP .100 | |
56 | 954 WIN_LEFT .1 |
0 | 955 WIN_FONT FT_SMALL |
956 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 957 call PLED_standard_color |
958 | |
0 | 959 lfsr FSR2,letter |
960 movlw '-' | |
961 btfsc neg_temp ; Show "-"? | |
962 movwf POSTINC2 ; Yes | |
963 movff temperature+0,lo | |
964 movff temperature+1,hi | |
965 movlw d'3' | |
966 movwf ignore_digits | |
967 bsf leftbind ; left orientated output | |
968 output_16dp d'2' | |
969 bcf leftbind | |
123 | 970 STRCAT_PRINT "°C " |
0 | 971 return |
972 | |
973 PLED_temp_divemode: | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
974 ; btfsc multi_gf_display ; Is the Multi-GF Table displayed? |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
975 ; return ; Yes, No update and return! |
0 | 976 |
977 ostc_debug 'u' ; Sends debug-information to screen if debugmode active | |
978 | |
979 ; temperature | |
980 movff temperature+0,last_temperature+0 | |
981 movff temperature+1,last_temperature+1 | |
982 | |
983 WIN_TOP .216 | |
75 | 984 WIN_LEFT .50 |
0 | 985 WIN_FONT FT_SMALL |
986 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 987 call PLED_standard_color |
988 | |
0 | 989 lfsr FSR2,letter |
990 movlw '-' | |
991 btfsc neg_temp ; Show "-"? | |
992 movwf POSTINC2 ; Yes | |
993 movff temperature+0,lo | |
994 movff temperature+1,hi | |
995 movlw d'3' | |
996 movwf ignore_digits | |
997 bsf leftbind ; left orientated output | |
998 output_16dp d'2' | |
999 bcf leftbind | |
135
5c8569f95d7e
temperature collision with the tissue graph
heinrichsweikamp
parents:
133
diff
changeset
|
1000 STRCAT "° " |
5c8569f95d7e
temperature collision with the tissue graph
heinrichsweikamp
parents:
133
diff
changeset
|
1001 clrf WREG ; Allow up to 5 chars to avoid |
5c8569f95d7e
temperature collision with the tissue graph
heinrichsweikamp
parents:
133
diff
changeset
|
1002 movff WREG,letter+5 ; collision with sat graphs |
5c8569f95d7e
temperature collision with the tissue graph
heinrichsweikamp
parents:
133
diff
changeset
|
1003 call word_processor |
0 | 1004 return |
1005 | |
1006 PLED_show_ppO2: ; Show ppO2 | |
1007 ostc_debug 't' ; Sends debug-information to screen if debugmode active | |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
1008 WIN_TOP .119 |
0 | 1009 WIN_LEFT .0 |
1010 WIN_FONT FT_SMALL | |
74 | 1011 PLED_color_code warn_ppo2 ; Color-code output (ppO2 stored in xC) |
3 | 1012 |
123 | 1013 STRCPY "ppO2:" |
74 | 1014 |
1015 ; Check very high ppO2 manually | |
1016 tstfsz xC+2 ; char_I_O2_ratio * p_amb/10 > 65536, ppO2>6,55Bar? | |
1017 bra PLED_show_ppO2_3 ; Yes, display fixed Value! | |
1018 | |
0 | 1019 movff xC+0,lo |
1020 movff xC+1,hi | |
1021 bsf ignore_digit4 | |
1022 output_16dp d'1' | |
1023 bcf ignore_digit4 | |
74 | 1024 PLED_show_ppO2_2: |
123 | 1025 STRCAT_PRINT " " |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
1026 call PLED_standard_color |
0 | 1027 return |
1028 | |
74 | 1029 PLED_show_ppO2_3: |
123 | 1030 STRCAT ">6.6" |
74 | 1031 bra PLED_show_ppO2_2 |
1032 | |
0 | 1033 PLED_show_ppO2_clear: ; Clear ppO2 |
1034 movlw d'10' | |
1035 movwf temp1 | |
1036 WIN_TOP .120 | |
1037 WIN_LEFT .0 | |
1038 call PLED_display_clear_common_y1 | |
1039 return | |
1040 | |
1041 PLED_active_gas_clear: ; clears active gas! | |
1042 WIN_TOP .192 | |
75 | 1043 WIN_LEFT .50 |
0 | 1044 movlw d'5' |
1045 movwf temp1 | |
1046 bra PLED_display_clear_common_y1; also returns! | |
1047 | |
1048 PLED_active_gas_divemode: ; Displays current gas (e.g. 40/20) if a) He>0 or b) O2>Custom9 | |
1049 btfsc FLAG_apnoe_mode ; Ignore in Apnoe mode | |
1050 return | |
1051 | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1052 ; btfsc multi_gf_display ; Is the Multi-GF Table displayed? |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1053 ; return ; Yes, No update and return! |
0 | 1054 |
25 | 1055 WIN_INVERT .0 ; Init new Wordprocessor |
1056 call PLED_active_gas_divemode_show ; Show gas (Non-Inverted in all cases) | |
1057 | |
1058 btfss better_gas_available ;=1: A better gas is available and a gas change is advised in divemode | |
1059 return ; Done. | |
1060 | |
1061 ; Check if Gas Output should blink when a better gas is available... | |
1062 GETCUSTOM8 d'42' ; =1 if gas should blink | |
1063 movwf lo | |
1064 movlw d'1' | |
1065 cpfseq lo ; =1? | |
1066 return ; No, Done. | |
1067 | |
1068 btg blinking_better_gas ; Toggle blink bit... | |
1069 btfss blinking_better_gas ; blink now? | |
1070 return ; No, Done. | |
1071 WIN_INVERT .1 ; Init new Wordprocessor | |
1072 call PLED_active_gas_divemode_show ; Show gas (Non-Inverted in all cases) | |
1073 WIN_INVERT .0 ; Init new Wordprocessor | |
1074 return ; Done. | |
1075 | |
1076 PLED_active_gas_divemode_show: | |
0 | 1077 ostc_debug 's' ; Sends debug-information to screen if debugmode active |
1078 ; gas | |
1079 WIN_TOP .192 | |
75 | 1080 WIN_LEFT .50 |
0 | 1081 WIN_FONT FT_SMALL |
3 | 1082 call PLED_standard_color |
1083 | |
0 | 1084 movlw d'100' ; 100% in the tank |
1085 movff char_I_N2_ratio,lo ; minus N2 | |
1086 bsf STATUS,C ; set borrow bit | |
1087 subfwb lo,W | |
1088 movff char_I_He_ratio,lo ; minus He | |
1089 bsf STATUS,C ; set borrow bit | |
1090 subfwb lo,F ; =% O2 | |
1091 GETCUSTOM8 d'9' ; get oxygen treshold | |
1092 movff char_I_He_ratio,hi ; He ratio | |
1093 cpfsgt lo | |
1094 bra PLED_active_gas_divemode2 ; Check He | |
1095 bra PLED_active_gas_divemode3 ; Skip He check, display gas | |
1096 | |
1097 PLED_active_gas_divemode2: | |
1098 tstfsz hi ; He = 0 % | |
1099 bra PLED_active_gas_divemode3 ; display gas | |
1100 ; O2 below treshold, He=0 -> Skip display! | |
1101 movlw d'5' | |
1102 movwf temp1 | |
1103 bra PLED_display_clear_common_y1 ; also returns! | |
1104 | |
1105 PLED_active_gas_divemode3: | |
1106 movlw d'21' | |
1107 cpfseq lo ; Air? (O2=21%) | |
1108 bra PLED_active_gas_divemode4 ; No! | |
1109 tstfsz hi ; Air? (He=0%) | |
1110 bra PLED_active_gas_divemode4 ; No! | |
1111 | |
1112 ; Yes, display "Air" instead of 21/0 | |
1113 lfsr FSR2,letter | |
136 | 1114 OUTPUTTEXTH d'264' ;"Air " |
143 | 1115 PUTC ' ' |
1116 clrf WREG ; Allow up to 5 chars to avoid | |
1117 movff WREG,letter+5 ; collision with sat graphs | |
1118 bcf leftbind | |
1119 call word_processor | |
163 | 1120 ; rcall PLED_active_better_gas ; show *, if required |
157 | 1121 ; return |
163 | 1122 PLED_active_better_gas: |
152 | 1123 WIN_TOP .192 |
157 | 1124 WIN_LEFT .43 |
152 | 1125 WIN_FONT FT_SMALL |
1126 call PLED_standard_color | |
1127 lfsr FSR2,letter | |
143 | 1128 movlw ' ' |
8 | 1129 btfsc better_gas_available ;=1: A better gas is available and a gas change is advised in divemode |
1130 movlw '*' | |
1131 movwf POSTINC2 | |
0 | 1132 call word_processor |
25 | 1133 return |
0 | 1134 |
1135 PLED_active_gas_divemode4: | |
1136 lfsr FSR2,letter | |
1137 bsf leftbind ; left orientated output | |
1138 output_8 ; O2 ratio is still in "lo" | |
123 | 1139 PUTC '/' |
0 | 1140 movff char_I_He_ratio,lo ; copy He ratio into lo |
1141 output_8 | |
143 | 1142 PUTC ' ' |
1143 clrf WREG ; Allow up to 5 chars to avoid | |
1144 movff WREG,letter+5 ; collision with sat graphs | |
1145 bcf leftbind | |
1146 call word_processor | |
163 | 1147 rcall PLED_active_better_gas ; show *, if required |
143 | 1148 return |
1149 | |
0 | 1150 PLED_display_decotype_surface: |
1151 WIN_LEFT .85 | |
1152 WIN_FONT FT_SMALL | |
1153 WIN_INVERT .0 ; Init new Wordprocessor | |
123 | 1154 call PLED_standard_color |
1155 | |
0 | 1156 clrf EEADRH |
1157 read_int_eeprom d'34' ; Read deco data | |
1158 tstfsz EEDATA | |
1159 bra show_decotype_surface2 | |
1160 | |
1161 ;ZH-L16 | |
1162 WIN_TOP .125 | |
123 | 1163 STRCPY_PRINT "O" |
1164 | |
0 | 1165 WIN_TOP .150 |
123 | 1166 STRCPY_PRINT "C" |
0 | 1167 return |
123 | 1168 |
0 | 1169 show_decotype_surface2: |
1170 decf EEDATA,F | |
1171 tstfsz EEDATA | |
1172 bra show_decotype_surface3 | |
1173 ; Gauge | |
1174 return | |
1175 | |
1176 show_decotype_surface3: | |
123 | 1177 decf EEDATA,F |
1178 tstfsz EEDATA | |
1179 bra show_decotype_surface4 | |
1180 ; const. ppO2 | |
1181 WIN_TOP .125 | |
1182 call PLED_standard_color | |
1183 | |
1184 STRCPY_PRINT "C" | |
1185 | |
1186 WIN_TOP .150 | |
1187 call word_processor ; Twice the same string. | |
1188 return | |
1189 | |
0 | 1190 show_decotype_surface4: |
1191 decf EEDATA,F | |
1192 tstfsz EEDATA | |
1193 bra show_decotype_surface5 | |
1194 ; Apnoe | |
1195 return | |
123 | 1196 |
0 | 1197 show_decotype_surface5: |
1198 show_decotype_surface6: | |
123 | 1199 decf EEDATA,F |
1200 tstfsz EEDATA | |
1201 bra show_decotype_surface6 | |
1202 ; Multi-GF OC | |
1203 WIN_TOP .125 | |
1204 STRCPY_PRINT "G" | |
1205 | |
1206 WIN_TOP .150 | |
1207 STRCPY_PRINT "F" | |
1208 return | |
0 | 1209 |
121
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1210 ;----------------------------------------------------------------------------- |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1211 ; Set color to grey when gas is inactive |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1212 ; Inputs: WREG : gas# (0..4) |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1213 ; Trashes: lo |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1214 ; New v1.44se |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1215 PLED_grey_inactive_gas: |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1216 movwf lo ; copy gas number 0-4 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1217 incf lo,F ; 1-5 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1218 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1219 read_int_eeprom d'33' ; Get First gas (1-5) |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1220 movf EEDATA,W |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1221 subwf lo,W ; Compare with current |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1222 bz PLED_white_gas ; First is always on. |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1223 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1224 movlw .28-1 ; Depth for gas# is at idx+28 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1225 addwf lo,W |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1226 movwf EEADR ; address in EEPROM. |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1227 call read_eeprom ; Read depth |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1228 clrf WREG |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1229 cpfsgt EEDATA ; is depth > 0 ? |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1230 bra PLED_grey_gas |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1231 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1232 read_int_eeprom d'27' ; read flag register |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1233 PLED_grey_inactive_gas1: |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1234 rrcf EEDATA ; roll flags into carry |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1235 decfsz lo,F ; max. 5 times... |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1236 bra PLED_grey_inactive_gas1 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1237 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1238 bnc PLED_grey_gas ; test carry |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1239 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1240 PLED_white_gas: |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1241 GETCUSTOM8 d'35' ;movlw color_white |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1242 goto PLED_set_color ; grey out inactive gases! |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1243 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1244 PLED_grey_gas: |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1245 movlw color_grey |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1246 goto PLED_set_color ; grey out inactive gases! |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1247 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1248 ;----------------------------------------------------------------------------- |
123 | 1249 ; Display Pre-Dive Screen |
1250 | |
1251 PLED_pre_dive_screen: | |
13 | 1252 ; List active gases/Setpoints |
1253 | |
1254 btfsc FLAG_const_ppO2_mode ; in ppO2 mode? | |
1255 bra PLED_pre_dive_screen3 ; Yes, display SetPoint/Sensor result list | |
1256 | |
1257 PLED_pre_dive_screen2: | |
1258 ostc_debug 'm' ; Sends debug-information to screen if debugmode active | |
1259 | |
1260 WIN_LEFT .90 | |
1261 WIN_FONT FT_SMALL | |
1262 bsf leftbind | |
1263 | |
1264 movlw d'2' | |
1265 movwf wait_temp ; here: stores eeprom address for gas list | |
1266 movlw d'0' | |
1267 movwf waitms_temp ; here: stores row for gas list | |
1268 clrf hi ; here: Gas counter | |
1269 | |
1270 PLED_pre_dive_screen2_loop: | |
1271 incf hi,F ; Increase Gas | |
1272 movlw d'4' | |
1273 addwf wait_temp,F ; Increase eeprom address for gas list | |
1274 | |
123 | 1275 STRCPY "G" |
13 | 1276 movff hi,lo ; copy gas number |
1277 output_8 ; display gas number | |
123 | 1278 STRCAT ": " |
13 | 1279 movff wait_temp, EEADR; Gas #hi: %O2 - Set address in internal EEPROM |
1280 call read_eeprom ; get byte (stored in EEDATA) | |
1281 movff EEDATA,lo ; copy to lo | |
1282 output_8 ; outputs into Postinc2! | |
123 | 1283 PUTC '/' |
13 | 1284 incf EEADR,F ; Gas #hi: %He - Set address in internal EEPROM |
1285 call read_eeprom ; get byte (stored in EEDATA) | |
1286 movff EEDATA,lo ; copy to lo | |
1287 output_8 ; outputs into Postinc2! | |
121
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1288 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1289 decf hi,W ; Gas # in 0..4 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1290 call PLED_grey_inactive_gas |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1291 |
13 | 1292 read_int_eeprom d'33' ; Read start gas (1-5) |
1293 movf EEDATA,W | |
1294 cpfseq hi ; Current Gas the active gas? | |
1295 bra PLED_pre_dive_screen2a | |
1296 bra PLED_pre_dive_screen2b | |
1297 | |
1298 PLED_pre_dive_screen2a: | |
1299 movlw d'25' | |
1300 addwf waitms_temp,F ; Increase row | |
1301 WIN_LEFT .90 | |
1302 movff waitms_temp,win_top ; Set Row | |
1303 call word_processor ; No, display gas | |
1304 | |
1305 PLED_pre_dive_screen2b: | |
1306 movlw d'5' ; list all four (remaining) gases | |
1307 cpfseq hi ; All gases shown? | |
1308 bra PLED_pre_dive_screen2_loop ; No | |
1309 | |
1310 return ; No, return (OC mode) | |
1311 | |
1312 PLED_pre_dive_screen3: | |
1313 WIN_LEFT .90 | |
1314 WIN_FONT FT_SMALL | |
1315 bsf leftbind | |
127 | 1316 call PLED_standard_color |
13 | 1317 |
1318 ; list three SP in Gaslist | |
1319 movlw d'35' ; 36 = current SP position in EEPROM | |
1320 movwf wait_temp ; here: stores eeprom address for gas list | |
1321 movlw d'0' | |
1322 movwf waitms_temp ; here: stores row for gas list | |
164 | 1323 clrf apnoe_mins ; here: SP counter |
13 | 1324 |
1325 PLED_pre_dive_screen3_loop: | |
1326 incf wait_temp,F ; EEPROM address | |
164 | 1327 incf apnoe_mins,F ; Increase SP |
13 | 1328 |
1329 movlw d'25' | |
1330 addwf waitms_temp,F ; Increase row | |
1331 WIN_LEFT .90 | |
1332 movff waitms_temp,win_top ; Set Row | |
1333 | |
123 | 1334 STRCPY "SP" |
164 | 1335 movff apnoe_mins,lo ; copy gas number |
1336 output_8 ; display gas number | |
123 | 1337 STRCAT ": " |
164 | 1338 movff wait_temp, EEADR ; SP #hi position |
1339 call read_eeprom ; get byte (stored in EEDATA) | |
1340 movff EEDATA,lo ; copy to lo | |
13 | 1341 clrf hi |
164 | 1342 output_16dp d'3' ; outputs into Postinc2! |
13 | 1343 call word_processor |
1344 | |
164 | 1345 movlw d'3' ; list all three SP |
1346 cpfseq apnoe_mins ; All gases shown? | |
13 | 1347 bra PLED_pre_dive_screen3_loop ;no |
1348 | |
19 | 1349 read_int_eeprom d'33' ; Read byte (stored in EEDATA) |
1350 movff EEDATA,active_gas ; Read start gas (1-5) | |
1351 decf active_gas,W ; Gas 0-4 | |
1352 mullw d'4' | |
1353 movf PRODL,W | |
1354 addlw d'6' ; = address for O2 ratio | |
1355 movwf EEADR | |
127 | 1356 call read_eeprom ; Read O2 ratio |
1357 movff EEDATA, lo ; O2 ratio | |
1358 incf EEADR,F ; = address for He | |
1359 call read_eeprom ; Read He ratio | |
1360 movff EEDATA,hi ; And copy into hold register | |
19 | 1361 |
1362 WIN_LEFT .90 | |
1363 WIN_TOP .100 | |
123 | 1364 STRCPY "Dil:" |
19 | 1365 output_8 ; O2 Ratio |
123 | 1366 PUTC '/' |
19 | 1367 movff hi,lo |
1368 output_8 ; He Ratio | |
1369 call word_processor | |
1370 | |
13 | 1371 bcf leftbind |
1372 return ; Return (CC Mode) | |
1373 | |
0 | 1374 PLED_active_gas_surfmode: ; Displays start gas/SP 1 |
1375 ostc_debug 'q' ; Sends debug-information to screen if debugmode active | |
1376 | |
1377 btfsc FLAG_apnoe_mode ; In Apnoe mode? | |
1378 return ; Yes, return | |
1379 | |
1380 btfsc gauge_mode ; In Gauge mode? | |
1381 return ; Yes, return | |
1382 | |
1383 btfss FLAG_const_ppO2_mode ; are we in const. ppO2 mode? | |
1384 bra PLED_active_gas_surfmode2 ; No, display gases | |
1385 | |
1386 ; In CC Mode | |
1387 WIN_TOP .135 | |
1388 WIN_LEFT .90 | |
1389 WIN_FONT FT_SMALL | |
1390 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1391 call PLED_standard_color |
1392 | |
0 | 1393 lfsr FSR2,letter |
1394 read_int_eeprom d'36' | |
1395 movff EEDATA,lo ; copy to lo | |
1396 clrf hi | |
1397 output_16dp d'3' ; outputs into Postinc2! | |
1398 bcf leftbind | |
123 | 1399 |
1400 STRCAT_PRINT "Bar" | |
0 | 1401 bra PLED_active_gas_surfmode_exit |
1402 | |
1403 PLED_active_gas_surfmode2: | |
1404 WIN_TOP .130 | |
1405 WIN_LEFT .100 | |
1406 WIN_FONT FT_MEDIUM | |
1407 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1408 call PLED_standard_color |
1409 | |
0 | 1410 |
1411 read_int_eeprom d'33' ; Read byte (stored in EEDATA) | |
1412 movff EEDATA,active_gas ; Read start gas (1-5) | |
1413 | |
1414 decf active_gas,W ; Gas 0-4 | |
1415 mullw d'4' | |
1416 movf PRODL,W | |
1417 addlw d'7' ; = address for He ratio | |
1418 movwf EEADR | |
1419 call read_eeprom ; Read He ratio | |
1420 movff EEDATA,char_I_He_ratio ; And copy into hold register | |
1421 | |
1422 decf active_gas,W ; Gas 0-4 | |
1423 mullw d'4' | |
1424 movf PRODL,W | |
1425 addlw d'6' ; = address for O2 ratio | |
1426 movwf EEADR | |
1427 call read_eeprom ; Read O2 ratio | |
1428 movff EEDATA, char_I_O2_ratio ; O2 ratio | |
1429 movff char_I_He_ratio, wait_temp ; copy into bank1 register | |
1430 bsf STATUS,C ; Borrow bit | |
1431 movlw d'100' ; 100% | |
1432 subfwb wait_temp,W ; minus He | |
1433 bsf STATUS,C ; Borrow bit | |
1434 subfwb EEDATA,F ; minus O2 | |
1435 movff EEDATA, char_I_N2_ratio ; = N2! | |
1436 | |
1437 movlw d'100' ; 100% in the tank | |
1438 movff char_I_N2_ratio,lo ; minus N2 | |
1439 bsf STATUS,C ; set borrow bit | |
1440 subfwb lo,W | |
1441 movff char_I_He_ratio,lo ; minus He | |
1442 bsf STATUS,C ; set borrow bit | |
1443 subfwb lo,F ; =% O2 | |
1444 | |
1445 movff char_I_He_ratio,hi ; Copy into Bank1 register | |
1446 | |
1447 movlw d'21' | |
1448 cpfseq lo ; Air? (O2=21%) | |
1449 bra PLED_active_gas_surfmode4 ; No! | |
1450 tstfsz hi ; Air? (He=0%) | |
1451 bra PLED_active_gas_surfmode4 ; No! | |
1452 | |
1453 ; Yes, display "Air" instead of 21/0 | |
1454 DISPLAYTEXTH d'265' ;"Air ", y-scale=2 | |
1455 bra PLED_active_gas_surfmode_exit | |
1456 | |
1457 PLED_active_gas_surfmode4: | |
1458 lfsr FSR2,letter | |
1459 bsf leftbind ; left orientated output | |
81
31fa973a70fd
Kludges to emulate inexisting devices when debugged with the MPLAB software SIMulator.
JeanDo
parents:
77
diff
changeset
|
1460 output_99 ; O2 ratio is still in "lo" |
123 | 1461 PUTC '/' |
0 | 1462 movff char_I_He_ratio,lo ; copy He ratio into lo |
81
31fa973a70fd
Kludges to emulate inexisting devices when debugged with the MPLAB software SIMulator.
JeanDo
parents:
77
diff
changeset
|
1463 output_99 |
0 | 1464 bcf leftbind |
1465 call word_processor | |
209
cdba979821ee
frame around logbook scale, some more speed improvements
heinrichsweikamp
parents:
204
diff
changeset
|
1466 ; bra PLED_active_gas_surfmode_exit |
0 | 1467 PLED_active_gas_surfmode_exit: |
123 | 1468 ; WIN_FRAME_BLACK .122, .175, .82, .159 |
0 | 1469 return |
1470 | |
1471 PLED_confirmbox: | |
204 | 1472 WIN_BOX_BLACK .68, .146, .34, .101 ;top, bottom, left, right |
123 | 1473 WIN_FRAME_STD .70, .144, .35, .100 |
1474 | |
0 | 1475 DISPLAYTEXT .143 ; Confirm: |
1476 DISPLAYTEXT .145 ; Cancel | |
1477 DISPLAYTEXT .146 ; OK! | |
1478 | |
1479 movlw d'1' | |
1480 movwf menupos | |
1481 | |
1482 PLED_confirmbox2: | |
204 | 1483 WIN_BOX_BLACK .96, .143, .39, .51 ;top, bottom, left, right |
0 | 1484 |
1485 movff menupos,temp1 | |
1486 movlw d'96' | |
1487 dcfsnz temp1,F | |
1488 movlw d'96' | |
1489 dcfsnz temp1,F | |
1490 movlw d'120' | |
1491 movff WREG,win_top | |
1492 WIN_LEFT .39 | |
1493 WIN_FONT FT_SMALL | |
1494 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1495 call PLED_standard_color |
1496 | |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
1497 STRCPY_PRINT "\xB7" ; Cursor |
0 | 1498 |
1499 bcf sleepmode ; clear some flags | |
1500 bcf menubit2 | |
1501 bcf menubit3 | |
1502 bcf switch_right | |
1503 bcf switch_left | |
1504 clrf timeout_counter2 | |
1505 WAITMS d'100' | |
1506 | |
1507 PLED_confirmbox_loop: | |
1508 call check_switches_logbook | |
1509 | |
1510 btfsc menubit3 ; SET/MENU? | |
1511 bra PLED_confirmbox_move_cursor; Move Cursor | |
1512 btfsc menubit2 ; ENTER? | |
1513 bra PLED_confirmbox_menu_do ; Do task | |
1514 | |
1515 btfsc onesecupdate | |
1516 call timeout_surfmode ; timeout | |
1517 | |
1518 btfsc onesecupdate | |
1519 call set_dive_modes ; check, if divemode must be entered | |
1520 bcf onesecupdate ; one second update | |
1521 | |
1522 btfsc sleepmode ; Timeout? | |
1523 bra PLED_confirmbox_cancel ; back with cancel | |
1524 btfsc divemode | |
1525 bra PLED_confirmbox_cancel ; back with cancel | |
1526 | |
1527 bra PLED_confirmbox_loop ; wait for something to do | |
1528 | |
1529 PLED_confirmbox_cancel: | |
1530 retlw .0 | |
1531 PLED_confirmbox_ok: | |
1532 retlw .1 | |
1533 | |
1534 PLED_confirmbox_menu_do: | |
1535 dcfsnz menupos,F | |
1536 bra PLED_confirmbox_cancel | |
1537 dcfsnz menupos,F | |
1538 bra PLED_confirmbox_ok | |
1539 bra PLED_confirmbox_cancel | |
1540 | |
1541 PLED_confirmbox_move_cursor: | |
1542 incf menupos,F | |
1543 movlw d'3' ; number of menu options+1 | |
1544 cpfseq menupos ; =limit? | |
1545 bra PLED_confirmbox_move_cursor2 ; No! | |
1546 movlw d'1' ; Yes, reset to position 1! | |
1547 movwf menupos | |
1548 PLED_confirmbox_move_cursor2: | |
1549 bra PLED_confirmbox2 ; Return to Profile Menu, also updates cursor | |
1550 | |
1551 | |
1552 PLED_depth: | |
1553 ostc_debug 'r' ; Sends debug-information to screen if debugmode active | |
1554 movff rel_pressure+1,hi | |
1555 movff rel_pressure+0,lo | |
1556 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mBar] | |
1557 | |
1558 movlw .039 | |
1559 cpfslt hi | |
183 | 1560 bra depth_greater_99_84mtr |
0 | 1561 |
1562 btfsc depth_greater_100m ; Was depth>100m during last call | |
1563 call PLED_clear_depth ; Yes, clear depth area | |
1564 bcf depth_greater_100m ; Do this once only... | |
1565 | |
1566 lfsr FSR2,letter | |
1567 | |
1568 movlw HIGH d'1000' | |
1569 movwf sub_a+1 | |
1570 movlw LOW d'1000' | |
1571 movwf sub_a+0 | |
1572 movff hi,sub_b+1 | |
1573 movff lo,sub_b+0 | |
1574 incf sub_b+0,F | |
1575 movlw d'0' | |
1576 addwfc sub_b+1,F ; Add 1mBar offset | |
1577 call sub16 ; sub_c = sub_a - sub_b | |
1578 btfss neg_flag ; Depth lower then 10m? | |
1579 rcall depth_less_10mtr ; Yes, add extra space | |
1580 | |
1581 WIN_TOP .24 | |
1582 WIN_LEFT .0 | |
1583 WIN_FONT FT_LARGE | |
1584 WIN_INVERT .0 ; Init new Wordprocessor | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
1585 PLED_color_code warn_depth ; Color-code the output |
0 | 1586 |
1587 movlw HIGH d'99' | |
1588 movwf sub_a+1 | |
1589 movlw LOW d'99' | |
1590 movwf sub_a+0 | |
1591 movff hi,sub_b+1 | |
1592 movff lo,sub_b+0 | |
1593 call sub16 ; sub_c = sub_a - sub_b | |
1594 btfss neg_flag ; Depth lower then 1m? | |
1595 bra pled_depth2 ; Yes, display manual Zero | |
1596 | |
1597 bsf leftbind | |
1598 bsf ignore_digit4 | |
1599 output_16 ; Full meters in Big font | |
1600 bcf leftbind | |
1601 bra pled_depth3 | |
1602 | |
1603 pled_depth2: | |
123 | 1604 PUTC '0' |
1605 | |
0 | 1606 pled_depth3: |
1607 call word_processor | |
1608 bcf ignore_digit4 | |
1609 | |
1610 WIN_FONT FT_MEDIUM | |
1611 WIN_TOP .50 | |
1612 WIN_LEFT .40 | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
1613 PLED_color_code warn_depth ; Color-code the output |
0 | 1614 |
1615 movff rel_pressure+1,hi | |
1616 movff rel_pressure+0,lo | |
1617 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mBar] | |
123 | 1618 |
1619 STRCPY "." | |
0 | 1620 |
1621 movlw HIGH d'9' | |
1622 movwf sub_a+1 | |
1623 movlw LOW d'9' | |
1624 movwf sub_a+0 | |
1625 movff hi,sub_b+1 | |
1626 movff lo,sub_b+0 | |
1627 call sub16 ; sub_c = sub_a - sub_b | |
1628 btfss neg_flag ; Depth lower then 0.1m? | |
1629 bra pled_depth4 ; Yes, display manual Zero | |
1630 | |
1631 movlw d'4' | |
1632 movwf ignore_digits | |
1633 bsf ignore_digit5 | |
1634 output_16dp d'0' | |
1635 bra pled_depth5 | |
1636 | |
1637 pled_depth4: | |
123 | 1638 PUTC '0' |
0 | 1639 |
1640 pled_depth5: | |
1641 call word_processor ; decimeters in medium font | |
1642 bcf ignore_digit5 | |
1643 WIN_FONT FT_SMALL | |
1644 return | |
1645 | |
1646 depth_greater_99_84mtr: ; Display only in full meters | |
1647 btfss depth_greater_100m ; Is depth>100m already? | |
1648 call PLED_clear_depth ; No, clear depth area and set flag | |
1649 ; Depth is already in hi:lo | |
1650 ; Show depth in Full meters | |
1651 ; That means ignore figure 4 and 5 | |
1652 lfsr FSR2,letter | |
1653 WIN_TOP .24 | |
1654 WIN_LEFT .0 | |
1655 WIN_FONT FT_LARGE | |
1656 WIN_INVERT .0 ; Init new Wordprocessor | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
1657 PLED_color_code warn_depth ; Color-code the output |
3 | 1658 |
0 | 1659 bsf ignore_digit4 |
1660 bsf leftbind | |
1661 output_16 | |
1662 bcf leftbind | |
1663 call word_processor | |
1664 bcf ignore_digit4 | |
1665 WIN_FONT FT_SMALL | |
1666 return | |
1667 | |
1668 depth_less_10mtr: | |
123 | 1669 PUTC ' ' |
0 | 1670 return |
1671 | |
1672 PLED_clear_depth ; No, clear depth area and set flag | |
204 | 1673 WIN_BOX_BLACK .24, .90, .0, .90 ;top, bottom, left, right |
0 | 1674 bsf depth_greater_100m ; Set Flag |
1675 return | |
1676 | |
1677 PLED_desaturation_time: | |
140 | 1678 movff int_O_desaturation_time+0,lo |
1679 movff int_O_desaturation_time+1,hi ; Copy | |
1680 tstfsz lo ; =0? | |
1681 bra PLED_desaturation_time2 ; No! | |
1682 tstfsz hi ; =0? | |
1683 bra PLED_desaturation_time2 ; No! | |
1684 return ; Do not display Desat | |
1685 | |
1686 PLED_desaturation_time2: | |
0 | 1687 ostc_debug 'h' |
1688 WIN_TOP .150 | |
56 | 1689 WIN_LEFT .1 |
0 | 1690 WIN_FONT FT_SMALL |
1691 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1692 call PLED_standard_color |
1693 | |
0 | 1694 lfsr FSR2,letter |
1695 OUTPUTTEXT d'14' ; Desat | |
123 | 1696 PUTC ' ' |
254 | 1697 ; movff int_O_desaturation_time+0,lo ; divide by 60... |
1698 ; movff int_O_desaturation_time+1,hi | |
255
1efd59d689f8
small change in the set time menu, default setpoints set to 0.8, 1.0 and 1.2Bar
heinrichsweikamp
parents:
254
diff
changeset
|
1699 movff desaturation_time_buffer+0,lo ; divide by 60... |
1efd59d689f8
small change in the set time menu, default setpoints set to 0.8, 1.0 and 1.2Bar
heinrichsweikamp
parents:
254
diff
changeset
|
1700 movff desaturation_time_buffer+1,hi |
254 | 1701 |
0 | 1702 call convert_time ; converts hi:lo in minutes to hours (hi) and minutes (lo) |
1703 bsf leftbind | |
1704 movf lo,W | |
1705 movff hi,lo | |
1706 movwf hi ; exchange lo and hi... | |
1707 output_8 ; Hours | |
123 | 1708 PUTC ':' |
0 | 1709 movff hi,lo ; Minutes |
1710 output_99x | |
1711 bcf leftbind | |
1712 call word_processor | |
1713 return | |
1714 | |
1715 PLED_nofly_time: | |
249 | 1716 movf nofly_time+0,W ; Is nofly null ? |
1717 iorwf nofly_time+1,W | |
1718 bnz PLED_nofly_time2 ; No... | |
140 | 1719 return |
249 | 1720 |
140 | 1721 PLED_nofly_time2: |
0 | 1722 ostc_debug 'g' |
1723 WIN_TOP .125 | |
56 | 1724 WIN_LEFT .1 |
0 | 1725 WIN_FONT FT_SMALL |
1726 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1727 call PLED_standard_color |
1728 | |
0 | 1729 lfsr FSR2,letter |
1730 OUTPUTTEXT d'35' ; NoFly | |
123 | 1731 PUTC ' ' |
0 | 1732 movff nofly_time+0,lo ; divide by 60... |
1733 movff nofly_time+1,hi | |
249 | 1734 call convert_time ; converts hi:lo in minutes to hours (hi) and minutes (lo) |
0 | 1735 bsf leftbind |
1736 movf lo,W | |
1737 movff hi,lo | |
1738 movwf hi ; exchange lo and hi... | |
1739 output_8 ; Hours | |
123 | 1740 PUTC ':' |
0 | 1741 movff hi,lo ; Minutes |
249 | 1742 ; decf lo,F |
1743 ; btfsc lo,7 ; keep Nofly time | |
1744 ; clrf lo | |
0 | 1745 output_99x |
1746 bcf leftbind | |
1747 call word_processor | |
1748 return | |
1749 | |
1750 | |
1751 update_surf_press: | |
1752 btfsc premenu ; Do not update when "Menu?" is displayed! | |
1753 return | |
1754 | |
1755 ostc_debug 'b' ; Sends debug-information to screen if debugmode active | |
1756 WIN_TOP .25 | |
56 | 1757 WIN_LEFT .1 |
0 | 1758 WIN_FONT FT_SMALL |
1759 WIN_INVERT .0 ; Init new Wordprocessor | |
239 | 1760 |
1761 btfss high_altitude_mode ; In high altitude mode? | |
1762 call PLED_standard_color ; No | |
1763 btfsc high_altitude_mode ; In high altitude mode? | |
1764 call PLED_warnings_color ; Yes, display ambient pressure in red | |
1765 | |
0 | 1766 lfsr FSR2,letter |
1767 movff amb_pressure+0,lo | |
1768 movff amb_pressure+1,hi | |
1769 bsf leftbind | |
1770 output_16 | |
1771 bcf leftbind | |
123 | 1772 STRCAT_PRINT "mbar " |
239 | 1773 call PLED_standard_color ; Reset color |
0 | 1774 return |
1775 | |
1776 update_batt_voltage_divemode: | |
141 | 1777 call PLED_warnings_color |
1778 DISPLAYTEXT d'246' ; LowBatt! | |
1779 call PLED_standard_color | |
1780 return | |
0 | 1781 |
1782 update_batt_voltage: | |
1783 ostc_debug 'f' | |
1784 | |
1785 GETCUSTOM8 d'31' ; =1 if battery voltage should be visible | |
1786 movwf lo | |
1787 movlw d'1' | |
1788 cpfseq lo ; =1? | |
1789 bra update_batt_voltage2 ; No, show symbol | |
1790 | |
1791 WIN_TOP .175 | |
56 | 1792 WIN_LEFT .1 |
0 | 1793 WIN_FONT FT_SMALL |
1794 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1795 call PLED_standard_color |
1796 | |
0 | 1797 lfsr FSR2,letter |
1798 movff batt_voltage+0,lo | |
1799 movff batt_voltage+1,hi | |
1800 movlw d'1' | |
1801 movwf ignore_digits | |
1802 bsf ignore_digit5 ; do not display mV | |
1803 bsf leftbind | |
1804 output_16dp d'2' ; e.g. 3.45V | |
1805 bcf leftbind | |
123 | 1806 STRCAT_PRINT "V " |
0 | 1807 return |
1808 | |
1809 update_batt_voltage2: | |
123 | 1810 WIN_FRAME_STD .174, .194, .1, .32 |
0 | 1811 |
25 | 1812 ; 4100-Vbatt |
1813 movlw LOW d'4100' | |
0 | 1814 movwf sub_a+0 |
25 | 1815 movlw HIGH d'4100' |
0 | 1816 movwf sub_a+1 |
1817 movff batt_voltage+0,sub_b+0 | |
1818 movff batt_voltage+1,sub_b+1 | |
1819 call sub16 ; sub_c = sub_a - sub_b | |
25 | 1820 ; Battery full (>4100mV? |
0 | 1821 btfsc neg_flag |
1822 bra update_batt_voltage2_full | |
1823 | |
25 | 1824 ; Vbatt-3500 |
1825 movlw LOW d'3500' | |
0 | 1826 movwf sub_b+0 |
25 | 1827 movlw HIGH d'3500' |
0 | 1828 movwf sub_b+1 |
1829 movff batt_voltage+0,sub_a+0 | |
1830 movff batt_voltage+1,sub_a+1 | |
1831 call sub16 ; sub_c = sub_a - sub_b | |
25 | 1832 ; Battery lower then 3500mV? |
0 | 1833 btfsc neg_flag |
1834 bra update_batt_voltage2_empty | |
1835 | |
25 | 1836 ; Battery is between 3500 and 4100mV |
0 | 1837 ; sub_c:2 is between 0 and 600 |
1838 movff sub_c+0,xA+0 | |
1839 movff sub_c+1,xA+1 | |
1840 movlw d'20' | |
1841 movwf xB+0 | |
1842 clrf xB+1 | |
1843 call div16x16 ;xA/xB=xC with xA as remainder | |
1844 ; xC is between 0 and 30 | |
1845 movff xC+0,wait_temp ;save value | |
56 | 1846 incf wait_temp,F ; +1 |
1847 | |
1848 movlw d'3' | |
0 | 1849 cpfsgt wait_temp |
56 | 1850 movwf wait_temp ; Minimum = 3 |
0 | 1851 |
1852 update_batt_voltage2a: | |
123 | 1853 WIN_BOX_STD .181, .187, .32, .34 |
25 | 1854 |
0 | 1855 update_batt_voltage3: |
25 | 1856 GETCUSTOM8 d'34' ; Color battery |
283
4ec488f046f4
Battery sign color coded, work on new uart-started 115200Baud bootloader (Do NOT use yet!)
heinrichsweikamp
parents:
281
diff
changeset
|
1857 btfsc cc_active |
4ec488f046f4
Battery sign color coded, work on new uart-started 115200Baud bootloader (Do NOT use yet!)
heinrichsweikamp
parents:
281
diff
changeset
|
1858 movlw color_yellow ; CC active |
285 | 1859 btfsc charge_done |
1860 movlw color_green ; Charge done. | |
123 | 1861 call PLED_set_color |
1862 | |
285 | 1863 movlw .177 |
123 | 1864 movff WREG,win_top ; row top (0-239) |
285 | 1865 movlw .192-.177 |
123 | 1866 movff WREG,win_height ; row bottom (0-239) |
56 | 1867 movlw .2 |
123 | 1868 movff WREG,win_leftx2 ; column left (0-159) |
1869 movff wait_temp,win_width ; column right (0-159) | |
0 | 1870 call PLED_box |
25 | 1871 call PLED_standard_color |
0 | 1872 return |
1873 | |
1874 update_batt_voltage2_empty: | |
1875 movlw d'1' | |
1876 movwf wait_temp | |
1877 bra update_batt_voltage2a | |
1878 | |
1879 update_batt_voltage2_full: | |
1880 movlw d'30' | |
1881 movwf wait_temp | |
25 | 1882 bra update_batt_voltage2a |
0 | 1883 |
1884 PLED_convert_date: ; converts into "DD/MM/YY" or "MM/DD/YY" or "YY/MM/DD" in postinc2 | |
1885 read_int_eeprom d'91' ; Read date format (0=MMDDYY, 1=DDMMYY, 2=YYMMDD) | |
1886 tstfsz EEDATA | |
1887 bra PLED_convert_date1 | |
1888 | |
1889 ; Use MMDDYY | |
1890 movff convert_value_temp+0,lo ;month | |
1891 bsf leftbind | |
1892 output_99x | |
1893 bcf leftbind | |
140 | 1894 PUTC '.' |
0 | 1895 movff convert_value_temp+1,lo ;day |
1896 bra PLED_convert_date1_common ;year | |
1897 | |
1898 PLED_convert_date1: | |
1899 read_int_eeprom d'91' ; Read date format (0=MMDDYY, 1=DDMMYY, 2=YYMMDD) | |
1900 decfsz EEDATA,F | |
1901 bra PLED_convert_date2 | |
1902 | |
1903 ; Use DDMMYY | |
1904 movff convert_value_temp+1,lo ;day | |
1905 bsf leftbind | |
1906 output_99x | |
1907 bcf leftbind | |
140 | 1908 PUTC '.' |
0 | 1909 movff convert_value_temp+0,lo ;month |
1910 | |
1911 PLED_convert_date1_common: | |
1912 bsf leftbind | |
1913 output_99x | |
1914 bcf leftbind | |
140 | 1915 PUTC '.' |
0 | 1916 movff convert_value_temp+2,lo ;year |
1917 bsf leftbind | |
1918 output_99x | |
1919 return | |
1920 | |
1921 PLED_convert_date2: | |
1922 ; Use YYMMDD | |
1923 movff convert_value_temp+2,lo ;year | |
1924 bsf leftbind | |
1925 output_99x | |
1926 bcf leftbind | |
140 | 1927 PUTC '.' |
0 | 1928 movff convert_value_temp+0,lo ;month |
1929 bsf leftbind | |
1930 output_99x | |
1931 bcf leftbind | |
140 | 1932 PUTC '.' |
0 | 1933 movff convert_value_temp+1,lo ;day |
1934 bsf leftbind | |
1935 output_99x | |
1936 return | |
1937 | |
1938 PLED_convert_date_short: ; converts into "DD/MM" or "MM/DD" or "MM/DD" in postinc2 | |
1939 read_int_eeprom d'91' ; Read date format (0=MMDDYY, 1=DDMMYY, 2=YYMMDD) | |
1940 tstfsz EEDATA | |
1941 bra PLED_convert_date_short1 | |
1942 | |
1943 ; Use MMDDYY | |
1944 PLED_convert_date_short_common: | |
1945 movff convert_value_temp+0,lo ;month | |
1946 bsf leftbind | |
1947 output_99x | |
1948 bcf leftbind | |
140 | 1949 PUTC '.' |
0 | 1950 movff convert_value_temp+1,lo ;day |
1951 bsf leftbind | |
1952 output_99x | |
1953 bcf leftbind | |
1954 return | |
1955 | |
1956 PLED_convert_date_short1: | |
1957 read_int_eeprom d'91' ; Read date format (0=MMDDYY, 1=DDMMYY, 2=YYMMDD) | |
1958 decfsz EEDATA,F | |
1959 bra PLED_convert_date_short_common ; Use YYMMDD | |
1960 | |
1961 ; Use DDMMYY | |
1962 movff convert_value_temp+1,lo ;day | |
1963 bsf leftbind | |
1964 output_99x | |
1965 bcf leftbind | |
140 | 1966 PUTC '.' |
0 | 1967 movff convert_value_temp+0,lo ;month |
1968 bsf leftbind | |
1969 output_99x | |
1970 bcf leftbind | |
1971 return | |
1972 | |
1973 update_date: | |
1974 ostc_debug 'd' | |
1975 WIN_TOP .75 | |
56 | 1976 WIN_LEFT .1 |
0 | 1977 WIN_FONT FT_SMALL |
1978 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1979 call PLED_standard_color |
1980 | |
0 | 1981 lfsr FSR2,letter |
1982 | |
1983 movff month,convert_value_temp+0 | |
1984 movff day,convert_value_temp+1 | |
1985 movff year,convert_value_temp+2 | |
1986 call PLED_convert_date ; converts into "DD/MM/YY" or "MM/DD/YY" or "YY/MM/DD" in postinc2 | |
1987 call word_processor | |
1988 return | |
1989 | |
1990 PLED_menu_clear: | |
204 | 1991 WIN_BOX_BLACK .0, .26, .65, .100 ;top, bottom, left, right |
0 | 1992 return |
1993 | |
1994 PLED_max_pressure: | |
1995 ostc_debug 'p' ; Sends debug-information to screen if debugmode active | |
75 | 1996 movff max_pressure+0,lo |
1997 movff max_pressure+1,hi | |
1998 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mBar] | |
1999 | |
2000 movlw .039 | |
2001 cpfslt hi | |
2002 bra maxdepth_greater_99_84mtr | |
2003 | |
2004 ; Display normal "xx.y" | |
2005 lfsr FSR2,letter | |
2006 call PLED_standard_color | |
0 | 2007 WIN_TOP .184 |
2008 WIN_LEFT .0 | |
2009 WIN_FONT FT_MEDIUM | |
2010 WIN_INVERT .0 ; Init new Wordprocessor | |
2011 bsf leftbind | |
2012 bsf ignore_digit5 ; do not display 1cm depth | |
2013 output_16dp d'3' | |
2014 bcf leftbind | |
2015 bcf show_last3 | |
2016 call word_processor | |
2017 WIN_FONT FT_SMALL | |
2018 return | |
2019 | |
75 | 2020 maxdepth_greater_99_84mtr: ; Display only in full meters |
2021 btfss maxdepth_greater_100m ; Is max.depth>100m already? | |
2022 call PLED_clear_maxdepth ; No, clear maxdepth area and set flag | |
2023 ; max Depth is already in hi:lo | |
2024 ; Show max depth in Full meters | |
2025 ; That means ignore figure 4 and 5 | |
2026 lfsr FSR2,letter | |
2027 call PLED_standard_color | |
2028 WIN_TOP .184 | |
2029 WIN_LEFT .0 | |
2030 WIN_FONT FT_MEDIUM | |
2031 WIN_INVERT .0 ; Init new Wordprocessor | |
2032 | |
2033 bsf ignore_digit4 | |
2034 bsf leftbind | |
2035 output_16 | |
2036 bcf leftbind | |
2037 call word_processor | |
2038 bcf ignore_digit4 | |
2039 WIN_FONT FT_SMALL | |
2040 return | |
2041 | |
2042 PLED_clear_maxdepth: | |
204 | 2043 WIN_BOX_BLACK .184, .215, .0, .41 ;top, bottom, left, right |
75 | 2044 bsf maxdepth_greater_100m ; Set Flag |
2045 return | |
2046 | |
0 | 2047 PLED_divemins: |
2048 btfsc menubit ; Divemode menu active? | |
2049 return ; Yes, do not update divetime | |
2050 | |
2051 ostc_debug 'A' ; Sends debug-information to screen if debugmode active | |
2052 | |
2053 btfsc gauge_mode ; different display in gauge mode | |
2054 bra PLED_divemins_gauge | |
2055 | |
2056 btfsc FLAG_apnoe_mode ; different display in apnoe mode | |
2057 bra PLED_divemins_apnoe | |
2058 | |
2059 GETCUSTOM8 d'38' ; Show seconds (=1?) | |
2060 movwf lo | |
2061 movlw d'1' | |
2062 cpfseq lo ; =1? | |
2063 bra PLED_divemins2 ; No, minutes only | |
2064 bra PLED_divemins_gauge ; Yes, use Gauge routine | |
2065 | |
2066 PLED_divemins2: | |
2067 movff divemins+0,lo | |
2068 movff divemins+1,hi | |
2069 bcf leftbind | |
2070 lfsr FSR2,letter | |
2071 output_16_3 ; displays only last three figures from a 16Bit value (0-999) | |
2072 WIN_TOP .20 | |
2073 WIN_LEFT .120 | |
2074 WIN_FONT FT_MEDIUM | |
3 | 2075 call PLED_standard_color |
0 | 2076 call word_processor |
2077 WIN_FONT FT_SMALL | |
2078 return | |
2079 | |
2080 PLED_display_apnoe_surface: | |
2081 btfsc menubit ; Divemode menu active? | |
2082 return ; Yes, do not display surface mode timeout | |
2083 | |
9 | 2084 call PLED_divemask_color ; Set Color for Divemode mask |
0 | 2085 DISPLAYTEXT d'140' ; "SURFACE" |
3 | 2086 call PLED_standard_color |
2087 | |
0 | 2088 |
2089 WIN_TOP .85 | |
2090 WIN_LEFT .90 | |
2091 WIN_FONT FT_MEDIUM | |
3 | 2092 call PLED_standard_color |
2093 | |
0 | 2094 |
2095 movff apnoe_surface_mins,lo | |
2096 bcf leftbind | |
2097 lfsr FSR2,letter | |
2098 output_8 | |
123 | 2099 PUTC ':' |
0 | 2100 movff apnoe_surface_secs,lo |
2101 output_99x | |
2102 call word_processor | |
2103 WIN_FONT FT_SMALL | |
2104 return | |
2105 | |
2106 PLED_apnoe_clear_surface: | |
2107 ; Clear Surface timer.... | |
204 | 2108 WIN_BOX_BLACK .60, .119, .90, .159 ;top, bottom, left, right |
0 | 2109 return |
2110 | |
2111 | |
2112 PLED_display_apnoe_descent: | |
9 | 2113 call PLED_divemask_color ; Set Color for Divemode mask |
0 | 2114 DISPLAYTEXT d'139' ; "Descent" |
3 | 2115 call PLED_standard_color |
2116 | |
0 | 2117 |
2118 WIN_TOP .145 | |
2119 WIN_LEFT .90 | |
2120 WIN_FONT FT_MEDIUM | |
3 | 2121 call PLED_standard_color |
2122 | |
0 | 2123 |
2124 movff apnoe_mins,lo | |
2125 lfsr FSR2,letter | |
2126 output_8 | |
123 | 2127 PUTC ':' |
0 | 2128 movff apnoe_secs,lo |
2129 output_99x | |
2130 call word_processor | |
2131 WIN_FONT FT_SMALL | |
2132 return | |
2133 | |
2134 PLED_divemins_apnoe: | |
2135 | |
2136 PLED_divemins_gauge: | |
2137 movff divemins+0,lo | |
2138 movff divemins+1,hi | |
2139 bcf leftbind | |
2140 bsf show_last3 | |
2141 lfsr FSR2,letter | |
2142 output_16_3 ;Displays only 0...999 | |
123 | 2143 PUTC ':' |
0 | 2144 movff divesecs,lo |
2145 output_99x | |
2146 WIN_TOP .20 | |
2147 WIN_LEFT .90 | |
2148 WIN_FONT FT_MEDIUM | |
3 | 2149 call PLED_standard_color |
2150 | |
0 | 2151 call word_processor |
2152 bcf show_last3 | |
2153 WIN_FONT FT_SMALL | |
2154 return | |
2155 | |
2156 PLED_stopwatch_show: | |
2157 ; Stopwatch | |
9 | 2158 call PLED_divemask_color ; Set Color for Divemode mask |
87 | 2159 DISPLAYTEXTH d'283' ; Stopwatch |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2160 |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2161 PLED_stopwatch_show2: |
3 | 2162 call PLED_standard_color |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2163 ostc_debug 'V' ; Sends debug-information to screen if debugmode active |
87 | 2164 WIN_TOP .192 |
0 | 2165 WIN_LEFT .110 |
2166 WIN_FONT FT_SMALL | |
3 | 2167 call PLED_standard_color |
2168 | |
0 | 2169 lfsr FSR2,letter |
2170 movff average_divesecs+0,lo ; Stopwatch | |
2171 movff average_divesecs+1,hi ; Stopwatch | |
2172 movlw d'2' | |
2173 subwf lo,F | |
2174 movlw d'0' | |
2175 subwfb hi,F ; Subtract 2 seconds | |
2176 | |
2177 call convert_time ; converts hi:lo in seconds to mins (hi) and secs (lo) | |
2178 | |
2179 movff lo,wait_temp | |
2180 movff hi,lo | |
2181 clrf hi | |
2182 | |
2183 movlw d'0' | |
2184 bcf leftbind | |
2185 bsf show_last3 | |
2186 output_16_3 ;Displays only 0...999 | |
123 | 2187 PUTC ':' |
0 | 2188 movff wait_temp,lo |
2189 output_99x | |
2190 call word_processor | |
2191 | |
2192 ostc_debug 'U' ; Sends debug-information to screen if debugmode active | |
2193 | |
87 | 2194 WIN_TOP .216 |
2195 WIN_LEFT .110 | |
0 | 2196 WIN_FONT FT_SMALL |
3 | 2197 call PLED_standard_color |
2198 | |
0 | 2199 lfsr FSR2,letter |
2200 movff avr_rel_pressure+0,lo | |
2201 movff avr_rel_pressure+1,hi | |
2202 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mBar] | |
2203 bsf ignore_digit5 ; do not display 1cm depth | |
2204 output_16dp d'3' | |
2205 bcf leftbind | |
123 | 2206 STRCAT_PRINT "m" |
0 | 2207 return |
2208 | |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2209 PLED_total_average_show: |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2210 ; Non-Resettable Average |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2211 call PLED_divemask_color ; Set Color for Divemode mask |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2212 DISPLAYTEXTH d'281' ; Avr.Depth |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2213 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2214 PLED_total_average_show2: |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2215 WIN_TOP .192 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2216 WIN_LEFT .110 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2217 WIN_FONT FT_SMALL |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2218 call PLED_standard_color |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2219 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2220 lfsr FSR2,letter |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2221 movff avr_rel_pressure_total+0,lo |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2222 movff avr_rel_pressure_total+1,hi |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2223 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mBar] |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2224 bsf ignore_digit5 ; do not display 1cm depth |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2225 bcf leftbind |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2226 output_16dp d'3' |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2227 STRCAT_PRINT "m" |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2228 return |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2229 |
235 | 2230 ;============================================================================= |
2231 ; Writes OSTC #Serial and Firmware version in surfacemode | |
2232 ; | |
2233 PLED_serial: | |
0 | 2234 ostc_debug 'a' ; Sends debug-information to screen if debugmode active |
2235 WIN_TOP .0 | |
56 | 2236 WIN_LEFT .1 |
0 | 2237 WIN_FONT FT_SMALL |
235 | 2238 WIN_INVERT .0 ; Init new Wordprocessor |
2239 | |
2240 ifdef __DEBUG | |
2241 movlw color_grey ; Write header in blue when | |
2242 call PLED_set_color ; compiled in DEBUG mode... | |
2243 else | |
3 | 2244 call PLED_standard_color |
235 | 2245 endif |
3 | 2246 |
0 | 2247 lfsr FSR2,letter |
235 | 2248 OUTPUTTEXTH d'262' ; "OSTC " |
107 | 2249 clrf EEADRH |
235 | 2250 clrf EEADR ; Get Serial number LOW |
2251 call read_eeprom ; read byte | |
107 | 2252 movff EEDATA,lo |
235 | 2253 incf EEADR,F ; Get Serial number HIGH |
2254 call read_eeprom ; read byte | |
107 | 2255 movff EEDATA,hi |
2256 | |
2257 bsf leftbind | |
2258 output_16 | |
235 | 2259 STRCAT " \x90\x91 V" ; Scribble logo... |
0 | 2260 movlw softwareversion_x |
2261 movwf lo | |
2262 bsf leftbind | |
2263 output_8 | |
123 | 2264 PUTC '.' |
0 | 2265 movlw softwareversion_y |
2266 movwf lo | |
2267 bsf leftbind | |
2268 output_99x | |
2269 bcf leftbind | |
235 | 2270 |
2271 ifdef __DEBUG | |
2272 STRCAT_PRINT "-Dbg" | |
2273 else | |
0 | 2274 call word_processor |
140 | 2275 |
235 | 2276 movlw softwareversion_beta ; =1: Beta, =0: Release |
140 | 2277 decfsz WREG,F |
235 | 2278 return ; Release version -> Return |
140 | 2279 |
2280 call PLED_warnings_color | |
235 | 2281 DISPLAYTEXT d'243' ; beta |
140 | 2282 call PLED_standard_color |
235 | 2283 endif |
2284 | |
0 | 2285 return |
2286 | |
235 | 2287 ;============================================================================= |
2288 | |
0 | 2289 PLED_divemode_menu_mask_first: ; Write Divemode menu1 mask |
2290 ostc_debug 'o' ; Sends debug-information to screen if debugmode active | |
2291 call PLED_menu_clear ; clear "Menu?" | |
123 | 2292 call PLED_standard_color |
0 | 2293 |
2294 btfsc FLAG_const_ppO2_mode ; are we in ppO2 mode? | |
2295 bra PLED_divemode_menu_mask_first2 | |
73
2227459e8ef2
Exchanged Decoplan and Gaslist in dive mode menu
heinrichsweikamp
parents:
71
diff
changeset
|
2296 |
0 | 2297 ; in OC Mode |
2298 DISPLAYTEXT .32 ;"Gaslist" | |
73
2227459e8ef2
Exchanged Decoplan and Gaslist in dive mode menu
heinrichsweikamp
parents:
71
diff
changeset
|
2299 DISPLAYTEXT .31 ;"Decoplan" |
0 | 2300 bra PLED_divemode_menu_mask_first3 |
2301 | |
2302 PLED_divemode_menu_mask_first2: | |
2303 ; in CC Mode | |
73
2227459e8ef2
Exchanged Decoplan and Gaslist in dive mode menu
heinrichsweikamp
parents:
71
diff
changeset
|
2304 DISPLAYTEXT .238 ;"SetPoint" |
2227459e8ef2
Exchanged Decoplan and Gaslist in dive mode menu
heinrichsweikamp
parents:
71
diff
changeset
|
2305 DISPLAYTEXT .31 ;"Decoplan" |
0 | 2306 |
2307 PLED_divemode_menu_mask_first3: | |
2308 ; In all modes | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2309 call customview_menu_entry3 ; Show customview-dependent menu entry |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2310 DISPLAYTEXT .241 ;"Display" |
0 | 2311 DISPLAYTEXT .34 ;"Exit" |
2312 return | |
2313 | |
2314 PLED_divemode_set_xgas: ; Displayes the "Set Gas" menu | |
2315 WIN_LEFT .100 | |
2316 WIN_TOP .0 | |
2317 WIN_FONT FT_SMALL | |
3 | 2318 call PLED_standard_color |
2319 | |
228 | 2320 STRCPY "G6:" |
0 | 2321 read_int_eeprom d'24' ; Get Gas6 %O2 |
2322 movff EEDATA,lo | |
2323 bcf leftbind | |
2324 output_99 ; outputs into Postinc2! | |
123 | 2325 PUTC '/' |
0 | 2326 read_int_eeprom d'25' ; Get Gas6 %He |
2327 movff EEDATA,lo | |
2328 output_99 ; outputs into Postinc2! | |
2329 call word_processor | |
2330 DISPLAYTEXT .123 ; O2 + | |
2331 DISPLAYTEXT .124 ; O2 - | |
2332 DISPLAYTEXT .125 ; He + | |
2333 DISPLAYTEXT .126 ; He - | |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2334 DISPLAYTEXTH d'300' ; Active? (Enable/Disable Gas underwater) |
0 | 2335 return |
2336 | |
2337 PLED_divemode_simulator_mask: | |
124 | 2338 call PLED_standard_color |
2339 DISPLAYTEXT .254 ; Close | |
2340 DISPLAYTEXT .250 ; + 1m | |
2341 DISPLAYTEXT .251 ; - 1m | |
2342 DISPLAYTEXT .252 ; +10m | |
2343 DISPLAYTEXT .253 ; -10m | |
2344 return | |
0 | 2345 |
123 | 2346 ;----------------------------------------------------------------------------- |
124 | 2347 ; Draw a stop of the deco plan (simulator or dive). |
2348 ; Inputs: lo = depth. Range 3m...93m | |
279
8514588eb6a2
Mark gas-switch stops for decoplans, displayed in yellow.
JeanDo
parents:
277
diff
changeset
|
2349 ; + 80 if this is a switch-gas stop. |
124 | 2350 ; hi = minutes. range 1'..240'. |
2351 ; win_top = line to draw on screen. | |
2352 ; Trashed: hi, lo, win_height, win_leftx2, win_width, win_color*, | |
2353 ; WREG, PROD, TBLPTR TABLAT. | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2354 ; |
124 | 2355 PLED_decoplan_show_stop: |
2356 ;---- Print depth ---------------------------------------------------- | |
2357 WIN_LEFT .100 | |
279
8514588eb6a2
Mark gas-switch stops for decoplans, displayed in yellow.
JeanDo
parents:
277
diff
changeset
|
2358 |
8514588eb6a2
Mark gas-switch stops for decoplans, displayed in yellow.
JeanDo
parents:
277
diff
changeset
|
2359 btfss lo,7 ; Bit set ? |
8514588eb6a2
Mark gas-switch stops for decoplans, displayed in yellow.
JeanDo
parents:
277
diff
changeset
|
2360 bra PLED_decoplan_std_stop ; No : Just an usual stop. |
8514588eb6a2
Mark gas-switch stops for decoplans, displayed in yellow.
JeanDo
parents:
277
diff
changeset
|
2361 |
8514588eb6a2
Mark gas-switch stops for decoplans, displayed in yellow.
JeanDo
parents:
277
diff
changeset
|
2362 movlw b'11111101' ; Yellow. |
8514588eb6a2
Mark gas-switch stops for decoplans, displayed in yellow.
JeanDo
parents:
277
diff
changeset
|
2363 call PLED_set_color |
8514588eb6a2
Mark gas-switch stops for decoplans, displayed in yellow.
JeanDo
parents:
277
diff
changeset
|
2364 bcf lo,7 ; and cleanup depth. |
8514588eb6a2
Mark gas-switch stops for decoplans, displayed in yellow.
JeanDo
parents:
277
diff
changeset
|
2365 bra PLED_decoplan_nstd_stop |
8514588eb6a2
Mark gas-switch stops for decoplans, displayed in yellow.
JeanDo
parents:
277
diff
changeset
|
2366 |
8514588eb6a2
Mark gas-switch stops for decoplans, displayed in yellow.
JeanDo
parents:
277
diff
changeset
|
2367 PLED_decoplan_std_stop: |
124 | 2368 call PLED_standard_color |
279
8514588eb6a2
Mark gas-switch stops for decoplans, displayed in yellow.
JeanDo
parents:
277
diff
changeset
|
2369 |
8514588eb6a2
Mark gas-switch stops for decoplans, displayed in yellow.
JeanDo
parents:
277
diff
changeset
|
2370 PLED_decoplan_nstd_stop: |
124 | 2371 lfsr FSR2,letter |
2372 bsf leftbind | |
2373 output_8 ; outputs into Postinc2! | |
2374 STRCAT_PRINT "m " | |
2375 | |
2376 ;---- Print duration ------------------------------------------------- | |
2377 WIN_LEFT .140 | |
2378 lfsr FSR2,letter | |
2379 | |
2380 movf lo,W ; Swap hi & lo | |
2381 movff hi,lo | |
2382 movwf hi | |
2383 | |
2384 output_8 ; Allow up to 240' | |
2385 STRCAT_PRINT "' " ; 1 to 3 chars for depth. | |
2386 | |
2387 movf lo,W ; Swap back hi & lo | |
2388 movff hi,lo | |
2389 movwf hi | |
2390 | |
2391 ;--------------------------------------------------------------------- | |
2392 ; Draw the bar graph used for deco stops (decoplan in simulator or dive). | |
2393 movff win_top,WREG ; Increment win_top (BANK SAFE) | |
2394 incf WREG | |
2395 movff WREG,win_top | |
2396 movlw d'18'+1 ; 19 --> height (bank safe !) | |
2397 movff WREG,win_height | |
2398 movlw .122 | |
2399 movff WREG,win_leftx2 ; column left (0-159) | |
150 | 2400 movlw .16 |
2401 movff WREG,win_width ; column max width. | |
2402 | |
2403 ; Draw used area (hi = minutes): | |
124 | 2404 movlw d'16' ; Limit length (16min) |
2405 cpfslt hi | |
2406 movwf hi | |
150 | 2407 movff hi,win_bargraph ; Active width, the rest is cleared. |
124 | 2408 call PLED_box |
2409 | |
2410 ; Restore win_top | |
279
8514588eb6a2
Mark gas-switch stops for decoplans, displayed in yellow.
JeanDo
parents:
277
diff
changeset
|
2411 call PLED_standard_color |
124 | 2412 movff win_top,WREG ; decf win_top (BANK SAFE) |
2413 decf WREG | |
2414 movff WREG,win_top | |
2415 return | |
123 | 2416 |
2417 ;----------------------------------------------------------------------------- | |
124 | 2418 ; Clear unused area belw last stop |
2419 ; Inputs: win_top : last used area... | |
2420 PLED_decoplan_clear_bottom: | |
2421 movff win_top,WREG ; Get back from bank0 | |
2422 btfsc divemode ; In dive mode ? | |
150 | 2423 sublw .168 ; Yes: bottom row in divemode |
124 | 2424 btfss divemode ; In dive mode ? |
2425 sublw .240 ; No: bottom row in planning | |
2426 movff WREG,win_height | |
2427 | |
2428 WIN_LEFT .82 ; Full divemenu width | |
2429 movlw .160-.82+1 | |
2430 movff WREG,win_width | |
2431 | |
2432 clrf WREG ; Fill with black | |
2433 movff WREG,win_color1 | |
2434 movff WREG,win_color2 | |
2435 | |
2436 goto PLED_box | |
123 | 2437 |
2438 ;----------------------------------------------------------------------------- | |
124 | 2439 ; Display the decoplan (simulator or divemode) for GF model |
2440 ; Inputs: char_O_deco_table (array of stop times, in minutes) | |
2441 ; decoplan_page = page number. Displays 5 stop by page. | |
2442 ; | |
164 | 2443 #define decoplan_index apnoe_mins ; within each page |
2444 #define decoplan_gindex apnoe_secs ; global index | |
2445 #define decoplan_last apnoe_max_pressure ; Depth of last stop (CF#29) | |
2446 #define decoplan_max apnoe_max_pressure+1; Number of lines per page. 7 in planning, 5 in diving. | |
124 | 2447 |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2448 PLED_decoplan: |
124 | 2449 ostc_debug 'n' ; Sends debug-information to screen if debugmode active |
2450 | |
2451 WIN_INVERT 0 | |
2452 | |
2453 ;---- Is there deco stops ? ------------------------------------------ | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2454 movff char_O_first_deco_depth,WREG |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2455 iorwf WREG |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2456 bnz PLED_decoplan_1 |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2457 |
124 | 2458 ;---- No Deco -------------------------------------------------------- |
2459 call PLED_standard_color | |
2460 DISPLAYTEXT d'239' ;"No Deco" | |
2461 bsf last_ceiling_gf_shown | |
2462 return | |
2463 | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2464 PLED_decoplan_1: |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2465 lfsr FSR0,char_O_deco_depth ; Initialize indexed addressing. |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2466 lfsr FSR1,char_O_deco_time |
124 | 2467 |
2468 movlw .8 ; 8 lines/page in decoplan | |
2469 btfsc divemode | |
2470 movlw .6 ; 6 lines/page in divemode. | |
2471 movwf decoplan_max | |
2472 | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2473 clrf decoplan_index ; Start with index = 0 |
124 | 2474 clrf WREG |
2475 movff WREG,win_top ; and row = 0 | |
2476 | |
2477 ; Read stop parameters, indexed by decoplan_index and decoplan_page | |
2478 movf decoplan_page,W ; decoplan_gindex = 6*decoplan_page + decoplan_index | |
2479 mulwf decoplan_max | |
2480 movf decoplan_index,W | |
2481 addwf PRODL,W | |
2482 movwf decoplan_gindex ; --> decoplan_gindex | |
2483 | |
2484 bcf last_ceiling_gf_shown ; Not finished yet... | |
2485 | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2486 PLED_decoplan_2: |
124 | 2487 btfsc decoplan_gindex,5 ; Reached table length (32) ? |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2488 bra PLED_decoplan_99 ; YES: finished... |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2489 |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2490 ; Read stop parameters, indexed by decoplan_index |
124 | 2491 movf decoplan_gindex,W ; index |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2492 movff PLUSW1,hi ; char_O_deco_time [gindex] --> hi |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2493 movff PLUSW0,lo ; char_O_deco_depth[gindex] |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2494 movf lo,W |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2495 bz PLED_decoplan_99 ; depth == 0 : finished. |
124 | 2496 |
2497 ; Display the stop line | |
2498 call PLED_decoplan_show_stop | |
2499 | |
2500 ; Next | |
2501 movff win_top,WREG ; row: += 24 | |
2502 addlw .24 | |
2503 movff WREG,win_top | |
2504 incf decoplan_index,F ; local index += 1 | |
2505 incf decoplan_gindex,F ; global index += 1 | |
2506 | |
2507 ; Max number of lines/page reached ? | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2508 movf decoplan_max,W ; index+1 == max ? |
124 | 2509 cpfseq decoplan_index |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2510 bra PLED_decoplan_2 ; NO: loop |
124 | 2511 |
2512 ; Check if next stop if end-of-list ? | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2513 movf decoplan_gindex,W |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2514 movff PLUSW0,WREG ; char_O_deco_depth[gindex] |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2515 iorwf WREG |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2516 bz PLED_decoplan_99 ; End of list... |
124 | 2517 |
2518 ; Display the message "more..." | |
223 | 2519 bcf last_ceiling_gf_shown ; More page to display... |
2520 | |
124 | 2521 rcall PLED_decoplan_clear_bottom ; Clear from next line |
2522 | |
2523 WIN_LEFT .130 - 7*3 | |
2524 call PLED_standard_color | |
223 | 2525 lfsr FSR2,letter |
2526 OUTPUTTEXT .142 ; More... | |
2527 goto word_processor | |
124 | 2528 |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2529 PLED_decoplan_99: |
124 | 2530 bsf last_ceiling_gf_shown ; Nothing more in table to display. |
2531 rcall PLED_decoplan_clear_bottom ; Clear from next line | |
2532 return | |
2533 ;----------------------------------------------------------------------------- | |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2534 |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2535 PLED_de_activelist: ; show (de)active gaslist |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2536 call PLED_standard_color |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2537 DISPLAYTEXT .254 ; Close |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2538 |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2539 WIN_LEFT .100 |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2540 WIN_FONT FT_SMALL |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2541 bsf leftbind |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2542 |
281 | 2543 ; movlw d'92' ; old sorted list |
2544 movlw d'2' | |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2545 movwf wait_temp ; here: stores eeprom address for gas list |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2546 movlw d'0' |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2547 movwf waitms_temp ; here: stores row for gas list |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2548 clrf hi ; here: Gas counter |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2549 |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2550 PLED_de_activelist_loop: |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2551 incf hi,F ; Increase Gas |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2552 movlw d'4' |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2553 addwf wait_temp,F ; Increase eeprom address for gas list |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2554 movlw d'25' |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2555 addwf waitms_temp,F ; Increase row |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2556 WIN_LEFT .100 |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2557 movff waitms_temp,win_top ; Set Row |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2558 |
221 | 2559 lfsr FSR2,letter |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2560 movff wait_temp, EEADR; Gas #hi: %O2 - Set address in internal EEPROM |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2561 call read_eeprom ; get byte (stored in EEDATA) |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2562 movff EEDATA,lo ; copy to lo |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2563 output_8 ; outputs into Postinc2! |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2564 PUTC '/' |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2565 incf EEADR,F ; Gas #hi: %He - Set address in internal EEPROM |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2566 call read_eeprom ; get byte (stored in EEDATA) |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2567 movff EEDATA,lo ; copy to lo |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2568 output_8 ; outputs into Postinc2! |
221 | 2569 PUTC '@' |
2570 | |
281 | 2571 ; movlw d'117' ; old sorted list |
2572 movlw d'27' | |
221 | 2573 addwf hi,W |
2574 movwf EEADR ; Point to Change depth | |
2575 | |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2576 call read_eeprom ; get byte (stored in EEDATA) |
221 | 2577 movff EEDATA,lo ; copy to lo |
2578 output_8 ; outputs into Postinc2! | |
2579 | |
2580 ; call PLED_standard_color | |
2581 | |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2582 ; Check if gas needs to be greyed-out (inactive) |
221 | 2583 movff sorted_gaslist_active,EEDATA ; Get flag register |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2584 movff hi,lo ; copy gas number |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2585 PLED_de_activelist_loop1: |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2586 rrcf EEDATA ; roll flags into carry |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2587 decfsz lo,F ; max. 5 times... |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2588 bra PLED_de_activelist_loop1 |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2589 |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2590 movlw color_grey |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2591 btfss STATUS,C ; test carry |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2592 call PLED_set_color ; grey out inactive gases! |
221 | 2593 |
2594 dcfsnz hi,W ; First in List? | |
2595 call PLED_standard_color | |
2596 | |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2597 call word_processor |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2598 call PLED_standard_color |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2599 |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2600 movlw d'5' ; list all five gases |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2601 cpfseq hi ; All gases shown? |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2602 bra PLED_de_activelist_loop ; No |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2603 |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2604 return ; return |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2605 |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2606 |
0 | 2607 PLED_gas_list: |
2608 ostc_debug 'm' ; Sends debug-information to screen if debugmode active | |
2609 | |
2610 WIN_LEFT .100 | |
2611 WIN_FONT FT_SMALL | |
2612 bsf leftbind | |
2613 | |
2614 movlw d'2' | |
2615 movwf wait_temp ; here: stores eeprom address for gas list | |
2616 movlw d'231' | |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
2617 movwf waitms_temp ; here: stores row for gas list |
0 | 2618 clrf hi ; here: Gas counter |
2619 | |
2620 PLED_gas_list_loop: | |
2621 incf hi,F ; Increase Gas | |
2622 movlw d'4' | |
2623 addwf wait_temp,F ; Increase eeprom address for gas list | |
2624 movlw d'25' | |
2625 addwf waitms_temp,F ; Increase row | |
2626 WIN_LEFT .100 | |
2627 movff waitms_temp,win_top ; Set Row | |
2628 | |
123 | 2629 STRCPY "G" |
0 | 2630 movff hi,lo ; copy gas number |
2631 output_8 ; display gas number | |
123 | 2632 PUTC ':' |
0 | 2633 movff wait_temp, EEADR; Gas #hi: %O2 - Set address in internal EEPROM |
2634 call read_eeprom ; get byte (stored in EEDATA) | |
2635 movff EEDATA,lo ; copy to lo | |
2636 output_8 ; outputs into Postinc2! | |
123 | 2637 PUTC '/' |
0 | 2638 incf EEADR,F ; Gas #hi: %He - Set address in internal EEPROM |
2639 call read_eeprom ; get byte (stored in EEDATA) | |
2640 movff EEDATA,lo ; copy to lo | |
2641 output_8 ; outputs into Postinc2! | |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
2642 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
2643 decf EEADR,F ; Gas #hi: %O2 - Set address in internal EEPROM |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
2644 call read_eeprom ; get byte (stored in EEDATA) |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
2645 PLED_color_code warn_gas_in_gaslist ; Color-code output (%O2 in "EEDATA") |
281 | 2646 ; Check if gas needs to be greyed-out (inactive) |
2647 movff sorted_gaslist_active, EEDATA ; Work with sorted list | |
2648 ; read_int_eeprom d'27' ; read flag register | |
0 | 2649 movff hi,lo ; copy gas number |
2650 PLED_gas_list_loop1: | |
2651 rrcf EEDATA ; roll flags into carry | |
2652 decfsz lo,F ; max. 5 times... | |
2653 bra PLED_gas_list_loop1 | |
19 | 2654 |
2655 movlw color_grey | |
0 | 2656 btfss STATUS,C ; test carry |
19 | 2657 call PLED_set_color ; grey out inactive gases! |
0 | 2658 |
2659 call word_processor | |
19 | 2660 call PLED_standard_color |
0 | 2661 |
2662 movlw d'5' ; list all five gases | |
2663 cpfseq hi ; All gases shown? | |
2664 bra PLED_gas_list_loop ; No | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2665 |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2666 DISPLAYTEXT d'122' ; Gas 6.. |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2667 return ; return (OC mode) |
0 | 2668 |
2669 PLED_splist_start: | |
2670 WIN_LEFT .100 | |
2671 WIN_FONT FT_SMALL | |
2672 bsf leftbind | |
127 | 2673 call PLED_standard_color |
0 | 2674 |
2675 ; list three SP in Gaslist | |
2676 movlw d'35' ; 36 = current SP position in EEPROM | |
2677 movwf wait_temp ; here: stores eeprom address for gas list | |
2678 movlw d'231' | |
2679 movwf waitms_temp ; here: stores row for gas list | |
124 | 2680 clrf decoplan_index ; here: SP counter |
0 | 2681 |
2682 PLED_splist_loop: | |
2683 incf wait_temp,F ; EEPROM address | |
124 | 2684 incf decoplan_index,F ; Increase SP |
0 | 2685 |
2686 movlw d'25' | |
2687 addwf waitms_temp,F ; Increase row | |
2688 movff waitms_temp,win_top ; Set Row | |
2689 WIN_LEFT .100 | |
2690 | |
123 | 2691 STRCPY "SP" |
124 | 2692 movff decoplan_index,lo ; copy gas number |
0 | 2693 output_8 ; display gas number |
123 | 2694 PUTC ':' |
0 | 2695 movff wait_temp, EEADR; SP #hi position |
2696 call read_eeprom ; get byte (stored in EEDATA) | |
2697 movff EEDATA,lo ; copy to lo | |
2698 clrf hi | |
2699 output_16dp d'3' ; outputs into Postinc2! | |
2700 call word_processor | |
2701 | |
2702 movlw d'3' ; list all three SP | |
124 | 2703 cpfseq decoplan_index ; All gases shown? |
0 | 2704 bra PLED_splist_loop ; No |
2705 | |
2706 bcf leftbind | |
2707 return ; no, return | |
2708 | |
2709 PLED_clear_divemode_menu: | |
204 | 2710 WIN_BOX_BLACK .0, .168, .82, .160 ;top, bottom, left, right |
0 | 2711 return |
2712 | |
2713 PLED_divemenu_cursor: | |
2714 ostc_debug 'l' ; Sends debug-information to screen if debugmode active | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2715 |
204 | 2716 WIN_BOX_BLACK .0, .150, .85, .95 ;top, bottom, left, right |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2717 |
0 | 2718 WIN_TOP .0 |
2719 WIN_LEFT .85 | |
2720 WIN_FONT FT_SMALL | |
2721 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 2722 call PLED_standard_color |
84 | 2723 |
0 | 2724 movff menupos,temp1 |
2725 movlw d'0' | |
2726 dcfsnz temp1,F | |
2727 movlw d'0' | |
2728 dcfsnz temp1,F | |
2729 movlw d'25' | |
2730 dcfsnz temp1,F | |
2731 movlw d'50' | |
2732 dcfsnz temp1,F | |
2733 movlw d'75' | |
2734 dcfsnz temp1,F | |
2735 movlw d'100' | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2736 dcfsnz temp1,F |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2737 movlw d'125' |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2738 |
0 | 2739 movff WREG,win_top |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2740 STRCPY_PRINT "\xB7" ; Cursor |
0 | 2741 return |
2742 | |
128 | 2743 |
2744 ;============================================================================= | |
2745 ; Draw saturation graph, is surface mode or in dive mode. | |
2746 ; | |
0 | 2747 PLED_tissue_saturation_graph: |
2748 ostc_debug 'i' ; Sends debug-information to screen if debugmode active | |
13 | 2749 |
128 | 2750 ;---- Draw Frame --------------------------------------------------------- |
2751 btfsc divemode | |
2752 bra PLED_tsg_1 | |
2753 | |
2754 WIN_FRAME_STD .25, .120, .82, .159 ; Surfmode | |
2755 bra PLED_tsg_2 | |
2756 PLED_tsg_1: | |
2757 WIN_FRAME_STD .169, .239, .90, .159 ; Divemode | |
2758 PLED_tsg_2: | |
2759 | |
2760 ;---- Draw grid ---------------------------------------------------------- | |
133 | 2761 btfss divemode |
2762 bra PLED_no_graph_grid | |
2763 | |
128 | 2764 movlw color_grey |
2765 call PLED_set_color | |
2766 | |
2767 movlw .169+.1 ; divemode | |
2768 movff WREG,win_top | |
2769 movlw .239-.169-.1 ; divemode | |
2770 movff WREG,win_height | |
2771 | |
2772 movlw 1 | |
2773 movff WREG,win_width | |
2774 | |
2775 movlw .122 | |
2776 movff WREG,win_leftx2 | |
2777 call PLED_box | |
2778 movlw .131 | |
2779 movff WREG,win_leftx2 | |
2780 call PLED_box | |
2781 movlw .140 | |
2782 movff WREG,win_leftx2 | |
2783 call PLED_box | |
2784 movlw .149 | |
2785 movff WREG,win_leftx2 | |
2786 call PLED_box | |
133 | 2787 PLED_no_graph_grid: |
128 | 2788 |
2789 ;---- Draw N2 Tissues ---------------------------------------------------- | |
0 | 2790 lfsr FSR2, char_O_tissue_saturation+.000 ; N2 |
2791 movlw d'16' | |
128 | 2792 movwf wait_temp ; 16 tissues |
2793 clrf waitms_temp ; Row offset | |
2794 | |
123 | 2795 movlw .1 |
2796 movff WREG,win_height ; row bottom (0-239) | |
128 | 2797 movlw .82+.18 ; surfmode |
2798 btfsc divemode | |
133 | 2799 movlw .90+.18 ; divemode |
123 | 2800 movff WREG,win_leftx2 ; column left (0-159) |
150 | 2801 movlw .57 ; surfmode: max width 57pix |
2802 btfsc divemode | |
2803 movlw .57-8 ; divemode: 8pix less... | |
2804 movff WREG,win_width | |
123 | 2805 |
0 | 2806 PLED_tissue_saturation_graph3: |
150 | 2807 call PLED_standard_color ; Reset color foreach iteration |
2808 | |
128 | 2809 movlw .25+3 ; surfmode: 3pix below top border |
2810 btfsc divemode | |
2811 movlw .169+3 ; divemode | |
0 | 2812 addwf waitms_temp,W |
123 | 2813 movff WREG,win_top ; row top (0-239) |
0 | 2814 |
2815 incf waitms_temp,F | |
2816 incf waitms_temp,F | |
2817 | |
123 | 2818 movf POSTINC2,W |
2819 bcf STATUS,C ; Clear carry | |
2820 rrcf WREG ; And divide by 4 | |
0 | 2821 bcf STATUS,C |
123 | 2822 rrcf WREG |
133 | 2823 movwf temp1 |
2824 | |
150 | 2825 movff win_width,WREG ; Max width. |
133 | 2826 cpfslt temp1 ; skip if 57 (WREG) < win_width |
2827 movwf temp1 | |
150 | 2828 movff temp1,win_bargraph |
0 | 2829 |
2830 call PLED_box | |
2831 | |
2832 decfsz wait_temp,F | |
2833 bra PLED_tissue_saturation_graph3 | |
2834 | |
128 | 2835 ;---- Draw He Tissues ---------------------------------------------------- |
0 | 2836 lfsr FSR2, char_O_tissue_saturation+.016 ; He |
2837 movlw d'16' | |
128 | 2838 movwf wait_temp ; 16 tissues |
2839 clrf waitms_temp ; Row offset | |
123 | 2840 |
0 | 2841 PLED_tissue_saturation_graph2: |
150 | 2842 call PLED_standard_color ; Reset color foreach iteration |
123 | 2843 |
128 | 2844 movlw .120-.33 ; surfmode : 33pix above bottom border |
2845 btfsc divemode | |
2846 movlw .239-.33 ; divemode | |
0 | 2847 addwf waitms_temp,W |
123 | 2848 movff WREG,win_top ; row top (0-239) |
0 | 2849 |
2850 incf waitms_temp,F | |
2851 incf waitms_temp,F | |
2852 | |
123 | 2853 movf POSTINC2,W |
2854 bcf STATUS,C ; Clear carry | |
2855 rrcf WREG ; And divide by 4 | |
0 | 2856 bcf STATUS,C |
123 | 2857 rrcf WREG |
133 | 2858 movwf temp1 |
150 | 2859 |
2860 movff win_width,WREG ; Max width. | |
133 | 2861 cpfslt temp1 ; skip if 57 (WREG) < win_width |
2862 movwf temp1 | |
150 | 2863 movff temp1,win_bargraph |
0 | 2864 |
2865 call PLED_box | |
2866 | |
2867 decfsz wait_temp,F | |
2868 bra PLED_tissue_saturation_graph2 | |
2869 | |
128 | 2870 ;---- Draw N2/He Text ---------------------------------------------------- |
150 | 2871 call PLED_standard_color ; Reset color after last iterarion. |
2872 | |
128 | 2873 movlw .82+2 ; surfmode: 2pix right of left border |
2874 btfsc divemode | |
2875 movlw .90+2 ; divemode | |
2876 movff WREG,win_leftx2 | |
2877 | |
2878 movlw .25+7 ; surfmode: 7pix below top border | |
2879 btfsc divemode | |
2880 movlw .169+7 ; divemode | |
2881 movff WREG,win_top | |
123 | 2882 STRCPY_PRINT "N2" |
2883 | |
128 | 2884 movlw .120-.30 ; surfmode: 30pix above bottom border |
2885 btfsc divemode | |
2886 movlw .239-.30 ; divemode | |
2887 movff WREG,win_top | |
123 | 2888 STRCPY_PRINT "He" |
128 | 2889 |
2890 ;---- Draw scale and O2[16]% --------------------------------------------- | |
2891 btfsc divemode | |
2892 return | |
19 | 2893 |
2894 movff char_O_gtissue_no,wait_temp ; used as temp | |
2895 | |
2896 lfsr FSR1,char_O_tissue_saturation+0 | |
2897 incf wait_temp,F ; make 1-16 of 0-15 | |
123 | 2898 |
19 | 2899 PLED_tissue_saturation_graph4: ; point to leading tissue... |
2900 movff POSTINC1,lo ; copy/overwrite to lo register | |
2901 decfsz wait_temp,F ; count until zero | |
2902 bra PLED_tissue_saturation_graph4 ;loop | |
123 | 2903 |
19 | 2904 WIN_TOP .62 |
2905 WIN_FONT FT_SMALL | |
128 | 2906 lfsr FSR2,letter |
2907 bsf leftbind | |
2908 output_8 | |
19 | 2909 bcf leftbind |
2910 | |
128 | 2911 STRCAT_PRINT "% " |
2912 | |
2913 ;---- Draw Scale --------------------------------------------------------- | |
123 | 2914 WIN_BOX_STD .73, .74, .121, .157 |
2915 WIN_BOX_STD .61, .84, .121, .122 | |
2916 WIN_BOX_STD .65, .80, .130, .131 | |
2917 WIN_BOX_STD .65, .80, .139, .140 | |
2918 WIN_BOX_STD .65, .80, .148, .149 | |
2919 WIN_BOX_STD .61, .84, .157, .158 | |
0 | 2920 return |
2921 | |
128 | 2922 ;============================================================================= |
2923 | |
0 | 2924 PLED_startupscreen1: |
2925 call PLED_topline_box | |
2926 WIN_INVERT .1 ; Init new Wordprocessor | |
2927 DISPLAYTEXT d'3' ; "HeinrichsWeikamp" | |
2928 WIN_INVERT .0 ; Init new Wordprocessor | |
2929 DISPLAYTEXT .68 ; Licence 1/2 | |
2930 DISPLAYTEXT .69 | |
2931 DISPLAYTEXT .70 | |
2932 DISPLAYTEXT .71 | |
2933 DISPLAYTEXT .72 | |
2934 DISPLAYTEXT .73 | |
2935 DISPLAYTEXT .74 | |
2936 return | |
2937 | |
2938 PLED_startupscreen2: | |
2939 call PLED_topline_box | |
2940 WIN_INVERT .1 ; Init new Wordprocessor | |
2941 DISPLAYTEXT d'3' ; "HeinrichsWeikamp" | |
2942 WIN_INVERT .0 ; Init new Wordprocessor | |
2943 DISPLAYTEXT .75 ; Licence 2/2 | |
2944 DISPLAYTEXT .76 | |
2945 DISPLAYTEXT .77 | |
2946 DISPLAYTEXT .78 | |
2947 DISPLAYTEXT .79 | |
2948 DISPLAYTEXT .80 | |
2949 DISPLAYTEXT .81 | |
2950 return | |
2951 | |
2952 PLED_new_cf_warning: | |
2953 call PLED_topline_box | |
2954 WIN_INVERT .1 ; Init new Wordprocessor | |
2955 DISPLAYTEXTH .271 ; New CF added! | |
2956 WIN_INVERT .0 ; Init new Wordprocessor | |
2957 DISPLAYTEXTH .272 ; New CustomFunctions | |
2958 DISPLAYTEXTH .273 ; were added! Check | |
2959 DISPLAYTEXTH .274 ; CF I and CF II Menu | |
2960 DISPLAYTEXTH .275 ; for Details! | |
2961 return | |
2962 | |
2963 PLED_const_ppO2_value: | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2964 ; btfsc multi_gf_display ; Is the Multi-GF Table displayed? |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2965 ; return ; Yes, No update and return! |
0 | 2966 |
2967 ostc_debug 'j' ; Sends debug-information to screen if debugmode active | |
2968 | |
2969 WIN_TOP .168 | |
75 | 2970 WIN_LEFT .50 |
0 | 2971 WIN_FONT FT_SMALL |
2972 WIN_INVERT .0 ; Init new Wordprocessor | |
4 | 2973 |
0 | 2974 lfsr FSR2,letter |
2975 movff char_I_const_ppO2,lo | |
2976 | |
2977 tstfsz lo ; In Bailout mode (char_I_const_ppO2=0)? | |
2978 bra PLED_const_ppO2_value2 ; No, display Setpoint | |
2979 | |
2980 ; Yes, Display "Bail" | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
2981 call PLED_standard_color |
0 | 2982 OUTPUTTEXTH d'263' ;"Bail" |
2983 call word_processor | |
2984 return | |
2985 | |
2986 PLED_const_ppO2_value2: ; Display SetPoint | |
2987 ;Show fixed SP value | |
4 | 2988 movff amb_pressure+0,xA+0 |
2989 movff amb_pressure+1,xA+1 | |
2990 movlw d'10' | |
2991 movwf xB+0 | |
2992 clrf xB+1 | |
2993 ;xA/xB=xC with xA as remainder | |
2994 call div16x16 ; xC+0=p_amb/10 | |
26 | 2995 |
4 | 2996 ; char_I_const_ppO2 > p_amb/10 -> Not physically possible! -> Display actual value! |
2997 tstfsz xC+1 ; xC>255 | |
2998 setf xC+0 ; Yes, set xC+0 to 2,55bar ppO2 | |
26 | 2999 |
4 | 3000 movff ppO2_setpoint_store,WREG |
3001 cpfslt xC+0 ; Setpoint value possible? | |
26 | 3002 bra PLED_const_ppO2_value1 ; Yes |
4 | 3003 |
3004 movff xC+0,char_I_const_ppO2 ; No, Overwrite with actual value | |
3005 bra PLED_const_ppO2_value1a | |
3006 | |
3007 PLED_const_ppO2_value1: | |
26 | 3008 ; char_I_const_ppO2 < ppO2[Diluent] -> Not physically possible! -> Display actual value! |
3009 movff amb_pressure+0,xA+0 | |
3010 movff amb_pressure+1,xA+1 | |
3011 movlw d'10' | |
3012 movwf xB+0 | |
3013 clrf xB+1 | |
3014 call div16x16 ; xC=p_amb/10 | |
3015 movff xC+0,xA+0 | |
3016 movff xC+1,xA+1 | |
3017 movff char_I_O2_ratio,xB+0 | |
3018 clrf xB+1 | |
3019 call mult16x16 ; xC:2=char_I_O2_ratio * p_amb/10 | |
3020 | |
3021 movff xC+0,sub_b+0 | |
3022 movff xC+1,sub_b+1 | |
3023 movff ppO2_setpoint_store,WREG; Setpoint | |
3024 mullw d'100' ; Setpoint*100 | |
3025 movff PRODL,sub_a+0 | |
3026 movff PRODH,sub_a+1 | |
3027 call sub16 ; sub_c = sub_a - sub_b | |
3028 | |
3029 btfss neg_flag | |
3030 bra PLED_const_ppO2_value11 ; Value in range | |
3031 | |
3032 ; char_I_const_ppO2 < ppO2[Diluent] -> Not physically possible! -> Display actual value! | |
3033 | |
3034 movff xC+0,xA+0 | |
3035 movff xC+1,xA+1 | |
3036 movlw d'100' | |
3037 movwf xB+0 | |
3038 clrf xB+1 | |
3039 call div16x16 ;xA/xB=xC with xA as remainder | |
3040 | |
3041 movff xC+0,char_I_const_ppO2 ; No, Overwrite with actual value | |
138 | 3042 |
3043 GETCUSTOM8 d'39' ; Adjust fixed SP? | |
3044 dcfsnz WREG,F | |
3045 bra PLED_const_ppO2_value1a ; Yes! | |
3046 ; Do not adjust -> restore original SetPoint | |
26 | 3047 |
3048 PLED_const_ppO2_value11: | |
3049 ; Setpoint in possible limits | |
4 | 3050 movff ppO2_setpoint_store,char_I_const_ppO2 ; Restore Setpoint |
3051 | |
3052 PLED_const_ppO2_value1a: | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
3053 PLED_color_code warn_ppo2 ; Color-code output |
4 | 3054 movff char_I_const_ppO2,lo |
0 | 3055 clrf hi |
3056 bsf leftbind | |
3057 output_16dp d'3' | |
3058 bcf leftbind | |
3059 call word_processor | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
3060 call PLED_standard_color |
0 | 3061 return |
3062 | |
274
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3063 PLED_show_end_ead_divemode: |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3064 WIN_LEFT .95 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3065 WIN_TOP .192 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3066 WIN_FONT FT_SMALL |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3067 call PLED_divemask_color ; Set Color for Divemode mask |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3068 lfsr FSR2,letter |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3069 STRCAT_PRINT "EAD:" |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3070 WIN_LEFT .95 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3071 WIN_TOP .216 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3072 lfsr FSR2,letter |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3073 STRCAT_PRINT "END:" |
277
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
3074 call PLED_standard_color |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
3075 |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
3076 btfss FLAG_const_ppO2_mode ; are we in ppO2 mode? |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
3077 bra PLED_show_end_ead_divemode2 ; no, show OC EAD and END |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
3078 |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
3079 ; We are in CCR mode... |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
3080 btfss is_bailout ; In bailout mode? |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
3081 bra PLED_show_end_ead_divemode3 ; No, show CC EAD and END |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
3082 |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
3083 PLED_show_end_ead_divemode2: ; Show OC EAD and END |
274
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3084 ; Show EAD: char_I_N2_ratio/0.79*rel_pressure:2*10 -> char_I_N2_ratio*rel_pressure:2/7900 -> EAD in m |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3085 WIN_LEFT .125 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3086 WIN_TOP .192 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3087 movff char_I_N2_ratio,xA+0 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3088 clrf xA+1 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3089 movff rel_pressure+0,xB+0 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3090 movff rel_pressure+1,xB+1 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3091 call mult16x16 ; xA*xB=xC |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3092 movlw LOW d'7900' |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3093 movwf xB+0 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3094 movlw HIGH d'7900' |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3095 movwf xB+1 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3096 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3097 movff xC+0,lo |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3098 movff xC+1,hi ; lo:hi now hold EAD in m |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3099 lfsr FSR2,letter |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3100 output_16_3 ; Display only full meters |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3101 STRCAT_PRINT "m" ; Display EAD |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3102 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3103 WIN_LEFT .125 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3104 WIN_TOP .216 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3105 ; Show END = rel_pressure × (100 - char_I_He_ratio)/10000 -> Result in m |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3106 movff char_I_He_ratio,lo ; temp |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3107 movlw d'100' |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3108 bsf STATUS,C |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3109 subfwb lo,W |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3110 movwf xA+0 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3111 clrf xA+1 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3112 movff rel_pressure+0,xB+0 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3113 movff rel_pressure+1,xB+1 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3114 call mult16x16 ; xA*xB=xC |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3115 movlw LOW d'10000' |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3116 movwf xB+0 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3117 movlw HIGH d'10000' |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3118 movwf xB+1 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3119 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3120 movff xC+0,lo |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3121 movff xC+1,hi ; lo:hi now hold END in m |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3122 lfsr FSR2,letter |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3123 output_16_3 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3124 STRCAT_PRINT "m" ; Display END |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3125 return |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3126 |
277
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
3127 PLED_show_end_ead_divemode3: ; Show CC EAD and END |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
3128 ; ToDo... |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
3129 return |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
3130 |
274
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3131 |
0 | 3132 PLED_show_leading_tissue: |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
3133 call PLED_divemask_color ; Set Color for Divemode mask |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
3134 DISPLAYTEXTH .282 ; L. Tissue: |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
3135 PLED_show_leading_tissue_2: |
116 | 3136 call deco_calc_desaturation_time ; calculate desaturation time |
0 | 3137 movlb b'00000001' ; select ram bank 1 |
3138 | |
123 | 3139 STRCPY "#" |
0 | 3140 movff char_O_gtissue_no,lo |
3141 movff char_O_gtissue_no,wait_temp ; used as temp | |
3142 bsf leftbind | |
3143 output_8 | |
123 | 3144 STRCAT " (" |
0 | 3145 |
3146 movlw d'16' | |
3147 cpfslt wait_temp | |
3148 bra PLED_show_leading_tissue_he | |
123 | 3149 STRCAT "N2" |
0 | 3150 bra PLED_show_leading_tissue2 |
123 | 3151 |
0 | 3152 PLED_show_leading_tissue_he: |
123 | 3153 STRCAT "He" |
3154 | |
0 | 3155 PLED_show_leading_tissue2: |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
3156 WIN_LEFT .95 |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
3157 WIN_TOP .192 |
0 | 3158 WIN_FONT FT_SMALL |
3 | 3159 call PLED_standard_color |
123 | 3160 |
3161 STRCAT_PRINT ") " | |
3162 | |
0 | 3163 lfsr FSR1,char_O_tissue_saturation+0 |
3164 incf wait_temp,F ; make 1-16 of 0-15 | |
3165 PLED_show_leading_tissue3: ; point to leading tissue... | |
3166 movff POSTINC1,lo ; copy/overwrite to lo register | |
3167 decfsz wait_temp,F ; count until zero | |
3168 bra PLED_show_leading_tissue3 ;loop | |
123 | 3169 |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
3170 WIN_LEFT .95 |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
3171 WIN_TOP .216 |
0 | 3172 WIN_FONT FT_SMALL |
123 | 3173 |
3174 lfsr FSR2,letter | |
3175 output_8 | |
3176 STRCAT_PRINT "% " | |
0 | 3177 bcf leftbind |
3178 return | |
3179 | |
3180 PLED_topline_box_clear: ; Writes an empty box | |
3181 movlw .0 | |
3182 bra PLED_topline_box2 | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
3183 PLED_topline_box: ; Writes a filled box... |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
3184 GETCUSTOM8 d'35' ; ... with the standard color |
0 | 3185 PLED_topline_box2: |
123 | 3186 WIN_BOX_COLOR .0, .26, .0, .159 |
0 | 3187 return |
3188 | |
3189 PLED_display_cns: | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
3190 ; btfsc multi_gf_display ; Is the Multi-GF Table displayed? |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
3191 ; return ; Yes, No update and return! |
0 | 3192 |
3193 btfsc gauge_mode ; Do not display in gauge mode | |
3194 return | |
3195 | |
3196 btfsc FLAG_apnoe_mode ; Do not display in apnoe mode | |
3197 return | |
3198 | |
3199 btfsc pled_velocity_display ; Is velocity displayed?` | |
3200 return ; Yes, do not overwrite until pled_velocity_clear was called | |
3201 | |
3202 ostc_debug 'k' ; Sends debug-information to screen if debugmode active | |
3203 | |
3204 WIN_TOP .090 | |
3205 WIN_LEFT .0 | |
3206 WIN_FONT FT_SMALL | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
3207 PLED_color_code warn_cns ; Color-code CNS output |
0 | 3208 |
123 | 3209 STRCPY "CNS:" |
0 | 3210 movff char_O_CNS_fraction,lo |
3211 bsf leftbind | |
3212 output_8 | |
3213 bcf leftbind | |
123 | 3214 STRCAT_PRINT "%" |
0 | 3215 return |
3216 | |
43 | 3217 PLED_display_cns_surface: |
3218 ; Check if CNS should be displayed | |
3219 movff char_O_CNS_fraction,lo ; copy into bank1 | |
3220 GETCUSTOM8 d'15' ; cns_display_high_surfacemode | |
3221 subwf lo,W | |
3222 btfss STATUS,C | |
3223 return ; Do not show... | |
3224 ; Show CNS | |
3225 | |
3226 ostc_debug 'W' ; Sends debug-information to screen if debugmode active | |
3227 | |
3228 WIN_TOP .175 | |
3229 WIN_LEFT .45 | |
3230 WIN_FONT FT_SMALL | |
3231 WIN_INVERT .0 ; Init new Wordprocessor | |
3232 PLED_color_code warn_cns ; Color-code CNS output | |
3233 | |
123 | 3234 STRCPY "CNS:" |
43 | 3235 movff char_O_CNS_fraction,lo |
3236 bsf leftbind | |
3237 output_8 | |
3238 bcf leftbind | |
123 | 3239 STRCAT_PRINT "%" |
43 | 3240 return |
3241 | |
3242 | |
0 | 3243 PLED_custom_text: |
3244 read_int_eeprom d'64' | |
3245 movlw d'1' | |
3246 cpfseq EEDATA ; Custom text active? | |
3247 bra PLED_clear_custom_text ; No, Delete row | |
3248 WIN_TOP .200 | |
62 | 3249 WIN_LEFT .0 |
0 | 3250 WIN_FONT FT_SMALL |
3251 WIN_INVERT .0 ; Init new Wordprocessor | |
9 | 3252 call PLED_divemask_color ; Set Color for Divemode mask |
0 | 3253 |
3254 lfsr FSR2,letter | |
3255 movlw d'64' | |
3256 movwf lo | |
3257 movlw d'24' | |
3258 movwf hi ; counter | |
3259 | |
3260 PLED_custom_text1: | |
3261 incf lo,F | |
3262 call PLED_get_custom_letter ; Get one letter for the custom text | |
3263 movlw '}' ; End marker found? | |
3264 cpfseq EEDATA | |
3265 bra PLED_custom_text2 ; No | |
3266 bra PLED_custom_text3 | |
3267 PLED_custom_text2: | |
3268 movff EEDATA,POSTINC2 ; Copy into Postinc | |
3269 | |
3270 decfsz hi,F ; Max. numbers? | |
3271 bra PLED_custom_text1 ; No, get next letters | |
3272 | |
3273 PLED_custom_text3: | |
3274 call word_processor | |
3 | 3275 call PLED_standard_color |
0 | 3276 return |
3277 | |
3278 PLED_get_custom_letter: | |
3279 movff lo,EEADR ; Address for next custom text letter | |
3280 call read_eeprom ; Read letter | |
3281 return | |
3282 | |
3283 PLED_clear_custom_text: | |
3284 movlw d'24' | |
3285 movwf temp1 | |
3286 WIN_TOP .200 | |
3287 WIN_LEFT .0 | |
3288 call PLED_display_clear_common_y1 | |
3289 return | |
3290 | |
33 | 3291 PLED_simdata_screen: ;Display Pre-Dive Screen |
3292 ; List active gases/Setpoints | |
3293 btfsc FLAG_const_ppO2_mode ; in ppO2 mode? | |
3294 bra PLED_simdata_screen3 ; Yes, display SetPoint/Sensor result list | |
3295 | |
3296 PLED_simdata_screen2: | |
3297 ostc_debug 'm' ; Sends debug-information to screen if debugmode active | |
3298 | |
3299 WIN_LEFT .0 | |
3300 WIN_FONT FT_SMALL | |
3301 bsf leftbind | |
3302 | |
3303 movlw d'2' | |
3304 movwf wait_temp ; here: stores eeprom address for gas list | |
34 | 3305 movlw d'10' |
33 | 3306 movwf waitms_temp ; here: stores row for gas list |
3307 clrf hi ; here: Gas counter | |
3308 | |
3309 PLED_simdata_screen2_loop: | |
3310 incf hi,F ; Increase Gas | |
3311 movlw d'4' | |
3312 addwf wait_temp,F ; Increase eeprom address for gas list | |
3313 | |
123 | 3314 STRCPY "G" |
33 | 3315 movff hi,lo ; copy gas number |
3316 output_8 ; display gas number | |
123 | 3317 PUTC ':' |
33 | 3318 movff wait_temp, EEADR; Gas #hi: %O2 - Set address in internal EEPROM |
3319 call read_eeprom ; get byte (stored in EEDATA) | |
3320 movff EEDATA,lo ; copy to lo | |
3321 output_8 ; outputs into Postinc2! | |
123 | 3322 PUTC '/' |
33 | 3323 incf EEADR,F ; Gas #hi: %He - Set address in internal EEPROM |
3324 call read_eeprom ; get byte (stored in EEDATA) | |
3325 movff EEDATA,lo ; copy to lo | |
3326 output_8 ; outputs into Postinc2! | |
123 | 3327 PUTC ' ' |
34 | 3328 movf hi,W ; Gas number |
3329 addlw d'27' ; -> Adress of change depth register | |
3330 call read_int_eeprom_1 | |
3331 movff EEDATA,lo ; Change depth in m | |
223 | 3332 movff lo,divemins ; Store for grey-out |
34 | 3333 output_99 ; outputs into Postinc2! |
123 | 3334 PUTC 'm' |
223 | 3335 |
3336 ; Check if gas is first gas ? | |
3337 read_int_eeprom d'33' ; First gas (1-5)? | |
3338 movf hi,W ; Current gas in WREG | |
3339 cpfseq EEDATA ; Is equal first gas? | |
3340 bra PLED_simdata_screen2_loop2 ; No : more tests... | |
3341 | |
3342 bra PLED_simdata_white ; Yes | |
3343 | |
3344 PLED_simdata_screen2_loop2: | |
3345 ; Check if gas is inactive ? | |
3346 read_int_eeprom d'27' ; read flag register | |
3347 movff hi,lo ; copy gas number | |
33 | 3348 PLED_simdata_screen2_loop1: |
223 | 3349 rrcf EEDATA ; roll flags into carry |
3350 decfsz lo,F ; max. 5 times... | |
33 | 3351 bra PLED_simdata_screen2_loop1 |
181 | 3352 |
223 | 3353 btfss STATUS,C ; test inactive flag |
3354 bra PLED_simdata_grey ; Is inactive! | |
3355 | |
3356 tstfsz divemins ; Test change depth=0? | |
3357 bra PLED_simdata_white ; Is not zero | |
179
77ab44108c07
BUGFIX: Inactive gases greyed-out in Simulator results
Heinrichsweikamp
parents:
178
diff
changeset
|
3358 |
77ab44108c07
BUGFIX: Inactive gases greyed-out in Simulator results
Heinrichsweikamp
parents:
178
diff
changeset
|
3359 PLED_simdata_grey: |
33 | 3360 movlw color_grey |
223 | 3361 call PLED_set_color ; grey out inactive gases! |
33 | 3362 bra PLED_simdata_color_done |
3363 | |
3364 PLED_simdata_white: | |
3365 call PLED_standard_color | |
3366 | |
3367 PLED_simdata_color_done: | |
3368 movlw d'25' | |
3369 addwf waitms_temp,F ; Increase row | |
3370 WIN_LEFT .0 | |
3371 movff waitms_temp,win_top ; Set Row | |
34 | 3372 call word_processor ; display gas |
33 | 3373 |
3374 PLED_simdata_screen2b: | |
3375 call PLED_standard_color | |
3376 | |
34 | 3377 movlw d'5' ; list all five gases |
33 | 3378 cpfseq hi ; All gases shown? |
3379 bra PLED_simdata_screen2_loop ; No | |
3380 | |
3381 return ; No, return (OC mode) | |
3382 | |
3383 PLED_simdata_screen3: | |
3384 WIN_LEFT .0 | |
3385 WIN_FONT FT_SMALL | |
3386 bsf leftbind | |
3387 | |
3388 ; list three SP in Gaslist | |
3389 movlw d'35' ; 36 = current SP position in EEPROM | |
3390 movwf wait_temp ; here: stores eeprom address for gas list | |
34 | 3391 movlw d'10' |
33 | 3392 movwf waitms_temp ; here: stores row for gas list |
124 | 3393 clrf decoplan_index ; here: SP counter |
33 | 3394 |
3395 PLED_simdata_screen3_loop: | |
3396 incf wait_temp,F ; EEPROM address | |
124 | 3397 incf decoplan_index,F ; Increase SP |
33 | 3398 |
3399 movlw d'25' | |
3400 addwf waitms_temp,F ; Increase row | |
3401 WIN_LEFT .0 | |
3402 movff waitms_temp,win_top ; Set Row | |
3403 | |
123 | 3404 STRCPY "SP" |
124 | 3405 movff decoplan_index,lo ; copy gas number |
33 | 3406 output_8 ; display gas number |
123 | 3407 STRCAT ": " |
33 | 3408 movff wait_temp, EEADR; SP #hi position |
3409 call read_eeprom ; get byte (stored in EEDATA) | |
3410 movff EEDATA,lo ; copy to lo | |
3411 clrf hi | |
3412 output_16dp d'3' ; outputs into Postinc2! | |
3413 call word_processor | |
3414 | |
3415 movlw d'3' ; list all three SP | |
124 | 3416 cpfseq decoplan_index ; All gases shown? |
33 | 3417 bra PLED_simdata_screen3_loop ;no |
3418 | |
3419 read_int_eeprom d'33' ; Read byte (stored in EEDATA) | |
3420 movff EEDATA,active_gas ; Read start gas (1-5) | |
3421 decf active_gas,W ; Gas 0-4 | |
3422 mullw d'4' | |
3423 movf PRODL,W | |
3424 addlw d'7' ; = address for He ratio | |
3425 movwf EEADR | |
3426 call read_eeprom ; Read He ratio | |
3427 movff EEDATA,hi ; And copy into hold register | |
3428 decf active_gas,W ; Gas 0-4 | |
3429 mullw d'4' | |
3430 movf PRODL,W | |
3431 addlw d'6' ; = address for O2 ratio | |
3432 movwf EEADR | |
3433 call read_eeprom ; Read O2 ratio | |
3434 movff EEDATA, lo ; O2 ratio | |
3435 | |
3436 WIN_LEFT .0 | |
34 | 3437 WIN_TOP .110 |
123 | 3438 |
3439 STRCPY "Dil:" | |
33 | 3440 output_8 ; O2 Ratio |
123 | 3441 STRCAT "/" |
33 | 3442 movff hi,lo |
3443 output_8 ; He Ratio | |
3444 call word_processor | |
3445 | |
3446 bcf leftbind | |
3447 return ; Return (CC Mode) | |
3448 | |
0 | 3449 |
3450 | |
3451 adjust_depth_with_salinity: ; computes salinity setting into lo:hi [mBar] | |
3452 | |
3453 btfsc simulatormode_active ; Do apply salinity in Simulatormode | |
3454 return | |
3455 | |
3456 read_int_eeprom d'26' ; Read Salinity from EEPROM | |
3457 movff EEDATA, wait_temp ; salinity | |
3458 | |
3459 movlw d'105' ; 105% ? | |
3460 cpfslt wait_temp ; Salinity higher limit | |
3461 return ; Out of limit, do not adjust lo:hi | |
3462 | |
3463 movlw d'99' ; 99% ? | |
3464 cpfsgt wait_temp ; Salinity lower limit | |
3465 return ; Out of limit, do not adjust lo:hi | |
3466 | |
3467 movff lo,xA+0 | |
3468 movff hi,xA+1 | |
3469 | |
3470 movlw d'100' | |
3471 movwf xB+0 | |
3472 clrf xB+1 | |
3473 | |
3474 call mult16x16 ;xA*xB=xC (lo:hi * 100) | |
3475 | |
3476 movff wait_temp,xB+0 ; Salinity | |
3477 clrf xB+1 | |
3478 | |
3479 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder | |
3480 | |
3481 movff xC+0,lo | |
3482 movff xC+1,hi ; restore lo and hi with updated value | |
3483 | |
3484 return |