Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/pled_outputs.asm @ 63:fee7c62b4de1
1.71beta - clock in divemode (CF39)
author | heinrichsweikamp |
---|---|
date | Wed, 29 Sep 2010 15:25:53 +0200 |
parents | 2972a06b0785 |
children | e8756eba54ee |
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 | |
22 ; last updated: 06/06/08 | |
23 ; known bugs: | |
24 ; ToDo: More comments | |
25 | |
9 | 26 PLED_divemask_color: |
25 | 27 GETCUSTOM8 d'36' ; Divemask output color |
29 | 28 bra PLED_standard_color_0 |
9 | 29 |
25 | 30 PLED_warnings_color: |
31 GETCUSTOM8 d'37' ; Warnings output color | |
29 | 32 bra PLED_standard_color_0 |
33 | |
34 PLED_standard_color: | |
35 GETCUSTOM8 d'35' ; Standard output color | |
36 PLED_standard_color_0: ; Common entry point | |
37 movwf oled1_temp ; copy | |
38 movlw d'0' | |
39 cpfseq oled1_temp | |
40 bra PLED_standard_color_1 | |
41 bra PLED_standard_color2 | |
42 PLED_standard_color_1: | |
43 movlw d'4' | |
44 cpfseq oled1_temp | |
45 bra PLED_standard_color_2 | |
46 bra PLED_standard_color2 | |
47 PLED_standard_color_2: | |
48 movlw d'8' | |
49 cpfseq oled1_temp | |
50 bra PLED_standard_color_3 | |
51 bra PLED_standard_color2 | |
52 PLED_standard_color_3: | |
53 movlw d'192' | |
54 cpfseq oled1_temp | |
55 bra PLED_standard_color_4 | |
56 bra PLED_standard_color2 | |
57 PLED_standard_color_4: | |
58 movlw d'196' | |
59 cpfseq oled1_temp | |
60 bra PLED_standard_color_5 | |
61 bra PLED_standard_color2 | |
62 PLED_standard_color_5: | |
63 movlw d'200' | |
64 cpfseq oled1_temp | |
65 bra PLED_standard_color_6 | |
66 bra PLED_standard_color2 | |
67 PLED_standard_color_6: | |
68 movf oled1_temp,W ; Color should be OK... | |
69 call PLED_set_color | |
70 return | |
71 PLED_standard_color2: | |
72 movlw color_standard1 ; Reset Color | |
25 | 73 call PLED_set_color |
74 return | |
3 | 75 |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
76 PLED_color_code macro color_code_temp |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
77 movlw color_code_temp |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
78 call PLED_color_code1 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
79 endm |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
80 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
81 PLED_color_code1: ; Color-codes the output, if required |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
82 movwf debug_temp |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
83 dcfsnz debug_temp,F |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
84 bra PLED_color_code_depth ; CF43 [mBar], 16Bit |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
85 dcfsnz debug_temp,F |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
86 bra PLED_color_code_cns ; CF44 [%] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
87 dcfsnz debug_temp,F |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
88 bra PLED_color_code_gf ; CF45 [%] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
89 dcfsnz debug_temp,F |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
90 bra PLED_color_code_ppo2 ; CF46 [cBar] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
91 dcfsnz debug_temp,F |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
92 bra PLED_color_code_velocity ; CF47 [m/min] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
93 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
94 PLED_color_code_depth: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
95 movff hi,hi_temp |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
96 movff lo,lo_temp |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
97 movff rel_pressure+1,hi |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
98 movff rel_pressure+0,lo |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
99 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
|
100 movff lo,sub_a+0 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
101 movff hi,sub_a+1 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
102 GETCUSTOM15 d'43' ; Depth warn [mBar] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
103 movff lo,sub_b+0 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
104 movff hi,sub_b+1 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
105 call sub16 ; sub_c = sub_a - sub_b |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
106 btfss neg_flag |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
107 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
|
108 call PLED_standard_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
109 movff hi_temp,hi |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
110 movff lo_temp,lo ; Restore hi, lo |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
111 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
112 PLED_color_code_depth2: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
113 call PLED_warnings_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
114 movff hi_temp,hi |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
115 movff lo_temp,lo ; Restore hi, lo |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
116 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
117 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
118 PLED_color_code_cns: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
119 movff char_O_CNS_fraction,lo |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
120 GETCUSTOM8 d'44' ; CNS Warn [%] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
121 subwf lo,W |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
122 btfsc STATUS,C |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
123 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
|
124 call PLED_standard_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
125 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
126 PLED_color_code_cns2: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
127 call PLED_warnings_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
128 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
129 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
130 PLED_color_code_gf: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
131 movff char_O_gradient_factor,lo ; gradient factor |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
132 GETCUSTOM8 d'45' ; GF Warn [%] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
133 subwf lo,W |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
134 btfsc STATUS,C |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
135 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
|
136 call PLED_standard_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
137 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
138 PLED_color_code_gf2: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
139 call PLED_warnings_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
140 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
141 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
142 PLED_color_code_ppo2: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
143 movff xC+0,sub_a+0 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
144 movff xC+1,sub_a+1 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
145 GETCUSTOM8 d'46' ; ppO2 warn [cBar] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
146 mullw d'100' |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
147 movff PRODL,sub_b+0 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
148 movff PRODH,sub_b+1 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
149 call sub16 ; sub_c = sub_a - sub_b |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
150 btfss neg_flag |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
151 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
|
152 call PLED_standard_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
153 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
154 PLED_color_code_ppo22: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
155 call PLED_warnings_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
156 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
157 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
158 PLED_color_code_velocity: |
47 | 159 btfss neg_flag ; Ignore for ascend! |
160 bra PLED_color_code_velocity1 ; Skip check! | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
161 movff divA+0,lo |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
162 GETCUSTOM8 d'47' ; Velocity warn [m/min] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
163 subwf lo,W |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
164 btfsc STATUS,C |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
165 bra PLED_color_code_velocity2 ; Set to warning color |
47 | 166 PLED_color_code_velocity1: |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
167 call PLED_standard_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
168 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
169 PLED_color_code_velocity2: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
170 call PLED_warnings_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
171 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
172 |
0 | 173 ostc_debug macro debug_temp |
174 movlw debug_temp | |
175 call ostc_debug1 | |
176 endm | |
177 | |
178 ostc_debug1: | |
179 movwf debug_temp | |
180 | |
181 movff debug_char+4,debug_char+5 ; Save for background debugger | |
182 movff debug_char+3,debug_char+4 | |
183 movff debug_char+2,debug_char+3 | |
184 movff debug_char+1,debug_char+2 | |
185 movff debug_char+0,debug_char+1 | |
186 movff debug_temp,debug_char+0 | |
187 | |
188 btfss debug_mode ; Are we in debugmode? | |
189 return ; No, return! | |
190 | |
191 WIN_TOP .200 | |
192 WIN_LEFT .100 | |
193 WIN_FONT FT_SMALL | |
194 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 195 call PLED_standard_color |
0 | 196 lfsr FSR2,letter |
197 movf debug_char+0,W | |
198 movwf POSTINC2 | |
199 movf debug_char+1,W | |
200 movwf POSTINC2 | |
201 movf debug_char+2,W | |
202 movwf POSTINC2 | |
203 movf debug_char+3,W | |
204 movwf POSTINC2 | |
205 movf debug_char+4,W | |
206 movwf POSTINC2 | |
207 movf debug_char+5,W | |
208 movwf POSTINC2 | |
209 movlw ' ' | |
210 movwf POSTINC2 | |
211 call word_processor | |
212 return | |
213 | |
214 | |
215 PLED_resetdebugger: | |
21 | 216 bcf LED_blue |
0 | 217 call PLED_boot ; PLED boot |
218 call PLED_ClearScreen ; clean up OLED | |
3 | 219 call PLED_standard_color |
47 | 220 WIN_INVERT .0 ; Init new Wordprocessor |
0 | 221 |
222 DISPLAYTEXT .133 | |
223 DISPLAYTEXT .134 | |
224 DISPLAYTEXT .135 | |
225 DISPLAYTEXT .136 ; Display Debug intro | |
226 | |
227 WIN_TOP .100 | |
228 WIN_LEFT .10 | |
229 WIN_FONT FT_SMALL | |
230 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 231 call PLED_standard_color |
0 | 232 lfsr FSR2,letter |
233 movf debug_char+0,W | |
234 movwf POSTINC2 | |
235 movf debug_char+1,W | |
236 movwf POSTINC2 | |
237 movf debug_char+2,W | |
238 movwf POSTINC2 | |
239 movf debug_char+3,W | |
240 movwf POSTINC2 | |
241 movf debug_char+4,W | |
242 movwf POSTINC2 | |
243 movf debug_char+5,W | |
244 movwf POSTINC2 | |
245 movlw '.' | |
246 movwf POSTINC2 | |
247 movlw ' ' | |
248 movwf POSTINC2 | |
249 movff flag1,lo | |
250 output_8 | |
251 movlw ' ' | |
252 movwf POSTINC2 | |
253 movff flag2,lo | |
254 output_8 | |
255 call word_processor | |
256 | |
257 WIN_TOP .125 | |
258 WIN_LEFT .10 | |
259 WIN_FONT FT_SMALL | |
260 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 261 call PLED_standard_color |
0 | 262 |
263 lfsr FSR2,letter | |
264 movff flag3,lo | |
265 output_8 | |
266 movlw ' ' | |
267 movwf POSTINC2 | |
268 movff flag4,lo | |
269 output_8 | |
270 movlw ' ' | |
271 movwf POSTINC2 | |
272 movff flag5,lo | |
273 output_8 | |
274 movlw ' ' | |
275 movwf POSTINC2 | |
276 movff flag6,lo | |
277 output_8 | |
278 movlw ' ' | |
279 movwf POSTINC2 | |
280 movff flag7,lo | |
281 output_8 | |
282 call word_processor | |
283 | |
284 WIN_TOP .150 | |
285 WIN_LEFT .10 | |
286 WIN_FONT FT_SMALL | |
287 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 288 call PLED_standard_color |
0 | 289 |
290 lfsr FSR2,letter | |
291 movff flag8,lo | |
292 output_8 | |
293 movlw ' ' | |
294 movwf POSTINC2 | |
295 movff flag9,lo | |
296 output_8 | |
297 movlw ' ' | |
298 movwf POSTINC2 | |
299 movff flag10,lo | |
300 output_8 | |
301 movlw ' ' | |
302 movwf POSTINC2 | |
303 movff flag11,lo | |
304 output_8 | |
305 movlw ' ' | |
306 movwf POSTINC2 | |
307 movff flag12,lo | |
308 output_8 | |
309 call word_processor | |
310 | |
311 PLED_resetdebugger_loop: | |
312 btfss switch_left | |
313 bra PLED_resetdebugger_loop ; Loop | |
21 | 314 bcf LED_red |
0 | 315 return |
316 | |
317 PLED_divemode_mask: ; Displays mask in Dive-Mode | |
9 | 318 call PLED_divemask_color ; Set Color for Divemode mask |
0 | 319 DISPLAYTEXTH .267 ; Max Depth |
320 DISPLAYTEXT .86 ; Divetime | |
321 DISPLAYTEXT .87 ; Depth | |
3 | 322 call PLED_standard_color |
0 | 323 return |
324 | |
325 PLED_clear_decoarea: | |
326 movlw .0 | |
327 movff WREG,box_temp+0 ; Data | |
328 movlw .60 | |
329 movff WREG,box_temp+1 ; row top (0-239) | |
330 movlw .239 | |
331 movff WREG,box_temp+2 ; row bottom (0-239) | |
332 movlw .090 | |
333 movff WREG,box_temp+3 ; column left (0-159) | |
334 movlw .159 | |
335 movff WREG,box_temp+4 ; column right (0-159) | |
336 call PLED_box | |
337 call PLED_temp_divemode ; redraw temperature | |
338 call PLED_active_gas_divemode ; redraw active Gas | |
339 return | |
340 | |
341 PLED_display_ndl_mask: | |
342 ; Clear Dekostop and Dekosum | |
343 rcall PLED_clear_decoarea | |
344 | |
9 | 345 call PLED_divemask_color ; Set Color for Divemode mask |
0 | 346 DISPLAYTEXT d'84' ; NoStop |
3 | 347 call PLED_standard_color |
0 | 348 |
349 PLED_display_ndl_mask2: | |
350 ; Clears Gradient Factor | |
351 movlw d'8' | |
352 movwf temp1 | |
353 WIN_TOP .145 | |
354 WIN_LEFT .0 | |
355 call PLED_display_clear_common_y1 | |
356 return | |
357 | |
358 PLED_display_ndl: | |
359 btfsc multi_gf_display ; Is the Multi-GF Table displayed? | |
360 return ; Yes, No update and return! | |
361 | |
362 ostc_debug 'z' ; Sends debug-information to screen if debugmode active | |
363 | |
364 WIN_TOP .185 | |
365 WIN_LEFT .119 | |
366 WIN_FONT FT_MEDIUM | |
367 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 368 call PLED_standard_color |
369 | |
0 | 370 lfsr FSR2,letter |
371 movff char_O_nullzeit,lo ; NDL in minutes | |
372 output_8 | |
373 movlw 0x27 ; "'" | |
374 movwf POSTINC2 | |
375 call word_processor | |
376 WIN_FONT FT_SMALL | |
377 return | |
378 | |
379 PLED_display_deko_mask: | |
380 rcall PLED_clear_decoarea | |
381 ; total deco time word | |
9 | 382 call PLED_divemask_color ; Set Color for Divemode mask |
0 | 383 DISPLAYTEXT d'85' ; DECOSUM |
3 | 384 call PLED_standard_color |
0 | 385 return |
386 | |
387 PLED_display_deko: | |
388 btfsc multi_gf_display ; Is the Multi-GF Table displayed? | |
389 return ; Yes, No update and return! | |
390 | |
391 btfsc menubit ; Divemode menu active? | |
392 bra PLED_display_deko1 ; Yes, do not display dekostop | |
393 | |
394 ostc_debug 'y' ; Sends debug-information to screen if debugmode active | |
395 ; deco stop word | |
9 | 396 call PLED_divemask_color ; Set Color for Divemode mask |
0 | 397 DISPLAYTEXT d'82' ; DEKOSTOP |
3 | 398 call PLED_standard_color |
0 | 399 |
400 WIN_TOP .118 | |
401 WIN_LEFT .94 | |
402 WIN_FONT FT_MEDIUM | |
403 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 404 call PLED_standard_color |
0 | 405 lfsr FSR2,letter |
406 movff char_O_array_decodepth+0,lo ; Ceiling in m | |
407 output_99 | |
408 movlw 'm' ; "m" | |
409 movwf POSTINC2 | |
410 movff char_O_array_decotime,lo ; length of first stop in m | |
411 output_99 | |
412 movlw 0x27 ; "'" | |
413 movwf POSTINC2 | |
414 call word_processor | |
415 WIN_FONT FT_SMALL | |
416 | |
417 PLED_display_deko1: | |
418 btfsc multi_gf_display ; Is the Multi-GF Table displayed? | |
419 return ; Yes, No update and return! | |
420 | |
421 ostc_debug 'x' ; Sends debug-information to screen if debugmode active | |
422 | |
423 WIN_TOP .185 | |
424 WIN_LEFT .119 | |
425 WIN_FONT FT_MEDIUM | |
426 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 427 call PLED_standard_color |
0 | 428 lfsr FSR2,letter |
429 movff char_O_ascenttime,lo ; complete ascend time | |
430 movlw d'199' ; limit display of total ascend time to 99mins.... | |
431 cpfslt lo ; skip if 199 (WREG) > lo | |
432 movwf lo | |
433 bcf leftbind | |
434 output_8 | |
435 movlw 0x27 ; "'" | |
436 movwf POSTINC2 | |
437 call word_processor | |
438 | |
439 movff char_O_gradient_factor,lo ; gradient factor | |
440 GETCUSTOM8 d'8' ; threshold for display | |
441 cpfslt lo ; show value? | |
442 bra PLED_display_deko2 ; Yes | |
443 ; No | |
444 bra PLED_display_ndl_mask2 ; Clear gradient factor | |
445 | |
446 PLED_display_deko2: | |
447 ostc_debug 'w' ; Sends debug-information to screen if debugmode active | |
448 ;GF | |
449 WIN_TOP .145 | |
450 WIN_LEFT .0 | |
451 WIN_FONT FT_SMALL | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
452 PLED_color_code warn_gf ; Color-code Output |
0 | 453 lfsr FSR2,letter |
454 movlw 'G' | |
455 movwf POSTINC2 | |
456 movlw 'F' | |
457 movwf POSTINC2 | |
458 movlw ':' | |
459 movwf POSTINC2 | |
460 movff char_O_gradient_factor,lo ; gradient factor | |
461 output_8 | |
462 movlw '%' | |
463 movwf POSTINC2 | |
464 movlw ' ' | |
465 movwf POSTINC2 | |
466 call word_processor | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
467 call PLED_standard_color |
0 | 468 return |
469 | |
470 PLED_simulator_data: | |
471 WIN_TOP .65 | |
472 WIN_LEFT .105 | |
473 WIN_FONT FT_SMALL | |
3 | 474 call PLED_standard_color |
0 | 475 lfsr FSR2,letter |
476 movff logbook_temp1,lo | |
477 bsf leftbind | |
478 output_8 | |
479 bcf leftbind | |
480 movlw 'm' | |
481 movwf POSTINC2 | |
482 movlw 'i' | |
483 movwf POSTINC2 | |
484 movlw 'n' | |
485 movwf POSTINC2 | |
486 movlw ' ' | |
487 movwf POSTINC2 | |
488 call word_processor | |
489 | |
490 WIN_TOP .95 | |
491 WIN_LEFT .100 | |
492 WIN_FONT FT_SMALL | |
3 | 493 call PLED_standard_color |
0 | 494 lfsr FSR2,letter |
495 movff logbook_temp2,lo | |
496 bsf leftbind | |
497 output_8 | |
498 bcf leftbind | |
499 movlw 'm' | |
500 movwf POSTINC2 | |
501 movlw ' ' | |
502 movwf POSTINC2 | |
503 call word_processor | |
504 return | |
505 | |
506 PLED_display_velocity: | |
507 btfsc multi_gf_display ; Is the Multi-GF Table displayed? | |
508 return ; Yes, No update and return! | |
509 | |
510 ostc_debug 'v' ; Sends debug-information to screen if debugmode active | |
511 WIN_TOP .90 | |
512 WIN_LEFT .0 | |
513 WIN_FONT FT_SMALL | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
514 PLED_color_code warn_velocity ; Color code output |
0 | 515 lfsr FSR2,letter |
516 movlw '-' | |
517 btfsc neg_flag | |
518 movlw '+' | |
519 movwf POSTINC2 | |
520 movff divA+0,lo | |
521 output_99 | |
522 OUTPUTTEXT d'83' ; m/min | |
523 call word_processor | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
524 call PLED_standard_color |
0 | 525 bsf pled_velocity_display |
526 return | |
527 | |
528 PLED_display_velocity_clear: | |
529 movlw d'8' | |
530 movwf temp1 | |
531 WIN_TOP .90 | |
532 WIN_LEFT .0 | |
533 bcf pled_velocity_display | |
534 bra PLED_display_clear_common_y1 | |
535 | |
536 PLED_display_wait_clear | |
537 movlw d'6' | |
538 movwf temp1 | |
539 WIN_TOP .2 | |
540 WIN_LEFT .115 | |
541 bra PLED_display_clear_common_y1 | |
542 | |
543 PLED_display_clear_common_y2: ; Clears with y-scale=2 | |
544 WIN_FONT FT_MEDIUM | |
545 bra PLED_display_clear_common1 | |
546 | |
547 PLED_display_clear_common_y1: ; Clears with y-scale=1 | |
548 WIN_FONT FT_SMALL | |
549 PLED_display_clear_common1: | |
550 lfsr FSR2,letter | |
551 PLED_display_clear_common2: | |
552 movlw ' ' | |
553 movwf POSTINC2 | |
554 decfsz temp1,F | |
555 bra PLED_display_clear_common2 | |
556 call word_processor | |
557 WIN_FONT FT_SMALL | |
558 return | |
559 | |
63 | 560 PLED_diveclock: |
561 GETCUSTOM8 d'39' ; =1: Show clock in Divemode | |
562 movwf lo | |
563 movlw d'1' | |
564 cpfseq lo ; =1? | |
565 return ; No, Done. | |
566 | |
567 btfsc menubit ; is the Dive mode menu displayed? | |
568 return ; Yes | |
569 | |
570 WIN_TOP .2 | |
571 WIN_LEFT .64 | |
572 WIN_FONT FT_SMALL | |
573 WIN_INVERT .0 ; Init new Wordprocessor | |
574 call PLED_standard_color | |
575 lfsr FSR2,letter | |
576 movff hours,lo | |
577 output_99x | |
578 movlw ':' | |
579 movwf POSTINC2 | |
580 movff mins,lo | |
581 output_99x | |
582 call word_processor | |
583 return | |
584 | |
0 | 585 PLED_clock: |
586 ostc_debug 'c' | |
587 | |
588 ;If > 0 display surface_interval:2 and clock changing every 5 seconds | |
589 ;use timeout_counter for this | |
590 WIN_TOP .50 | |
56 | 591 WIN_LEFT .1 |
0 | 592 WIN_FONT FT_SMALL |
593 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 594 call PLED_standard_color |
595 | |
0 | 596 lfsr FSR2,letter |
597 | |
598 movff surface_interval+0,lo | |
599 tstfsz lo | |
600 bra PLED_clock0 ; Not Zero, switch between Interval and clock | |
601 movff surface_interval+1,lo | |
602 tstfsz lo | |
603 bra PLED_clock0 ; Not Zero, switch between Interval and clock | |
604 bra PLED_clock3 ; surface_interval=0, always display clock! | |
605 | |
606 PLED_clock0: | |
607 btfss show_interval ; Show Interval? | |
608 bra PLED_clock2 ; No, display clock and reset counter | |
609 | |
610 PLED_clock1: | |
611 decfsz timeout_counter,F ; =0? | |
612 bra PLED_clock1a ; No... | |
613 bra PLED_clock3 ; Yes, display clock and reset counter | |
614 | |
615 PLED_clock1a: | |
616 bsf show_interval | |
617 movlw d'6' | |
618 cpfslt timeout_counter ; f < w? -> timeout_counter>5? | |
619 rcall PLED_clock_reload_timer ; No, reload counter | |
620 | |
621 movff surface_interval+0,lo | |
622 movff surface_interval+1,hi | |
623 call convert_time ; lo=mins, hi=hours | |
624 | |
625 movf hi,W | |
626 movff lo,hi | |
627 movwf lo ; exchange lo and hi | |
628 | |
629 movlw 'I' | |
630 movwf POSTINC2 | |
631 movlw 'n' | |
632 movwf POSTINC2 | |
633 movlw 't' | |
634 movwf POSTINC2 | |
635 movlw ':' | |
636 movwf POSTINC2 | |
637 output_99x | |
638 movlw ':' | |
639 movwf POSTINC2 | |
640 movff hi,lo | |
641 output_99x | |
642 movlw ' ' | |
643 movwf POSTINC2 | |
644 call word_processor | |
645 return | |
646 | |
647 PLED_clock_reload_timer: | |
648 bcf show_interval | |
649 movlw d'5' | |
650 movwf timeout_counter | |
651 return | |
652 | |
653 PLED_interval_reload_timer: | |
654 bsf show_interval | |
655 movlw d'5' | |
656 movwf timeout_counter | |
657 return | |
658 | |
659 PLED_clock2: | |
660 decfsz timeout_counter,F ; =0? | |
661 bra PLED_clock3 ; No... | |
662 bra PLED_clock1a ; Yes, display interval and reset counter | |
663 | |
664 PLED_clock3: | |
665 bcf show_interval | |
666 movlw d'6' | |
667 cpfslt timeout_counter ; f < w? -> timeout_counter>5? | |
668 rcall PLED_interval_reload_timer; No, reload counter | |
669 | |
670 movff hours,lo | |
671 output_99x | |
672 movlw ':' | |
673 movwf POSTINC2 | |
674 movff mins,lo | |
675 output_99x | |
676 movlw ':' | |
677 movwf POSTINC2 | |
678 movff secs,lo | |
679 output_99x | |
680 movlw ' ' | |
681 movwf POSTINC2 | |
682 call word_processor | |
683 return | |
684 | |
685 PLED_logbook_cursor: | |
686 | |
687 PLED_menu_cursor: | |
688 WIN_TOP .35 | |
689 WIN_LEFT .0 | |
690 WIN_FONT FT_SMALL | |
691 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 692 call PLED_standard_color |
693 | |
0 | 694 lfsr FSR2,letter |
695 movlw 0xB8 | |
696 movwf POSTINC2 | |
697 call word_processor | |
698 | |
699 WIN_TOP .65 | |
700 WIN_LEFT .0 | |
701 WIN_FONT FT_SMALL | |
702 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 703 |
0 | 704 lfsr FSR2,letter |
705 movlw 0xB8 | |
706 movwf POSTINC2 | |
707 call word_processor | |
708 | |
709 WIN_TOP .95 | |
710 WIN_LEFT .0 | |
711 WIN_FONT FT_SMALL | |
712 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 713 |
0 | 714 lfsr FSR2,letter |
715 movlw 0xB8 | |
716 movwf POSTINC2 | |
717 call word_processor | |
718 | |
719 WIN_TOP .125 | |
720 WIN_LEFT .0 | |
721 WIN_FONT FT_SMALL | |
722 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 723 |
0 | 724 lfsr FSR2,letter |
725 movlw 0xB8 | |
726 movwf POSTINC2 | |
727 call word_processor | |
728 | |
729 WIN_TOP .155 | |
730 WIN_LEFT .0 | |
731 WIN_FONT FT_SMALL | |
732 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 733 call PLED_standard_color |
734 | |
0 | 735 lfsr FSR2,letter |
736 movlw 0xB8 | |
737 movwf POSTINC2 | |
738 call word_processor | |
739 | |
740 WIN_TOP .185 | |
741 WIN_LEFT .0 | |
742 WIN_FONT FT_SMALL | |
743 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 744 |
0 | 745 lfsr FSR2,letter |
746 movlw 0xB8 | |
747 movwf POSTINC2 | |
748 call word_processor | |
749 | |
750 movff menupos,temp1 | |
751 dcfsnz temp1,F | |
752 movlw d'35' | |
753 dcfsnz temp1,F | |
754 movlw d'65' | |
755 dcfsnz temp1,F | |
756 movlw d'95' | |
757 dcfsnz temp1,F | |
758 movlw d'125' | |
759 dcfsnz temp1,F | |
760 movlw d'155' | |
761 dcfsnz temp1,F | |
762 movlw d'185' | |
763 | |
764 movff WREG,win_top | |
765 WIN_LEFT .0 | |
766 WIN_FONT FT_SMALL | |
767 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 768 |
0 | 769 lfsr FSR2,letter |
770 movlw 0xB7 | |
771 movwf POSTINC2 | |
772 call word_processor | |
773 return | |
774 | |
775 PLED_menu_mask: | |
776 call PLED_topline_box | |
777 WIN_INVERT .1 ; Init new Wordprocessor | |
778 DISPLAYTEXT .5 ; Menu: | |
779 WIN_INVERT .0 ; Init new Wordprocessor | |
780 DISPLAYTEXT .6 ; Logbook | |
781 DISPLAYTEXT .7 ; Gas Setup | |
782 DISPLAYTEXT .9 ; Reset all | |
783 DISPLAYTEXT .10 ; Setup... | |
784 DISPLAYTEXT .142 ; More... | |
785 DISPLAYTEXT .11 ; Exit | |
786 return | |
787 | |
788 PLED_setup_menu_mask: | |
789 call PLED_topline_box | |
790 WIN_INVERT .1 ; Init new Wordprocessor | |
791 DISPLAYTEXT .98 ; Setup Menu: | |
792 WIN_INVERT .0 ; Init new Wordprocessor | |
793 DISPLAYTEXT .99 ; Custom FunctionsI | |
794 DISPLAYTEXT .153 ; Custom FunctionsII | |
795 DISPLAYTEXTH .276 ; Salinity: | |
796 DISPLAYTEXT .100 ; Decotype: | |
797 DISPLAYTEXT .142 ; More... | |
798 DISPLAYTEXT .11 ; Exit | |
799 return | |
800 | |
801 PLED_more_setup_menu_mask: | |
802 call PLED_topline_box | |
803 WIN_INVERT .1 ; Init new Wordprocessor | |
804 DISPLAYTEXTH .258 ; Setup Menu 2: | |
805 WIN_INVERT .0 ; Init new Wordprocessor | |
806 DISPLAYTEXTH .257 ; Date format: | |
807 DISPLAYTEXT .129 ; Debug: | |
12 | 808 DISPLAYTEXT .187 ; Show License |
0 | 809 |
810 DISPLAYTEXT .11 ; Exit | |
811 return | |
812 | |
813 PLED_more_menu_mask: | |
814 call PLED_topline_box | |
815 WIN_INVERT .1 ; Init new Wordprocessor | |
816 DISPLAYTEXT .144 ; Menu 2: | |
817 WIN_INVERT .0 ; Init new Wordprocessor | |
818 DISPLAYTEXT .8 ; Set Time | |
819 DISPLAYTEXT .110 ; Const. ppO2 Setup | |
820 DISPLAYTEXT .113 ; Battery Info | |
821 DISPLAYTEXT .247 ; Simulator | |
822 | |
823 DISPLAYTEXT .11 ; Exit | |
824 return | |
825 | |
826 PLED_reset_menu_mask: | |
827 call PLED_topline_box | |
828 WIN_INVERT .1 ; Init new Wordprocessor | |
829 DISPLAYTEXT .28 ; Reset Menu | |
830 WIN_INVERT .0 ; Init new Wordprocessor | |
831 DISPLAYTEXT .21 ; Cancel Reset | |
832 DISPLAYTEXT .245 ; Reset CF,Gases & Deco | |
833 DISPLAYTEXTH .284 ; Reset Logbook | |
834 DISPLAYTEXTH .285 ; Reboot OSTC | |
835 DISPLAYTEXTH .286 ; Reset Decodata | |
836 DISPLAYTEXT .11 ; Exit | |
837 return | |
838 | |
839 PLED_simulator_mask: | |
840 call PLED_topline_box | |
841 WIN_INVERT .1 ; Init new Wordprocessor | |
842 DISPLAYTEXT .248 ; OSTC Simulator | |
843 WIN_INVERT .0 ; Init new Wordprocessor | |
844 DISPLAYTEXT .249 ; Start Dive | |
845 DISPLAYTEXTH .277 ; Bottom Time: | |
846 DISPLAYTEXTH .278 ; Max. Depth: | |
847 DISPLAYTEXTH .279 ; Calculate Deco | |
848 DISPLAYTEXTH .280 ; Show Decoplan | |
849 DISPLAYTEXT .11 ; Exit | |
850 return | |
851 | |
852 | |
853 | |
854 | |
855 PLED_temp_surfmode: | |
856 ostc_debug 'e' | |
857 movff temperature+0,last_temperature+0 | |
858 movff temperature+1,last_temperature+1 | |
859 WIN_TOP .100 | |
56 | 860 WIN_LEFT .1 |
0 | 861 WIN_FONT FT_SMALL |
862 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 863 call PLED_standard_color |
864 | |
0 | 865 lfsr FSR2,letter |
866 movlw '-' | |
867 btfsc neg_temp ; Show "-"? | |
868 movwf POSTINC2 ; Yes | |
869 movff temperature+0,lo | |
870 movff temperature+1,hi | |
871 movlw d'3' | |
872 movwf ignore_digits | |
873 bsf leftbind ; left orientated output | |
874 output_16dp d'2' | |
875 bcf leftbind | |
876 movlw '°' | |
877 movwf POSTINC2 | |
878 movlw 'C' | |
879 movwf POSTINC2 | |
880 movlw ' ' | |
881 movwf POSTINC2 | |
882 call word_processor | |
883 return | |
884 | |
885 PLED_temp_divemode: | |
886 btfsc multi_gf_display ; Is the Multi-GF Table displayed? | |
887 return ; Yes, No update and return! | |
888 | |
889 ostc_debug 'u' ; Sends debug-information to screen if debugmode active | |
890 | |
891 ; temperature | |
892 movff temperature+0,last_temperature+0 | |
893 movff temperature+1,last_temperature+1 | |
894 | |
895 WIN_TOP .216 | |
896 WIN_LEFT .65 | |
897 WIN_FONT FT_SMALL | |
898 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 899 call PLED_standard_color |
900 | |
0 | 901 lfsr FSR2,letter |
902 movlw '-' | |
903 btfsc neg_temp ; Show "-"? | |
904 movwf POSTINC2 ; Yes | |
905 movff temperature+0,lo | |
906 movff temperature+1,hi | |
907 movlw d'3' | |
908 movwf ignore_digits | |
909 bsf leftbind ; left orientated output | |
910 output_16dp d'2' | |
911 bcf leftbind | |
912 movlw '°' | |
913 movwf POSTINC2 | |
914 movlw ' ' | |
915 movwf POSTINC2 | |
916 call word_processor | |
917 return | |
918 | |
919 PLED_show_ppO2: ; Show ppO2 | |
920 ostc_debug 't' ; Sends debug-information to screen if debugmode active | |
921 WIN_TOP .120 | |
922 WIN_LEFT .0 | |
923 WIN_FONT FT_SMALL | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
924 PLED_color_code warn_ppo2 ; Color-code output |
3 | 925 |
0 | 926 lfsr FSR2,letter |
927 movlw 'p' | |
928 movwf POSTINC2 | |
929 movlw 'p' | |
930 movwf POSTINC2 | |
931 movlw 'O' | |
932 movwf POSTINC2 | |
933 movlw '2' | |
934 movwf POSTINC2 | |
935 movlw ':' | |
936 movwf POSTINC2 | |
937 movff xC+0,lo | |
938 movff xC+1,hi | |
939 bsf ignore_digit4 | |
940 output_16dp d'1' | |
941 bcf ignore_digit4 | |
942 movlw ' ' | |
943 movwf POSTINC2 | |
944 call word_processor | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
945 call PLED_standard_color |
0 | 946 return |
947 | |
948 PLED_show_ppO2_clear: ; Clear ppO2 | |
949 movlw d'10' | |
950 movwf temp1 | |
951 WIN_TOP .120 | |
952 WIN_LEFT .0 | |
953 call PLED_display_clear_common_y1 | |
954 return | |
955 | |
956 PLED_active_gas_clear: ; clears active gas! | |
957 WIN_TOP .192 | |
958 WIN_LEFT .65 | |
959 movlw d'5' | |
960 movwf temp1 | |
961 bra PLED_display_clear_common_y1; also returns! | |
962 | |
963 PLED_active_gas_divemode: ; Displays current gas (e.g. 40/20) if a) He>0 or b) O2>Custom9 | |
964 btfsc FLAG_apnoe_mode ; Ignore in Apnoe mode | |
965 return | |
966 | |
967 btfsc multi_gf_display ; Is the Multi-GF Table displayed? | |
968 return ; Yes, No update and return! | |
969 | |
25 | 970 WIN_INVERT .0 ; Init new Wordprocessor |
971 call PLED_active_gas_divemode_show ; Show gas (Non-Inverted in all cases) | |
972 | |
973 btfss better_gas_available ;=1: A better gas is available and a gas change is advised in divemode | |
974 return ; Done. | |
975 | |
976 ; Check if Gas Output should blink when a better gas is available... | |
977 GETCUSTOM8 d'42' ; =1 if gas should blink | |
978 movwf lo | |
979 movlw d'1' | |
980 cpfseq lo ; =1? | |
981 return ; No, Done. | |
982 | |
983 btg blinking_better_gas ; Toggle blink bit... | |
984 btfss blinking_better_gas ; blink now? | |
985 return ; No, Done. | |
986 WIN_INVERT .1 ; Init new Wordprocessor | |
987 call PLED_active_gas_divemode_show ; Show gas (Non-Inverted in all cases) | |
988 WIN_INVERT .0 ; Init new Wordprocessor | |
989 return ; Done. | |
990 | |
991 PLED_active_gas_divemode_show: | |
0 | 992 ostc_debug 's' ; Sends debug-information to screen if debugmode active |
993 ; gas | |
994 WIN_TOP .192 | |
995 WIN_LEFT .65 | |
996 WIN_FONT FT_SMALL | |
3 | 997 call PLED_standard_color |
998 | |
0 | 999 movlw d'100' ; 100% in the tank |
1000 movff char_I_N2_ratio,lo ; minus N2 | |
1001 bsf STATUS,C ; set borrow bit | |
1002 subfwb lo,W | |
1003 movff char_I_He_ratio,lo ; minus He | |
1004 bsf STATUS,C ; set borrow bit | |
1005 subfwb lo,F ; =% O2 | |
1006 GETCUSTOM8 d'9' ; get oxygen treshold | |
1007 movff char_I_He_ratio,hi ; He ratio | |
1008 cpfsgt lo | |
1009 bra PLED_active_gas_divemode2 ; Check He | |
1010 bra PLED_active_gas_divemode3 ; Skip He check, display gas | |
1011 | |
1012 PLED_active_gas_divemode2: | |
1013 tstfsz hi ; He = 0 % | |
1014 bra PLED_active_gas_divemode3 ; display gas | |
1015 ; O2 below treshold, He=0 -> Skip display! | |
1016 movlw d'5' | |
1017 movwf temp1 | |
1018 bra PLED_display_clear_common_y1 ; also returns! | |
1019 | |
1020 PLED_active_gas_divemode3: | |
1021 movlw d'21' | |
1022 cpfseq lo ; Air? (O2=21%) | |
1023 bra PLED_active_gas_divemode4 ; No! | |
1024 tstfsz hi ; Air? (He=0%) | |
1025 bra PLED_active_gas_divemode4 ; No! | |
1026 | |
1027 ; Yes, display "Air" instead of 21/0 | |
1028 lfsr FSR2,letter | |
8 | 1029 OUTPUTTEXTH d'264' ;"Air " |
1030 movlw ' ' | |
1031 btfsc better_gas_available ;=1: A better gas is available and a gas change is advised in divemode | |
1032 movlw '*' | |
1033 movwf POSTINC2 | |
0 | 1034 call word_processor |
25 | 1035 return |
0 | 1036 |
1037 PLED_active_gas_divemode4: | |
1038 lfsr FSR2,letter | |
1039 bsf leftbind ; left orientated output | |
1040 output_8 ; O2 ratio is still in "lo" | |
1041 movlw '/' | |
1042 movwf POSTINC2 | |
1043 movff char_I_He_ratio,lo ; copy He ratio into lo | |
1044 output_8 | |
1045 movlw ' ' | |
8 | 1046 btfsc better_gas_available ;=1: A better gas is available and a gas change is advised in divemode |
1047 movlw '*' | |
0 | 1048 movwf POSTINC2 |
1049 bcf leftbind | |
1050 call word_processor | |
25 | 1051 return |
1052 | |
17 | 1053 |
0 | 1054 |
1055 PLED_display_decotype_surface: | |
1056 WIN_LEFT .85 | |
1057 WIN_FONT FT_SMALL | |
1058 WIN_INVERT .0 ; Init new Wordprocessor | |
1059 clrf EEADRH | |
1060 read_int_eeprom d'34' ; Read deco data | |
1061 tstfsz EEDATA | |
1062 bra show_decotype_surface2 | |
1063 | |
1064 ;ZH-L16 | |
1065 WIN_TOP .125 | |
3 | 1066 call PLED_standard_color |
1067 | |
0 | 1068 lfsr FSR2,letter |
1069 movlw 'O' | |
1070 movwf POSTINC2 | |
1071 call word_processor | |
1072 WIN_LEFT .85 | |
1073 WIN_FONT FT_SMALL | |
1074 WIN_INVERT .0 ; Init new Wordprocessor | |
1075 WIN_TOP .150 | |
3 | 1076 call PLED_standard_color |
1077 | |
0 | 1078 lfsr FSR2,letter |
1079 movlw 'C' | |
1080 movwf POSTINC2 | |
1081 call word_processor | |
1082 return | |
1083 show_decotype_surface2: | |
1084 decf EEDATA,F | |
1085 tstfsz EEDATA | |
1086 bra show_decotype_surface3 | |
1087 ; Gauge | |
1088 return | |
1089 | |
1090 show_decotype_surface3: | |
1091 decf EEDATA,F | |
1092 tstfsz EEDATA | |
1093 bra show_decotype_surface4 | |
1094 ; const. ppO2 | |
1095 WIN_TOP .125 | |
3 | 1096 call PLED_standard_color |
1097 | |
0 | 1098 lfsr FSR2,letter |
1099 movlw 'C' | |
1100 movwf POSTINC2 | |
1101 WIN_LEFT .85 | |
1102 WIN_FONT FT_SMALL | |
1103 WIN_INVERT .0 ; Init new Wordprocessor | |
1104 call word_processor | |
1105 WIN_TOP .150 | |
3 | 1106 call PLED_standard_color |
1107 | |
0 | 1108 lfsr FSR2,letter |
1109 movlw 'C' | |
1110 movwf POSTINC2 | |
1111 WIN_LEFT .85 | |
1112 WIN_FONT FT_SMALL | |
1113 WIN_INVERT .0 ; Init new Wordprocessor | |
1114 call word_processor | |
1115 return | |
1116 show_decotype_surface4: | |
1117 decf EEDATA,F | |
1118 tstfsz EEDATA | |
1119 bra show_decotype_surface5 | |
1120 ; Apnoe | |
1121 return | |
1122 show_decotype_surface5: | |
1123 decf EEDATA,F | |
1124 tstfsz EEDATA | |
1125 bra show_decotype_surface6 | |
1126 ; Multi-GF OC | |
1127 WIN_TOP .125 | |
1128 lfsr FSR2,letter | |
1129 movlw 'G' | |
1130 movwf POSTINC2 | |
1131 WIN_LEFT .85 | |
1132 WIN_FONT FT_SMALL | |
1133 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1134 call PLED_standard_color |
1135 | |
0 | 1136 call word_processor |
1137 WIN_TOP .150 | |
1138 lfsr FSR2,letter | |
1139 movlw 'F' | |
1140 movwf POSTINC2 | |
1141 WIN_LEFT .85 | |
1142 WIN_FONT FT_SMALL | |
1143 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1144 call PLED_standard_color |
1145 | |
0 | 1146 call word_processor |
1147 return | |
1148 | |
1149 show_decotype_surface6: | |
1150 ; Multi-GF CC | |
1151 WIN_TOP .125 | |
1152 lfsr FSR2,letter | |
1153 movlw 'G' | |
1154 movwf POSTINC2 | |
1155 WIN_LEFT .85 | |
1156 WIN_FONT FT_SMALL | |
1157 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1158 call PLED_standard_color |
1159 | |
0 | 1160 call word_processor |
1161 WIN_TOP .150 | |
1162 lfsr FSR2,letter | |
1163 movlw 'F' | |
1164 movwf POSTINC2 | |
1165 WIN_LEFT .85 | |
1166 WIN_FONT FT_SMALL | |
1167 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1168 call PLED_standard_color |
1169 | |
0 | 1170 call word_processor |
1171 return | |
1172 | |
13 | 1173 PLED_pre_dive_screen: ;Display Pre-Dive Screen |
1174 movlw .0 | |
1175 movff WREG,box_temp+0 ; Data | |
1176 movlw .25 | |
1177 movff WREG,box_temp+1 ; row top (0-239) | |
1178 movlw .120 | |
1179 movff WREG,box_temp+2 ; row bottom (0-239) | |
1180 movlw .82 | |
1181 movff WREG,box_temp+3 ; column left (0-159) | |
1182 movlw .159 | |
1183 movff WREG,box_temp+4 ; column right (0-159) | |
1184 call PLED_box | |
1185 | |
1186 ; List active gases/Setpoints | |
1187 | |
1188 btfsc FLAG_const_ppO2_mode ; in ppO2 mode? | |
1189 bra PLED_pre_dive_screen3 ; Yes, display SetPoint/Sensor result list | |
1190 | |
1191 PLED_pre_dive_screen2: | |
1192 ostc_debug 'm' ; Sends debug-information to screen if debugmode active | |
1193 | |
1194 WIN_LEFT .90 | |
1195 WIN_FONT FT_SMALL | |
1196 bsf leftbind | |
1197 | |
1198 movlw d'2' | |
1199 movwf wait_temp ; here: stores eeprom address for gas list | |
1200 movlw d'0' | |
1201 movwf waitms_temp ; here: stores row for gas list | |
1202 clrf hi ; here: Gas counter | |
1203 | |
1204 PLED_pre_dive_screen2_loop: | |
1205 incf hi,F ; Increase Gas | |
1206 movlw d'4' | |
1207 addwf wait_temp,F ; Increase eeprom address for gas list | |
1208 | |
1209 lfsr FSR2,letter | |
1210 movlw 'G' | |
1211 movwf POSTINC2 | |
1212 movff hi,lo ; copy gas number | |
1213 output_8 ; display gas number | |
1214 movlw ':' | |
1215 movwf POSTINC2 | |
1216 movlw ' ' | |
1217 movwf POSTINC2 | |
1218 movff wait_temp, EEADR; Gas #hi: %O2 - Set address in internal EEPROM | |
1219 call read_eeprom ; get byte (stored in EEDATA) | |
1220 movff EEDATA,lo ; copy to lo | |
1221 output_8 ; outputs into Postinc2! | |
1222 movlw '/' | |
1223 movwf POSTINC2 | |
1224 incf EEADR,F ; Gas #hi: %He - Set address in internal EEPROM | |
1225 call read_eeprom ; get byte (stored in EEDATA) | |
1226 movff EEDATA,lo ; copy to lo | |
1227 output_8 ; outputs into Postinc2! | |
1228 | |
1229 read_int_eeprom d'27' ; read flag register | |
1230 movff hi,lo ; copy gas number | |
1231 PLED_pre_dive_screen2_loop1: | |
1232 rrcf EEDATA ; roll flags into carry | |
1233 decfsz lo,F ; max. 5 times... | |
1234 bra PLED_pre_dive_screen2_loop1 | |
1235 | |
14 | 1236 btfsc STATUS,C ; test carry |
13 | 1237 bra PLED_pre_dive_white |
1238 | |
1239 movlw color_grey | |
1240 call PLED_set_color ; grey out inactive gases! | |
1241 bra PLED_pre_dive_color_done | |
1242 | |
1243 PLED_pre_dive_white: | |
25 | 1244 call PLED_standard_color |
13 | 1245 |
1246 PLED_pre_dive_color_done: | |
1247 read_int_eeprom d'33' ; Read start gas (1-5) | |
1248 movf EEDATA,W | |
1249 cpfseq hi ; Current Gas the active gas? | |
1250 bra PLED_pre_dive_screen2a | |
1251 bra PLED_pre_dive_screen2b | |
1252 | |
1253 PLED_pre_dive_screen2a: | |
1254 movlw d'25' | |
1255 addwf waitms_temp,F ; Increase row | |
1256 WIN_LEFT .90 | |
1257 movff waitms_temp,win_top ; Set Row | |
1258 call word_processor ; No, display gas | |
1259 | |
1260 PLED_pre_dive_screen2b: | |
25 | 1261 call PLED_standard_color |
13 | 1262 |
1263 movlw d'5' ; list all four (remaining) gases | |
1264 cpfseq hi ; All gases shown? | |
1265 bra PLED_pre_dive_screen2_loop ; No | |
1266 | |
1267 return ; No, return (OC mode) | |
1268 | |
1269 PLED_pre_dive_screen3: | |
1270 WIN_LEFT .90 | |
1271 WIN_FONT FT_SMALL | |
1272 bsf leftbind | |
1273 | |
1274 ; list three SP in Gaslist | |
1275 movlw d'35' ; 36 = current SP position in EEPROM | |
1276 movwf wait_temp ; here: stores eeprom address for gas list | |
1277 movlw d'0' | |
1278 movwf waitms_temp ; here: stores row for gas list | |
1279 clrf temp5 ; here: SP counter | |
1280 | |
1281 PLED_pre_dive_screen3_loop: | |
1282 incf wait_temp,F ; EEPROM address | |
1283 incf temp5,F ; Increase SP | |
1284 | |
1285 movlw d'25' | |
1286 addwf waitms_temp,F ; Increase row | |
1287 WIN_LEFT .90 | |
1288 movff waitms_temp,win_top ; Set Row | |
1289 | |
1290 lfsr FSR2,letter | |
1291 movlw 'S' | |
1292 movwf POSTINC2 | |
1293 movlw 'P' | |
1294 movwf POSTINC2 | |
1295 movff temp5,lo ; copy gas number | |
1296 output_8 ; display gas number | |
1297 movlw ':' | |
1298 movwf POSTINC2 | |
1299 movlw ' ' | |
1300 movwf POSTINC2 | |
1301 movff wait_temp, EEADR; SP #hi position | |
1302 call read_eeprom ; get byte (stored in EEDATA) | |
1303 movff EEDATA,lo ; copy to lo | |
1304 clrf hi | |
1305 output_16dp d'3' ; outputs into Postinc2! | |
1306 call word_processor | |
1307 | |
1308 movlw d'3' ; list all three SP | |
1309 cpfseq temp5 ; All gases shown? | |
1310 bra PLED_pre_dive_screen3_loop ;no | |
1311 | |
19 | 1312 read_int_eeprom d'33' ; Read byte (stored in EEDATA) |
1313 movff EEDATA,active_gas ; Read start gas (1-5) | |
1314 decf active_gas,W ; Gas 0-4 | |
1315 mullw d'4' | |
1316 movf PRODL,W | |
1317 addlw d'7' ; = address for He ratio | |
1318 movwf EEADR | |
1319 call read_eeprom ; Read He ratio | |
1320 movff EEDATA,hi ; And copy into hold register | |
1321 decf active_gas,W ; Gas 0-4 | |
1322 mullw d'4' | |
1323 movf PRODL,W | |
1324 addlw d'6' ; = address for O2 ratio | |
1325 movwf EEADR | |
1326 call read_eeprom ; Read O2 ratio | |
1327 movff EEDATA, lo ; O2 ratio | |
1328 | |
1329 WIN_LEFT .90 | |
1330 WIN_TOP .100 | |
1331 lfsr FSR2,letter | |
1332 movlw 'D' | |
1333 movwf POSTINC2 | |
1334 movlw 'i' | |
1335 movwf POSTINC2 | |
1336 movlw 'l' | |
1337 movwf POSTINC2 | |
1338 movlw ':' | |
1339 movwf POSTINC2 | |
1340 output_8 ; O2 Ratio | |
1341 movlw '/' | |
1342 movwf POSTINC2 | |
1343 movff hi,lo | |
1344 output_8 ; He Ratio | |
1345 call word_processor | |
1346 | |
13 | 1347 bcf leftbind |
1348 return ; Return (CC Mode) | |
1349 | |
0 | 1350 PLED_active_gas_surfmode: ; Displays start gas/SP 1 |
1351 ostc_debug 'q' ; Sends debug-information to screen if debugmode active | |
1352 | |
1353 btfsc FLAG_apnoe_mode ; In Apnoe mode? | |
1354 return ; Yes, return | |
1355 | |
1356 btfsc gauge_mode ; In Gauge mode? | |
1357 return ; Yes, return | |
1358 | |
1359 btfss FLAG_const_ppO2_mode ; are we in const. ppO2 mode? | |
1360 bra PLED_active_gas_surfmode2 ; No, display gases | |
1361 | |
1362 ; In CC Mode | |
1363 WIN_TOP .135 | |
1364 WIN_LEFT .90 | |
1365 WIN_FONT FT_SMALL | |
1366 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1367 call PLED_standard_color |
1368 | |
0 | 1369 lfsr FSR2,letter |
1370 read_int_eeprom d'36' | |
1371 movff EEDATA,lo ; copy to lo | |
1372 clrf hi | |
1373 output_16dp d'3' ; outputs into Postinc2! | |
1374 movlw 'B' | |
1375 movwf POSTINC2 | |
1376 movlw 'a' | |
1377 movwf POSTINC2 | |
1378 movlw 'r' | |
1379 movwf POSTINC2 | |
1380 bcf leftbind | |
1381 call word_processor | |
1382 bra PLED_active_gas_surfmode_exit | |
1383 | |
1384 PLED_active_gas_surfmode2: | |
1385 WIN_TOP .130 | |
1386 WIN_LEFT .100 | |
1387 WIN_FONT FT_MEDIUM | |
1388 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1389 call PLED_standard_color |
1390 | |
0 | 1391 |
1392 read_int_eeprom d'33' ; Read byte (stored in EEDATA) | |
1393 movff EEDATA,active_gas ; Read start gas (1-5) | |
1394 | |
1395 decf active_gas,W ; Gas 0-4 | |
1396 mullw d'4' | |
1397 movf PRODL,W | |
1398 addlw d'7' ; = address for He ratio | |
1399 movwf EEADR | |
1400 call read_eeprom ; Read He ratio | |
1401 movff EEDATA,char_I_He_ratio ; And copy into hold register | |
1402 | |
1403 decf active_gas,W ; Gas 0-4 | |
1404 mullw d'4' | |
1405 movf PRODL,W | |
1406 addlw d'6' ; = address for O2 ratio | |
1407 movwf EEADR | |
1408 call read_eeprom ; Read O2 ratio | |
1409 movff EEDATA, char_I_O2_ratio ; O2 ratio | |
1410 movff char_I_He_ratio, wait_temp ; copy into bank1 register | |
1411 bsf STATUS,C ; Borrow bit | |
1412 movlw d'100' ; 100% | |
1413 subfwb wait_temp,W ; minus He | |
1414 bsf STATUS,C ; Borrow bit | |
1415 subfwb EEDATA,F ; minus O2 | |
1416 movff EEDATA, char_I_N2_ratio ; = N2! | |
1417 | |
1418 movlw d'100' ; 100% in the tank | |
1419 movff char_I_N2_ratio,lo ; minus N2 | |
1420 bsf STATUS,C ; set borrow bit | |
1421 subfwb lo,W | |
1422 movff char_I_He_ratio,lo ; minus He | |
1423 bsf STATUS,C ; set borrow bit | |
1424 subfwb lo,F ; =% O2 | |
1425 | |
1426 movff char_I_He_ratio,hi ; Copy into Bank1 register | |
1427 | |
1428 movlw d'21' | |
1429 cpfseq lo ; Air? (O2=21%) | |
1430 bra PLED_active_gas_surfmode4 ; No! | |
1431 tstfsz hi ; Air? (He=0%) | |
1432 bra PLED_active_gas_surfmode4 ; No! | |
1433 | |
1434 ; Yes, display "Air" instead of 21/0 | |
1435 DISPLAYTEXTH d'265' ;"Air ", y-scale=2 | |
1436 bra PLED_active_gas_surfmode_exit | |
1437 | |
1438 PLED_active_gas_surfmode4: | |
1439 lfsr FSR2,letter | |
1440 bsf leftbind ; left orientated output | |
1441 output_8 ; O2 ratio is still in "lo" | |
1442 movlw '/' | |
1443 movwf POSTINC2 | |
1444 movff char_I_He_ratio,lo ; copy He ratio into lo | |
1445 output_8 | |
1446 bcf leftbind | |
1447 call word_processor | |
1448 bra PLED_active_gas_surfmode_exit | |
1449 | |
1450 PLED_active_gas_surfmode_exit: | |
1451 movlw .0 | |
1452 movff WREG,box_temp+0 ; Data | |
1453 movlw .122 | |
1454 movff WREG,box_temp+1 ; row top (0-239) | |
1455 movlw .175 | |
1456 movff WREG,box_temp+2 ; row bottom (0-239) | |
1457 movlw .82 | |
1458 movff WREG,box_temp+3 ; column left (0-159) | |
1459 movlw .159 | |
1460 movff WREG,box_temp+4 ; column right (0-159) | |
1461 call PLED_frame | |
1462 return | |
1463 | |
1464 PLED_confirmbox: | |
1465 movlw .0 | |
1466 movff WREG,box_temp+0 ; Data | |
1467 movlw .68 | |
1468 movff WREG,box_temp+1 ; row top (0-239) | |
1469 movlw .146 | |
1470 movff WREG,box_temp+2 ; row bottom (0-239) | |
1471 movlw .34 | |
1472 movff WREG,box_temp+3 ; column left (0-159) | |
1473 movlw .101 | |
1474 movff WREG,box_temp+4 ; column right (0-159) | |
1475 call PLED_box | |
1476 | |
9 | 1477 GETCUSTOM8 d'35' ; Standard output color |
0 | 1478 movff WREG,box_temp+0 ; Data |
1479 movlw .70 | |
1480 movff WREG,box_temp+1 ; row top (0-239) | |
1481 movlw .144 | |
1482 movff WREG,box_temp+2 ; row bottom (0-239) | |
1483 movlw .35 | |
1484 movff WREG,box_temp+3 ; column left (0-159) | |
1485 movlw .100 | |
1486 movff WREG,box_temp+4 ; column right (0-159) | |
1487 call PLED_frame | |
1488 DISPLAYTEXT .143 ; Confirm: | |
1489 DISPLAYTEXT .145 ; Cancel | |
1490 DISPLAYTEXT .146 ; OK! | |
1491 | |
1492 movlw d'1' | |
1493 movwf menupos | |
1494 | |
1495 PLED_confirmbox2: | |
1496 movlw .0 | |
1497 movff WREG,box_temp+0 ; Data | |
1498 movlw .96 | |
1499 movff WREG,box_temp+1 ; row top (0-239) | |
1500 movlw .143 | |
1501 movff WREG,box_temp+2 ; row bottom (0-239) | |
1502 movlw .39 | |
1503 movff WREG,box_temp+3 ; column left (0-159) | |
1504 movlw .51 | |
1505 movff WREG,box_temp+4 ; column right (0-159) | |
1506 call PLED_box | |
1507 | |
1508 movff menupos,temp1 | |
1509 movlw d'96' | |
1510 dcfsnz temp1,F | |
1511 movlw d'96' | |
1512 dcfsnz temp1,F | |
1513 movlw d'120' | |
1514 movff WREG,win_top | |
1515 WIN_LEFT .39 | |
1516 WIN_FONT FT_SMALL | |
1517 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1518 call PLED_standard_color |
1519 | |
0 | 1520 lfsr FSR2,letter |
1521 movlw 0xB7 ; Arrow for menu | |
1522 movwf POSTINC2 | |
1523 call word_processor | |
1524 | |
1525 bcf sleepmode ; clear some flags | |
1526 bcf menubit2 | |
1527 bcf menubit3 | |
1528 bcf switch_right | |
1529 bcf switch_left | |
1530 clrf timeout_counter2 | |
1531 WAITMS d'100' | |
1532 | |
1533 PLED_confirmbox_loop: | |
1534 call check_switches_logbook | |
1535 | |
1536 btfsc menubit3 ; SET/MENU? | |
1537 bra PLED_confirmbox_move_cursor; Move Cursor | |
1538 btfsc menubit2 ; ENTER? | |
1539 bra PLED_confirmbox_menu_do ; Do task | |
1540 | |
1541 btfsc onesecupdate | |
1542 call timeout_surfmode ; timeout | |
1543 | |
1544 btfsc onesecupdate | |
1545 call set_dive_modes ; check, if divemode must be entered | |
1546 bcf onesecupdate ; one second update | |
1547 | |
1548 btfsc sleepmode ; Timeout? | |
1549 bra PLED_confirmbox_cancel ; back with cancel | |
1550 btfsc divemode | |
1551 bra PLED_confirmbox_cancel ; back with cancel | |
1552 | |
1553 bra PLED_confirmbox_loop ; wait for something to do | |
1554 | |
1555 PLED_confirmbox_cancel: | |
1556 retlw .0 | |
1557 PLED_confirmbox_ok: | |
1558 retlw .1 | |
1559 | |
1560 PLED_confirmbox_menu_do: | |
1561 dcfsnz menupos,F | |
1562 bra PLED_confirmbox_cancel | |
1563 dcfsnz menupos,F | |
1564 bra PLED_confirmbox_ok | |
1565 bra PLED_confirmbox_cancel | |
1566 | |
1567 PLED_confirmbox_move_cursor: | |
1568 incf menupos,F | |
1569 movlw d'3' ; number of menu options+1 | |
1570 cpfseq menupos ; =limit? | |
1571 bra PLED_confirmbox_move_cursor2 ; No! | |
1572 movlw d'1' ; Yes, reset to position 1! | |
1573 movwf menupos | |
1574 PLED_confirmbox_move_cursor2: | |
1575 bra PLED_confirmbox2 ; Return to Profile Menu, also updates cursor | |
1576 | |
1577 | |
1578 PLED_depth: | |
1579 ostc_debug 'r' ; Sends debug-information to screen if debugmode active | |
1580 movff rel_pressure+1,hi | |
1581 movff rel_pressure+0,lo | |
1582 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mBar] | |
1583 | |
1584 movlw .039 | |
1585 cpfslt hi | |
1586 bra depth_greater_99_84mtr | |
1587 | |
1588 btfsc depth_greater_100m ; Was depth>100m during last call | |
1589 call PLED_clear_depth ; Yes, clear depth area | |
1590 bcf depth_greater_100m ; Do this once only... | |
1591 | |
1592 lfsr FSR2,letter | |
1593 | |
1594 movlw HIGH d'1000' | |
1595 movwf sub_a+1 | |
1596 movlw LOW d'1000' | |
1597 movwf sub_a+0 | |
1598 movff hi,sub_b+1 | |
1599 movff lo,sub_b+0 | |
1600 incf sub_b+0,F | |
1601 movlw d'0' | |
1602 addwfc sub_b+1,F ; Add 1mBar offset | |
1603 call sub16 ; sub_c = sub_a - sub_b | |
1604 btfss neg_flag ; Depth lower then 10m? | |
1605 rcall depth_less_10mtr ; Yes, add extra space | |
1606 | |
1607 WIN_TOP .24 | |
1608 WIN_LEFT .0 | |
1609 WIN_FONT FT_LARGE | |
1610 WIN_INVERT .0 ; Init new Wordprocessor | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
1611 PLED_color_code warn_depth ; Color-code the output |
0 | 1612 |
1613 movlw HIGH d'99' | |
1614 movwf sub_a+1 | |
1615 movlw LOW d'99' | |
1616 movwf sub_a+0 | |
1617 movff hi,sub_b+1 | |
1618 movff lo,sub_b+0 | |
1619 call sub16 ; sub_c = sub_a - sub_b | |
1620 btfss neg_flag ; Depth lower then 1m? | |
1621 bra pled_depth2 ; Yes, display manual Zero | |
1622 | |
1623 bsf leftbind | |
1624 bsf ignore_digit4 | |
1625 output_16 ; Full meters in Big font | |
1626 bcf leftbind | |
1627 bra pled_depth3 | |
1628 | |
1629 pled_depth2: | |
1630 movlw '0' | |
1631 movwf POSTINC2 | |
1632 pled_depth3: | |
1633 call word_processor | |
1634 bcf ignore_digit4 | |
1635 | |
1636 WIN_FONT FT_MEDIUM | |
1637 WIN_TOP .50 | |
1638 WIN_LEFT .40 | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
1639 PLED_color_code warn_depth ; Color-code the output |
0 | 1640 |
1641 movff rel_pressure+1,hi | |
1642 movff rel_pressure+0,lo | |
1643 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mBar] | |
1644 lfsr FSR2,letter | |
1645 movlw '.' | |
1646 movwf POSTINC2 | |
1647 | |
1648 movlw HIGH d'9' | |
1649 movwf sub_a+1 | |
1650 movlw LOW d'9' | |
1651 movwf sub_a+0 | |
1652 movff hi,sub_b+1 | |
1653 movff lo,sub_b+0 | |
1654 call sub16 ; sub_c = sub_a - sub_b | |
1655 btfss neg_flag ; Depth lower then 0.1m? | |
1656 bra pled_depth4 ; Yes, display manual Zero | |
1657 | |
1658 movlw d'4' | |
1659 movwf ignore_digits | |
1660 bsf ignore_digit5 | |
1661 output_16dp d'0' | |
1662 bra pled_depth5 | |
1663 | |
1664 pled_depth4: | |
1665 movlw '0' | |
1666 movwf POSTINC2 | |
1667 | |
1668 pled_depth5: | |
1669 call word_processor ; decimeters in medium font | |
1670 bcf ignore_digit5 | |
1671 WIN_FONT FT_SMALL | |
1672 return | |
1673 | |
1674 depth_greater_99_84mtr: ; Display only in full meters | |
1675 btfss depth_greater_100m ; Is depth>100m already? | |
1676 call PLED_clear_depth ; No, clear depth area and set flag | |
1677 ; Depth is already in hi:lo | |
1678 ; Show depth in Full meters | |
1679 ; That means ignore figure 4 and 5 | |
1680 lfsr FSR2,letter | |
1681 WIN_TOP .24 | |
1682 WIN_LEFT .0 | |
1683 WIN_FONT FT_LARGE | |
1684 WIN_INVERT .0 ; Init new Wordprocessor | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
1685 PLED_color_code warn_depth ; Color-code the output |
3 | 1686 |
0 | 1687 bsf ignore_digit4 |
1688 bsf leftbind | |
1689 output_16 | |
1690 bcf leftbind | |
1691 call word_processor | |
1692 bcf ignore_digit4 | |
1693 WIN_FONT FT_SMALL | |
1694 return | |
1695 | |
1696 depth_less_10mtr: | |
1697 movlw ' ' | |
1698 movwf POSTINC2 | |
1699 return | |
1700 | |
1701 PLED_clear_depth ; No, clear depth area and set flag | |
1702 movlw .0 | |
1703 movff WREG,box_temp+0 ; Data | |
1704 movlw .24 | |
1705 movff WREG,box_temp+1 ; row top (0-239) | |
1706 movlw .90 | |
1707 movff WREG,box_temp+2 ; row bottom (0-239) | |
1708 movlw .0 | |
1709 movff WREG,box_temp+3 ; column left (0-159) | |
1710 movlw .90 | |
1711 movff WREG,box_temp+4 ; column right (0-159) | |
1712 call PLED_box | |
1713 bsf depth_greater_100m ; Set Flag | |
1714 return | |
1715 | |
1716 | |
1717 PLED_desaturation_time: | |
1718 ostc_debug 'h' | |
1719 WIN_TOP .150 | |
56 | 1720 WIN_LEFT .1 |
0 | 1721 WIN_FONT FT_SMALL |
1722 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1723 call PLED_standard_color |
1724 | |
0 | 1725 lfsr FSR2,letter |
1726 OUTPUTTEXT d'14' ; Desat | |
1727 movlw ' ' | |
1728 movwf POSTINC2 | |
1729 movff int_O_desaturation_time+0,lo ; divide by 60... | |
1730 movff int_O_desaturation_time+1,hi | |
1731 call convert_time ; converts hi:lo in minutes to hours (hi) and minutes (lo) | |
1732 bsf leftbind | |
1733 movf lo,W | |
1734 movff hi,lo | |
1735 movwf hi ; exchange lo and hi... | |
1736 output_8 ; Hours | |
1737 movlw ':' | |
1738 movwf POSTINC2 | |
1739 movff hi,lo ; Minutes | |
1740 output_99x | |
1741 bcf leftbind | |
1742 call word_processor | |
1743 return | |
1744 | |
1745 PLED_nofly_time: | |
1746 ostc_debug 'g' | |
1747 WIN_TOP .125 | |
56 | 1748 WIN_LEFT .1 |
0 | 1749 WIN_FONT FT_SMALL |
1750 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1751 call PLED_standard_color |
1752 | |
0 | 1753 lfsr FSR2,letter |
1754 OUTPUTTEXT d'35' ; NoFly | |
1755 movlw ' ' | |
1756 movwf POSTINC2 | |
1757 movff nofly_time+0,lo ; divide by 60... | |
1758 movff nofly_time+1,hi | |
1759 call convert_time ; converts hi:lo in minutes to hours (hi) and minutes (lo) | |
1760 bsf leftbind | |
1761 movf lo,W | |
1762 movff hi,lo | |
1763 movwf hi ; exchange lo and hi... | |
1764 output_8 ; Hours | |
1765 movlw ':' | |
1766 movwf POSTINC2 | |
1767 movff hi,lo ; Minutes | |
1768 decf lo,F | |
1769 btfsc lo,7 ; keep Nofly time | |
1770 clrf lo | |
1771 output_99x | |
1772 bcf leftbind | |
1773 call word_processor | |
1774 return | |
1775 | |
1776 | |
1777 update_surf_press: | |
1778 btfsc premenu ; Do not update when "Menu?" is displayed! | |
1779 return | |
1780 | |
1781 ostc_debug 'b' ; Sends debug-information to screen if debugmode active | |
1782 WIN_TOP .25 | |
56 | 1783 WIN_LEFT .1 |
0 | 1784 WIN_FONT FT_SMALL |
1785 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1786 call PLED_standard_color |
1787 | |
0 | 1788 lfsr FSR2,letter |
1789 movff amb_pressure+0,lo | |
1790 movff amb_pressure+1,hi | |
1791 bsf leftbind | |
1792 output_16 | |
1793 bcf leftbind | |
1794 movlw 'm' | |
1795 movwf POSTINC2 | |
1796 movlw 'b' | |
1797 movwf POSTINC2 | |
1798 movlw 'a' | |
1799 movwf POSTINC2 | |
1800 movlw 'r' | |
1801 movwf POSTINC2 | |
1802 movlw ' ' | |
1803 movwf POSTINC2 | |
1804 call word_processor | |
1805 return | |
1806 | |
1807 update_batt_voltage_divemode: | |
1808 | |
1809 update_batt_voltage: | |
1810 ostc_debug 'f' | |
1811 | |
1812 GETCUSTOM8 d'31' ; =1 if battery voltage should be visible | |
1813 movwf lo | |
1814 movlw d'1' | |
1815 cpfseq lo ; =1? | |
1816 bra update_batt_voltage2 ; No, show symbol | |
1817 | |
1818 WIN_TOP .175 | |
56 | 1819 WIN_LEFT .1 |
0 | 1820 WIN_FONT FT_SMALL |
1821 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1822 call PLED_standard_color |
1823 | |
0 | 1824 lfsr FSR2,letter |
1825 movff batt_voltage+0,lo | |
1826 movff batt_voltage+1,hi | |
1827 movlw d'1' | |
1828 movwf ignore_digits | |
1829 bsf ignore_digit5 ; do not display mV | |
1830 bsf leftbind | |
1831 output_16dp d'2' ; e.g. 3.45V | |
1832 bcf leftbind | |
1833 movlw 'V' | |
1834 movwf POSTINC2 | |
1835 movlw ' ' | |
1836 movwf POSTINC2 | |
1837 call word_processor | |
1838 return | |
1839 | |
1840 update_batt_voltage2: | |
9 | 1841 GETCUSTOM8 d'35' ; Standard output color |
0 | 1842 movff WREG,box_temp+0 ; Data |
1843 movlw .174 | |
1844 movff WREG,box_temp+1 ; row top (0-239) | |
1845 movlw .194 | |
1846 movff WREG,box_temp+2 ; row bottom (0-239) | |
56 | 1847 movlw .1 |
0 | 1848 movff WREG,box_temp+3 ; column left (0-159) |
56 | 1849 movlw .32 |
0 | 1850 movff WREG,box_temp+4 ; column right (0-159) |
1851 call PLED_frame | |
1852 | |
25 | 1853 ; 4100-Vbatt |
1854 movlw LOW d'4100' | |
0 | 1855 movwf sub_a+0 |
25 | 1856 movlw HIGH d'4100' |
0 | 1857 movwf sub_a+1 |
1858 movff batt_voltage+0,sub_b+0 | |
1859 movff batt_voltage+1,sub_b+1 | |
1860 call sub16 ; sub_c = sub_a - sub_b | |
25 | 1861 ; Battery full (>4100mV? |
0 | 1862 btfsc neg_flag |
1863 bra update_batt_voltage2_full | |
1864 | |
25 | 1865 ; Vbatt-3500 |
1866 movlw LOW d'3500' | |
0 | 1867 movwf sub_b+0 |
25 | 1868 movlw HIGH d'3500' |
0 | 1869 movwf sub_b+1 |
1870 movff batt_voltage+0,sub_a+0 | |
1871 movff batt_voltage+1,sub_a+1 | |
1872 call sub16 ; sub_c = sub_a - sub_b | |
25 | 1873 ; Battery lower then 3500mV? |
0 | 1874 btfsc neg_flag |
1875 bra update_batt_voltage2_empty | |
1876 | |
25 | 1877 ; Battery is between 3500 and 4100mV |
0 | 1878 ; sub_c:2 is between 0 and 600 |
1879 movff sub_c+0,xA+0 | |
1880 movff sub_c+1,xA+1 | |
1881 movlw d'20' | |
1882 movwf xB+0 | |
1883 clrf xB+1 | |
1884 call div16x16 ;xA/xB=xC with xA as remainder | |
1885 ; xC is between 0 and 30 | |
1886 movff xC+0,wait_temp ;save value | |
56 | 1887 incf wait_temp,F ; +1 |
1888 | |
1889 movlw d'3' | |
0 | 1890 cpfsgt wait_temp |
56 | 1891 movwf wait_temp ; Minimum = 3 |
0 | 1892 |
1893 update_batt_voltage2a: | |
9 | 1894 GETCUSTOM8 d'35' ; Standard output color |
0 | 1895 movff WREG,box_temp+0 ; Data |
1896 movlw .181 | |
1897 movff WREG,box_temp+1 ; row top (0-239) | |
1898 movlw .187 | |
1899 movff WREG,box_temp+2 ; row bottom (0-239) | |
56 | 1900 movlw .32 |
0 | 1901 movff WREG,box_temp+3 ; column left (0-159) |
56 | 1902 movlw .34 |
0 | 1903 movff WREG,box_temp+4 ; column right (0-159) |
25 | 1904 call PLED_box ; Full Cap |
1905 | |
1906 ; GETCUSTOM8 d'35' ; Standard output color | |
1907 ; movff WREG,box_temp+0 ; Data | |
1908 ; movlw .181 | |
1909 ; movff WREG,box_temp+1 ; row top (0-239) | |
1910 ; movlw .187 | |
1911 ; movff WREG,box_temp+2 ; row bottom (0-239) | |
1912 ; movlw .31 | |
1913 ; movff WREG,box_temp+3 ; column left (0-159) | |
1914 ; movlw .33 | |
1915 ; movff WREG,box_temp+4 ; column right (0-159) | |
1916 ; call PLED_frame ; Empty cap | |
1917 ; | |
0 | 1918 update_batt_voltage3: |
25 | 1919 GETCUSTOM8 d'34' ; Color battery |
0 | 1920 movff WREG,box_temp+0 ; Color Data |
25 | 1921 movlw .176 |
0 | 1922 movff WREG,box_temp+1 ; row top (0-239) |
25 | 1923 movlw .192 |
0 | 1924 movff WREG,box_temp+2 ; row bottom (0-239) |
56 | 1925 movlw .2 |
0 | 1926 movff WREG,box_temp+3 ; column left (0-159) |
1927 movff wait_temp,box_temp+4 ; column right (0-159) | |
1928 call PLED_box | |
1929 | |
25 | 1930 call PLED_standard_color |
0 | 1931 return |
1932 | |
1933 update_batt_voltage2_empty: | |
1934 movlw d'1' | |
1935 movwf wait_temp | |
1936 bra update_batt_voltage2a | |
1937 | |
1938 update_batt_voltage2_full: | |
1939 movlw d'30' | |
1940 movwf wait_temp | |
25 | 1941 bra update_batt_voltage2a |
0 | 1942 |
1943 PLED_convert_date: ; converts into "DD/MM/YY" or "MM/DD/YY" or "YY/MM/DD" in postinc2 | |
1944 read_int_eeprom d'91' ; Read date format (0=MMDDYY, 1=DDMMYY, 2=YYMMDD) | |
1945 tstfsz EEDATA | |
1946 bra PLED_convert_date1 | |
1947 | |
1948 ; Use MMDDYY | |
1949 movff convert_value_temp+0,lo ;month | |
1950 bsf leftbind | |
1951 output_99x | |
1952 bcf leftbind | |
1953 movlw '/' | |
1954 movwf POSTINC2 | |
1955 movff convert_value_temp+1,lo ;day | |
1956 bra PLED_convert_date1_common ;year | |
1957 | |
1958 PLED_convert_date1: | |
1959 read_int_eeprom d'91' ; Read date format (0=MMDDYY, 1=DDMMYY, 2=YYMMDD) | |
1960 decfsz EEDATA,F | |
1961 bra PLED_convert_date2 | |
1962 | |
1963 ; Use DDMMYY | |
1964 movff convert_value_temp+1,lo ;day | |
1965 bsf leftbind | |
1966 output_99x | |
1967 bcf leftbind | |
1968 movlw '/' | |
1969 movwf POSTINC2 | |
1970 movff convert_value_temp+0,lo ;month | |
1971 | |
1972 PLED_convert_date1_common: | |
1973 bsf leftbind | |
1974 output_99x | |
1975 bcf leftbind | |
1976 movlw '/' | |
1977 movwf POSTINC2 | |
1978 movff convert_value_temp+2,lo ;year | |
1979 bsf leftbind | |
1980 output_99x | |
1981 return | |
1982 | |
1983 PLED_convert_date2: | |
1984 ; Use YYMMDD | |
1985 movff convert_value_temp+2,lo ;year | |
1986 bsf leftbind | |
1987 output_99x | |
1988 bcf leftbind | |
1989 movlw '/' | |
1990 movwf POSTINC2 | |
1991 movff convert_value_temp+0,lo ;month | |
1992 bsf leftbind | |
1993 output_99x | |
1994 bcf leftbind | |
1995 movlw '/' | |
1996 movwf POSTINC2 | |
1997 movff convert_value_temp+1,lo ;day | |
1998 bsf leftbind | |
1999 output_99x | |
2000 return | |
2001 | |
2002 PLED_convert_date_short: ; converts into "DD/MM" or "MM/DD" or "MM/DD" in postinc2 | |
2003 read_int_eeprom d'91' ; Read date format (0=MMDDYY, 1=DDMMYY, 2=YYMMDD) | |
2004 tstfsz EEDATA | |
2005 bra PLED_convert_date_short1 | |
2006 | |
2007 ; Use MMDDYY | |
2008 PLED_convert_date_short_common: | |
2009 movff convert_value_temp+0,lo ;month | |
2010 bsf leftbind | |
2011 output_99x | |
2012 bcf leftbind | |
2013 movlw '/' | |
2014 movwf POSTINC2 | |
2015 movff convert_value_temp+1,lo ;day | |
2016 bsf leftbind | |
2017 output_99x | |
2018 bcf leftbind | |
2019 return | |
2020 | |
2021 PLED_convert_date_short1: | |
2022 read_int_eeprom d'91' ; Read date format (0=MMDDYY, 1=DDMMYY, 2=YYMMDD) | |
2023 decfsz EEDATA,F | |
2024 bra PLED_convert_date_short_common ; Use YYMMDD | |
2025 | |
2026 ; Use DDMMYY | |
2027 movff convert_value_temp+1,lo ;day | |
2028 bsf leftbind | |
2029 output_99x | |
2030 bcf leftbind | |
2031 movlw '/' | |
2032 movwf POSTINC2 | |
2033 movff convert_value_temp+0,lo ;month | |
2034 bsf leftbind | |
2035 output_99x | |
2036 bcf leftbind | |
2037 return | |
2038 | |
2039 update_date: | |
2040 ostc_debug 'd' | |
2041 WIN_TOP .75 | |
56 | 2042 WIN_LEFT .1 |
0 | 2043 WIN_FONT FT_SMALL |
2044 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 2045 call PLED_standard_color |
2046 | |
0 | 2047 lfsr FSR2,letter |
2048 | |
2049 movff month,convert_value_temp+0 | |
2050 movff day,convert_value_temp+1 | |
2051 movff year,convert_value_temp+2 | |
2052 call PLED_convert_date ; converts into "DD/MM/YY" or "MM/DD/YY" or "YY/MM/DD" in postinc2 | |
2053 call word_processor | |
2054 return | |
2055 | |
2056 PLED_menu_clear: | |
2057 movlw .0 | |
2058 movff WREG,box_temp+0 ; Data | |
2059 movlw .0 | |
2060 movff WREG,box_temp+1 ; row top (0-239) | |
2061 movlw .26 | |
2062 movff WREG,box_temp+2 ; row bottom (0-239) | |
2063 movlw .65 | |
2064 movff WREG,box_temp+3 ; column left (0-159) | |
2065 movlw .100 | |
2066 movff WREG,box_temp+4 ; column right (0-159) | |
2067 call PLED_box | |
2068 return | |
2069 | |
2070 PLED_max_pressure: | |
2071 btfsc multi_gf_display ; Is the Multi-GF Table displayed? | |
2072 return ; Yes, No update and return! | |
2073 | |
2074 ostc_debug 'p' ; Sends debug-information to screen if debugmode active | |
2075 | |
2076 WIN_TOP .184 | |
2077 WIN_LEFT .0 | |
2078 WIN_FONT FT_MEDIUM | |
2079 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 2080 call PLED_standard_color |
2081 | |
0 | 2082 lfsr FSR2,letter |
2083 movff max_pressure+0,lo | |
2084 movff max_pressure+1,hi | |
2085 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mBar] | |
2086 bsf leftbind | |
2087 bsf ignore_digit5 ; do not display 1cm depth | |
2088 output_16dp d'3' | |
2089 bcf leftbind | |
2090 bcf show_last3 | |
2091 call word_processor | |
2092 WIN_FONT FT_SMALL | |
2093 return | |
2094 | |
2095 PLED_divemins: | |
2096 btfsc menubit ; Divemode menu active? | |
2097 return ; Yes, do not update divetime | |
2098 | |
2099 ostc_debug 'A' ; Sends debug-information to screen if debugmode active | |
2100 | |
2101 btfsc gauge_mode ; different display in gauge mode | |
2102 bra PLED_divemins_gauge | |
2103 | |
2104 btfsc FLAG_apnoe_mode ; different display in apnoe mode | |
2105 bra PLED_divemins_apnoe | |
2106 | |
2107 GETCUSTOM8 d'38' ; Show seconds (=1?) | |
2108 movwf lo | |
2109 movlw d'1' | |
2110 cpfseq lo ; =1? | |
2111 bra PLED_divemins2 ; No, minutes only | |
2112 bra PLED_divemins_gauge ; Yes, use Gauge routine | |
2113 | |
2114 PLED_divemins2: | |
2115 movff divemins+0,lo | |
2116 movff divemins+1,hi | |
2117 bcf leftbind | |
2118 lfsr FSR2,letter | |
2119 output_16_3 ; displays only last three figures from a 16Bit value (0-999) | |
2120 WIN_TOP .20 | |
2121 WIN_LEFT .120 | |
2122 WIN_FONT FT_MEDIUM | |
3 | 2123 call PLED_standard_color |
2124 | |
0 | 2125 call word_processor |
2126 WIN_FONT FT_SMALL | |
2127 return | |
2128 | |
2129 PLED_display_apnoe_surface: | |
2130 btfsc menubit ; Divemode menu active? | |
2131 return ; Yes, do not display surface mode timeout | |
2132 | |
9 | 2133 call PLED_divemask_color ; Set Color for Divemode mask |
0 | 2134 DISPLAYTEXT d'140' ; "SURFACE" |
3 | 2135 call PLED_standard_color |
2136 | |
0 | 2137 |
2138 WIN_TOP .85 | |
2139 WIN_LEFT .90 | |
2140 WIN_FONT FT_MEDIUM | |
3 | 2141 call PLED_standard_color |
2142 | |
0 | 2143 |
2144 movff apnoe_surface_mins,lo | |
2145 bcf leftbind | |
2146 lfsr FSR2,letter | |
2147 output_8 | |
2148 movlw ':' | |
2149 movwf POSTINC2 | |
2150 movff apnoe_surface_secs,lo | |
2151 output_99x | |
2152 call word_processor | |
2153 WIN_FONT FT_SMALL | |
2154 return | |
2155 | |
2156 PLED_apnoe_clear_surface: | |
2157 ; Clear Surface timer.... | |
2158 movlw .0 | |
2159 movff WREG,box_temp+0 ; Data | |
2160 movlw .60 | |
2161 movff WREG,box_temp+1 ; row top (0-239) | |
2162 movlw .119 | |
2163 movff WREG,box_temp+2 ; row bottom (0-239) | |
2164 movlw .90 | |
2165 movff WREG,box_temp+3 ; column left (0-159) | |
2166 movlw .159 | |
2167 movff WREG,box_temp+4 ; column right (0-159) | |
2168 call PLED_box | |
2169 return | |
2170 | |
2171 | |
2172 PLED_display_apnoe_descent: | |
9 | 2173 call PLED_divemask_color ; Set Color for Divemode mask |
0 | 2174 DISPLAYTEXT d'139' ; "Descent" |
3 | 2175 call PLED_standard_color |
2176 | |
0 | 2177 |
2178 WIN_TOP .145 | |
2179 WIN_LEFT .90 | |
2180 WIN_FONT FT_MEDIUM | |
3 | 2181 call PLED_standard_color |
2182 | |
0 | 2183 |
2184 movff apnoe_mins,lo | |
2185 lfsr FSR2,letter | |
2186 output_8 | |
2187 movlw ':' | |
2188 movwf POSTINC2 | |
2189 movff apnoe_secs,lo | |
2190 output_99x | |
2191 call word_processor | |
2192 WIN_FONT FT_SMALL | |
2193 return | |
2194 | |
2195 PLED_divemins_apnoe: | |
2196 | |
2197 PLED_divemins_gauge: | |
2198 movff divemins+0,lo | |
2199 movff divemins+1,hi | |
2200 bcf leftbind | |
2201 bsf show_last3 | |
2202 lfsr FSR2,letter | |
2203 output_16_3 ;Displays only 0...999 | |
2204 movlw ':' | |
2205 movwf POSTINC2 | |
2206 movff divesecs,lo | |
2207 output_99x | |
2208 WIN_TOP .20 | |
2209 WIN_LEFT .90 | |
2210 WIN_FONT FT_MEDIUM | |
3 | 2211 call PLED_standard_color |
2212 | |
0 | 2213 call word_processor |
2214 bcf show_last3 | |
2215 WIN_FONT FT_SMALL | |
2216 return | |
2217 | |
2218 PLED_stopwatch_remove: | |
2219 movlw .0 | |
2220 movff WREG,box_temp+0 ; Data | |
2221 movlw .54 | |
2222 movff WREG,box_temp+1 ; row top (0-239) | |
2223 movlw .102 | |
2224 movff WREG,box_temp+2 ; row bottom (0-239) | |
2225 movlw .062 | |
2226 movff WREG,box_temp+3 ; column left (0-159) | |
2227 movlw .159 | |
2228 movff WREG,box_temp+4 ; column right (0-159) | |
2229 call PLED_box | |
2230 return | |
2231 | |
2232 | |
2233 PLED_stopwatch_show: | |
2234 btfsc menubit ; Divemode menu active? | |
2235 return ; Yes, No update and return! | |
2236 | |
2237 ostc_debug 'V' ; Sends debug-information to screen if debugmode active | |
2238 ; Stopwatch | |
2239 | |
9 | 2240 call PLED_divemask_color ; Set Color for Divemode mask |
0 | 2241 DISPLAYTEXTH d'283' ; Counter |
3 | 2242 call PLED_standard_color |
2243 | |
0 | 2244 |
2245 WIN_TOP .80 | |
2246 WIN_LEFT .110 | |
2247 WIN_FONT FT_SMALL | |
3 | 2248 call PLED_standard_color |
2249 | |
0 | 2250 |
2251 | |
2252 | |
2253 lfsr FSR2,letter | |
2254 movff average_divesecs+0,lo ; Stopwatch | |
2255 movff average_divesecs+1,hi ; Stopwatch | |
2256 movlw d'2' | |
2257 subwf lo,F | |
2258 movlw d'0' | |
2259 subwfb hi,F ; Subtract 2 seconds | |
2260 | |
2261 call convert_time ; converts hi:lo in seconds to mins (hi) and secs (lo) | |
2262 | |
2263 movff lo,wait_temp | |
2264 movff hi,lo | |
2265 clrf hi | |
2266 | |
2267 movlw d'0' | |
2268 bcf leftbind | |
2269 bsf show_last3 | |
2270 output_16_3 ;Displays only 0...999 | |
2271 movlw ':' | |
2272 movwf POSTINC2 | |
2273 movff wait_temp,lo | |
2274 output_99x | |
2275 bcf leftbind | |
2276 call word_processor | |
2277 | |
2278 ostc_debug 'U' ; Sends debug-information to screen if debugmode active | |
2279 | |
2280 WIN_TOP .80 | |
2281 WIN_LEFT .62 | |
2282 WIN_FONT FT_SMALL | |
3 | 2283 call PLED_standard_color |
2284 | |
0 | 2285 |
2286 lfsr FSR2,letter | |
2287 movff avr_rel_pressure+0,lo | |
2288 movff avr_rel_pressure+1,hi | |
2289 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mBar] | |
2290 bsf leftbind | |
2291 bsf ignore_digit5 ; do not display 1cm depth | |
2292 output_16dp d'3' | |
2293 bcf leftbind | |
2294 movlw 'm' | |
2295 movwf POSTINC2 | |
2296 movlw ' ' | |
2297 movwf POSTINC2 | |
2298 call word_processor | |
2299 return | |
2300 | |
2301 | |
2302 PLED_serial: ; Writes OSTC #Serial and Firmware version in surfacemode | |
2303 ostc_debug 'a' ; Sends debug-information to screen if debugmode active | |
2304 WIN_TOP .0 | |
56 | 2305 WIN_LEFT .1 |
0 | 2306 WIN_FONT FT_SMALL |
2307 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 2308 call PLED_standard_color |
2309 | |
0 | 2310 |
2311 lfsr FSR2,letter | |
2312 OUTPUTTEXTH d'262' ; "OSTC " | |
2313 clrf EEADRH | |
2314 clrf EEADR ; Get Serial number LOW | |
2315 call read_eeprom ; read byte | |
2316 movff EEDATA,lo | |
2317 incf EEADR,F ; Get Serial number HIGH | |
2318 call read_eeprom ; read byte | |
2319 movff EEDATA,hi | |
2320 | |
2321 bsf leftbind | |
2322 output_16 | |
2323 movlw ' ' | |
2324 movwf POSTINC2 | |
2325 movlw 'V' | |
2326 movwf POSTINC2 | |
2327 movlw softwareversion_x | |
2328 movwf lo | |
2329 bsf leftbind | |
2330 output_8 | |
2331 movlw '.' | |
2332 movwf POSTINC2 | |
2333 movlw softwareversion_y | |
2334 movwf lo | |
2335 bsf leftbind | |
2336 output_99x | |
2337 bcf leftbind | |
2338 call word_processor | |
2339 return | |
2340 | |
2341 PLED_divemode_menu_mask_first: ; Write Divemode menu1 mask | |
2342 ostc_debug 'o' ; Sends debug-information to screen if debugmode active | |
2343 call PLED_menu_clear ; clear "Menu?" | |
2344 DISPLAYTEXT .31 ;"Show Deco" | |
2345 | |
2346 btfsc FLAG_const_ppO2_mode ; are we in ppO2 mode? | |
2347 bra PLED_divemode_menu_mask_first2 | |
2348 ; in OC Mode | |
2349 DISPLAYTEXT .32 ;"Gaslist" | |
2350 DISPLAYTEXT .122 ; "Set Gas" | |
2351 bra PLED_divemode_menu_mask_first3 | |
2352 | |
2353 PLED_divemode_menu_mask_first2: | |
2354 ; in CC Mode | |
2355 DISPLAYTEXT .238 ; "SetPoint" | |
2356 DISPLAYTEXT .137 ; "Bailout" | |
2357 | |
2358 PLED_divemode_menu_mask_first3: | |
2359 ; In all modes | |
2360 DISPLAYTEXT .33 ;"More" | |
2361 DISPLAYTEXT .34 ;"Exit" | |
2362 return | |
2363 | |
2364 PLED_divemode_menu_mask_second: ; Write Divemode menu1 mask | |
2365 ostc_debug 'o' ; Sends debug-information to screen if debugmode active | |
2366 DISPLAYTEXT .240 ;"Graphs" | |
2367 DISPLAYTEXT .241 ;"Display" | |
2368 DISPLAYTEXTH .281 ;"L. Tissue" | |
2369 DISPLAYTEXT .147 ;"Stopwat." | |
2370 DISPLAYTEXT .244 ;"Exit" | |
2371 return | |
2372 | |
2373 PLED_divemode_set_xgas: ; Displayes the "Set Gas" menu | |
2374 WIN_LEFT .100 | |
2375 WIN_TOP .0 | |
2376 WIN_FONT FT_SMALL | |
3 | 2377 call PLED_standard_color |
2378 | |
0 | 2379 lfsr FSR2,letter |
2380 movlw 'S' | |
2381 movwf POSTINC2 | |
2382 movlw 'e' | |
2383 movwf POSTINC2 | |
2384 movlw 'l' | |
2385 movwf POSTINC2 | |
2386 read_int_eeprom d'24' ; Get Gas6 %O2 | |
2387 movff EEDATA,lo | |
2388 bcf leftbind | |
2389 output_99 ; outputs into Postinc2! | |
2390 movlw '/' | |
2391 movwf POSTINC2 | |
2392 read_int_eeprom d'25' ; Get Gas6 %He | |
2393 movff EEDATA,lo | |
2394 output_99 ; outputs into Postinc2! | |
2395 call word_processor | |
2396 DISPLAYTEXT .123 ; O2 + | |
2397 DISPLAYTEXT .124 ; O2 - | |
2398 DISPLAYTEXT .125 ; He + | |
2399 DISPLAYTEXT .126 ; He - | |
2400 return | |
2401 | |
2402 PLED_divemode_simulator_mask: | |
2403 DISPLAYTEXT .254 ; EXIT | |
2404 DISPLAYTEXT .250 ; + 1m | |
2405 DISPLAYTEXT .251 ; - 1m | |
2406 DISPLAYTEXT .252 ; +10m | |
2407 DISPLAYTEXT .253 ; -10m | |
2408 return | |
2409 | |
2410 PLED_decoplan_bargraph: | |
9 | 2411 GETCUSTOM8 d'35' ; Standard output color |
0 | 2412 movff WREG,box_temp+0 ; Data |
30 | 2413 incf win_top,F ; +1 |
0 | 2414 movff win_top,box_temp+1 ; row top (0-239) |
2415 movff win_top,box_temp+2 ; | |
30 | 2416 movlw d'18' |
0 | 2417 addwf box_temp+2,F ; row bottom (0-239) |
2418 movlw .122 | |
2419 movff WREG,box_temp+3 ; column left (0-159) | |
2420 addwf lo,F ; Add time offset | |
2421 decf lo,F ; minus one | |
2422 movlw d'138' ; Limit length (16min) | |
2423 cpfslt lo | |
2424 movwf lo | |
2425 movff lo,box_temp+4 ; column right (0-159) | |
2426 call PLED_box | |
2427 | |
2428 movlw .0 | |
2429 movff WREG,box_temp+0 ; Data | |
2430 movff win_top,box_temp+1 ; row top (0-239) | |
2431 movff win_top,box_temp+2 ; | |
30 | 2432 movlw d'18' |
0 | 2433 addwf box_temp+2,F ; row bottom (0-239) |
2434 movff lo,box_temp+3 ; | |
2435 incf box_temp+3,F ; column left (0-159) | |
2436 movlw .139 | |
2437 movff WREG,box_temp+4 ; column right (0-159) | |
2438 call PLED_box | |
2439 return | |
2440 | |
2441 PLED_decoplan_delete: ; Delete unused rows | |
2442 movlw .0 | |
2443 movff WREG,box_temp+0 ; data 00, x0, 0y, xy clear, links, rechts, beide | |
2444 | |
2445 movff hi,box_temp+1 ; row top (0-63) | |
2446 movlw .125 | |
2447 movff WREG,box_temp+2 ; row bottom (0-63) | |
2448 movlw .100 | |
2449 movff WREG,box_temp+3 ; column left (0-159) | |
2450 movlw .159 | |
2451 movff WREG,box_temp+4 ; column right (0-159) | |
2452 call PLED_box | |
2453 return | |
2454 | |
2455 PLED_decoplan: ; display the Decoplan | |
2456 ostc_debug 'n' ; Sends debug-information to screen if debugmode active | |
2457 | |
2458 movff char_O_array_decodepth+0,lo ; Get Depth | |
2459 tstfsz lo | |
2460 bra PLED_decoplan1 | |
2461 ; No Deco, show "no Deco" | |
2462 call PLED_clear_divemode_menu ; Clear Deco area | |
2463 DISPLAYTEXT d'239' ;"No Deco" | |
2464 return | |
2465 | |
2466 PLED_decoplan1: | |
30 | 2467 setf temp5 |
2468 movlw .231 | |
2469 movwf temp6 ; row | |
2470 PLED_decoplan2: | |
2471 movlw d'25' | |
2472 addwf temp6,F | |
2473 incf temp5,F | |
2474 call PLED_decoplan_show_stop | |
2475 movlw d'5' ; 6 Stops... | |
2476 cpfseq temp5 | |
2477 bra PLED_decoplan2 | |
2478 return | |
2479 | |
2480 PLED_decoplan_show_stop: | |
0 | 2481 bsf leftbind |
2482 WIN_LEFT .100 | |
30 | 2483 movff temp6,win_top |
2484 movff temp6,hi ; copy for PLED_decoplan_bargraph | |
2485 | |
2486 lfsr FSR1,char_O_array_decodepth;+0 | |
2487 movf temp5,W ; number of entry | |
2488 movff PLUSW1,lo | |
0 | 2489 movf lo,w |
2490 btfsc STATUS,Z ; =0 | |
2491 goto PLED_decoplan_delete ; Yes, quit display | |
30 | 2492 |
0 | 2493 lfsr FSR2,letter |
2494 output_8 ; outputs into Postinc2! | |
2495 movlw 'm' | |
2496 movwf POSTINC2 | |
2497 call word_processor | |
30 | 2498 |
0 | 2499 WIN_LEFT .140 |
30 | 2500 movff temp6,win_top |
2501 | |
2502 lfsr FSR1,char_O_array_decotime;+0 | |
2503 movf temp5,W ; number of entry | |
2504 movff PLUSW1,lo | |
2505 | |
2506 lfsr FSR2,letter | |
0 | 2507 output_99x ; outputs into Postinc2! |
2508 movlw d'39' ;"'" | |
2509 movwf POSTINC2 | |
2510 call word_processor | |
2511 call PLED_decoplan_bargraph ; draws a box representing the decotime (stored in lo...) for this depth | |
2512 return | |
2513 | |
30 | 2514 ; WIN_LEFT .100 |
2515 ; movlw .025 | |
2516 ; movff WREG,win_top | |
2517 ; movwf hi ; copy for PLED_decoplan_bargraph | |
2518 ; call PLED_SetRow ; Set Row | |
2519 ; lfsr FSR2,letter | |
2520 ; movff char_O_array_decodepth+1,lo ; Get Depth | |
2521 ; movf lo,w | |
2522 ; btfsc STATUS,Z ; =0 | |
2523 ; goto PLED_decoplan_delete ; Yes, quit display | |
2524 ; output_8 ; outputs into Postinc2! | |
2525 ; movlw 'm' | |
2526 ; movwf POSTINC2 | |
2527 ; call word_processor | |
2528 ; WIN_LEFT .140 | |
2529 ; movlw .025 | |
2530 ; movff WREG,win_top | |
2531 ; lfsr FSR2,letter | |
2532 ; movff char_O_array_decotime+1,lo ; Get length for this stop | |
2533 ; output_99x ; outputs into Postinc2! | |
2534 ; movlw d'39' ;"'" | |
2535 ; movwf POSTINC2 | |
2536 ; call word_processor | |
2537 ; call PLED_decoplan_bargraph ; draws a box representing the decotime (stored in lo...) for this depth | |
2538 ; | |
2539 ; WIN_LEFT .100 | |
2540 ; movlw .050 | |
2541 ; movff WREG,win_top | |
2542 ; movwf hi ; copy for PLED_decoplan_bargraph | |
2543 ; call PLED_SetRow ; Set Row | |
2544 ; lfsr FSR2,letter | |
2545 ; movff char_O_array_decodepth+2,lo ; Get Depth | |
2546 ; movf lo,w | |
2547 ; btfsc STATUS,Z ; =0 | |
2548 ; goto PLED_decoplan_delete ; Yes, quit display | |
2549 ; output_8 ; outputs into Postinc2! | |
2550 ; movlw 'm' | |
2551 ; movwf POSTINC2 | |
2552 ; call word_processor | |
2553 ; WIN_LEFT .140 | |
2554 ; movlw .050 | |
2555 ; movff WREG,win_top | |
2556 ; lfsr FSR2,letter | |
2557 ; movff char_O_array_decotime+2,lo ; Get length for this stop | |
2558 ; output_99x ; outputs into Postinc2! | |
2559 ; movlw d'39' ;"'" | |
2560 ; movwf POSTINC2 | |
2561 ; call word_processor | |
2562 ; call PLED_decoplan_bargraph ; draws a box representing the decotime (stored in lo...) for this depth | |
2563 ; | |
2564 ; WIN_LEFT .100 | |
2565 ; movlw .075 | |
2566 ; movff WREG,win_top | |
2567 ; movwf hi ; copy for PLED_decoplan_bargraph | |
2568 ; call PLED_SetRow ; Set Row | |
2569 ; lfsr FSR2,letter | |
2570 ; movff char_O_array_decodepth+3,lo ; Get Depth | |
2571 ; movf lo,w | |
2572 ; btfsc STATUS,Z ; =0 | |
2573 ; goto PLED_decoplan_delete ; Yes, quit display | |
2574 ; output_8 ; outputs into Postinc2! | |
2575 ; movlw 'm' | |
2576 ; movwf POSTINC2 | |
2577 ; call word_processor | |
2578 ; WIN_LEFT .140 | |
2579 ; movlw .075 | |
2580 ; movff WREG,win_top | |
2581 ; lfsr FSR2,letter | |
2582 ; movff char_O_array_decotime+3,lo ; Get length for this stop | |
2583 ; output_99x ; outputs into Postinc2! | |
2584 ; movlw d'39' ;"'" | |
2585 ; movwf POSTINC2 | |
2586 ; call word_processor | |
2587 ; call PLED_decoplan_bargraph ; draws a box representing the decotime (stored in lo...) for this depth | |
2588 ; | |
2589 ; WIN_LEFT .100 | |
2590 ; movlw .100 | |
2591 ; movff WREG,win_top | |
2592 ; movwf hi ; copy for PLED_decoplan_bargraph | |
2593 ; call PLED_SetRow ; Set Row | |
2594 ; lfsr FSR2,letter | |
2595 ; movff char_O_array_decodepth+4,lo ; Get Depth | |
2596 ; movf lo,w | |
2597 ; btfsc STATUS,Z ; =0 | |
2598 ; goto PLED_decoplan_delete ; Yes, quit display | |
2599 ; output_8 ; outputs into Postinc2! | |
2600 ; movlw 'm' | |
2601 ; movwf POSTINC2 | |
2602 ; call word_processor | |
2603 ; WIN_LEFT .140 | |
2604 ; movlw .100 | |
2605 ; movff WREG,win_top | |
2606 ; lfsr FSR2,letter | |
2607 ; movff char_O_array_decotime+4,lo ; Get length for this stop | |
2608 ; output_99x ; outputs into Postinc2! | |
2609 ; movlw d'39' ;"'" | |
2610 ; movwf POSTINC2 | |
2611 ; call word_processor | |
2612 ; call PLED_decoplan_bargraph ; draws a box representing the decotime (stored in lo...) for this depth | |
2613 ; return | |
2614 ; | |
0 | 2615 PLED_gas_list: |
2616 ostc_debug 'm' ; Sends debug-information to screen if debugmode active | |
2617 | |
2618 WIN_LEFT .100 | |
2619 WIN_FONT FT_SMALL | |
2620 bsf leftbind | |
2621 | |
2622 movlw d'2' | |
2623 movwf wait_temp ; here: stores eeprom address for gas list | |
2624 movlw d'231' | |
2625 movwf waitms_temp ; here: stores row for gas list | |
2626 clrf hi ; here: Gas counter | |
2627 | |
2628 PLED_gas_list_loop: | |
2629 incf hi,F ; Increase Gas | |
2630 movlw d'4' | |
2631 addwf wait_temp,F ; Increase eeprom address for gas list | |
2632 movlw d'25' | |
2633 addwf waitms_temp,F ; Increase row | |
2634 WIN_LEFT .100 | |
2635 movff waitms_temp,win_top ; Set Row | |
2636 | |
2637 lfsr FSR2,letter | |
2638 movlw 'G' | |
2639 movwf POSTINC2 | |
2640 movff hi,lo ; copy gas number | |
2641 output_8 ; display gas number | |
2642 movlw ':' | |
2643 movwf POSTINC2 | |
2644 movff wait_temp, EEADR; Gas #hi: %O2 - Set address in internal EEPROM | |
2645 call read_eeprom ; get byte (stored in EEDATA) | |
2646 movff EEDATA,lo ; copy to lo | |
2647 output_8 ; outputs into Postinc2! | |
2648 movlw '/' | |
2649 movwf POSTINC2 | |
2650 incf EEADR,F ; Gas #hi: %He - Set address in internal EEPROM | |
2651 call read_eeprom ; get byte (stored in EEDATA) | |
2652 movff EEDATA,lo ; copy to lo | |
2653 output_8 ; outputs into Postinc2! | |
2654 | |
2655 | |
2656 read_int_eeprom d'27' ; read flag register | |
2657 movff hi,lo ; copy gas number | |
2658 PLED_gas_list_loop1: | |
2659 rrcf EEDATA ; roll flags into carry | |
2660 decfsz lo,F ; max. 5 times... | |
2661 bra PLED_gas_list_loop1 | |
19 | 2662 |
2663 movlw color_grey | |
0 | 2664 btfss STATUS,C ; test carry |
19 | 2665 call PLED_set_color ; grey out inactive gases! |
0 | 2666 |
2667 call word_processor | |
19 | 2668 call PLED_standard_color |
0 | 2669 |
2670 movlw d'5' ; list all five gases | |
2671 cpfseq hi ; All gases shown? | |
2672 bra PLED_gas_list_loop ; No | |
2673 | |
2674 return ; No, return (OC mode) | |
2675 | |
2676 PLED_splist_start: | |
2677 WIN_LEFT .100 | |
2678 WIN_FONT FT_SMALL | |
2679 bsf leftbind | |
2680 | |
2681 ; list three SP in Gaslist | |
2682 movlw d'35' ; 36 = current SP position in EEPROM | |
2683 movwf wait_temp ; here: stores eeprom address for gas list | |
2684 movlw d'231' | |
2685 movwf waitms_temp ; here: stores row for gas list | |
2686 clrf temp5 ; here: SP counter | |
2687 | |
2688 PLED_splist_loop: | |
2689 incf wait_temp,F ; EEPROM address | |
2690 incf temp5,F ; Increase SP | |
2691 | |
2692 movlw d'25' | |
2693 addwf waitms_temp,F ; Increase row | |
2694 movff waitms_temp,win_top ; Set Row | |
2695 WIN_LEFT .100 | |
2696 | |
2697 lfsr FSR2,letter | |
2698 movlw 'S' | |
2699 movwf POSTINC2 | |
2700 movlw 'P' | |
2701 movwf POSTINC2 | |
2702 movff temp5,lo ; copy gas number | |
2703 output_8 ; display gas number | |
2704 movlw ':' | |
2705 movwf POSTINC2 | |
2706 movff wait_temp, EEADR; SP #hi position | |
2707 call read_eeprom ; get byte (stored in EEDATA) | |
2708 movff EEDATA,lo ; copy to lo | |
2709 clrf hi | |
2710 output_16dp d'3' ; outputs into Postinc2! | |
2711 call word_processor | |
2712 | |
2713 movlw d'3' ; list all three SP | |
2714 cpfseq temp5 ; All gases shown? | |
2715 bra PLED_splist_loop ; No | |
2716 | |
2717 bcf leftbind | |
2718 return ; no, return | |
2719 | |
2720 PLED_clear_divemode_menu: | |
2721 movlw .0 | |
2722 movff WREG,box_temp+0 ; Data | |
2723 movlw .0 | |
2724 movff WREG,box_temp+1 ; row top (0-239) | |
30 | 2725 ; movlw .125 |
2726 movlw .185 | |
0 | 2727 movff WREG,box_temp+2 ; row bottom (0-239) |
2728 movlw .082 | |
2729 movff WREG,box_temp+3 ; column left (0-159) | |
2730 movlw .159 | |
2731 movff WREG,box_temp+4 ; column right (0-159) | |
2732 call PLED_box | |
2733 return | |
2734 | |
2735 PLED_divemenu_cursor: | |
2736 ostc_debug 'l' ; Sends debug-information to screen if debugmode active | |
2737 WIN_TOP .0 | |
2738 WIN_LEFT .85 | |
2739 WIN_FONT FT_SMALL | |
2740 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 2741 call PLED_standard_color |
0 | 2742 lfsr FSR2,letter |
2743 movlw 0xB8 | |
2744 movwf POSTINC2 | |
2745 call word_processor | |
2746 WIN_TOP .25 | |
2747 WIN_LEFT .85 | |
2748 WIN_FONT FT_SMALL | |
2749 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 2750 call PLED_standard_color |
0 | 2751 lfsr FSR2,letter |
2752 movlw 0xB8 | |
2753 movwf POSTINC2 | |
2754 call word_processor | |
2755 WIN_TOP .50 | |
2756 WIN_LEFT .85 | |
2757 WIN_FONT FT_SMALL | |
2758 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 2759 call PLED_standard_color |
0 | 2760 lfsr FSR2,letter |
2761 movlw 0xB8 | |
2762 movwf POSTINC2 | |
2763 call word_processor | |
2764 WIN_TOP .75 | |
2765 WIN_LEFT .85 | |
2766 WIN_FONT FT_SMALL | |
2767 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 2768 call PLED_standard_color |
0 | 2769 lfsr FSR2,letter |
2770 movlw 0xB8 | |
2771 movwf POSTINC2 | |
2772 call word_processor | |
2773 WIN_TOP .100 | |
2774 WIN_LEFT .85 | |
2775 WIN_FONT FT_SMALL | |
2776 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 2777 call PLED_standard_color |
0 | 2778 lfsr FSR2,letter |
2779 movlw 0xB8 | |
2780 movwf POSTINC2 | |
2781 call word_processor | |
2782 | |
2783 movff menupos,temp1 | |
2784 movlw d'0' | |
2785 dcfsnz temp1,F | |
2786 movlw d'0' | |
2787 dcfsnz temp1,F | |
2788 movlw d'25' | |
2789 dcfsnz temp1,F | |
2790 movlw d'50' | |
2791 dcfsnz temp1,F | |
2792 movlw d'75' | |
2793 dcfsnz temp1,F | |
2794 movlw d'100' | |
2795 movff WREG,win_top | |
2796 WIN_LEFT .85 | |
2797 WIN_FONT FT_SMALL | |
2798 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 2799 call PLED_standard_color |
2800 | |
0 | 2801 lfsr FSR2,letter |
2802 movlw 0xB7 ; Arrow for menu | |
2803 movwf POSTINC2 | |
2804 call word_processor | |
2805 return | |
2806 | |
33 | 2807 ;PLED_profileview_menu: |
2808 ; DISPLAYTEXT .127 ;"Exit" | |
2809 ; DISPLAYTEXT .128 ;"Delete" | |
2810 ;; DISPLAYTEXT .132 ;"Format" | |
2811 ; return | |
0 | 2812 |
37 | 2813 custom_warn_surfmode: ; With CF in temp1 |
0 | 2814 movlw .0 |
2815 movff WREG,box_temp+0 ; Data | |
2816 movlw .56 | |
2817 movff WREG,box_temp+1 ; row top (0-239) | |
2818 movlw .88 | |
2819 movff WREG,box_temp+2 ; row bottom (0-239) | |
2820 movlw .69 | |
2821 movff WREG,box_temp+3 ; column left (0-159) | |
2822 movlw .115 | |
2823 movff WREG,box_temp+4 ; column right (0-159) | |
2824 call PLED_box | |
2825 | |
9 | 2826 GETCUSTOM8 d'35' ; Standard output color |
0 | 2827 movff WREG,box_temp+0 ; Data |
2828 movlw .58 | |
2829 movff WREG,box_temp+1 ; row top (0-239) | |
2830 movlw .86 | |
2831 movff WREG,box_temp+2 ; row bottom (0-239) | |
2832 movlw .70 | |
2833 movff WREG,box_temp+3 ; column left (0-159) | |
2834 movlw .114 | |
2835 movff WREG,box_temp+4 ; column right (0-159) | |
2836 call PLED_frame | |
2837 ; warning text | |
2838 | |
2839 WIN_TOP .60 | |
2840 WIN_LEFT .71 | |
2841 WIN_FONT FT_SMALL | |
2842 WIN_INVERT .1 ; Init new Wordprocessor | |
37 | 2843 call PLED_warnings_color ; Set Color for Warning |
0 | 2844 lfsr FSR2,letter |
2845 movlw 'C' | |
2846 movwf POSTINC2 | |
2847 movlw 'F' | |
2848 movwf POSTINC2 | |
2849 movff temp1,lo | |
2850 output_8 | |
2851 movlw '!' | |
2852 movwf POSTINC2 | |
2853 call word_processor | |
2854 | |
2855 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 2856 call PLED_standard_color |
0 | 2857 return |
2858 | |
2859 PLED_saturation_graph_divemode: | |
2860 ostc_debug 'h' ; Sends debug-information to screen if debugmode active | |
2861 PLED_tissue_saturation_graph: | |
2862 ostc_debug 'i' ; Sends debug-information to screen if debugmode active | |
13 | 2863 |
2864 ; Clear graph area... | |
2865 movlw .0 | |
2866 movff WREG,box_temp+0 ; Data | |
2867 movlw .25 | |
2868 movff WREG,box_temp+1 ; row top (0-239) | |
2869 movlw .120 | |
2870 movff WREG,box_temp+2 ; row bottom (0-239) | |
2871 movlw .82 | |
2872 movff WREG,box_temp+3 ; column left (0-159) | |
2873 movlw .159 | |
2874 movff WREG,box_temp+4 ; column right (0-159) | |
2875 call PLED_box | |
2876 | |
19 | 2877 ; Draw Frame |
9 | 2878 GETCUSTOM8 d'35' ; Standard output color |
0 | 2879 movff WREG,box_temp+0 ; Data |
2880 movlw .25 | |
2881 movff WREG,box_temp+1 ; row top (0-239) | |
2882 movlw .120 | |
2883 movff WREG,box_temp+2 ; row bottom (0-239) | |
2884 movlw .82 | |
2885 movff WREG,box_temp+3 ; column left (0-159) | |
2886 movlw .159 | |
2887 movff WREG,box_temp+4 ; column right (0-159) | |
2888 call PLED_frame | |
2889 | |
19 | 2890 ; Draw N2 Tissues |
0 | 2891 lfsr FSR2, char_O_tissue_saturation+.000 ; N2 |
2892 movlw d'16' | |
2893 movwf wait_temp ; 16 tissues | |
2894 clrf waitms_temp ; Row offset | |
2895 PLED_tissue_saturation_graph3: | |
9 | 2896 GETCUSTOM8 d'35' ; Standard output color |
0 | 2897 movff WREG,box_temp+0 ; Data |
2898 movlw .28 | |
2899 addwf waitms_temp,W | |
2900 movff WREG,box_temp+1 ; row top (0-239) | |
2901 movlw .28 | |
2902 addwf waitms_temp,W | |
2903 movff WREG,box_temp+2 ; row bottom (0-239) | |
2904 | |
2905 incf waitms_temp,F | |
2906 incf waitms_temp,F | |
2907 | |
2908 movlw .100 | |
2909 movff WREG,box_temp+3 ; column left (0-159) | |
2910 | |
2911 movff POSTINC2,box_temp+4 | |
2912 bcf STATUS,C | |
2913 rrcf box_temp+4,F | |
2914 bcf STATUS,C | |
2915 rrcf box_temp+4,F | |
2916 movlw .100 | |
2917 addwf box_temp+4,F ; column right (0-159) | |
2918 | |
2919 movlw d'157' ; limit display | |
2920 cpfslt box_temp+4 ; skip if 157 (WREG) < box_temp+4 | |
2921 movwf box_temp+4 | |
2922 | |
2923 call PLED_box | |
2924 | |
2925 decfsz wait_temp,F | |
2926 bra PLED_tissue_saturation_graph3 | |
2927 | |
19 | 2928 ; Draw He Tissues |
0 | 2929 lfsr FSR2, char_O_tissue_saturation+.016 ; He |
2930 movlw d'16' | |
2931 movwf wait_temp ; 16 tissues | |
2932 clrf waitms_temp ; Row offset | |
2933 PLED_tissue_saturation_graph2: | |
9 | 2934 GETCUSTOM8 d'35' ; Standard output color |
0 | 2935 movff WREG,box_temp+0 ; Data |
2936 movlw .86 | |
2937 addwf waitms_temp,W | |
2938 movff WREG,box_temp+1 ; row top (0-239) | |
2939 movlw .86 | |
2940 addwf waitms_temp,W | |
2941 movff WREG,box_temp+2 ; row bottom (0-239) | |
2942 | |
2943 incf waitms_temp,F | |
2944 incf waitms_temp,F | |
2945 | |
2946 movlw .100 | |
2947 movff WREG,box_temp+3 ; column left (0-159) | |
2948 | |
2949 movff POSTINC2,box_temp+4 | |
2950 bcf STATUS,C | |
2951 rrcf box_temp+4,F | |
2952 bcf STATUS,C | |
2953 rrcf box_temp+4,F | |
2954 movlw .100 | |
2955 addwf box_temp+4,F ; column right (0-159) | |
2956 | |
2957 movlw d'157' ; limit display | |
2958 cpfslt box_temp+4 ; skip if 157 (WREG) < box_temp+4 | |
2959 movwf box_temp+4 | |
2960 | |
2961 call PLED_box | |
2962 | |
2963 decfsz wait_temp,F | |
2964 bra PLED_tissue_saturation_graph2 | |
2965 | |
19 | 2966 ; Draw Text |
0 | 2967 WIN_LEFT .84 |
2968 WIN_TOP .32 | |
3 | 2969 call PLED_standard_color |
0 | 2970 lfsr FSR2,letter |
2971 movlw 'N' | |
2972 movwf POSTINC2 | |
2973 movlw '2' | |
2974 movwf POSTINC2 | |
2975 call word_processor | |
2976 WIN_LEFT .84 | |
2977 WIN_TOP .90 | |
3 | 2978 call PLED_standard_color |
0 | 2979 lfsr FSR2,letter |
2980 movlw 'H' | |
2981 movwf POSTINC2 | |
2982 movlw 'e' | |
2983 movwf POSTINC2 | |
2984 call word_processor | |
19 | 2985 |
2986 movff char_O_gtissue_no,wait_temp ; used as temp | |
2987 | |
2988 lfsr FSR2,letter | |
2989 lfsr FSR1,char_O_tissue_saturation+0 | |
2990 incf wait_temp,F ; make 1-16 of 0-15 | |
2991 PLED_tissue_saturation_graph4: ; point to leading tissue... | |
2992 movff POSTINC1,lo ; copy/overwrite to lo register | |
2993 decfsz wait_temp,F ; count until zero | |
2994 bra PLED_tissue_saturation_graph4 ;loop | |
2995 output_8 | |
2996 movlw '%' | |
2997 movwf POSTINC2 | |
2998 movlw ' ' | |
2999 movwf POSTINC2 | |
3000 WIN_LEFT .84 | |
3001 WIN_TOP .62 | |
3002 WIN_FONT FT_SMALL | |
3003 call PLED_standard_color | |
3004 call word_processor | |
3005 bcf leftbind | |
3006 | |
3007 ; Draw Scale | |
3008 GETCUSTOM8 d'35' ; Standard output color | |
3009 movff WREG,box_temp+0 ; Data | |
3010 movlw .73 | |
3011 movff WREG,box_temp+1 ; row top (0-239) | |
3012 movlw .74 | |
3013 movff WREG,box_temp+2 ; row bottom (0-239) | |
3014 movlw .121 | |
3015 movff WREG,box_temp+3 ; column left (0-159) | |
3016 movlw .157 | |
3017 movff WREG,box_temp+4 ; column right (0-159) | |
3018 call PLED_frame | |
3019 | |
3020 GETCUSTOM8 d'35' ; Standard output color | |
3021 movff WREG,box_temp+0 ; Data | |
3022 movlw .61 | |
3023 movff WREG,box_temp+1 ; row top (0-239) | |
3024 movlw .84 | |
3025 movff WREG,box_temp+2 ; row bottom (0-239) | |
3026 movlw .121 | |
3027 movff WREG,box_temp+3 ; column left (0-159) | |
3028 movlw .122 | |
3029 movff WREG,box_temp+4 ; column right (0-159) | |
3030 call PLED_box | |
3031 GETCUSTOM8 d'35' ; Standard output color | |
3032 movff WREG,box_temp+0 ; Data | |
3033 movlw .65 | |
3034 movff WREG,box_temp+1 ; row top (0-239) | |
3035 movlw .80 | |
3036 movff WREG,box_temp+2 ; row bottom (0-239) | |
3037 movlw .121+.9 | |
3038 movff WREG,box_temp+3 ; column left (0-159) | |
3039 movlw .122+.9 | |
3040 movff WREG,box_temp+4 ; column right (0-159) | |
3041 call PLED_box | |
3042 GETCUSTOM8 d'35' ; Standard output color | |
3043 movff WREG,box_temp+0 ; Data | |
3044 movlw .65 | |
3045 movff WREG,box_temp+1 ; row top (0-239) | |
3046 movlw .80 | |
3047 movff WREG,box_temp+2 ; row bottom (0-239) | |
3048 movlw .121+.18 | |
3049 movff WREG,box_temp+3 ; column left (0-159) | |
3050 movlw .122+.18 | |
3051 movff WREG,box_temp+4 ; column right (0-159) | |
3052 call PLED_box | |
3053 GETCUSTOM8 d'35' ; Standard output color | |
3054 movff WREG,box_temp+0 ; Data | |
3055 movlw .65 | |
3056 movff WREG,box_temp+1 ; row top (0-239) | |
3057 movlw .80 | |
3058 movff WREG,box_temp+2 ; row bottom (0-239) | |
3059 movlw .121+.27 | |
3060 movff WREG,box_temp+3 ; column left (0-159) | |
3061 movlw .122+.27 | |
3062 movff WREG,box_temp+4 ; column right (0-159) | |
3063 call PLED_box | |
3064 GETCUSTOM8 d'35' ; Standard output color | |
3065 movff WREG,box_temp+0 ; Data | |
3066 movlw .61 | |
3067 movff WREG,box_temp+1 ; row top (0-239) | |
3068 movlw .84 | |
3069 movff WREG,box_temp+2 ; row bottom (0-239) | |
3070 movlw .121+.36 | |
3071 movff WREG,box_temp+3 ; column left (0-159) | |
3072 movlw .122+.36 | |
3073 movff WREG,box_temp+4 ; column right (0-159) | |
3074 call PLED_box | |
3075 | |
0 | 3076 return |
3077 | |
3078 | |
3079 PLED_startupscreen1: | |
3080 call PLED_topline_box | |
3081 WIN_INVERT .1 ; Init new Wordprocessor | |
3082 DISPLAYTEXT d'3' ; "HeinrichsWeikamp" | |
3083 WIN_INVERT .0 ; Init new Wordprocessor | |
3084 DISPLAYTEXT .68 ; Licence 1/2 | |
3085 DISPLAYTEXT .69 | |
3086 DISPLAYTEXT .70 | |
3087 DISPLAYTEXT .71 | |
3088 DISPLAYTEXT .72 | |
3089 DISPLAYTEXT .73 | |
3090 DISPLAYTEXT .74 | |
3091 return | |
3092 | |
3093 PLED_startupscreen2: | |
3094 call PLED_topline_box | |
3095 WIN_INVERT .1 ; Init new Wordprocessor | |
3096 DISPLAYTEXT d'3' ; "HeinrichsWeikamp" | |
3097 WIN_INVERT .0 ; Init new Wordprocessor | |
3098 DISPLAYTEXT .75 ; Licence 2/2 | |
3099 DISPLAYTEXT .76 | |
3100 DISPLAYTEXT .77 | |
3101 DISPLAYTEXT .78 | |
3102 DISPLAYTEXT .79 | |
3103 DISPLAYTEXT .80 | |
3104 DISPLAYTEXT .81 | |
3105 return | |
3106 | |
3107 PLED_new_cf_warning: | |
3108 call PLED_topline_box | |
3109 WIN_INVERT .1 ; Init new Wordprocessor | |
3110 DISPLAYTEXTH .271 ; New CF added! | |
3111 WIN_INVERT .0 ; Init new Wordprocessor | |
3112 DISPLAYTEXTH .272 ; New CustomFunctions | |
3113 DISPLAYTEXTH .273 ; were added! Check | |
3114 DISPLAYTEXTH .274 ; CF I and CF II Menu | |
3115 DISPLAYTEXTH .275 ; for Details! | |
3116 return | |
3117 | |
3118 PLED_const_ppO2_value: | |
3119 btfsc multi_gf_display ; Is the Multi-GF Table displayed? | |
3120 return ; Yes, No update and return! | |
3121 | |
3122 ostc_debug 'j' ; Sends debug-information to screen if debugmode active | |
3123 | |
3124 WIN_TOP .168 | |
3125 WIN_LEFT .65 | |
3126 WIN_FONT FT_SMALL | |
3127 WIN_INVERT .0 ; Init new Wordprocessor | |
4 | 3128 |
0 | 3129 lfsr FSR2,letter |
3130 movff char_I_const_ppO2,lo | |
3131 | |
3132 tstfsz lo ; In Bailout mode (char_I_const_ppO2=0)? | |
3133 bra PLED_const_ppO2_value2 ; No, display Setpoint | |
3134 | |
3135 ; Yes, Display "Bail" | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
3136 call PLED_standard_color |
0 | 3137 OUTPUTTEXTH d'263' ;"Bail" |
3138 call word_processor | |
3139 return | |
3140 | |
3141 PLED_const_ppO2_value2: ; Display SetPoint | |
3142 ;Show fixed SP value | |
4 | 3143 movff amb_pressure+0,xA+0 |
3144 movff amb_pressure+1,xA+1 | |
3145 movlw d'10' | |
3146 movwf xB+0 | |
3147 clrf xB+1 | |
3148 ;xA/xB=xC with xA as remainder | |
3149 call div16x16 ; xC+0=p_amb/10 | |
26 | 3150 |
4 | 3151 ; char_I_const_ppO2 > p_amb/10 -> Not physically possible! -> Display actual value! |
3152 tstfsz xC+1 ; xC>255 | |
3153 setf xC+0 ; Yes, set xC+0 to 2,55bar ppO2 | |
26 | 3154 |
4 | 3155 movff ppO2_setpoint_store,WREG |
3156 cpfslt xC+0 ; Setpoint value possible? | |
26 | 3157 bra PLED_const_ppO2_value1 ; Yes |
4 | 3158 |
3159 movff xC+0,char_I_const_ppO2 ; No, Overwrite with actual value | |
3160 bra PLED_const_ppO2_value1a | |
3161 | |
3162 PLED_const_ppO2_value1: | |
26 | 3163 ; char_I_const_ppO2 < ppO2[Diluent] -> Not physically possible! -> Display actual value! |
3164 movff amb_pressure+0,xA+0 | |
3165 movff amb_pressure+1,xA+1 | |
3166 movlw d'10' | |
3167 movwf xB+0 | |
3168 clrf xB+1 | |
3169 call div16x16 ; xC=p_amb/10 | |
3170 movff xC+0,xA+0 | |
3171 movff xC+1,xA+1 | |
3172 movff char_I_O2_ratio,xB+0 | |
3173 clrf xB+1 | |
3174 call mult16x16 ; xC:2=char_I_O2_ratio * p_amb/10 | |
3175 | |
3176 movff xC+0,sub_b+0 | |
3177 movff xC+1,sub_b+1 | |
3178 movff ppO2_setpoint_store,WREG; Setpoint | |
3179 mullw d'100' ; Setpoint*100 | |
3180 movff PRODL,sub_a+0 | |
3181 movff PRODH,sub_a+1 | |
3182 call sub16 ; sub_c = sub_a - sub_b | |
3183 | |
3184 btfss neg_flag | |
3185 bra PLED_const_ppO2_value11 ; Value in range | |
3186 | |
3187 ; char_I_const_ppO2 < ppO2[Diluent] -> Not physically possible! -> Display actual value! | |
3188 | |
3189 movff xC+0,xA+0 | |
3190 movff xC+1,xA+1 | |
3191 movlw d'100' | |
3192 movwf xB+0 | |
3193 clrf xB+1 | |
3194 call div16x16 ;xA/xB=xC with xA as remainder | |
3195 | |
3196 movff xC+0,char_I_const_ppO2 ; No, Overwrite with actual value | |
3197 bra PLED_const_ppO2_value1a | |
3198 | |
3199 PLED_const_ppO2_value11: | |
3200 | |
3201 ; Setpoint in possible limits | |
4 | 3202 movff ppO2_setpoint_store,char_I_const_ppO2 ; Restore Setpoint |
3203 | |
3204 PLED_const_ppO2_value1a: | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
3205 PLED_color_code warn_ppo2 ; Color-code output |
4 | 3206 movff char_I_const_ppO2,lo |
0 | 3207 clrf hi |
3208 bsf leftbind | |
3209 output_16dp d'3' | |
3210 bcf leftbind | |
3211 call word_processor | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
3212 call PLED_standard_color |
0 | 3213 return |
3214 | |
3215 PLED_show_leading_tissue: | |
3216 call deco_main_calc_desaturation_time ; calculate desaturation time | |
3217 movlb b'00000001' ; select ram bank 1 | |
3218 | |
3219 DISPLAYTEXTH .282 ; L. Tissue: | |
3220 lfsr FSR2,letter | |
3221 movlw '#' | |
3222 movwf POSTINC2 | |
3223 movff char_O_gtissue_no,lo | |
3224 movff char_O_gtissue_no,wait_temp ; used as temp | |
3225 bsf leftbind | |
3226 output_8 | |
3227 movlw ' ' | |
3228 movwf POSTINC2 | |
3229 movlw '(' | |
3230 movwf POSTINC2 | |
3231 | |
3232 movlw d'16' | |
3233 cpfslt wait_temp | |
3234 bra PLED_show_leading_tissue_he | |
3235 movlw 'N' | |
3236 movwf POSTINC2 | |
3237 movlw '2' | |
3238 movwf POSTINC2 | |
3239 bra PLED_show_leading_tissue2 | |
3240 PLED_show_leading_tissue_he: | |
3241 movlw 'H' | |
3242 movwf POSTINC2 | |
3243 movlw 'e' | |
3244 movwf POSTINC2 | |
3245 PLED_show_leading_tissue2: | |
3246 movlw ')' | |
3247 movwf POSTINC2 | |
3248 movlw ' ' | |
3249 movwf POSTINC2 | |
3250 WIN_LEFT .100 | |
3251 WIN_TOP .25 | |
3252 WIN_FONT FT_SMALL | |
3 | 3253 call PLED_standard_color |
0 | 3254 call word_processor |
3255 | |
3256 lfsr FSR2,letter | |
3257 lfsr FSR1,char_O_tissue_saturation+0 | |
3258 incf wait_temp,F ; make 1-16 of 0-15 | |
3259 PLED_show_leading_tissue3: ; point to leading tissue... | |
3260 movff POSTINC1,lo ; copy/overwrite to lo register | |
3261 decfsz wait_temp,F ; count until zero | |
3262 bra PLED_show_leading_tissue3 ;loop | |
3263 output_8 | |
3264 movlw '%' | |
3265 movwf POSTINC2 | |
3266 movlw ' ' | |
3267 movwf POSTINC2 | |
3268 WIN_LEFT .100 | |
3269 WIN_TOP .50 | |
3270 WIN_FONT FT_SMALL | |
3 | 3271 call PLED_standard_color |
0 | 3272 call word_processor |
3273 bcf leftbind | |
3274 return | |
3275 | |
3276 PLED_topline_box_clear: ; Writes an empty box | |
3277 movlw .0 | |
3278 bra PLED_topline_box2 | |
3279 PLED_topline_box: ; Writes a filled box | |
3 | 3280 GETCUSTOM8 d'35' |
0 | 3281 PLED_topline_box2: |
3282 movff WREG,box_temp+0 ; Data | |
3283 movlw .000 | |
3284 movff WREG,box_temp+1 ; row top (0-239) | |
3285 movlw .026 | |
3286 movff WREG,box_temp+2 ; row bottom (0-239) | |
3287 movlw .000 | |
3288 movff WREG,box_temp+3 ; column left (0-159) | |
3289 movlw .159 | |
3290 movff WREG,box_temp+4 ; column right (0-159) | |
3291 call PLED_box | |
3292 return | |
3293 | |
3294 PLED_display_cns: | |
3295 btfsc multi_gf_display ; Is the Multi-GF Table displayed? | |
3296 return ; Yes, No update and return! | |
3297 | |
3298 btfsc gauge_mode ; Do not display in gauge mode | |
3299 return | |
3300 | |
3301 btfsc FLAG_apnoe_mode ; Do not display in apnoe mode | |
3302 return | |
3303 | |
3304 btfsc pled_velocity_display ; Is velocity displayed?` | |
3305 return ; Yes, do not overwrite until pled_velocity_clear was called | |
3306 | |
3307 ostc_debug 'k' ; Sends debug-information to screen if debugmode active | |
3308 | |
3309 WIN_TOP .090 | |
3310 WIN_LEFT .0 | |
3311 WIN_FONT FT_SMALL | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
3312 PLED_color_code warn_cns ; Color-code CNS output |
0 | 3313 |
3314 lfsr FSR2,letter | |
3315 movlw 'C' | |
3316 movwf POSTINC2 | |
3317 movlw 'N' | |
3318 movwf POSTINC2 | |
3319 movlw 'S' | |
3320 movwf POSTINC2 | |
3321 movlw ':' | |
3322 movwf POSTINC2 | |
3323 movff char_O_CNS_fraction,lo | |
3324 bsf leftbind | |
3325 output_8 | |
3326 bcf leftbind | |
3327 movlw '%' | |
3328 movwf POSTINC2 | |
3329 call word_processor | |
3330 return | |
3331 | |
43 | 3332 PLED_display_cns_surface: |
3333 ; Check if CNS should be displayed | |
3334 movff char_O_CNS_fraction,lo ; copy into bank1 | |
3335 GETCUSTOM8 d'15' ; cns_display_high_surfacemode | |
3336 subwf lo,W | |
3337 btfss STATUS,C | |
3338 return ; Do not show... | |
3339 ; Show CNS | |
3340 | |
3341 ostc_debug 'W' ; Sends debug-information to screen if debugmode active | |
3342 | |
3343 WIN_TOP .175 | |
3344 WIN_LEFT .45 | |
3345 WIN_FONT FT_SMALL | |
3346 WIN_INVERT .0 ; Init new Wordprocessor | |
3347 PLED_color_code warn_cns ; Color-code CNS output | |
3348 | |
3349 lfsr FSR2,letter | |
3350 movlw 'C' | |
3351 movwf POSTINC2 | |
3352 movlw 'N' | |
3353 movwf POSTINC2 | |
3354 movlw 'S' | |
3355 movwf POSTINC2 | |
3356 movlw ':' | |
3357 movwf POSTINC2 | |
3358 movff char_O_CNS_fraction,lo | |
3359 bsf leftbind | |
3360 output_8 | |
3361 bcf leftbind | |
3362 movlw '%' | |
3363 movwf POSTINC2 | |
3364 call word_processor | |
3365 return | |
3366 | |
3367 | |
0 | 3368 PLED_custom_text: |
3369 read_int_eeprom d'64' | |
3370 movlw d'1' | |
3371 cpfseq EEDATA ; Custom text active? | |
3372 bra PLED_clear_custom_text ; No, Delete row | |
3373 WIN_TOP .200 | |
62 | 3374 WIN_LEFT .0 |
0 | 3375 WIN_FONT FT_SMALL |
3376 WIN_INVERT .0 ; Init new Wordprocessor | |
9 | 3377 call PLED_divemask_color ; Set Color for Divemode mask |
0 | 3378 |
3379 lfsr FSR2,letter | |
3380 movlw d'64' | |
3381 movwf lo | |
3382 movlw d'24' | |
3383 movwf hi ; counter | |
3384 | |
3385 PLED_custom_text1: | |
3386 incf lo,F | |
3387 call PLED_get_custom_letter ; Get one letter for the custom text | |
3388 movlw '}' ; End marker found? | |
3389 cpfseq EEDATA | |
3390 bra PLED_custom_text2 ; No | |
3391 bra PLED_custom_text3 | |
3392 PLED_custom_text2: | |
3393 movff EEDATA,POSTINC2 ; Copy into Postinc | |
3394 | |
3395 decfsz hi,F ; Max. numbers? | |
3396 bra PLED_custom_text1 ; No, get next letters | |
3397 | |
3398 PLED_custom_text3: | |
3399 call word_processor | |
3 | 3400 call PLED_standard_color |
0 | 3401 return |
3402 | |
3403 PLED_get_custom_letter: | |
3404 movff lo,EEADR ; Address for next custom text letter | |
3405 call read_eeprom ; Read letter | |
3406 return | |
3407 | |
3408 PLED_clear_custom_text: | |
3409 movlw d'24' | |
3410 movwf temp1 | |
3411 WIN_TOP .200 | |
3412 WIN_LEFT .0 | |
3413 call PLED_display_clear_common_y1 | |
3414 return | |
3415 | |
3416 | |
3417 ;PLED_const_ppO2_DEBUG: | |
3418 ; movlw .007 | |
3419 ; call PLED_SetColumn | |
3420 ; movlw .032 | |
3421 ; call PLED_SetRow | |
3422 ; lfsr FSR2,letter | |
3423 ; movff char_O_diluent,lo | |
3424 ; output_8 | |
3425 ; movlw .001 | |
3426 ; movwf scaleY | |
3427 ; call word_processor | |
3428 ; movlw .007 | |
3429 ; call PLED_SetColumn | |
3430 ; movlw .024 | |
3431 ; call PLED_SetRow | |
3432 ; lfsr FSR2,letter | |
3433 ; movff last_diluent,lo | |
3434 ; output_8 | |
3435 ; movlw .001 | |
3436 ; movwf scaleY | |
3437 ; call word_processor | |
3438 ; movlw .007 | |
3439 ; call PLED_SetColumn | |
3440 ; movlw .016 | |
3441 ; call PLED_SetRow | |
3442 ; lfsr FSR2,letter | |
3443 ; movff char_O_deco_status,lo | |
3444 ; output_8 | |
3445 ; movlw .001 | |
3446 ; movwf scaleY | |
3447 ; call word_processor | |
3448 ; return | |
3449 ; | |
3450 | |
45 | 3451 ;PLED_gaschange_DEBUG: |
3452 ; WIN_LEFT .0 | |
3453 ; WIN_TOP .160 | |
3454 ; lfsr FSR2,letter | |
3455 ; movff char_I_deco_He_ratio,lo | |
3456 ; output_8 | |
3457 ; call word_processor | |
3458 ; | |
3459 ; WIN_LEFT .25 | |
3460 ; WIN_TOP .160 | |
3461 ; call PLED_SetRow | |
3462 ; lfsr FSR2,letter | |
3463 ; movff char_I_deco_N2_ratio,lo | |
3464 ; output_8 | |
3465 ; call word_processor | |
3466 ; | |
3467 ; WIN_LEFT .50 | |
3468 ; WIN_TOP .160 | |
3469 ; lfsr FSR2,letter | |
3470 ; movff char_I_deco_gas_change,lo | |
3471 ; output_8 | |
3472 ; call word_processor | |
3473 ; | |
3474 ; WIN_LEFT .75 | |
3475 ; WIN_TOP .160 | |
3476 ; lfsr FSR2,letter | |
3477 ; movff hi,lo | |
3478 ; output_8 | |
3479 ; call word_processor | |
3480 ; return | |
0 | 3481 |
3482 | |
3483 PLED_MultiGF_deco_mask: | |
30 | 3484 movlw .0 |
3485 movff WREG,box_temp+0 ; Data | |
3486 movlw .0 | |
3487 movff WREG,box_temp+1 ; row top (0-239) | |
3488 movlw .239 | |
3489 movff WREG,box_temp+2 ; row bottom (0-239) | |
3490 movlw .082 | |
3491 movff WREG,box_temp+3 ; column left (0-159) | |
3492 movlw .159 | |
3493 movff WREG,box_temp+4 ; column right (0-159) | |
3494 call PLED_box | |
3495 return | |
0 | 3496 |
3497 PLED_MultiGF_deco_all: | |
30 | 3498 movff char_O_actual_pointer,wait_temp |
3499 movff char_O_GF_low_pointer,waitms_temp | |
3500 movf waitms_temp,F | |
3501 bz PLED_MultiGF_no_deco | |
3502 call PLED_MultiGF_table ; input wait_temp | |
3503 return | |
3504 | |
3505 PLED_MultiGF_no_deco: | |
3506 DISPLAYTEXT d'242' ;"no deco" | |
3507 return | |
3508 | |
3509 PLED_MultiGF_table: | |
3510 movlw d'9' | |
3511 movwf temp5 ; number of stops | |
3512 movlw .231 | |
3513 movwf temp6 ; row | |
3514 lfsr FSR1,char_IO_deco_table+0 | |
3515 | |
3516 PLED_MultiGF_table2: | |
3517 movlw d'25' | |
3518 addwf temp6,F | |
3519 call PLED_MultiGF_show_stop | |
3520 decfsz temp5,F | |
3521 bra PLED_MultiGF_table2 | |
3522 return | |
3523 | |
3524 PLED_MultiGF_show_stop: | |
3525 bsf leftbind | |
3526 WIN_LEFT .100 | |
3527 movff temp6,win_top | |
3528 movff temp6,hi ; copy for PLED_decoplan_bargraph | |
3529 ; call PLED_SetRow ; Set Row | |
3530 | |
3531 | |
3532 movff POSTINC1,lo ; Get Depth | |
3533 movf lo,w | |
3534 | |
3535 lfsr FSR2,letter | |
3536 ; btfsc STATUS,Z ; =0 | |
3537 ; goto PLED_decoplan_delete ; Yes, quit display | |
3538 output_8 ; outputs into Postinc2! | |
3539 movlw 'm' | |
3540 movwf POSTINC2 | |
3541 call word_processor | |
3542 WIN_LEFT .140 | |
3543 movff temp6,win_top | |
3544 | |
3545 movff POSTINC1,lo ; Get length for this stop | |
3546 | |
3547 lfsr FSR2,letter | |
3548 output_99x ; outputs into Postinc2! | |
3549 movlw d'39' ;"'" | |
3550 movwf POSTINC2 | |
3551 call word_processor | |
3552 ; call PLED_decoplan_bargraph ; draws a box representing the decotime (stored in lo...) for this depth | |
3553 return | |
3554 | |
3555 | |
3556 | |
0 | 3557 ; movlw .043 |
3558 ; movwf temp5 | |
3559 ; movlw .48 + .8 | |
3560 ; movwf temp6 | |
3561 ; movff char_O_GF_low_pointer,wait_temp | |
30 | 3562 ; |
0 | 3563 ;PLED_MultiGF_loop: |
3564 ; decfsz wait_temp,F | |
3565 ; bra PLED_MulitGF_nextentry | |
3566 ; | |
30 | 3567 ; bra PLED_MultiGF_calc_tissue_counter |
3568 ;PLED_MGF_lp_calc_tis_counter: | |
0 | 3569 ; |
3570 ;PLED_MGF_lp_clear_rem_space: | |
3571 ; lfsr FSR2,letter | |
3572 ; movlw ' ' | |
3573 ; movwf POSTINC2 | |
3574 ; movlw ' ' | |
3575 ; movwf POSTINC2 | |
3576 ; movlw ' ' | |
3577 ; movwf POSTINC2 | |
3578 ; movlw ' ' | |
3579 ; movwf POSTINC2 | |
3580 ; movlw ' ' | |
3581 ; movwf POSTINC2 | |
3582 ; movlw ' ' | |
3583 ; movwf POSTINC2 | |
3584 ; movlw .8 | |
3585 ; subwf temp6,F | |
3586 ; bnz PLED_MultiGF_column_ok_space | |
3587 ; movlw .21 | |
3588 ; subwf temp5,F | |
3589 ; bc PLED_MultiGF_new_row_space | |
3590 ; return | |
3591 ;PLED_MultiGF_new_row_space: | |
3592 ; movlw .48 | |
3593 ; movwf temp6 | |
3594 ;PLED_MultiGF_column_ok_space: | |
3595 ; movf temp5,W | |
3596 ; call PLED_SetColumn | |
3597 ; movlw .8 | |
3598 ; subwf temp6,W | |
3599 ; call PLED_SetRow | |
3600 ; call word_processor | |
3601 ; bra PLED_MGF_lp_clear_rem_space | |
3602 ; | |
3603 ;PLED_MulitGF_nextentry: | |
3604 ; lfsr FSR2,letter | |
3605 ; movff wait_temp,lo ; pointer to meter | |
3606 ; movf lo,W | |
3607 ; rlncf lo,F | |
3608 ; addwf lo,F | |
3609 ; decfsz wait_temp,W | |
3610 ; bra PLED_MGF_skip_last_deco2 | |
3611 ; movff char_I_depth_last_deco,lo | |
3612 ;PLED_MGF_skip_last_deco2: | |
3613 ; output_99 | |
3614 ; movlw 0x02 | |
3615 ; movwf POSTINC2 | |
3616 ; movlw ':' | |
3617 ; movwf POSTINC2 | |
3618 ; movlw 0x02 | |
3619 ; movwf POSTINC2 | |
3620 ; lfsr FSR0,0x250 | |
3621 ; movf wait_temp,W | |
3622 ; movff PLUSW0,lo | |
3623 ; movlw d'10' ; gray code | |
3624 ; tstfsz lo | |
3625 ; movlw b'00001111' ; gray code | |
3626 ; movwf grayvalue | |
3627 ; bsf leftbind | |
3628 ; output_99 | |
3629 ; bcf leftbind | |
3630 ; movlw ' ' | |
3631 ; movwf POSTINC2 | |
3632 ; movlw .8 | |
3633 ; subwf temp6,F | |
3634 ; bnz PLED_MultiGF_column_ok | |
3635 ; movlw .21 | |
3636 ; subwf temp5,F | |
3637 ; bc PLED_MultiGF_new_row | |
3638 ; return | |
3639 ;PLED_MultiGF_new_row: | |
3640 ; movlw .48 | |
3641 ; movwf temp6 | |
3642 ;PLED_MultiGF_column_ok: | |
3643 ; movf temp5,W | |
3644 ; call PLED_SetColumn | |
3645 ; movlw .8 | |
3646 ; subwf temp6,W | |
3647 ; call PLED_SetRow | |
3648 ; call word_processor | |
3649 ; movlw b'00001111' ; gray code | |
3650 ; movwf grayvalue | |
3651 ; bra PLED_MultiGF_loop | |
3652 ; | |
3653 ; | |
3654 ;PLED_MultiGF_depth: | |
3655 ; lfsr FSR2,letter | |
3656 ; movff rel_pressure+0,lo | |
3657 ; movff rel_pressure+1,hi | |
3658 ; call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mBar] | |
3659 ; bsf leftbind | |
3660 ; bsf ignore_digit5 ; do not display 1cm depth | |
3661 ; output_16dp d'3' | |
3662 ; bcf leftbind | |
3663 ; movlw .004 | |
3664 ; movwf wait_temp | |
3665 ; movff wait_temp,0x086 ; left | |
3666 ; movlw .049 | |
3667 ; movwf wait_temp | |
3668 ; movff wait_temp,0x087 ; top | |
3669 ; movlw .015 | |
3670 ; movwf wait_temp | |
3671 ; movff wait_temp,0x088 ; heightmax | |
3672 ; movff dd_oled_brightness_offset,wait_temp | |
3673 ; movff wait_temp,0x089 ; oled_brightness_offset_const | |
3674 ; call main_DD2_write_incon24 | |
3675 ; movlb b'00000001' ; Back to Bank1 | |
3676 ; return | |
3677 ; | |
3678 ;PLED_MultiGF_deco_depth_actual: | |
3679 ; lfsr FSR2,letter | |
3680 ; movff char_O_actual_pointer,lo ; pointer to meter | |
3681 ; movf lo,W | |
3682 ; rlncf lo,F | |
3683 ; addwf lo,F | |
3684 ; movff char_O_actual_pointer,wait_temp ; test last_deco | |
3685 ; decfsz wait_temp,F | |
3686 ; bra PLED_MGF_skip_last_deco_depth | |
3687 ; movff char_I_depth_last_deco,lo | |
3688 ;PLED_MGF_skip_last_deco_depth: | |
3689 ; output_99 | |
3690 ; movlw 'm' | |
3691 ; movwf POSTINC2 | |
3692 ; movlw ' ' | |
3693 ; movwf POSTINC2 | |
3694 ; movlw .23 | |
3695 ; call PLED_SetColumn | |
3696 ; movlw .57 | |
3697 ; call PLED_SetRow | |
3698 ; goto word_processor | |
3699 ; | |
3700 ;PLED_MultiGF_gradient: | |
3701 ; lfsr FSR2,letter | |
3702 ; movff char_O_gradient_factor,lo | |
3703 ; bsf leftbind | |
3704 ; output_99 | |
3705 ; bcf leftbind | |
3706 ; movlw '%' | |
3707 ; movwf POSTINC2 | |
3708 ; movlw ' ' | |
3709 ; movwf POSTINC2 | |
3710 ; movlw .23 | |
3711 ; call PLED_SetColumn | |
3712 ; movlw .49 | |
3713 ; call PLED_SetRow | |
3714 ; goto word_processor | |
3715 ; | |
3716 ;PLED_MultiGF_time_at_deco: | |
3717 ; movlw .045 | |
3718 ; movwf wait_temp | |
3719 ; movff wait_temp,0x086 ; left | |
3720 ; movlw .050 | |
3721 ; movwf wait_temp | |
3722 ; movff wait_temp,0x087 ; top | |
3723 ; movlw .015 | |
3724 ; movwf wait_temp | |
3725 ; movff wait_temp,0x088 ; heightmax | |
3726 ; movff dd_oled_brightness_offset,wait_temp | |
3727 ; movff wait_temp,0x089 ; oled_brightness_offset_const | |
3728 ; lfsr FSR2,letter | |
3729 ; lfsr FSR0,0x250 | |
3730 ; movff char_O_actual_pointer,lo | |
3731 ; movf lo,W | |
3732 ; movff PLUSW0,lo | |
3733 ; bsf leftbind | |
3734 ; output_99 | |
3735 ; movlw '<' ; Textmapping to "'"! | |
3736 ; movwf POSTINC2 | |
3737 ; call main_DD2_write_incon24 | |
3738 ; movlb b'00000001' ; Back to Bank1 | |
3739 ; return | |
3740 ; | |
3741 ;PLED_MultiGF_clear_behind_depth: | |
3742 ; movlw 0x01 | |
3743 ; movwf wait_temp | |
3744 ; movff wait_temp,width ; font select left side before decpoint | |
3745 ; movff wait_temp,box_temp+5 ; font select right side decpoint and after | |
3746 ; movlw .063 | |
3747 ; movwf wait_temp | |
3748 ; movff wait_temp,box_temp+1 ; bottom row | |
3749 ; movlw .020 | |
3750 ; movwf wait_temp | |
3751 ; movff wait_temp,box_temp+2 ; start column | |
3752 ; movlw .063 | |
3753 ; movwf wait_temp | |
3754 ; movff wait_temp,box_temp+3 ; end column | |
3755 ; movlw .051 | |
3756 ; movwf wait_temp | |
3757 ; movff wait_temp,box_temp+4 ; start column dec point | |
3758 ; lfsr FSR2,letter | |
3759 ;; call DD_Main | |
3760 ; return | |
3761 ;; movlw 0x31 | |
3762 ; movwf wait_temp | |
3763 ; movff wait_temp,box_temp+1 ; row | |
3764 ; movlw 0x00 | |
3765 ; movwf wait_temp | |
3766 ; movff wait_temp,box_temp+0 ; color | |
3767 ; call DD_hline | |
3768 ; return | |
3769 ; | |
3770 | |
3771 ;PLED_MulitGF_nextentry_tissues: | |
3772 ; lfsr FSR2,letter | |
3773 ; lfsr FSR0,0x200 | |
3774 ; rlncf wait_temp,W | |
3775 ; movff PLUSW0,lo | |
3776 ; addlw .001 | |
3777 ; movff PLUSW0,hi | |
3778 ; output_16 | |
3779 ; movlw ' ' | |
3780 ; movwf POSTINC2 | |
3781 ; movlw .8 | |
3782 ; subwf temp6,F | |
3783 ; bnz PLED_MultiGF_column_ok_tissues | |
3784 ; movlw b'00001111' ; gray code | |
3785 ; movwf grayvalue | |
3786 ; movlw .21 | |
3787 ; subwf temp5,F | |
3788 ; bc PLED_MultiGF_new_row_tissues | |
3789 ; return | |
3790 ;PLED_MultiGF_new_row_tissues: | |
3791 ; movlw .48 | |
3792 ; movwf temp6 | |
3793 ;PLED_MultiGF_column_ok_tissues: | |
3794 ; movf temp5,W | |
3795 ; call PLED_SetColumn | |
3796 ; movlw .8 | |
3797 ; subwf temp6,W | |
3798 ; call PLED_SetRow | |
3799 ; call word_processor | |
3800 ; bra PLED_MultiGF_loop_tissues | |
3801 ; | |
3802 | |
3803 ;PLED_MultiGF_uart_out: | |
3804 ; call rs232_wait_tx | |
3805 ;; header ff ff | |
3806 ; movlw 0xff | |
3807 ; movwf wait_temp | |
3808 ; movff wait_temp,TXREG | |
3809 ; call rs232_wait_tx | |
3810 ; movff wait_temp,TXREG | |
3811 ; call rs232_wait_tx | |
3812 ;; 2sec counter | |
3813 ; movff 0x290,TXREG | |
3814 ; call rs232_wait_tx | |
3815 ; movff 0x291,TXREG | |
3816 ; call rs232_wait_tx | |
3817 ;; movff ,TXREG | |
3818 ;; pres_respiration | |
3819 ; movff amb_pressure,TXREG | |
3820 ; call rs232_wait_tx | |
3821 ; movff amb_pressure+1,TXREG | |
3822 ; call rs232_wait_tx | |
3823 ;; pres_surface | |
3824 ; movff last_surfpressure,TXREG | |
3825 ; call rs232_wait_tx | |
3826 ; movff last_surfpressure+1,TXREG | |
3827 ; call rs232_wait_tx | |
3828 ;; tissue pres | |
3829 ; lfsr FSR0,0x200 | |
3830 ; movlw .64 | |
3831 ; movwf wait_temp | |
3832 ;pled_multigraf_tissue_uart_loop: | |
3833 ; movff POSTINC0,TXREG | |
3834 ; call rs232_wait_tx | |
3835 ; decfsz wait_temp | |
3836 ; bra pled_multigraf_tissue_uart_loop | |
3837 ;; movff ,TXREG | |
3838 ;; call rs232_wait_tx | |
3839 ; return | |
3840 | |
3841 ;PLED_MulitGF_nextentry_debug: | |
3842 ; lfsr FSR2,letter | |
3843 ; movff wait_temp,lo | |
3844 ; output_99 | |
3845 ; movlw 0x02 | |
3846 ; movwf POSTINC2 | |
3847 ; movlw ':' | |
3848 ; movwf POSTINC2 | |
3849 ; movlw 0x02 | |
3850 ; movwf POSTINC2 | |
3851 ; lfsr FSR0,0x300 | |
3852 ; movf wait_temp,W | |
3853 ; movff PLUSW0,lo | |
3854 ; output_99 | |
3855 ; movlw ' ' | |
3856 ; movwf POSTINC2 | |
3857 ; movlw .8 | |
3858 ; subwf temp6,F | |
3859 ; bnz PLED_MultiGF_column_ok_debug | |
3860 ; movlw b'00001111' ; gray code | |
3861 ; movwf grayvalue | |
3862 ; movlw .21 | |
3863 ; subwf temp5,F | |
3864 ; bc PLED_MultiGF_new_row_debug | |
3865 ; return | |
3866 ;PLED_MultiGF_new_row_debug: | |
3867 ; movlw .48 | |
3868 ; movwf temp6 | |
3869 ;PLED_MultiGF_column_ok_debug: | |
3870 ; movf temp5,W | |
3871 ; call PLED_SetColumn | |
3872 ; movlw .8 | |
3873 ; subwf temp6,W | |
3874 ; call PLED_SetRow | |
3875 ; call word_processor | |
3876 ; bra PLED_MultiGF_loop_debug | |
3877 | |
3878 ;PLED_MultiGF_calc_tissue_counter: | |
3879 ; movlw d'8' ; gray code | |
3880 ; movwf grayvalue | |
3881 ; movff 0x290,lo | |
3882 ; movff 0x291,hi | |
3883 ; movlw '(' | |
3884 ; movwf POSTINC2 | |
3885 ; output_16 | |
3886 ; movlw ')' | |
3887 ; movwf POSTINC2 | |
3888 ; movlw .8 | |
3889 ; subwf temp6,F | |
3890 ; bnz PLED_MGF_ok_col_calc_tis_cter | |
3891 ; movlw b'00001111' ; gray code | |
3892 ; movwf grayvalue | |
3893 ; movlw .21 | |
3894 ; subwf temp5,F | |
3895 ; bc PLED_MGF_n_row_calc_tis_cter | |
3896 ; return | |
3897 ;PLED_MGF_n_row_calc_tis_cter: | |
3898 ; movlw .48 | |
3899 ; movwf temp6 | |
3900 ;PLED_MGF_ok_col_calc_tis_cter: | |
3901 ; movf temp5,W | |
3902 ; call PLED_SetColumn | |
3903 ; movlw .8 | |
3904 ; subwf temp6,W | |
3905 ; call PLED_SetRow | |
3906 ; call word_processor | |
3907 ; bra PLED_MGF_lp_calc_tis_counter | |
3908 ; | |
3909 | |
3910 ;PLED_debug_deko: | |
3911 ; movlw .009 | |
3912 ; call PLED_SetColumn | |
3913 ; movlw .008 | |
3914 ; call PLED_SetRow | |
3915 ; lfsr FSR2,letter | |
3916 ; movff char_O_deco_status,lo | |
3917 ; output_8 | |
3918 ; call word_processor | |
3919 ; | |
3920 ; movlw .009 | |
3921 ; call PLED_SetColumn | |
3922 ; movlw .016 | |
3923 ; call PLED_SetRow | |
3924 ; lfsr FSR2,letter | |
3925 ; movff char_O_array_decodepth+0,lo | |
3926 ; output_8 | |
3927 ; call word_processor | |
3928 ; return | |
3929 ; | |
3930 | |
33 | 3931 PLED_simdata_screen: ;Display Pre-Dive Screen |
3932 ; List active gases/Setpoints | |
3933 btfsc FLAG_const_ppO2_mode ; in ppO2 mode? | |
3934 bra PLED_simdata_screen3 ; Yes, display SetPoint/Sensor result list | |
3935 | |
3936 PLED_simdata_screen2: | |
3937 ostc_debug 'm' ; Sends debug-information to screen if debugmode active | |
3938 | |
3939 WIN_LEFT .0 | |
3940 WIN_FONT FT_SMALL | |
3941 bsf leftbind | |
3942 | |
3943 movlw d'2' | |
3944 movwf wait_temp ; here: stores eeprom address for gas list | |
34 | 3945 movlw d'10' |
33 | 3946 movwf waitms_temp ; here: stores row for gas list |
3947 clrf hi ; here: Gas counter | |
3948 | |
3949 PLED_simdata_screen2_loop: | |
3950 incf hi,F ; Increase Gas | |
3951 movlw d'4' | |
3952 addwf wait_temp,F ; Increase eeprom address for gas list | |
3953 | |
3954 lfsr FSR2,letter | |
3955 movlw 'G' | |
3956 movwf POSTINC2 | |
3957 movff hi,lo ; copy gas number | |
3958 output_8 ; display gas number | |
3959 movlw ':' | |
3960 movwf POSTINC2 | |
3961 movff wait_temp, EEADR; Gas #hi: %O2 - Set address in internal EEPROM | |
3962 call read_eeprom ; get byte (stored in EEDATA) | |
3963 movff EEDATA,lo ; copy to lo | |
3964 output_8 ; outputs into Postinc2! | |
3965 movlw '/' | |
3966 movwf POSTINC2 | |
3967 incf EEADR,F ; Gas #hi: %He - Set address in internal EEPROM | |
3968 call read_eeprom ; get byte (stored in EEDATA) | |
3969 movff EEDATA,lo ; copy to lo | |
3970 output_8 ; outputs into Postinc2! | |
34 | 3971 movlw ' ' |
3972 movwf POSTINC2 | |
3973 movf hi,W ; Gas number | |
3974 addlw d'27' ; -> Adress of change depth register | |
3975 call read_int_eeprom_1 | |
3976 movff EEDATA,lo ; Change depth in m | |
3977 output_99 ; outputs into Postinc2! | |
3978 movlw 'm' | |
3979 movwf POSTINC2 | |
33 | 3980 read_int_eeprom d'27' ; read flag register |
3981 movff hi,lo ; copy gas number | |
3982 PLED_simdata_screen2_loop1: | |
3983 rrcf EEDATA ; roll flags into carry | |
3984 decfsz lo,F ; max. 5 times... | |
3985 bra PLED_simdata_screen2_loop1 | |
3986 | |
3987 btfsc STATUS,C ; test carry | |
3988 bra PLED_simdata_white | |
3989 | |
3990 movlw color_grey | |
3991 call PLED_set_color ; grey out inactive gases! | |
3992 bra PLED_simdata_color_done | |
3993 | |
3994 PLED_simdata_white: | |
3995 call PLED_standard_color | |
3996 | |
3997 PLED_simdata_color_done: | |
3998 movlw d'25' | |
3999 addwf waitms_temp,F ; Increase row | |
4000 WIN_LEFT .0 | |
4001 movff waitms_temp,win_top ; Set Row | |
34 | 4002 call word_processor ; display gas |
33 | 4003 |
4004 PLED_simdata_screen2b: | |
4005 call PLED_standard_color | |
4006 | |
34 | 4007 movlw d'5' ; list all five gases |
33 | 4008 cpfseq hi ; All gases shown? |
4009 bra PLED_simdata_screen2_loop ; No | |
4010 | |
4011 return ; No, return (OC mode) | |
4012 | |
4013 PLED_simdata_screen3: | |
4014 WIN_LEFT .0 | |
4015 WIN_FONT FT_SMALL | |
4016 bsf leftbind | |
4017 | |
4018 ; list three SP in Gaslist | |
4019 movlw d'35' ; 36 = current SP position in EEPROM | |
4020 movwf wait_temp ; here: stores eeprom address for gas list | |
34 | 4021 movlw d'10' |
33 | 4022 movwf waitms_temp ; here: stores row for gas list |
4023 clrf temp5 ; here: SP counter | |
4024 | |
4025 PLED_simdata_screen3_loop: | |
4026 incf wait_temp,F ; EEPROM address | |
4027 incf temp5,F ; Increase SP | |
4028 | |
4029 movlw d'25' | |
4030 addwf waitms_temp,F ; Increase row | |
4031 WIN_LEFT .0 | |
4032 movff waitms_temp,win_top ; Set Row | |
4033 | |
4034 lfsr FSR2,letter | |
4035 movlw 'S' | |
4036 movwf POSTINC2 | |
4037 movlw 'P' | |
4038 movwf POSTINC2 | |
4039 movff temp5,lo ; copy gas number | |
4040 output_8 ; display gas number | |
4041 movlw ':' | |
4042 movwf POSTINC2 | |
4043 movlw ' ' | |
4044 movwf POSTINC2 | |
4045 movff wait_temp, EEADR; SP #hi position | |
4046 call read_eeprom ; get byte (stored in EEDATA) | |
4047 movff EEDATA,lo ; copy to lo | |
4048 clrf hi | |
4049 output_16dp d'3' ; outputs into Postinc2! | |
4050 call word_processor | |
4051 | |
4052 movlw d'3' ; list all three SP | |
4053 cpfseq temp5 ; All gases shown? | |
4054 bra PLED_simdata_screen3_loop ;no | |
4055 | |
4056 read_int_eeprom d'33' ; Read byte (stored in EEDATA) | |
4057 movff EEDATA,active_gas ; Read start gas (1-5) | |
4058 decf active_gas,W ; Gas 0-4 | |
4059 mullw d'4' | |
4060 movf PRODL,W | |
4061 addlw d'7' ; = address for He ratio | |
4062 movwf EEADR | |
4063 call read_eeprom ; Read He ratio | |
4064 movff EEDATA,hi ; And copy into hold register | |
4065 decf active_gas,W ; Gas 0-4 | |
4066 mullw d'4' | |
4067 movf PRODL,W | |
4068 addlw d'6' ; = address for O2 ratio | |
4069 movwf EEADR | |
4070 call read_eeprom ; Read O2 ratio | |
4071 movff EEDATA, lo ; O2 ratio | |
4072 | |
4073 WIN_LEFT .0 | |
34 | 4074 WIN_TOP .110 |
33 | 4075 lfsr FSR2,letter |
4076 movlw 'D' | |
4077 movwf POSTINC2 | |
4078 movlw 'i' | |
4079 movwf POSTINC2 | |
4080 movlw 'l' | |
4081 movwf POSTINC2 | |
4082 movlw ':' | |
4083 movwf POSTINC2 | |
4084 output_8 ; O2 Ratio | |
4085 movlw '/' | |
4086 movwf POSTINC2 | |
4087 movff hi,lo | |
4088 output_8 ; He Ratio | |
4089 call word_processor | |
4090 | |
4091 bcf leftbind | |
4092 return ; Return (CC Mode) | |
4093 | |
0 | 4094 |
4095 | |
4096 adjust_depth_with_salinity: ; computes salinity setting into lo:hi [mBar] | |
4097 | |
4098 btfsc simulatormode_active ; Do apply salinity in Simulatormode | |
4099 return | |
4100 | |
4101 read_int_eeprom d'26' ; Read Salinity from EEPROM | |
4102 movff EEDATA, wait_temp ; salinity | |
4103 | |
4104 movlw d'105' ; 105% ? | |
4105 cpfslt wait_temp ; Salinity higher limit | |
4106 return ; Out of limit, do not adjust lo:hi | |
4107 | |
4108 movlw d'99' ; 99% ? | |
4109 cpfsgt wait_temp ; Salinity lower limit | |
4110 return ; Out of limit, do not adjust lo:hi | |
4111 | |
4112 movff lo,xA+0 | |
4113 movff hi,xA+1 | |
4114 | |
4115 movlw d'100' | |
4116 movwf xB+0 | |
4117 clrf xB+1 | |
4118 | |
4119 call mult16x16 ;xA*xB=xC (lo:hi * 100) | |
4120 | |
4121 movff wait_temp,xB+0 ; Salinity | |
4122 clrf xB+1 | |
4123 | |
4124 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder | |
4125 | |
4126 movff xC+0,lo | |
4127 movff xC+1,hi ; restore lo and hi with updated value | |
4128 | |
4129 return |