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