Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/pled_outputs.asm @ 281:f8f865c70a0d
no more sorted gaslist...
author | heinrichsweikamp |
---|---|
date | Tue, 19 Apr 2011 09:54:33 +0200 |
parents | ce6f861d4e3e |
children | 4ec488f046f4 |
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 |
123 | 1857 call PLED_set_color |
1858 | |
25 | 1859 movlw .176 |
123 | 1860 movff WREG,win_top ; row top (0-239) |
1861 movlw .192-.176 | |
1862 movff WREG,win_height ; row bottom (0-239) | |
56 | 1863 movlw .2 |
123 | 1864 movff WREG,win_leftx2 ; column left (0-159) |
1865 movff wait_temp,win_width ; column right (0-159) | |
0 | 1866 call PLED_box |
1867 | |
25 | 1868 call PLED_standard_color |
0 | 1869 return |
1870 | |
1871 update_batt_voltage2_empty: | |
1872 movlw d'1' | |
1873 movwf wait_temp | |
1874 bra update_batt_voltage2a | |
1875 | |
1876 update_batt_voltage2_full: | |
1877 movlw d'30' | |
1878 movwf wait_temp | |
25 | 1879 bra update_batt_voltage2a |
0 | 1880 |
1881 PLED_convert_date: ; converts into "DD/MM/YY" or "MM/DD/YY" or "YY/MM/DD" in postinc2 | |
1882 read_int_eeprom d'91' ; Read date format (0=MMDDYY, 1=DDMMYY, 2=YYMMDD) | |
1883 tstfsz EEDATA | |
1884 bra PLED_convert_date1 | |
1885 | |
1886 ; Use MMDDYY | |
1887 movff convert_value_temp+0,lo ;month | |
1888 bsf leftbind | |
1889 output_99x | |
1890 bcf leftbind | |
140 | 1891 PUTC '.' |
0 | 1892 movff convert_value_temp+1,lo ;day |
1893 bra PLED_convert_date1_common ;year | |
1894 | |
1895 PLED_convert_date1: | |
1896 read_int_eeprom d'91' ; Read date format (0=MMDDYY, 1=DDMMYY, 2=YYMMDD) | |
1897 decfsz EEDATA,F | |
1898 bra PLED_convert_date2 | |
1899 | |
1900 ; Use DDMMYY | |
1901 movff convert_value_temp+1,lo ;day | |
1902 bsf leftbind | |
1903 output_99x | |
1904 bcf leftbind | |
140 | 1905 PUTC '.' |
0 | 1906 movff convert_value_temp+0,lo ;month |
1907 | |
1908 PLED_convert_date1_common: | |
1909 bsf leftbind | |
1910 output_99x | |
1911 bcf leftbind | |
140 | 1912 PUTC '.' |
0 | 1913 movff convert_value_temp+2,lo ;year |
1914 bsf leftbind | |
1915 output_99x | |
1916 return | |
1917 | |
1918 PLED_convert_date2: | |
1919 ; Use YYMMDD | |
1920 movff convert_value_temp+2,lo ;year | |
1921 bsf leftbind | |
1922 output_99x | |
1923 bcf leftbind | |
140 | 1924 PUTC '.' |
0 | 1925 movff convert_value_temp+0,lo ;month |
1926 bsf leftbind | |
1927 output_99x | |
1928 bcf leftbind | |
140 | 1929 PUTC '.' |
0 | 1930 movff convert_value_temp+1,lo ;day |
1931 bsf leftbind | |
1932 output_99x | |
1933 return | |
1934 | |
1935 PLED_convert_date_short: ; converts into "DD/MM" or "MM/DD" or "MM/DD" in postinc2 | |
1936 read_int_eeprom d'91' ; Read date format (0=MMDDYY, 1=DDMMYY, 2=YYMMDD) | |
1937 tstfsz EEDATA | |
1938 bra PLED_convert_date_short1 | |
1939 | |
1940 ; Use MMDDYY | |
1941 PLED_convert_date_short_common: | |
1942 movff convert_value_temp+0,lo ;month | |
1943 bsf leftbind | |
1944 output_99x | |
1945 bcf leftbind | |
140 | 1946 PUTC '.' |
0 | 1947 movff convert_value_temp+1,lo ;day |
1948 bsf leftbind | |
1949 output_99x | |
1950 bcf leftbind | |
1951 return | |
1952 | |
1953 PLED_convert_date_short1: | |
1954 read_int_eeprom d'91' ; Read date format (0=MMDDYY, 1=DDMMYY, 2=YYMMDD) | |
1955 decfsz EEDATA,F | |
1956 bra PLED_convert_date_short_common ; Use YYMMDD | |
1957 | |
1958 ; Use DDMMYY | |
1959 movff convert_value_temp+1,lo ;day | |
1960 bsf leftbind | |
1961 output_99x | |
1962 bcf leftbind | |
140 | 1963 PUTC '.' |
0 | 1964 movff convert_value_temp+0,lo ;month |
1965 bsf leftbind | |
1966 output_99x | |
1967 bcf leftbind | |
1968 return | |
1969 | |
1970 update_date: | |
1971 ostc_debug 'd' | |
1972 WIN_TOP .75 | |
56 | 1973 WIN_LEFT .1 |
0 | 1974 WIN_FONT FT_SMALL |
1975 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1976 call PLED_standard_color |
1977 | |
0 | 1978 lfsr FSR2,letter |
1979 | |
1980 movff month,convert_value_temp+0 | |
1981 movff day,convert_value_temp+1 | |
1982 movff year,convert_value_temp+2 | |
1983 call PLED_convert_date ; converts into "DD/MM/YY" or "MM/DD/YY" or "YY/MM/DD" in postinc2 | |
1984 call word_processor | |
1985 return | |
1986 | |
1987 PLED_menu_clear: | |
204 | 1988 WIN_BOX_BLACK .0, .26, .65, .100 ;top, bottom, left, right |
0 | 1989 return |
1990 | |
1991 PLED_max_pressure: | |
1992 ostc_debug 'p' ; Sends debug-information to screen if debugmode active | |
75 | 1993 movff max_pressure+0,lo |
1994 movff max_pressure+1,hi | |
1995 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mBar] | |
1996 | |
1997 movlw .039 | |
1998 cpfslt hi | |
1999 bra maxdepth_greater_99_84mtr | |
2000 | |
2001 ; Display normal "xx.y" | |
2002 lfsr FSR2,letter | |
2003 call PLED_standard_color | |
0 | 2004 WIN_TOP .184 |
2005 WIN_LEFT .0 | |
2006 WIN_FONT FT_MEDIUM | |
2007 WIN_INVERT .0 ; Init new Wordprocessor | |
2008 bsf leftbind | |
2009 bsf ignore_digit5 ; do not display 1cm depth | |
2010 output_16dp d'3' | |
2011 bcf leftbind | |
2012 bcf show_last3 | |
2013 call word_processor | |
2014 WIN_FONT FT_SMALL | |
2015 return | |
2016 | |
75 | 2017 maxdepth_greater_99_84mtr: ; Display only in full meters |
2018 btfss maxdepth_greater_100m ; Is max.depth>100m already? | |
2019 call PLED_clear_maxdepth ; No, clear maxdepth area and set flag | |
2020 ; max Depth is already in hi:lo | |
2021 ; Show max depth in Full meters | |
2022 ; That means ignore figure 4 and 5 | |
2023 lfsr FSR2,letter | |
2024 call PLED_standard_color | |
2025 WIN_TOP .184 | |
2026 WIN_LEFT .0 | |
2027 WIN_FONT FT_MEDIUM | |
2028 WIN_INVERT .0 ; Init new Wordprocessor | |
2029 | |
2030 bsf ignore_digit4 | |
2031 bsf leftbind | |
2032 output_16 | |
2033 bcf leftbind | |
2034 call word_processor | |
2035 bcf ignore_digit4 | |
2036 WIN_FONT FT_SMALL | |
2037 return | |
2038 | |
2039 PLED_clear_maxdepth: | |
204 | 2040 WIN_BOX_BLACK .184, .215, .0, .41 ;top, bottom, left, right |
75 | 2041 bsf maxdepth_greater_100m ; Set Flag |
2042 return | |
2043 | |
0 | 2044 PLED_divemins: |
2045 btfsc menubit ; Divemode menu active? | |
2046 return ; Yes, do not update divetime | |
2047 | |
2048 ostc_debug 'A' ; Sends debug-information to screen if debugmode active | |
2049 | |
2050 btfsc gauge_mode ; different display in gauge mode | |
2051 bra PLED_divemins_gauge | |
2052 | |
2053 btfsc FLAG_apnoe_mode ; different display in apnoe mode | |
2054 bra PLED_divemins_apnoe | |
2055 | |
2056 GETCUSTOM8 d'38' ; Show seconds (=1?) | |
2057 movwf lo | |
2058 movlw d'1' | |
2059 cpfseq lo ; =1? | |
2060 bra PLED_divemins2 ; No, minutes only | |
2061 bra PLED_divemins_gauge ; Yes, use Gauge routine | |
2062 | |
2063 PLED_divemins2: | |
2064 movff divemins+0,lo | |
2065 movff divemins+1,hi | |
2066 bcf leftbind | |
2067 lfsr FSR2,letter | |
2068 output_16_3 ; displays only last three figures from a 16Bit value (0-999) | |
2069 WIN_TOP .20 | |
2070 WIN_LEFT .120 | |
2071 WIN_FONT FT_MEDIUM | |
3 | 2072 call PLED_standard_color |
0 | 2073 call word_processor |
2074 WIN_FONT FT_SMALL | |
2075 return | |
2076 | |
2077 PLED_display_apnoe_surface: | |
2078 btfsc menubit ; Divemode menu active? | |
2079 return ; Yes, do not display surface mode timeout | |
2080 | |
9 | 2081 call PLED_divemask_color ; Set Color for Divemode mask |
0 | 2082 DISPLAYTEXT d'140' ; "SURFACE" |
3 | 2083 call PLED_standard_color |
2084 | |
0 | 2085 |
2086 WIN_TOP .85 | |
2087 WIN_LEFT .90 | |
2088 WIN_FONT FT_MEDIUM | |
3 | 2089 call PLED_standard_color |
2090 | |
0 | 2091 |
2092 movff apnoe_surface_mins,lo | |
2093 bcf leftbind | |
2094 lfsr FSR2,letter | |
2095 output_8 | |
123 | 2096 PUTC ':' |
0 | 2097 movff apnoe_surface_secs,lo |
2098 output_99x | |
2099 call word_processor | |
2100 WIN_FONT FT_SMALL | |
2101 return | |
2102 | |
2103 PLED_apnoe_clear_surface: | |
2104 ; Clear Surface timer.... | |
204 | 2105 WIN_BOX_BLACK .60, .119, .90, .159 ;top, bottom, left, right |
0 | 2106 return |
2107 | |
2108 | |
2109 PLED_display_apnoe_descent: | |
9 | 2110 call PLED_divemask_color ; Set Color for Divemode mask |
0 | 2111 DISPLAYTEXT d'139' ; "Descent" |
3 | 2112 call PLED_standard_color |
2113 | |
0 | 2114 |
2115 WIN_TOP .145 | |
2116 WIN_LEFT .90 | |
2117 WIN_FONT FT_MEDIUM | |
3 | 2118 call PLED_standard_color |
2119 | |
0 | 2120 |
2121 movff apnoe_mins,lo | |
2122 lfsr FSR2,letter | |
2123 output_8 | |
123 | 2124 PUTC ':' |
0 | 2125 movff apnoe_secs,lo |
2126 output_99x | |
2127 call word_processor | |
2128 WIN_FONT FT_SMALL | |
2129 return | |
2130 | |
2131 PLED_divemins_apnoe: | |
2132 | |
2133 PLED_divemins_gauge: | |
2134 movff divemins+0,lo | |
2135 movff divemins+1,hi | |
2136 bcf leftbind | |
2137 bsf show_last3 | |
2138 lfsr FSR2,letter | |
2139 output_16_3 ;Displays only 0...999 | |
123 | 2140 PUTC ':' |
0 | 2141 movff divesecs,lo |
2142 output_99x | |
2143 WIN_TOP .20 | |
2144 WIN_LEFT .90 | |
2145 WIN_FONT FT_MEDIUM | |
3 | 2146 call PLED_standard_color |
2147 | |
0 | 2148 call word_processor |
2149 bcf show_last3 | |
2150 WIN_FONT FT_SMALL | |
2151 return | |
2152 | |
2153 PLED_stopwatch_show: | |
2154 ; Stopwatch | |
9 | 2155 call PLED_divemask_color ; Set Color for Divemode mask |
87 | 2156 DISPLAYTEXTH d'283' ; Stopwatch |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2157 |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2158 PLED_stopwatch_show2: |
3 | 2159 call PLED_standard_color |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2160 ostc_debug 'V' ; Sends debug-information to screen if debugmode active |
87 | 2161 WIN_TOP .192 |
0 | 2162 WIN_LEFT .110 |
2163 WIN_FONT FT_SMALL | |
3 | 2164 call PLED_standard_color |
2165 | |
0 | 2166 lfsr FSR2,letter |
2167 movff average_divesecs+0,lo ; Stopwatch | |
2168 movff average_divesecs+1,hi ; Stopwatch | |
2169 movlw d'2' | |
2170 subwf lo,F | |
2171 movlw d'0' | |
2172 subwfb hi,F ; Subtract 2 seconds | |
2173 | |
2174 call convert_time ; converts hi:lo in seconds to mins (hi) and secs (lo) | |
2175 | |
2176 movff lo,wait_temp | |
2177 movff hi,lo | |
2178 clrf hi | |
2179 | |
2180 movlw d'0' | |
2181 bcf leftbind | |
2182 bsf show_last3 | |
2183 output_16_3 ;Displays only 0...999 | |
123 | 2184 PUTC ':' |
0 | 2185 movff wait_temp,lo |
2186 output_99x | |
2187 call word_processor | |
2188 | |
2189 ostc_debug 'U' ; Sends debug-information to screen if debugmode active | |
2190 | |
87 | 2191 WIN_TOP .216 |
2192 WIN_LEFT .110 | |
0 | 2193 WIN_FONT FT_SMALL |
3 | 2194 call PLED_standard_color |
2195 | |
0 | 2196 lfsr FSR2,letter |
2197 movff avr_rel_pressure+0,lo | |
2198 movff avr_rel_pressure+1,hi | |
2199 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mBar] | |
2200 bsf ignore_digit5 ; do not display 1cm depth | |
2201 output_16dp d'3' | |
2202 bcf leftbind | |
123 | 2203 STRCAT_PRINT "m" |
0 | 2204 return |
2205 | |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2206 PLED_total_average_show: |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2207 ; Non-Resettable Average |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2208 call PLED_divemask_color ; Set Color for Divemode mask |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2209 DISPLAYTEXTH d'281' ; Avr.Depth |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2210 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2211 PLED_total_average_show2: |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2212 WIN_TOP .192 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2213 WIN_LEFT .110 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2214 WIN_FONT FT_SMALL |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2215 call PLED_standard_color |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2216 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2217 lfsr FSR2,letter |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2218 movff avr_rel_pressure_total+0,lo |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2219 movff avr_rel_pressure_total+1,hi |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2220 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
|
2221 bsf ignore_digit5 ; do not display 1cm depth |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2222 bcf leftbind |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2223 output_16dp d'3' |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2224 STRCAT_PRINT "m" |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2225 return |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2226 |
235 | 2227 ;============================================================================= |
2228 ; Writes OSTC #Serial and Firmware version in surfacemode | |
2229 ; | |
2230 PLED_serial: | |
0 | 2231 ostc_debug 'a' ; Sends debug-information to screen if debugmode active |
2232 WIN_TOP .0 | |
56 | 2233 WIN_LEFT .1 |
0 | 2234 WIN_FONT FT_SMALL |
235 | 2235 WIN_INVERT .0 ; Init new Wordprocessor |
2236 | |
2237 ifdef __DEBUG | |
2238 movlw color_grey ; Write header in blue when | |
2239 call PLED_set_color ; compiled in DEBUG mode... | |
2240 else | |
3 | 2241 call PLED_standard_color |
235 | 2242 endif |
3 | 2243 |
0 | 2244 lfsr FSR2,letter |
235 | 2245 OUTPUTTEXTH d'262' ; "OSTC " |
107 | 2246 clrf EEADRH |
235 | 2247 clrf EEADR ; Get Serial number LOW |
2248 call read_eeprom ; read byte | |
107 | 2249 movff EEDATA,lo |
235 | 2250 incf EEADR,F ; Get Serial number HIGH |
2251 call read_eeprom ; read byte | |
107 | 2252 movff EEDATA,hi |
2253 | |
2254 bsf leftbind | |
2255 output_16 | |
235 | 2256 STRCAT " \x90\x91 V" ; Scribble logo... |
0 | 2257 movlw softwareversion_x |
2258 movwf lo | |
2259 bsf leftbind | |
2260 output_8 | |
123 | 2261 PUTC '.' |
0 | 2262 movlw softwareversion_y |
2263 movwf lo | |
2264 bsf leftbind | |
2265 output_99x | |
2266 bcf leftbind | |
235 | 2267 |
2268 ifdef __DEBUG | |
2269 STRCAT_PRINT "-Dbg" | |
2270 else | |
0 | 2271 call word_processor |
140 | 2272 |
235 | 2273 movlw softwareversion_beta ; =1: Beta, =0: Release |
140 | 2274 decfsz WREG,F |
235 | 2275 return ; Release version -> Return |
140 | 2276 |
2277 call PLED_warnings_color | |
235 | 2278 DISPLAYTEXT d'243' ; beta |
140 | 2279 call PLED_standard_color |
235 | 2280 endif |
2281 | |
0 | 2282 return |
2283 | |
235 | 2284 ;============================================================================= |
2285 | |
0 | 2286 PLED_divemode_menu_mask_first: ; Write Divemode menu1 mask |
2287 ostc_debug 'o' ; Sends debug-information to screen if debugmode active | |
2288 call PLED_menu_clear ; clear "Menu?" | |
123 | 2289 call PLED_standard_color |
0 | 2290 |
2291 btfsc FLAG_const_ppO2_mode ; are we in ppO2 mode? | |
2292 bra PLED_divemode_menu_mask_first2 | |
73
2227459e8ef2
Exchanged Decoplan and Gaslist in dive mode menu
heinrichsweikamp
parents:
71
diff
changeset
|
2293 |
0 | 2294 ; in OC Mode |
2295 DISPLAYTEXT .32 ;"Gaslist" | |
73
2227459e8ef2
Exchanged Decoplan and Gaslist in dive mode menu
heinrichsweikamp
parents:
71
diff
changeset
|
2296 DISPLAYTEXT .31 ;"Decoplan" |
0 | 2297 bra PLED_divemode_menu_mask_first3 |
2298 | |
2299 PLED_divemode_menu_mask_first2: | |
2300 ; in CC Mode | |
73
2227459e8ef2
Exchanged Decoplan and Gaslist in dive mode menu
heinrichsweikamp
parents:
71
diff
changeset
|
2301 DISPLAYTEXT .238 ;"SetPoint" |
2227459e8ef2
Exchanged Decoplan and Gaslist in dive mode menu
heinrichsweikamp
parents:
71
diff
changeset
|
2302 DISPLAYTEXT .31 ;"Decoplan" |
0 | 2303 |
2304 PLED_divemode_menu_mask_first3: | |
2305 ; In all modes | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2306 call customview_menu_entry3 ; Show customview-dependent menu entry |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2307 DISPLAYTEXT .241 ;"Display" |
0 | 2308 DISPLAYTEXT .34 ;"Exit" |
2309 return | |
2310 | |
2311 PLED_divemode_set_xgas: ; Displayes the "Set Gas" menu | |
2312 WIN_LEFT .100 | |
2313 WIN_TOP .0 | |
2314 WIN_FONT FT_SMALL | |
3 | 2315 call PLED_standard_color |
2316 | |
228 | 2317 STRCPY "G6:" |
0 | 2318 read_int_eeprom d'24' ; Get Gas6 %O2 |
2319 movff EEDATA,lo | |
2320 bcf leftbind | |
2321 output_99 ; outputs into Postinc2! | |
123 | 2322 PUTC '/' |
0 | 2323 read_int_eeprom d'25' ; Get Gas6 %He |
2324 movff EEDATA,lo | |
2325 output_99 ; outputs into Postinc2! | |
2326 call word_processor | |
2327 DISPLAYTEXT .123 ; O2 + | |
2328 DISPLAYTEXT .124 ; O2 - | |
2329 DISPLAYTEXT .125 ; He + | |
2330 DISPLAYTEXT .126 ; He - | |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2331 DISPLAYTEXTH d'300' ; Active? (Enable/Disable Gas underwater) |
0 | 2332 return |
2333 | |
2334 PLED_divemode_simulator_mask: | |
124 | 2335 call PLED_standard_color |
2336 DISPLAYTEXT .254 ; Close | |
2337 DISPLAYTEXT .250 ; + 1m | |
2338 DISPLAYTEXT .251 ; - 1m | |
2339 DISPLAYTEXT .252 ; +10m | |
2340 DISPLAYTEXT .253 ; -10m | |
2341 return | |
0 | 2342 |
123 | 2343 ;----------------------------------------------------------------------------- |
124 | 2344 ; Draw a stop of the deco plan (simulator or dive). |
2345 ; Inputs: lo = depth. Range 3m...93m | |
279
8514588eb6a2
Mark gas-switch stops for decoplans, displayed in yellow.
JeanDo
parents:
277
diff
changeset
|
2346 ; + 80 if this is a switch-gas stop. |
124 | 2347 ; hi = minutes. range 1'..240'. |
2348 ; win_top = line to draw on screen. | |
2349 ; Trashed: hi, lo, win_height, win_leftx2, win_width, win_color*, | |
2350 ; WREG, PROD, TBLPTR TABLAT. | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2351 ; |
124 | 2352 PLED_decoplan_show_stop: |
2353 ;---- Print depth ---------------------------------------------------- | |
2354 WIN_LEFT .100 | |
279
8514588eb6a2
Mark gas-switch stops for decoplans, displayed in yellow.
JeanDo
parents:
277
diff
changeset
|
2355 |
8514588eb6a2
Mark gas-switch stops for decoplans, displayed in yellow.
JeanDo
parents:
277
diff
changeset
|
2356 btfss lo,7 ; Bit set ? |
8514588eb6a2
Mark gas-switch stops for decoplans, displayed in yellow.
JeanDo
parents:
277
diff
changeset
|
2357 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
|
2358 |
8514588eb6a2
Mark gas-switch stops for decoplans, displayed in yellow.
JeanDo
parents:
277
diff
changeset
|
2359 movlw b'11111101' ; Yellow. |
8514588eb6a2
Mark gas-switch stops for decoplans, displayed in yellow.
JeanDo
parents:
277
diff
changeset
|
2360 call PLED_set_color |
8514588eb6a2
Mark gas-switch stops for decoplans, displayed in yellow.
JeanDo
parents:
277
diff
changeset
|
2361 bcf lo,7 ; and cleanup depth. |
8514588eb6a2
Mark gas-switch stops for decoplans, displayed in yellow.
JeanDo
parents:
277
diff
changeset
|
2362 bra PLED_decoplan_nstd_stop |
8514588eb6a2
Mark gas-switch stops for decoplans, displayed in yellow.
JeanDo
parents:
277
diff
changeset
|
2363 |
8514588eb6a2
Mark gas-switch stops for decoplans, displayed in yellow.
JeanDo
parents:
277
diff
changeset
|
2364 PLED_decoplan_std_stop: |
124 | 2365 call PLED_standard_color |
279
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_nstd_stop: |
124 | 2368 lfsr FSR2,letter |
2369 bsf leftbind | |
2370 output_8 ; outputs into Postinc2! | |
2371 STRCAT_PRINT "m " | |
2372 | |
2373 ;---- Print duration ------------------------------------------------- | |
2374 WIN_LEFT .140 | |
2375 lfsr FSR2,letter | |
2376 | |
2377 movf lo,W ; Swap hi & lo | |
2378 movff hi,lo | |
2379 movwf hi | |
2380 | |
2381 output_8 ; Allow up to 240' | |
2382 STRCAT_PRINT "' " ; 1 to 3 chars for depth. | |
2383 | |
2384 movf lo,W ; Swap back hi & lo | |
2385 movff hi,lo | |
2386 movwf hi | |
2387 | |
2388 ;--------------------------------------------------------------------- | |
2389 ; Draw the bar graph used for deco stops (decoplan in simulator or dive). | |
2390 movff win_top,WREG ; Increment win_top (BANK SAFE) | |
2391 incf WREG | |
2392 movff WREG,win_top | |
2393 movlw d'18'+1 ; 19 --> height (bank safe !) | |
2394 movff WREG,win_height | |
2395 movlw .122 | |
2396 movff WREG,win_leftx2 ; column left (0-159) | |
150 | 2397 movlw .16 |
2398 movff WREG,win_width ; column max width. | |
2399 | |
2400 ; Draw used area (hi = minutes): | |
124 | 2401 movlw d'16' ; Limit length (16min) |
2402 cpfslt hi | |
2403 movwf hi | |
150 | 2404 movff hi,win_bargraph ; Active width, the rest is cleared. |
124 | 2405 call PLED_box |
2406 | |
2407 ; Restore win_top | |
279
8514588eb6a2
Mark gas-switch stops for decoplans, displayed in yellow.
JeanDo
parents:
277
diff
changeset
|
2408 call PLED_standard_color |
124 | 2409 movff win_top,WREG ; decf win_top (BANK SAFE) |
2410 decf WREG | |
2411 movff WREG,win_top | |
2412 return | |
123 | 2413 |
2414 ;----------------------------------------------------------------------------- | |
124 | 2415 ; Clear unused area belw last stop |
2416 ; Inputs: win_top : last used area... | |
2417 PLED_decoplan_clear_bottom: | |
2418 movff win_top,WREG ; Get back from bank0 | |
2419 btfsc divemode ; In dive mode ? | |
150 | 2420 sublw .168 ; Yes: bottom row in divemode |
124 | 2421 btfss divemode ; In dive mode ? |
2422 sublw .240 ; No: bottom row in planning | |
2423 movff WREG,win_height | |
2424 | |
2425 WIN_LEFT .82 ; Full divemenu width | |
2426 movlw .160-.82+1 | |
2427 movff WREG,win_width | |
2428 | |
2429 clrf WREG ; Fill with black | |
2430 movff WREG,win_color1 | |
2431 movff WREG,win_color2 | |
2432 | |
2433 goto PLED_box | |
123 | 2434 |
2435 ;----------------------------------------------------------------------------- | |
124 | 2436 ; Display the decoplan (simulator or divemode) for GF model |
2437 ; Inputs: char_O_deco_table (array of stop times, in minutes) | |
2438 ; decoplan_page = page number. Displays 5 stop by page. | |
2439 ; | |
164 | 2440 #define decoplan_index apnoe_mins ; within each page |
2441 #define decoplan_gindex apnoe_secs ; global index | |
2442 #define decoplan_last apnoe_max_pressure ; Depth of last stop (CF#29) | |
2443 #define decoplan_max apnoe_max_pressure+1; Number of lines per page. 7 in planning, 5 in diving. | |
124 | 2444 |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2445 PLED_decoplan: |
124 | 2446 ostc_debug 'n' ; Sends debug-information to screen if debugmode active |
2447 | |
2448 WIN_INVERT 0 | |
2449 | |
2450 ;---- Is there deco stops ? ------------------------------------------ | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2451 movff char_O_first_deco_depth,WREG |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2452 iorwf WREG |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2453 bnz PLED_decoplan_1 |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2454 |
124 | 2455 ;---- No Deco -------------------------------------------------------- |
2456 call PLED_standard_color | |
2457 DISPLAYTEXT d'239' ;"No Deco" | |
2458 bsf last_ceiling_gf_shown | |
2459 return | |
2460 | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2461 PLED_decoplan_1: |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2462 lfsr FSR0,char_O_deco_depth ; Initialize indexed addressing. |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2463 lfsr FSR1,char_O_deco_time |
124 | 2464 |
2465 movlw .8 ; 8 lines/page in decoplan | |
2466 btfsc divemode | |
2467 movlw .6 ; 6 lines/page in divemode. | |
2468 movwf decoplan_max | |
2469 | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2470 clrf decoplan_index ; Start with index = 0 |
124 | 2471 clrf WREG |
2472 movff WREG,win_top ; and row = 0 | |
2473 | |
2474 ; Read stop parameters, indexed by decoplan_index and decoplan_page | |
2475 movf decoplan_page,W ; decoplan_gindex = 6*decoplan_page + decoplan_index | |
2476 mulwf decoplan_max | |
2477 movf decoplan_index,W | |
2478 addwf PRODL,W | |
2479 movwf decoplan_gindex ; --> decoplan_gindex | |
2480 | |
2481 bcf last_ceiling_gf_shown ; Not finished yet... | |
2482 | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2483 PLED_decoplan_2: |
124 | 2484 btfsc decoplan_gindex,5 ; Reached table length (32) ? |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2485 bra PLED_decoplan_99 ; YES: finished... |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2486 |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2487 ; Read stop parameters, indexed by decoplan_index |
124 | 2488 movf decoplan_gindex,W ; index |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2489 movff PLUSW1,hi ; char_O_deco_time [gindex] --> hi |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2490 movff PLUSW0,lo ; char_O_deco_depth[gindex] |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2491 movf lo,W |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2492 bz PLED_decoplan_99 ; depth == 0 : finished. |
124 | 2493 |
2494 ; Display the stop line | |
2495 call PLED_decoplan_show_stop | |
2496 | |
2497 ; Next | |
2498 movff win_top,WREG ; row: += 24 | |
2499 addlw .24 | |
2500 movff WREG,win_top | |
2501 incf decoplan_index,F ; local index += 1 | |
2502 incf decoplan_gindex,F ; global index += 1 | |
2503 | |
2504 ; Max number of lines/page reached ? | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2505 movf decoplan_max,W ; index+1 == max ? |
124 | 2506 cpfseq decoplan_index |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2507 bra PLED_decoplan_2 ; NO: loop |
124 | 2508 |
2509 ; Check if next stop if end-of-list ? | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2510 movf decoplan_gindex,W |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2511 movff PLUSW0,WREG ; char_O_deco_depth[gindex] |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2512 iorwf WREG |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2513 bz PLED_decoplan_99 ; End of list... |
124 | 2514 |
2515 ; Display the message "more..." | |
223 | 2516 bcf last_ceiling_gf_shown ; More page to display... |
2517 | |
124 | 2518 rcall PLED_decoplan_clear_bottom ; Clear from next line |
2519 | |
2520 WIN_LEFT .130 - 7*3 | |
2521 call PLED_standard_color | |
223 | 2522 lfsr FSR2,letter |
2523 OUTPUTTEXT .142 ; More... | |
2524 goto word_processor | |
124 | 2525 |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2526 PLED_decoplan_99: |
124 | 2527 bsf last_ceiling_gf_shown ; Nothing more in table to display. |
2528 rcall PLED_decoplan_clear_bottom ; Clear from next line | |
2529 return | |
2530 ;----------------------------------------------------------------------------- | |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2531 |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2532 PLED_de_activelist: ; show (de)active gaslist |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2533 call PLED_standard_color |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2534 DISPLAYTEXT .254 ; Close |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2535 |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2536 WIN_LEFT .100 |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2537 WIN_FONT FT_SMALL |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2538 bsf leftbind |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2539 |
281 | 2540 ; movlw d'92' ; old sorted list |
2541 movlw d'2' | |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2542 movwf wait_temp ; here: stores eeprom address for gas list |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2543 movlw d'0' |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2544 movwf waitms_temp ; here: stores row for gas list |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2545 clrf hi ; here: Gas counter |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2546 |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2547 PLED_de_activelist_loop: |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2548 incf hi,F ; Increase Gas |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2549 movlw d'4' |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2550 addwf wait_temp,F ; Increase eeprom address for gas list |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2551 movlw d'25' |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2552 addwf waitms_temp,F ; Increase row |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2553 WIN_LEFT .100 |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2554 movff waitms_temp,win_top ; Set Row |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2555 |
221 | 2556 lfsr FSR2,letter |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2557 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
|
2558 call read_eeprom ; get byte (stored in EEDATA) |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2559 movff EEDATA,lo ; copy to lo |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2560 output_8 ; outputs into Postinc2! |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2561 PUTC '/' |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2562 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
|
2563 call read_eeprom ; get byte (stored in EEDATA) |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2564 movff EEDATA,lo ; copy to lo |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2565 output_8 ; outputs into Postinc2! |
221 | 2566 PUTC '@' |
2567 | |
281 | 2568 ; movlw d'117' ; old sorted list |
2569 movlw d'27' | |
221 | 2570 addwf hi,W |
2571 movwf EEADR ; Point to Change depth | |
2572 | |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2573 call read_eeprom ; get byte (stored in EEDATA) |
221 | 2574 movff EEDATA,lo ; copy to lo |
2575 output_8 ; outputs into Postinc2! | |
2576 | |
2577 ; call PLED_standard_color | |
2578 | |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2579 ; Check if gas needs to be greyed-out (inactive) |
221 | 2580 movff sorted_gaslist_active,EEDATA ; Get flag register |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2581 movff hi,lo ; copy gas number |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2582 PLED_de_activelist_loop1: |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2583 rrcf EEDATA ; roll flags into carry |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2584 decfsz lo,F ; max. 5 times... |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2585 bra PLED_de_activelist_loop1 |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2586 |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2587 movlw color_grey |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2588 btfss STATUS,C ; test carry |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2589 call PLED_set_color ; grey out inactive gases! |
221 | 2590 |
2591 dcfsnz hi,W ; First in List? | |
2592 call PLED_standard_color | |
2593 | |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2594 call word_processor |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2595 call PLED_standard_color |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2596 |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2597 movlw d'5' ; list all five gases |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2598 cpfseq hi ; All gases shown? |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2599 bra PLED_de_activelist_loop ; No |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2600 |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2601 return ; return |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2602 |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2603 |
0 | 2604 PLED_gas_list: |
2605 ostc_debug 'm' ; Sends debug-information to screen if debugmode active | |
2606 | |
2607 WIN_LEFT .100 | |
2608 WIN_FONT FT_SMALL | |
2609 bsf leftbind | |
2610 | |
2611 movlw d'2' | |
2612 movwf wait_temp ; here: stores eeprom address for gas list | |
2613 movlw d'231' | |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
2614 movwf waitms_temp ; here: stores row for gas list |
0 | 2615 clrf hi ; here: Gas counter |
2616 | |
2617 PLED_gas_list_loop: | |
2618 incf hi,F ; Increase Gas | |
2619 movlw d'4' | |
2620 addwf wait_temp,F ; Increase eeprom address for gas list | |
2621 movlw d'25' | |
2622 addwf waitms_temp,F ; Increase row | |
2623 WIN_LEFT .100 | |
2624 movff waitms_temp,win_top ; Set Row | |
2625 | |
123 | 2626 STRCPY "G" |
0 | 2627 movff hi,lo ; copy gas number |
2628 output_8 ; display gas number | |
123 | 2629 PUTC ':' |
0 | 2630 movff wait_temp, EEADR; Gas #hi: %O2 - Set address in internal EEPROM |
2631 call read_eeprom ; get byte (stored in EEDATA) | |
2632 movff EEDATA,lo ; copy to lo | |
2633 output_8 ; outputs into Postinc2! | |
123 | 2634 PUTC '/' |
0 | 2635 incf EEADR,F ; Gas #hi: %He - Set address in internal EEPROM |
2636 call read_eeprom ; get byte (stored in EEDATA) | |
2637 movff EEDATA,lo ; copy to lo | |
2638 output_8 ; outputs into Postinc2! | |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
2639 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
2640 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
|
2641 call read_eeprom ; get byte (stored in EEDATA) |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
2642 PLED_color_code warn_gas_in_gaslist ; Color-code output (%O2 in "EEDATA") |
281 | 2643 ; Check if gas needs to be greyed-out (inactive) |
2644 movff sorted_gaslist_active, EEDATA ; Work with sorted list | |
2645 ; read_int_eeprom d'27' ; read flag register | |
0 | 2646 movff hi,lo ; copy gas number |
2647 PLED_gas_list_loop1: | |
2648 rrcf EEDATA ; roll flags into carry | |
2649 decfsz lo,F ; max. 5 times... | |
2650 bra PLED_gas_list_loop1 | |
19 | 2651 |
2652 movlw color_grey | |
0 | 2653 btfss STATUS,C ; test carry |
19 | 2654 call PLED_set_color ; grey out inactive gases! |
0 | 2655 |
2656 call word_processor | |
19 | 2657 call PLED_standard_color |
0 | 2658 |
2659 movlw d'5' ; list all five gases | |
2660 cpfseq hi ; All gases shown? | |
2661 bra PLED_gas_list_loop ; No | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2662 |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2663 DISPLAYTEXT d'122' ; Gas 6.. |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2664 return ; return (OC mode) |
0 | 2665 |
2666 PLED_splist_start: | |
2667 WIN_LEFT .100 | |
2668 WIN_FONT FT_SMALL | |
2669 bsf leftbind | |
127 | 2670 call PLED_standard_color |
0 | 2671 |
2672 ; list three SP in Gaslist | |
2673 movlw d'35' ; 36 = current SP position in EEPROM | |
2674 movwf wait_temp ; here: stores eeprom address for gas list | |
2675 movlw d'231' | |
2676 movwf waitms_temp ; here: stores row for gas list | |
124 | 2677 clrf decoplan_index ; here: SP counter |
0 | 2678 |
2679 PLED_splist_loop: | |
2680 incf wait_temp,F ; EEPROM address | |
124 | 2681 incf decoplan_index,F ; Increase SP |
0 | 2682 |
2683 movlw d'25' | |
2684 addwf waitms_temp,F ; Increase row | |
2685 movff waitms_temp,win_top ; Set Row | |
2686 WIN_LEFT .100 | |
2687 | |
123 | 2688 STRCPY "SP" |
124 | 2689 movff decoplan_index,lo ; copy gas number |
0 | 2690 output_8 ; display gas number |
123 | 2691 PUTC ':' |
0 | 2692 movff wait_temp, EEADR; SP #hi position |
2693 call read_eeprom ; get byte (stored in EEDATA) | |
2694 movff EEDATA,lo ; copy to lo | |
2695 clrf hi | |
2696 output_16dp d'3' ; outputs into Postinc2! | |
2697 call word_processor | |
2698 | |
2699 movlw d'3' ; list all three SP | |
124 | 2700 cpfseq decoplan_index ; All gases shown? |
0 | 2701 bra PLED_splist_loop ; No |
2702 | |
2703 bcf leftbind | |
2704 return ; no, return | |
2705 | |
2706 PLED_clear_divemode_menu: | |
204 | 2707 WIN_BOX_BLACK .0, .168, .82, .160 ;top, bottom, left, right |
0 | 2708 return |
2709 | |
2710 PLED_divemenu_cursor: | |
2711 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
|
2712 |
204 | 2713 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
|
2714 |
0 | 2715 WIN_TOP .0 |
2716 WIN_LEFT .85 | |
2717 WIN_FONT FT_SMALL | |
2718 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 2719 call PLED_standard_color |
84 | 2720 |
0 | 2721 movff menupos,temp1 |
2722 movlw d'0' | |
2723 dcfsnz temp1,F | |
2724 movlw d'0' | |
2725 dcfsnz temp1,F | |
2726 movlw d'25' | |
2727 dcfsnz temp1,F | |
2728 movlw d'50' | |
2729 dcfsnz temp1,F | |
2730 movlw d'75' | |
2731 dcfsnz temp1,F | |
2732 movlw d'100' | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2733 dcfsnz temp1,F |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2734 movlw d'125' |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2735 |
0 | 2736 movff WREG,win_top |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2737 STRCPY_PRINT "\xB7" ; Cursor |
0 | 2738 return |
2739 | |
128 | 2740 |
2741 ;============================================================================= | |
2742 ; Draw saturation graph, is surface mode or in dive mode. | |
2743 ; | |
0 | 2744 PLED_tissue_saturation_graph: |
2745 ostc_debug 'i' ; Sends debug-information to screen if debugmode active | |
13 | 2746 |
128 | 2747 ;---- Draw Frame --------------------------------------------------------- |
2748 btfsc divemode | |
2749 bra PLED_tsg_1 | |
2750 | |
2751 WIN_FRAME_STD .25, .120, .82, .159 ; Surfmode | |
2752 bra PLED_tsg_2 | |
2753 PLED_tsg_1: | |
2754 WIN_FRAME_STD .169, .239, .90, .159 ; Divemode | |
2755 PLED_tsg_2: | |
2756 | |
2757 ;---- Draw grid ---------------------------------------------------------- | |
133 | 2758 btfss divemode |
2759 bra PLED_no_graph_grid | |
2760 | |
128 | 2761 movlw color_grey |
2762 call PLED_set_color | |
2763 | |
2764 movlw .169+.1 ; divemode | |
2765 movff WREG,win_top | |
2766 movlw .239-.169-.1 ; divemode | |
2767 movff WREG,win_height | |
2768 | |
2769 movlw 1 | |
2770 movff WREG,win_width | |
2771 | |
2772 movlw .122 | |
2773 movff WREG,win_leftx2 | |
2774 call PLED_box | |
2775 movlw .131 | |
2776 movff WREG,win_leftx2 | |
2777 call PLED_box | |
2778 movlw .140 | |
2779 movff WREG,win_leftx2 | |
2780 call PLED_box | |
2781 movlw .149 | |
2782 movff WREG,win_leftx2 | |
2783 call PLED_box | |
133 | 2784 PLED_no_graph_grid: |
128 | 2785 |
2786 ;---- Draw N2 Tissues ---------------------------------------------------- | |
0 | 2787 lfsr FSR2, char_O_tissue_saturation+.000 ; N2 |
2788 movlw d'16' | |
128 | 2789 movwf wait_temp ; 16 tissues |
2790 clrf waitms_temp ; Row offset | |
2791 | |
123 | 2792 movlw .1 |
2793 movff WREG,win_height ; row bottom (0-239) | |
128 | 2794 movlw .82+.18 ; surfmode |
2795 btfsc divemode | |
133 | 2796 movlw .90+.18 ; divemode |
123 | 2797 movff WREG,win_leftx2 ; column left (0-159) |
150 | 2798 movlw .57 ; surfmode: max width 57pix |
2799 btfsc divemode | |
2800 movlw .57-8 ; divemode: 8pix less... | |
2801 movff WREG,win_width | |
123 | 2802 |
0 | 2803 PLED_tissue_saturation_graph3: |
150 | 2804 call PLED_standard_color ; Reset color foreach iteration |
2805 | |
128 | 2806 movlw .25+3 ; surfmode: 3pix below top border |
2807 btfsc divemode | |
2808 movlw .169+3 ; divemode | |
0 | 2809 addwf waitms_temp,W |
123 | 2810 movff WREG,win_top ; row top (0-239) |
0 | 2811 |
2812 incf waitms_temp,F | |
2813 incf waitms_temp,F | |
2814 | |
123 | 2815 movf POSTINC2,W |
2816 bcf STATUS,C ; Clear carry | |
2817 rrcf WREG ; And divide by 4 | |
0 | 2818 bcf STATUS,C |
123 | 2819 rrcf WREG |
133 | 2820 movwf temp1 |
2821 | |
150 | 2822 movff win_width,WREG ; Max width. |
133 | 2823 cpfslt temp1 ; skip if 57 (WREG) < win_width |
2824 movwf temp1 | |
150 | 2825 movff temp1,win_bargraph |
0 | 2826 |
2827 call PLED_box | |
2828 | |
2829 decfsz wait_temp,F | |
2830 bra PLED_tissue_saturation_graph3 | |
2831 | |
128 | 2832 ;---- Draw He Tissues ---------------------------------------------------- |
0 | 2833 lfsr FSR2, char_O_tissue_saturation+.016 ; He |
2834 movlw d'16' | |
128 | 2835 movwf wait_temp ; 16 tissues |
2836 clrf waitms_temp ; Row offset | |
123 | 2837 |
0 | 2838 PLED_tissue_saturation_graph2: |
150 | 2839 call PLED_standard_color ; Reset color foreach iteration |
123 | 2840 |
128 | 2841 movlw .120-.33 ; surfmode : 33pix above bottom border |
2842 btfsc divemode | |
2843 movlw .239-.33 ; divemode | |
0 | 2844 addwf waitms_temp,W |
123 | 2845 movff WREG,win_top ; row top (0-239) |
0 | 2846 |
2847 incf waitms_temp,F | |
2848 incf waitms_temp,F | |
2849 | |
123 | 2850 movf POSTINC2,W |
2851 bcf STATUS,C ; Clear carry | |
2852 rrcf WREG ; And divide by 4 | |
0 | 2853 bcf STATUS,C |
123 | 2854 rrcf WREG |
133 | 2855 movwf temp1 |
150 | 2856 |
2857 movff win_width,WREG ; Max width. | |
133 | 2858 cpfslt temp1 ; skip if 57 (WREG) < win_width |
2859 movwf temp1 | |
150 | 2860 movff temp1,win_bargraph |
0 | 2861 |
2862 call PLED_box | |
2863 | |
2864 decfsz wait_temp,F | |
2865 bra PLED_tissue_saturation_graph2 | |
2866 | |
128 | 2867 ;---- Draw N2/He Text ---------------------------------------------------- |
150 | 2868 call PLED_standard_color ; Reset color after last iterarion. |
2869 | |
128 | 2870 movlw .82+2 ; surfmode: 2pix right of left border |
2871 btfsc divemode | |
2872 movlw .90+2 ; divemode | |
2873 movff WREG,win_leftx2 | |
2874 | |
2875 movlw .25+7 ; surfmode: 7pix below top border | |
2876 btfsc divemode | |
2877 movlw .169+7 ; divemode | |
2878 movff WREG,win_top | |
123 | 2879 STRCPY_PRINT "N2" |
2880 | |
128 | 2881 movlw .120-.30 ; surfmode: 30pix above bottom border |
2882 btfsc divemode | |
2883 movlw .239-.30 ; divemode | |
2884 movff WREG,win_top | |
123 | 2885 STRCPY_PRINT "He" |
128 | 2886 |
2887 ;---- Draw scale and O2[16]% --------------------------------------------- | |
2888 btfsc divemode | |
2889 return | |
19 | 2890 |
2891 movff char_O_gtissue_no,wait_temp ; used as temp | |
2892 | |
2893 lfsr FSR1,char_O_tissue_saturation+0 | |
2894 incf wait_temp,F ; make 1-16 of 0-15 | |
123 | 2895 |
19 | 2896 PLED_tissue_saturation_graph4: ; point to leading tissue... |
2897 movff POSTINC1,lo ; copy/overwrite to lo register | |
2898 decfsz wait_temp,F ; count until zero | |
2899 bra PLED_tissue_saturation_graph4 ;loop | |
123 | 2900 |
19 | 2901 WIN_TOP .62 |
2902 WIN_FONT FT_SMALL | |
128 | 2903 lfsr FSR2,letter |
2904 bsf leftbind | |
2905 output_8 | |
19 | 2906 bcf leftbind |
2907 | |
128 | 2908 STRCAT_PRINT "% " |
2909 | |
2910 ;---- Draw Scale --------------------------------------------------------- | |
123 | 2911 WIN_BOX_STD .73, .74, .121, .157 |
2912 WIN_BOX_STD .61, .84, .121, .122 | |
2913 WIN_BOX_STD .65, .80, .130, .131 | |
2914 WIN_BOX_STD .65, .80, .139, .140 | |
2915 WIN_BOX_STD .65, .80, .148, .149 | |
2916 WIN_BOX_STD .61, .84, .157, .158 | |
0 | 2917 return |
2918 | |
128 | 2919 ;============================================================================= |
2920 | |
0 | 2921 PLED_startupscreen1: |
2922 call PLED_topline_box | |
2923 WIN_INVERT .1 ; Init new Wordprocessor | |
2924 DISPLAYTEXT d'3' ; "HeinrichsWeikamp" | |
2925 WIN_INVERT .0 ; Init new Wordprocessor | |
2926 DISPLAYTEXT .68 ; Licence 1/2 | |
2927 DISPLAYTEXT .69 | |
2928 DISPLAYTEXT .70 | |
2929 DISPLAYTEXT .71 | |
2930 DISPLAYTEXT .72 | |
2931 DISPLAYTEXT .73 | |
2932 DISPLAYTEXT .74 | |
2933 return | |
2934 | |
2935 PLED_startupscreen2: | |
2936 call PLED_topline_box | |
2937 WIN_INVERT .1 ; Init new Wordprocessor | |
2938 DISPLAYTEXT d'3' ; "HeinrichsWeikamp" | |
2939 WIN_INVERT .0 ; Init new Wordprocessor | |
2940 DISPLAYTEXT .75 ; Licence 2/2 | |
2941 DISPLAYTEXT .76 | |
2942 DISPLAYTEXT .77 | |
2943 DISPLAYTEXT .78 | |
2944 DISPLAYTEXT .79 | |
2945 DISPLAYTEXT .80 | |
2946 DISPLAYTEXT .81 | |
2947 return | |
2948 | |
2949 PLED_new_cf_warning: | |
2950 call PLED_topline_box | |
2951 WIN_INVERT .1 ; Init new Wordprocessor | |
2952 DISPLAYTEXTH .271 ; New CF added! | |
2953 WIN_INVERT .0 ; Init new Wordprocessor | |
2954 DISPLAYTEXTH .272 ; New CustomFunctions | |
2955 DISPLAYTEXTH .273 ; were added! Check | |
2956 DISPLAYTEXTH .274 ; CF I and CF II Menu | |
2957 DISPLAYTEXTH .275 ; for Details! | |
2958 return | |
2959 | |
2960 PLED_const_ppO2_value: | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2961 ; 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
|
2962 ; return ; Yes, No update and return! |
0 | 2963 |
2964 ostc_debug 'j' ; Sends debug-information to screen if debugmode active | |
2965 | |
2966 WIN_TOP .168 | |
75 | 2967 WIN_LEFT .50 |
0 | 2968 WIN_FONT FT_SMALL |
2969 WIN_INVERT .0 ; Init new Wordprocessor | |
4 | 2970 |
0 | 2971 lfsr FSR2,letter |
2972 movff char_I_const_ppO2,lo | |
2973 | |
2974 tstfsz lo ; In Bailout mode (char_I_const_ppO2=0)? | |
2975 bra PLED_const_ppO2_value2 ; No, display Setpoint | |
2976 | |
2977 ; Yes, Display "Bail" | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
2978 call PLED_standard_color |
0 | 2979 OUTPUTTEXTH d'263' ;"Bail" |
2980 call word_processor | |
2981 return | |
2982 | |
2983 PLED_const_ppO2_value2: ; Display SetPoint | |
2984 ;Show fixed SP value | |
4 | 2985 movff amb_pressure+0,xA+0 |
2986 movff amb_pressure+1,xA+1 | |
2987 movlw d'10' | |
2988 movwf xB+0 | |
2989 clrf xB+1 | |
2990 ;xA/xB=xC with xA as remainder | |
2991 call div16x16 ; xC+0=p_amb/10 | |
26 | 2992 |
4 | 2993 ; char_I_const_ppO2 > p_amb/10 -> Not physically possible! -> Display actual value! |
2994 tstfsz xC+1 ; xC>255 | |
2995 setf xC+0 ; Yes, set xC+0 to 2,55bar ppO2 | |
26 | 2996 |
4 | 2997 movff ppO2_setpoint_store,WREG |
2998 cpfslt xC+0 ; Setpoint value possible? | |
26 | 2999 bra PLED_const_ppO2_value1 ; Yes |
4 | 3000 |
3001 movff xC+0,char_I_const_ppO2 ; No, Overwrite with actual value | |
3002 bra PLED_const_ppO2_value1a | |
3003 | |
3004 PLED_const_ppO2_value1: | |
26 | 3005 ; char_I_const_ppO2 < ppO2[Diluent] -> Not physically possible! -> Display actual value! |
3006 movff amb_pressure+0,xA+0 | |
3007 movff amb_pressure+1,xA+1 | |
3008 movlw d'10' | |
3009 movwf xB+0 | |
3010 clrf xB+1 | |
3011 call div16x16 ; xC=p_amb/10 | |
3012 movff xC+0,xA+0 | |
3013 movff xC+1,xA+1 | |
3014 movff char_I_O2_ratio,xB+0 | |
3015 clrf xB+1 | |
3016 call mult16x16 ; xC:2=char_I_O2_ratio * p_amb/10 | |
3017 | |
3018 movff xC+0,sub_b+0 | |
3019 movff xC+1,sub_b+1 | |
3020 movff ppO2_setpoint_store,WREG; Setpoint | |
3021 mullw d'100' ; Setpoint*100 | |
3022 movff PRODL,sub_a+0 | |
3023 movff PRODH,sub_a+1 | |
3024 call sub16 ; sub_c = sub_a - sub_b | |
3025 | |
3026 btfss neg_flag | |
3027 bra PLED_const_ppO2_value11 ; Value in range | |
3028 | |
3029 ; char_I_const_ppO2 < ppO2[Diluent] -> Not physically possible! -> Display actual value! | |
3030 | |
3031 movff xC+0,xA+0 | |
3032 movff xC+1,xA+1 | |
3033 movlw d'100' | |
3034 movwf xB+0 | |
3035 clrf xB+1 | |
3036 call div16x16 ;xA/xB=xC with xA as remainder | |
3037 | |
3038 movff xC+0,char_I_const_ppO2 ; No, Overwrite with actual value | |
138 | 3039 |
3040 GETCUSTOM8 d'39' ; Adjust fixed SP? | |
3041 dcfsnz WREG,F | |
3042 bra PLED_const_ppO2_value1a ; Yes! | |
3043 ; Do not adjust -> restore original SetPoint | |
26 | 3044 |
3045 PLED_const_ppO2_value11: | |
3046 ; Setpoint in possible limits | |
4 | 3047 movff ppO2_setpoint_store,char_I_const_ppO2 ; Restore Setpoint |
3048 | |
3049 PLED_const_ppO2_value1a: | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
3050 PLED_color_code warn_ppo2 ; Color-code output |
4 | 3051 movff char_I_const_ppO2,lo |
0 | 3052 clrf hi |
3053 bsf leftbind | |
3054 output_16dp d'3' | |
3055 bcf leftbind | |
3056 call word_processor | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
3057 call PLED_standard_color |
0 | 3058 return |
3059 | |
274
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3060 PLED_show_end_ead_divemode: |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3061 WIN_LEFT .95 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3062 WIN_TOP .192 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3063 WIN_FONT FT_SMALL |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3064 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
|
3065 lfsr FSR2,letter |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3066 STRCAT_PRINT "EAD:" |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3067 WIN_LEFT .95 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3068 WIN_TOP .216 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3069 lfsr FSR2,letter |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3070 STRCAT_PRINT "END:" |
277
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
3071 call PLED_standard_color |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
3072 |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
3073 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
|
3074 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
|
3075 |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
3076 ; We are in CCR mode... |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
3077 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
|
3078 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
|
3079 |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
3080 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
|
3081 ; 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
|
3082 WIN_LEFT .125 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3083 WIN_TOP .192 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3084 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
|
3085 clrf xA+1 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3086 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
|
3087 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
|
3088 call mult16x16 ; xA*xB=xC |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3089 movlw LOW d'7900' |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3090 movwf xB+0 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3091 movlw HIGH d'7900' |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3092 movwf xB+1 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3093 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
|
3094 movff xC+0,lo |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3095 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
|
3096 lfsr FSR2,letter |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3097 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
|
3098 STRCAT_PRINT "m" ; Display EAD |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3099 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3100 WIN_LEFT .125 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3101 WIN_TOP .216 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3102 ; 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
|
3103 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
|
3104 movlw d'100' |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3105 bsf STATUS,C |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3106 subfwb lo,W |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3107 movwf xA+0 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3108 clrf xA+1 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3109 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
|
3110 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
|
3111 call mult16x16 ; xA*xB=xC |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3112 movlw LOW d'10000' |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3113 movwf xB+0 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3114 movlw HIGH d'10000' |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3115 movwf xB+1 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3116 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
|
3117 movff xC+0,lo |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3118 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
|
3119 lfsr FSR2,letter |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3120 output_16_3 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3121 STRCAT_PRINT "m" ; Display END |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3122 return |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3123 |
277
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
3124 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
|
3125 ; ToDo... |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
3126 return |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
3127 |
274
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3128 |
0 | 3129 PLED_show_leading_tissue: |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
3130 call PLED_divemask_color ; Set Color for Divemode mask |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
3131 DISPLAYTEXTH .282 ; L. Tissue: |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
3132 PLED_show_leading_tissue_2: |
116 | 3133 call deco_calc_desaturation_time ; calculate desaturation time |
0 | 3134 movlb b'00000001' ; select ram bank 1 |
3135 | |
123 | 3136 STRCPY "#" |
0 | 3137 movff char_O_gtissue_no,lo |
3138 movff char_O_gtissue_no,wait_temp ; used as temp | |
3139 bsf leftbind | |
3140 output_8 | |
123 | 3141 STRCAT " (" |
0 | 3142 |
3143 movlw d'16' | |
3144 cpfslt wait_temp | |
3145 bra PLED_show_leading_tissue_he | |
123 | 3146 STRCAT "N2" |
0 | 3147 bra PLED_show_leading_tissue2 |
123 | 3148 |
0 | 3149 PLED_show_leading_tissue_he: |
123 | 3150 STRCAT "He" |
3151 | |
0 | 3152 PLED_show_leading_tissue2: |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
3153 WIN_LEFT .95 |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
3154 WIN_TOP .192 |
0 | 3155 WIN_FONT FT_SMALL |
3 | 3156 call PLED_standard_color |
123 | 3157 |
3158 STRCAT_PRINT ") " | |
3159 | |
0 | 3160 lfsr FSR1,char_O_tissue_saturation+0 |
3161 incf wait_temp,F ; make 1-16 of 0-15 | |
3162 PLED_show_leading_tissue3: ; point to leading tissue... | |
3163 movff POSTINC1,lo ; copy/overwrite to lo register | |
3164 decfsz wait_temp,F ; count until zero | |
3165 bra PLED_show_leading_tissue3 ;loop | |
123 | 3166 |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
3167 WIN_LEFT .95 |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
3168 WIN_TOP .216 |
0 | 3169 WIN_FONT FT_SMALL |
123 | 3170 |
3171 lfsr FSR2,letter | |
3172 output_8 | |
3173 STRCAT_PRINT "% " | |
0 | 3174 bcf leftbind |
3175 return | |
3176 | |
3177 PLED_topline_box_clear: ; Writes an empty box | |
3178 movlw .0 | |
3179 bra PLED_topline_box2 | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
3180 PLED_topline_box: ; Writes a filled box... |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
3181 GETCUSTOM8 d'35' ; ... with the standard color |
0 | 3182 PLED_topline_box2: |
123 | 3183 WIN_BOX_COLOR .0, .26, .0, .159 |
0 | 3184 return |
3185 | |
3186 PLED_display_cns: | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
3187 ; 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
|
3188 ; return ; Yes, No update and return! |
0 | 3189 |
3190 btfsc gauge_mode ; Do not display in gauge mode | |
3191 return | |
3192 | |
3193 btfsc FLAG_apnoe_mode ; Do not display in apnoe mode | |
3194 return | |
3195 | |
3196 btfsc pled_velocity_display ; Is velocity displayed?` | |
3197 return ; Yes, do not overwrite until pled_velocity_clear was called | |
3198 | |
3199 ostc_debug 'k' ; Sends debug-information to screen if debugmode active | |
3200 | |
3201 WIN_TOP .090 | |
3202 WIN_LEFT .0 | |
3203 WIN_FONT FT_SMALL | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
3204 PLED_color_code warn_cns ; Color-code CNS output |
0 | 3205 |
123 | 3206 STRCPY "CNS:" |
0 | 3207 movff char_O_CNS_fraction,lo |
3208 bsf leftbind | |
3209 output_8 | |
3210 bcf leftbind | |
123 | 3211 STRCAT_PRINT "%" |
0 | 3212 return |
3213 | |
43 | 3214 PLED_display_cns_surface: |
3215 ; Check if CNS should be displayed | |
3216 movff char_O_CNS_fraction,lo ; copy into bank1 | |
3217 GETCUSTOM8 d'15' ; cns_display_high_surfacemode | |
3218 subwf lo,W | |
3219 btfss STATUS,C | |
3220 return ; Do not show... | |
3221 ; Show CNS | |
3222 | |
3223 ostc_debug 'W' ; Sends debug-information to screen if debugmode active | |
3224 | |
3225 WIN_TOP .175 | |
3226 WIN_LEFT .45 | |
3227 WIN_FONT FT_SMALL | |
3228 WIN_INVERT .0 ; Init new Wordprocessor | |
3229 PLED_color_code warn_cns ; Color-code CNS output | |
3230 | |
123 | 3231 STRCPY "CNS:" |
43 | 3232 movff char_O_CNS_fraction,lo |
3233 bsf leftbind | |
3234 output_8 | |
3235 bcf leftbind | |
123 | 3236 STRCAT_PRINT "%" |
43 | 3237 return |
3238 | |
3239 | |
0 | 3240 PLED_custom_text: |
3241 read_int_eeprom d'64' | |
3242 movlw d'1' | |
3243 cpfseq EEDATA ; Custom text active? | |
3244 bra PLED_clear_custom_text ; No, Delete row | |
3245 WIN_TOP .200 | |
62 | 3246 WIN_LEFT .0 |
0 | 3247 WIN_FONT FT_SMALL |
3248 WIN_INVERT .0 ; Init new Wordprocessor | |
9 | 3249 call PLED_divemask_color ; Set Color for Divemode mask |
0 | 3250 |
3251 lfsr FSR2,letter | |
3252 movlw d'64' | |
3253 movwf lo | |
3254 movlw d'24' | |
3255 movwf hi ; counter | |
3256 | |
3257 PLED_custom_text1: | |
3258 incf lo,F | |
3259 call PLED_get_custom_letter ; Get one letter for the custom text | |
3260 movlw '}' ; End marker found? | |
3261 cpfseq EEDATA | |
3262 bra PLED_custom_text2 ; No | |
3263 bra PLED_custom_text3 | |
3264 PLED_custom_text2: | |
3265 movff EEDATA,POSTINC2 ; Copy into Postinc | |
3266 | |
3267 decfsz hi,F ; Max. numbers? | |
3268 bra PLED_custom_text1 ; No, get next letters | |
3269 | |
3270 PLED_custom_text3: | |
3271 call word_processor | |
3 | 3272 call PLED_standard_color |
0 | 3273 return |
3274 | |
3275 PLED_get_custom_letter: | |
3276 movff lo,EEADR ; Address for next custom text letter | |
3277 call read_eeprom ; Read letter | |
3278 return | |
3279 | |
3280 PLED_clear_custom_text: | |
3281 movlw d'24' | |
3282 movwf temp1 | |
3283 WIN_TOP .200 | |
3284 WIN_LEFT .0 | |
3285 call PLED_display_clear_common_y1 | |
3286 return | |
3287 | |
33 | 3288 PLED_simdata_screen: ;Display Pre-Dive Screen |
3289 ; List active gases/Setpoints | |
3290 btfsc FLAG_const_ppO2_mode ; in ppO2 mode? | |
3291 bra PLED_simdata_screen3 ; Yes, display SetPoint/Sensor result list | |
3292 | |
3293 PLED_simdata_screen2: | |
3294 ostc_debug 'm' ; Sends debug-information to screen if debugmode active | |
3295 | |
3296 WIN_LEFT .0 | |
3297 WIN_FONT FT_SMALL | |
3298 bsf leftbind | |
3299 | |
3300 movlw d'2' | |
3301 movwf wait_temp ; here: stores eeprom address for gas list | |
34 | 3302 movlw d'10' |
33 | 3303 movwf waitms_temp ; here: stores row for gas list |
3304 clrf hi ; here: Gas counter | |
3305 | |
3306 PLED_simdata_screen2_loop: | |
3307 incf hi,F ; Increase Gas | |
3308 movlw d'4' | |
3309 addwf wait_temp,F ; Increase eeprom address for gas list | |
3310 | |
123 | 3311 STRCPY "G" |
33 | 3312 movff hi,lo ; copy gas number |
3313 output_8 ; display gas number | |
123 | 3314 PUTC ':' |
33 | 3315 movff wait_temp, EEADR; Gas #hi: %O2 - Set address in internal EEPROM |
3316 call read_eeprom ; get byte (stored in EEDATA) | |
3317 movff EEDATA,lo ; copy to lo | |
3318 output_8 ; outputs into Postinc2! | |
123 | 3319 PUTC '/' |
33 | 3320 incf EEADR,F ; Gas #hi: %He - Set address in internal EEPROM |
3321 call read_eeprom ; get byte (stored in EEDATA) | |
3322 movff EEDATA,lo ; copy to lo | |
3323 output_8 ; outputs into Postinc2! | |
123 | 3324 PUTC ' ' |
34 | 3325 movf hi,W ; Gas number |
3326 addlw d'27' ; -> Adress of change depth register | |
3327 call read_int_eeprom_1 | |
3328 movff EEDATA,lo ; Change depth in m | |
223 | 3329 movff lo,divemins ; Store for grey-out |
34 | 3330 output_99 ; outputs into Postinc2! |
123 | 3331 PUTC 'm' |
223 | 3332 |
3333 ; Check if gas is first gas ? | |
3334 read_int_eeprom d'33' ; First gas (1-5)? | |
3335 movf hi,W ; Current gas in WREG | |
3336 cpfseq EEDATA ; Is equal first gas? | |
3337 bra PLED_simdata_screen2_loop2 ; No : more tests... | |
3338 | |
3339 bra PLED_simdata_white ; Yes | |
3340 | |
3341 PLED_simdata_screen2_loop2: | |
3342 ; Check if gas is inactive ? | |
3343 read_int_eeprom d'27' ; read flag register | |
3344 movff hi,lo ; copy gas number | |
33 | 3345 PLED_simdata_screen2_loop1: |
223 | 3346 rrcf EEDATA ; roll flags into carry |
3347 decfsz lo,F ; max. 5 times... | |
33 | 3348 bra PLED_simdata_screen2_loop1 |
181 | 3349 |
223 | 3350 btfss STATUS,C ; test inactive flag |
3351 bra PLED_simdata_grey ; Is inactive! | |
3352 | |
3353 tstfsz divemins ; Test change depth=0? | |
3354 bra PLED_simdata_white ; Is not zero | |
179
77ab44108c07
BUGFIX: Inactive gases greyed-out in Simulator results
Heinrichsweikamp
parents:
178
diff
changeset
|
3355 |
77ab44108c07
BUGFIX: Inactive gases greyed-out in Simulator results
Heinrichsweikamp
parents:
178
diff
changeset
|
3356 PLED_simdata_grey: |
33 | 3357 movlw color_grey |
223 | 3358 call PLED_set_color ; grey out inactive gases! |
33 | 3359 bra PLED_simdata_color_done |
3360 | |
3361 PLED_simdata_white: | |
3362 call PLED_standard_color | |
3363 | |
3364 PLED_simdata_color_done: | |
3365 movlw d'25' | |
3366 addwf waitms_temp,F ; Increase row | |
3367 WIN_LEFT .0 | |
3368 movff waitms_temp,win_top ; Set Row | |
34 | 3369 call word_processor ; display gas |
33 | 3370 |
3371 PLED_simdata_screen2b: | |
3372 call PLED_standard_color | |
3373 | |
34 | 3374 movlw d'5' ; list all five gases |
33 | 3375 cpfseq hi ; All gases shown? |
3376 bra PLED_simdata_screen2_loop ; No | |
3377 | |
3378 return ; No, return (OC mode) | |
3379 | |
3380 PLED_simdata_screen3: | |
3381 WIN_LEFT .0 | |
3382 WIN_FONT FT_SMALL | |
3383 bsf leftbind | |
3384 | |
3385 ; list three SP in Gaslist | |
3386 movlw d'35' ; 36 = current SP position in EEPROM | |
3387 movwf wait_temp ; here: stores eeprom address for gas list | |
34 | 3388 movlw d'10' |
33 | 3389 movwf waitms_temp ; here: stores row for gas list |
124 | 3390 clrf decoplan_index ; here: SP counter |
33 | 3391 |
3392 PLED_simdata_screen3_loop: | |
3393 incf wait_temp,F ; EEPROM address | |
124 | 3394 incf decoplan_index,F ; Increase SP |
33 | 3395 |
3396 movlw d'25' | |
3397 addwf waitms_temp,F ; Increase row | |
3398 WIN_LEFT .0 | |
3399 movff waitms_temp,win_top ; Set Row | |
3400 | |
123 | 3401 STRCPY "SP" |
124 | 3402 movff decoplan_index,lo ; copy gas number |
33 | 3403 output_8 ; display gas number |
123 | 3404 STRCAT ": " |
33 | 3405 movff wait_temp, EEADR; SP #hi position |
3406 call read_eeprom ; get byte (stored in EEDATA) | |
3407 movff EEDATA,lo ; copy to lo | |
3408 clrf hi | |
3409 output_16dp d'3' ; outputs into Postinc2! | |
3410 call word_processor | |
3411 | |
3412 movlw d'3' ; list all three SP | |
124 | 3413 cpfseq decoplan_index ; All gases shown? |
33 | 3414 bra PLED_simdata_screen3_loop ;no |
3415 | |
3416 read_int_eeprom d'33' ; Read byte (stored in EEDATA) | |
3417 movff EEDATA,active_gas ; Read start gas (1-5) | |
3418 decf active_gas,W ; Gas 0-4 | |
3419 mullw d'4' | |
3420 movf PRODL,W | |
3421 addlw d'7' ; = address for He ratio | |
3422 movwf EEADR | |
3423 call read_eeprom ; Read He ratio | |
3424 movff EEDATA,hi ; And copy into hold register | |
3425 decf active_gas,W ; Gas 0-4 | |
3426 mullw d'4' | |
3427 movf PRODL,W | |
3428 addlw d'6' ; = address for O2 ratio | |
3429 movwf EEADR | |
3430 call read_eeprom ; Read O2 ratio | |
3431 movff EEDATA, lo ; O2 ratio | |
3432 | |
3433 WIN_LEFT .0 | |
34 | 3434 WIN_TOP .110 |
123 | 3435 |
3436 STRCPY "Dil:" | |
33 | 3437 output_8 ; O2 Ratio |
123 | 3438 STRCAT "/" |
33 | 3439 movff hi,lo |
3440 output_8 ; He Ratio | |
3441 call word_processor | |
3442 | |
3443 bcf leftbind | |
3444 return ; Return (CC Mode) | |
3445 | |
0 | 3446 |
3447 | |
3448 adjust_depth_with_salinity: ; computes salinity setting into lo:hi [mBar] | |
3449 | |
3450 btfsc simulatormode_active ; Do apply salinity in Simulatormode | |
3451 return | |
3452 | |
3453 read_int_eeprom d'26' ; Read Salinity from EEPROM | |
3454 movff EEDATA, wait_temp ; salinity | |
3455 | |
3456 movlw d'105' ; 105% ? | |
3457 cpfslt wait_temp ; Salinity higher limit | |
3458 return ; Out of limit, do not adjust lo:hi | |
3459 | |
3460 movlw d'99' ; 99% ? | |
3461 cpfsgt wait_temp ; Salinity lower limit | |
3462 return ; Out of limit, do not adjust lo:hi | |
3463 | |
3464 movff lo,xA+0 | |
3465 movff hi,xA+1 | |
3466 | |
3467 movlw d'100' | |
3468 movwf xB+0 | |
3469 clrf xB+1 | |
3470 | |
3471 call mult16x16 ;xA*xB=xC (lo:hi * 100) | |
3472 | |
3473 movff wait_temp,xB+0 ; Salinity | |
3474 clrf xB+1 | |
3475 | |
3476 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder | |
3477 | |
3478 movff xC+0,lo | |
3479 movff xC+1,hi ; restore lo and hi with updated value | |
3480 | |
3481 return |