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