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