Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/pled_outputs.asm @ 127:245de99d1d15
FIX SetPoint list color.
author | JeanDo |
---|---|
date | Tue, 04 Jan 2011 02:49:15 +0100 |
parents | 2907b42c195b |
children | 4c588c3d1f12 06c4899ddb4b |
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 | |
26 ; | |
0 | 27 ; known bugs: |
28 ; ToDo: More comments | |
29 | |
9 | 30 PLED_divemask_color: |
25 | 31 GETCUSTOM8 d'36' ; Divemask output color |
29 | 32 bra PLED_standard_color_0 |
9 | 33 |
25 | 34 PLED_warnings_color: |
35 GETCUSTOM8 d'37' ; Warnings output color | |
29 | 36 bra PLED_standard_color_0 |
37 | |
38 PLED_standard_color: | |
39 GETCUSTOM8 d'35' ; Standard output color | |
40 PLED_standard_color_0: ; Common entry point | |
41 movwf oled1_temp ; copy | |
42 movlw d'0' | |
43 cpfseq oled1_temp | |
44 bra PLED_standard_color_1 | |
45 bra PLED_standard_color2 | |
46 PLED_standard_color_1: | |
47 movlw d'4' | |
48 cpfseq oled1_temp | |
49 bra PLED_standard_color_2 | |
50 bra PLED_standard_color2 | |
51 PLED_standard_color_2: | |
52 movlw d'8' | |
53 cpfseq oled1_temp | |
54 bra PLED_standard_color_3 | |
55 bra PLED_standard_color2 | |
56 PLED_standard_color_3: | |
57 movlw d'192' | |
58 cpfseq oled1_temp | |
59 bra PLED_standard_color_4 | |
60 bra PLED_standard_color2 | |
61 PLED_standard_color_4: | |
62 movlw d'196' | |
63 cpfseq oled1_temp | |
64 bra PLED_standard_color_5 | |
65 bra PLED_standard_color2 | |
66 PLED_standard_color_5: | |
67 movlw d'200' | |
68 cpfseq oled1_temp | |
69 bra PLED_standard_color_6 | |
70 bra PLED_standard_color2 | |
71 PLED_standard_color_6: | |
72 movf oled1_temp,W ; Color should be OK... | |
73 call PLED_set_color | |
74 return | |
75 PLED_standard_color2: | |
77 | 76 movlw 0xFF ; Force full white. |
25 | 77 call PLED_set_color |
78 return | |
3 | 79 |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
80 PLED_color_code macro color_code_temp |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
81 movlw color_code_temp |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
82 call PLED_color_code1 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
83 endm |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
84 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
85 PLED_color_code1: ; Color-codes the output, if required |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
86 movwf debug_temp |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
87 dcfsnz debug_temp,F |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
88 bra PLED_color_code_depth ; CF43 [mBar], 16Bit |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
89 dcfsnz debug_temp,F |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
90 bra PLED_color_code_cns ; CF44 [%] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
91 dcfsnz debug_temp,F |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
92 bra PLED_color_code_gf ; CF45 [%] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
93 dcfsnz debug_temp,F |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
94 bra PLED_color_code_ppo2 ; CF46 [cBar] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
95 dcfsnz debug_temp,F |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
96 bra PLED_color_code_velocity ; CF47 [m/min] |
69 | 97 dcfsnz debug_temp,F |
98 bra PLED_color_code_ceiling ; Show warning if CF41=1 and current depth>shown ceiling | |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
99 dcfsnz debug_temp,F |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
100 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
|
101 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
102 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
103 PLED_color_code_gaslist: ; %O2 in "EEDATA" |
74 | 104 ; Check very high ppO2 manually |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
105 movff amb_pressure+0,xA+0 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
106 movff amb_pressure+1,xA+1 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
107 movlw d'10' |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
108 movwf xB+0 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
109 clrf xB+1 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
110 call div16x16 ; xC=p_amb/10 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
111 movff xC+0,xA+0 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
112 movff xC+1,xA+1 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
113 movff EEDATA,xB+0 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
114 clrf xB+1 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
115 call mult16x16 ; EEDATA * p_amb/10 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
116 |
74 | 117 tstfsz xC+2 ; char_I_O2_ratio * p_amb/10 > 65536, ppO2>6,55Bar? |
118 bra PLED_color_code_gaslist1 ; Yes, warn in warning color | |
119 | |
120 movff xC+0,sub_a+0 | |
121 movff xC+1,sub_a+1 | |
122 GETCUSTOM8 d'46' ; color-code ppO2 warning [cBar] | |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
123 mullw d'100' ; ppo2_warning_high*100 |
74 | 124 movff PRODL,sub_b+0 |
125 movff PRODH,sub_b+1 | |
126 call sub16 ; sub_c = sub_a - sub_b | |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
127 btfss neg_flag |
74 | 128 bra PLED_color_code_gaslist1; too high -> Warning Color! |
129 call PLED_standard_color | |
130 return | |
131 | |
132 PLED_color_code_gaslist1: | |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
133 call PLED_warnings_color |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
134 return |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
135 |
69 | 136 |
137 PLED_color_code_ceiling: | |
138 GETCUSTOM8 d'40' ; =1: Warn at all? | |
139 movwf lo | |
140 movlw d'1' | |
141 cpfseq lo ; =1? | |
142 bra PLED_color_code_ceiling1 ; No, Set to default color | |
143 | |
144 movff char_O_array_decodepth+0,lo ; Ceiling in m | |
145 decf lo,F ; -1 | |
146 movff rel_pressure+1,xA+1 | |
147 movff rel_pressure+0,xA+0 | |
148 movlw LOW d'100' | |
149 movwf xB+0 | |
150 clrf xB+1 ; Devide/100 -> xC+0 = Depth in m | |
151 call div16x16 ; xA/xB=xC with xA as remainder | |
152 movf xC+0,W ; Depth in m | |
153 subwf lo,W | |
154 btfsc STATUS,C | |
155 bra PLED_color_code_ceiling2 ; Set to warning color | |
156 PLED_color_code_ceiling1: | |
157 call PLED_standard_color | |
158 return | |
159 PLED_color_code_ceiling2: | |
160 call PLED_warnings_color | |
161 return | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
162 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
163 PLED_color_code_depth: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
164 movff hi,hi_temp |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
165 movff lo,lo_temp |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
166 movff rel_pressure+1,hi |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
167 movff rel_pressure+0,lo |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
168 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
|
169 movff lo,sub_a+0 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
170 movff hi,sub_a+1 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
171 GETCUSTOM15 d'43' ; Depth warn [mBar] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
172 movff lo,sub_b+0 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
173 movff hi,sub_b+1 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
174 call sub16 ; sub_c = sub_a - sub_b |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
175 btfss neg_flag |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
176 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
|
177 call PLED_standard_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
178 movff hi_temp,hi |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
179 movff lo_temp,lo ; Restore hi, lo |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
180 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
181 PLED_color_code_depth2: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
182 call PLED_warnings_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
183 movff hi_temp,hi |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
184 movff lo_temp,lo ; Restore hi, lo |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
185 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
186 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
187 PLED_color_code_cns: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
188 movff char_O_CNS_fraction,lo |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
189 GETCUSTOM8 d'44' ; CNS Warn [%] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
190 subwf lo,W |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
191 btfsc STATUS,C |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
192 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
|
193 call PLED_standard_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
194 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
195 PLED_color_code_cns2: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
196 call PLED_warnings_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
197 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
198 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
199 PLED_color_code_gf: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
200 movff char_O_gradient_factor,lo ; gradient factor |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
201 GETCUSTOM8 d'45' ; GF Warn [%] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
202 subwf lo,W |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
203 btfsc STATUS,C |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
204 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
|
205 call PLED_standard_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
206 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
207 PLED_color_code_gf2: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
208 call PLED_warnings_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
209 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
210 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
211 PLED_color_code_ppo2: |
74 | 212 ; Check very high ppO2 manually |
213 tstfsz xC+2 ; char_I_O2_ratio * p_amb/10 > 65536, ppO2>6,55Bar? | |
214 bra PLED_color_code_ppo22 ; Yes, warn in warning color | |
215 | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
216 movff xC+0,sub_a+0 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
217 movff xC+1,sub_a+1 |
74 | 218 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
|
219 mullw d'100' |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
220 movff PRODL,sub_b+0 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
221 movff PRODH,sub_b+1 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
222 call sub16 ; sub_c = sub_a - sub_b |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
223 btfss neg_flag |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
224 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
|
225 call PLED_standard_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
226 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
227 PLED_color_code_ppo22: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
228 call PLED_warnings_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
229 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
230 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
231 PLED_color_code_velocity: |
47 | 232 btfss neg_flag ; Ignore for ascend! |
233 bra PLED_color_code_velocity1 ; Skip check! | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
234 movff divA+0,lo |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
235 GETCUSTOM8 d'47' ; Velocity warn [m/min] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
236 subwf lo,W |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
237 btfsc STATUS,C |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
238 bra PLED_color_code_velocity2 ; Set to warning color |
47 | 239 PLED_color_code_velocity1: |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
240 call PLED_standard_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
241 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
242 PLED_color_code_velocity2: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
243 call PLED_warnings_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
244 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
245 |
0 | 246 ostc_debug macro debug_temp |
247 movlw debug_temp | |
248 call ostc_debug1 | |
249 endm | |
250 | |
251 ostc_debug1: | |
252 movwf debug_temp | |
253 | |
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 | |
259 movff debug_temp,debug_char+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 | |
123 | 655 STRCPY "CF11:" |
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 | |
123 | 664 STRCPY "CF12:" |
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 | |
123 | 674 STRCPY "CF29:" |
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 | |
123 | 865 STRCAT_PRINT "° " |
0 | 866 return |
867 | |
868 PLED_show_ppO2: ; Show ppO2 | |
869 ostc_debug 't' ; Sends debug-information to screen if debugmode active | |
870 WIN_TOP .120 | |
871 WIN_LEFT .0 | |
872 WIN_FONT FT_SMALL | |
74 | 873 PLED_color_code warn_ppo2 ; Color-code output (ppO2 stored in xC) |
3 | 874 |
123 | 875 STRCPY "ppO2:" |
74 | 876 |
877 ; Check very high ppO2 manually | |
878 tstfsz xC+2 ; char_I_O2_ratio * p_amb/10 > 65536, ppO2>6,55Bar? | |
879 bra PLED_show_ppO2_3 ; Yes, display fixed Value! | |
880 | |
0 | 881 movff xC+0,lo |
882 movff xC+1,hi | |
883 bsf ignore_digit4 | |
884 output_16dp d'1' | |
885 bcf ignore_digit4 | |
74 | 886 PLED_show_ppO2_2: |
123 | 887 STRCAT_PRINT " " |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
888 call PLED_standard_color |
0 | 889 return |
890 | |
74 | 891 PLED_show_ppO2_3: |
123 | 892 STRCAT ">6.6" |
74 | 893 bra PLED_show_ppO2_2 |
894 | |
0 | 895 PLED_show_ppO2_clear: ; Clear ppO2 |
896 movlw d'10' | |
897 movwf temp1 | |
898 WIN_TOP .120 | |
899 WIN_LEFT .0 | |
900 call PLED_display_clear_common_y1 | |
901 return | |
902 | |
903 PLED_active_gas_clear: ; clears active gas! | |
904 WIN_TOP .192 | |
75 | 905 WIN_LEFT .50 |
0 | 906 movlw d'5' |
907 movwf temp1 | |
908 bra PLED_display_clear_common_y1; also returns! | |
909 | |
910 PLED_active_gas_divemode: ; Displays current gas (e.g. 40/20) if a) He>0 or b) O2>Custom9 | |
911 btfsc FLAG_apnoe_mode ; Ignore in Apnoe mode | |
912 return | |
913 | |
914 btfsc multi_gf_display ; Is the Multi-GF Table displayed? | |
915 return ; Yes, No update and return! | |
916 | |
25 | 917 WIN_INVERT .0 ; Init new Wordprocessor |
918 call PLED_active_gas_divemode_show ; Show gas (Non-Inverted in all cases) | |
919 | |
920 btfss better_gas_available ;=1: A better gas is available and a gas change is advised in divemode | |
921 return ; Done. | |
922 | |
923 ; Check if Gas Output should blink when a better gas is available... | |
924 GETCUSTOM8 d'42' ; =1 if gas should blink | |
925 movwf lo | |
926 movlw d'1' | |
927 cpfseq lo ; =1? | |
928 return ; No, Done. | |
929 | |
930 btg blinking_better_gas ; Toggle blink bit... | |
931 btfss blinking_better_gas ; blink now? | |
932 return ; No, Done. | |
933 WIN_INVERT .1 ; Init new Wordprocessor | |
934 call PLED_active_gas_divemode_show ; Show gas (Non-Inverted in all cases) | |
935 WIN_INVERT .0 ; Init new Wordprocessor | |
936 return ; Done. | |
937 | |
938 PLED_active_gas_divemode_show: | |
0 | 939 ostc_debug 's' ; Sends debug-information to screen if debugmode active |
940 ; gas | |
941 WIN_TOP .192 | |
75 | 942 WIN_LEFT .50 |
0 | 943 WIN_FONT FT_SMALL |
3 | 944 call PLED_standard_color |
945 | |
0 | 946 movlw d'100' ; 100% in the tank |
947 movff char_I_N2_ratio,lo ; minus N2 | |
948 bsf STATUS,C ; set borrow bit | |
949 subfwb lo,W | |
950 movff char_I_He_ratio,lo ; minus He | |
951 bsf STATUS,C ; set borrow bit | |
952 subfwb lo,F ; =% O2 | |
953 GETCUSTOM8 d'9' ; get oxygen treshold | |
954 movff char_I_He_ratio,hi ; He ratio | |
955 cpfsgt lo | |
956 bra PLED_active_gas_divemode2 ; Check He | |
957 bra PLED_active_gas_divemode3 ; Skip He check, display gas | |
958 | |
959 PLED_active_gas_divemode2: | |
960 tstfsz hi ; He = 0 % | |
961 bra PLED_active_gas_divemode3 ; display gas | |
962 ; O2 below treshold, He=0 -> Skip display! | |
963 movlw d'5' | |
964 movwf temp1 | |
965 bra PLED_display_clear_common_y1 ; also returns! | |
966 | |
967 PLED_active_gas_divemode3: | |
968 movlw d'21' | |
969 cpfseq lo ; Air? (O2=21%) | |
970 bra PLED_active_gas_divemode4 ; No! | |
971 tstfsz hi ; Air? (He=0%) | |
972 bra PLED_active_gas_divemode4 ; No! | |
973 | |
974 ; Yes, display "Air" instead of 21/0 | |
975 lfsr FSR2,letter | |
8 | 976 OUTPUTTEXTH d'264' ;"Air " |
977 movlw ' ' | |
978 btfsc better_gas_available ;=1: A better gas is available and a gas change is advised in divemode | |
979 movlw '*' | |
980 movwf POSTINC2 | |
0 | 981 call word_processor |
25 | 982 return |
0 | 983 |
984 PLED_active_gas_divemode4: | |
985 lfsr FSR2,letter | |
986 bsf leftbind ; left orientated output | |
987 output_8 ; O2 ratio is still in "lo" | |
123 | 988 PUTC '/' |
0 | 989 movff char_I_He_ratio,lo ; copy He ratio into lo |
990 output_8 | |
991 movlw ' ' | |
8 | 992 btfsc better_gas_available ;=1: A better gas is available and a gas change is advised in divemode |
993 movlw '*' | |
0 | 994 movwf POSTINC2 |
995 bcf leftbind | |
996 call word_processor | |
25 | 997 return |
998 | |
17 | 999 |
0 | 1000 |
1001 PLED_display_decotype_surface: | |
1002 WIN_LEFT .85 | |
1003 WIN_FONT FT_SMALL | |
1004 WIN_INVERT .0 ; Init new Wordprocessor | |
123 | 1005 call PLED_standard_color |
1006 | |
0 | 1007 clrf EEADRH |
1008 read_int_eeprom d'34' ; Read deco data | |
1009 tstfsz EEDATA | |
1010 bra show_decotype_surface2 | |
1011 | |
1012 ;ZH-L16 | |
1013 WIN_TOP .125 | |
123 | 1014 STRCPY_PRINT "O" |
1015 | |
0 | 1016 WIN_TOP .150 |
123 | 1017 STRCPY_PRINT "C" |
0 | 1018 return |
123 | 1019 |
0 | 1020 show_decotype_surface2: |
1021 decf EEDATA,F | |
1022 tstfsz EEDATA | |
1023 bra show_decotype_surface3 | |
1024 ; Gauge | |
1025 return | |
1026 | |
1027 show_decotype_surface3: | |
123 | 1028 decf EEDATA,F |
1029 tstfsz EEDATA | |
1030 bra show_decotype_surface4 | |
1031 ; const. ppO2 | |
1032 WIN_TOP .125 | |
1033 call PLED_standard_color | |
1034 | |
1035 STRCPY_PRINT "C" | |
1036 | |
1037 WIN_TOP .150 | |
1038 call word_processor ; Twice the same string. | |
1039 return | |
1040 | |
0 | 1041 show_decotype_surface4: |
1042 decf EEDATA,F | |
1043 tstfsz EEDATA | |
1044 bra show_decotype_surface5 | |
1045 ; Apnoe | |
1046 return | |
123 | 1047 |
0 | 1048 show_decotype_surface5: |
1049 show_decotype_surface6: | |
123 | 1050 decf EEDATA,F |
1051 tstfsz EEDATA | |
1052 bra show_decotype_surface6 | |
1053 ; Multi-GF OC | |
1054 WIN_TOP .125 | |
1055 STRCPY_PRINT "G" | |
1056 | |
1057 WIN_TOP .150 | |
1058 STRCPY_PRINT "F" | |
1059 return | |
0 | 1060 |
121
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1061 ;----------------------------------------------------------------------------- |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1062 ; 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
|
1063 ; 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
|
1064 ; Trashes: lo |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1065 ; New v1.44se |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1066 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
|
1067 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
|
1068 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
|
1069 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1070 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
|
1071 movf EEDATA,W |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1072 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
|
1073 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
|
1074 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1075 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
|
1076 addwf lo,W |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1077 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
|
1078 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
|
1079 clrf WREG |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1080 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
|
1081 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
|
1082 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1083 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
|
1084 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
|
1085 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
|
1086 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
|
1087 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
|
1088 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1089 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
|
1090 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1091 PLED_white_gas: |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1092 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
|
1093 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
|
1094 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1095 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 movlw color_grey |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1097 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
|
1098 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1099 ;----------------------------------------------------------------------------- |
123 | 1100 ; Display Pre-Dive Screen |
1101 | |
1102 PLED_pre_dive_screen: | |
13 | 1103 ; List active gases/Setpoints |
1104 | |
1105 btfsc FLAG_const_ppO2_mode ; in ppO2 mode? | |
1106 bra PLED_pre_dive_screen3 ; Yes, display SetPoint/Sensor result list | |
1107 | |
1108 PLED_pre_dive_screen2: | |
1109 ostc_debug 'm' ; Sends debug-information to screen if debugmode active | |
1110 | |
1111 WIN_LEFT .90 | |
1112 WIN_FONT FT_SMALL | |
1113 bsf leftbind | |
1114 | |
1115 movlw d'2' | |
1116 movwf wait_temp ; here: stores eeprom address for gas list | |
1117 movlw d'0' | |
1118 movwf waitms_temp ; here: stores row for gas list | |
1119 clrf hi ; here: Gas counter | |
1120 | |
1121 PLED_pre_dive_screen2_loop: | |
1122 incf hi,F ; Increase Gas | |
1123 movlw d'4' | |
1124 addwf wait_temp,F ; Increase eeprom address for gas list | |
1125 | |
123 | 1126 STRCPY "G" |
13 | 1127 movff hi,lo ; copy gas number |
1128 output_8 ; display gas number | |
123 | 1129 STRCAT ": " |
13 | 1130 movff wait_temp, EEADR; Gas #hi: %O2 - Set address in internal EEPROM |
1131 call read_eeprom ; get byte (stored in EEDATA) | |
1132 movff EEDATA,lo ; copy to lo | |
1133 output_8 ; outputs into Postinc2! | |
123 | 1134 PUTC '/' |
13 | 1135 incf EEADR,F ; Gas #hi: %He - Set address in internal EEPROM |
1136 call read_eeprom ; get byte (stored in EEDATA) | |
1137 movff EEDATA,lo ; copy to lo | |
1138 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
|
1139 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1140 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
|
1141 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
|
1142 |
13 | 1143 read_int_eeprom d'33' ; Read start gas (1-5) |
1144 movf EEDATA,W | |
1145 cpfseq hi ; Current Gas the active gas? | |
1146 bra PLED_pre_dive_screen2a | |
1147 bra PLED_pre_dive_screen2b | |
1148 | |
1149 PLED_pre_dive_screen2a: | |
1150 movlw d'25' | |
1151 addwf waitms_temp,F ; Increase row | |
1152 WIN_LEFT .90 | |
1153 movff waitms_temp,win_top ; Set Row | |
1154 call word_processor ; No, display gas | |
1155 | |
1156 PLED_pre_dive_screen2b: | |
1157 movlw d'5' ; list all four (remaining) gases | |
1158 cpfseq hi ; All gases shown? | |
1159 bra PLED_pre_dive_screen2_loop ; No | |
1160 | |
1161 return ; No, return (OC mode) | |
1162 | |
1163 PLED_pre_dive_screen3: | |
1164 WIN_LEFT .90 | |
1165 WIN_FONT FT_SMALL | |
1166 bsf leftbind | |
127 | 1167 call PLED_standard_color |
13 | 1168 |
1169 ; list three SP in Gaslist | |
1170 movlw d'35' ; 36 = current SP position in EEPROM | |
1171 movwf wait_temp ; here: stores eeprom address for gas list | |
1172 movlw d'0' | |
1173 movwf waitms_temp ; here: stores row for gas list | |
124 | 1174 clrf decoplan_index ; here: SP counter |
13 | 1175 |
1176 PLED_pre_dive_screen3_loop: | |
1177 incf wait_temp,F ; EEPROM address | |
124 | 1178 incf decoplan_index,F ; Increase SP |
13 | 1179 |
1180 movlw d'25' | |
1181 addwf waitms_temp,F ; Increase row | |
1182 WIN_LEFT .90 | |
1183 movff waitms_temp,win_top ; Set Row | |
1184 | |
123 | 1185 STRCPY "SP" |
124 | 1186 movff decoplan_index,lo ; copy gas number |
13 | 1187 output_8 ; display gas number |
123 | 1188 STRCAT ": " |
13 | 1189 movff wait_temp, EEADR; SP #hi position |
1190 call read_eeprom ; get byte (stored in EEDATA) | |
1191 movff EEDATA,lo ; copy to lo | |
1192 clrf hi | |
1193 output_16dp d'3' ; outputs into Postinc2! | |
1194 call word_processor | |
1195 | |
1196 movlw d'3' ; list all three SP | |
124 | 1197 cpfseq decoplan_index ; All gases shown? |
13 | 1198 bra PLED_pre_dive_screen3_loop ;no |
1199 | |
19 | 1200 read_int_eeprom d'33' ; Read byte (stored in EEDATA) |
1201 movff EEDATA,active_gas ; Read start gas (1-5) | |
1202 decf active_gas,W ; Gas 0-4 | |
1203 mullw d'4' | |
1204 movf PRODL,W | |
1205 addlw d'6' ; = address for O2 ratio | |
1206 movwf EEADR | |
127 | 1207 call read_eeprom ; Read O2 ratio |
1208 movff EEDATA, lo ; O2 ratio | |
1209 incf EEADR,F ; = address for He | |
1210 call read_eeprom ; Read He ratio | |
1211 movff EEDATA,hi ; And copy into hold register | |
19 | 1212 |
1213 WIN_LEFT .90 | |
1214 WIN_TOP .100 | |
123 | 1215 STRCPY "Dil:" |
19 | 1216 output_8 ; O2 Ratio |
123 | 1217 PUTC '/' |
19 | 1218 movff hi,lo |
1219 output_8 ; He Ratio | |
1220 call word_processor | |
1221 | |
13 | 1222 bcf leftbind |
1223 return ; Return (CC Mode) | |
1224 | |
0 | 1225 PLED_active_gas_surfmode: ; Displays start gas/SP 1 |
1226 ostc_debug 'q' ; Sends debug-information to screen if debugmode active | |
1227 | |
1228 btfsc FLAG_apnoe_mode ; In Apnoe mode? | |
1229 return ; Yes, return | |
1230 | |
1231 btfsc gauge_mode ; In Gauge mode? | |
1232 return ; Yes, return | |
1233 | |
1234 btfss FLAG_const_ppO2_mode ; are we in const. ppO2 mode? | |
1235 bra PLED_active_gas_surfmode2 ; No, display gases | |
1236 | |
1237 ; In CC Mode | |
1238 WIN_TOP .135 | |
1239 WIN_LEFT .90 | |
1240 WIN_FONT FT_SMALL | |
1241 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1242 call PLED_standard_color |
1243 | |
0 | 1244 lfsr FSR2,letter |
1245 read_int_eeprom d'36' | |
1246 movff EEDATA,lo ; copy to lo | |
1247 clrf hi | |
1248 output_16dp d'3' ; outputs into Postinc2! | |
1249 bcf leftbind | |
123 | 1250 |
1251 STRCAT_PRINT "Bar" | |
0 | 1252 bra PLED_active_gas_surfmode_exit |
1253 | |
1254 PLED_active_gas_surfmode2: | |
1255 WIN_TOP .130 | |
1256 WIN_LEFT .100 | |
1257 WIN_FONT FT_MEDIUM | |
1258 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1259 call PLED_standard_color |
1260 | |
0 | 1261 |
1262 read_int_eeprom d'33' ; Read byte (stored in EEDATA) | |
1263 movff EEDATA,active_gas ; Read start gas (1-5) | |
1264 | |
1265 decf active_gas,W ; Gas 0-4 | |
1266 mullw d'4' | |
1267 movf PRODL,W | |
1268 addlw d'7' ; = address for He ratio | |
1269 movwf EEADR | |
1270 call read_eeprom ; Read He ratio | |
1271 movff EEDATA,char_I_He_ratio ; And copy into hold register | |
1272 | |
1273 decf active_gas,W ; Gas 0-4 | |
1274 mullw d'4' | |
1275 movf PRODL,W | |
1276 addlw d'6' ; = address for O2 ratio | |
1277 movwf EEADR | |
1278 call read_eeprom ; Read O2 ratio | |
1279 movff EEDATA, char_I_O2_ratio ; O2 ratio | |
1280 movff char_I_He_ratio, wait_temp ; copy into bank1 register | |
1281 bsf STATUS,C ; Borrow bit | |
1282 movlw d'100' ; 100% | |
1283 subfwb wait_temp,W ; minus He | |
1284 bsf STATUS,C ; Borrow bit | |
1285 subfwb EEDATA,F ; minus O2 | |
1286 movff EEDATA, char_I_N2_ratio ; = N2! | |
1287 | |
1288 movlw d'100' ; 100% in the tank | |
1289 movff char_I_N2_ratio,lo ; minus N2 | |
1290 bsf STATUS,C ; set borrow bit | |
1291 subfwb lo,W | |
1292 movff char_I_He_ratio,lo ; minus He | |
1293 bsf STATUS,C ; set borrow bit | |
1294 subfwb lo,F ; =% O2 | |
1295 | |
1296 movff char_I_He_ratio,hi ; Copy into Bank1 register | |
1297 | |
1298 movlw d'21' | |
1299 cpfseq lo ; Air? (O2=21%) | |
1300 bra PLED_active_gas_surfmode4 ; No! | |
1301 tstfsz hi ; Air? (He=0%) | |
1302 bra PLED_active_gas_surfmode4 ; No! | |
1303 | |
1304 ; Yes, display "Air" instead of 21/0 | |
1305 DISPLAYTEXTH d'265' ;"Air ", y-scale=2 | |
1306 bra PLED_active_gas_surfmode_exit | |
1307 | |
1308 PLED_active_gas_surfmode4: | |
1309 lfsr FSR2,letter | |
1310 bsf leftbind ; left orientated output | |
81
31fa973a70fd
Kludges to emulate inexisting devices when debugged with the MPLAB software SIMulator.
JeanDo
parents:
77
diff
changeset
|
1311 output_99 ; O2 ratio is still in "lo" |
123 | 1312 PUTC '/' |
0 | 1313 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
|
1314 output_99 |
0 | 1315 bcf leftbind |
1316 call word_processor | |
1317 bra PLED_active_gas_surfmode_exit | |
1318 | |
1319 PLED_active_gas_surfmode_exit: | |
123 | 1320 ; WIN_FRAME_BLACK .122, .175, .82, .159 |
0 | 1321 return |
1322 | |
1323 PLED_confirmbox: | |
123 | 1324 WIN_BOX_BLACK .68, .146, .34, .101 |
1325 WIN_FRAME_STD .70, .144, .35, .100 | |
1326 | |
0 | 1327 DISPLAYTEXT .143 ; Confirm: |
1328 DISPLAYTEXT .145 ; Cancel | |
1329 DISPLAYTEXT .146 ; OK! | |
1330 | |
1331 movlw d'1' | |
1332 movwf menupos | |
1333 | |
1334 PLED_confirmbox2: | |
123 | 1335 WIN_BOX_BLACK .96, .143, .39, .51 |
0 | 1336 |
1337 movff menupos,temp1 | |
1338 movlw d'96' | |
1339 dcfsnz temp1,F | |
1340 movlw d'96' | |
1341 dcfsnz temp1,F | |
1342 movlw d'120' | |
1343 movff WREG,win_top | |
1344 WIN_LEFT .39 | |
1345 WIN_FONT FT_SMALL | |
1346 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1347 call PLED_standard_color |
1348 | |
123 | 1349 STRCPY_PRINT "\xB7" |
0 | 1350 |
1351 bcf sleepmode ; clear some flags | |
1352 bcf menubit2 | |
1353 bcf menubit3 | |
1354 bcf switch_right | |
1355 bcf switch_left | |
1356 clrf timeout_counter2 | |
1357 WAITMS d'100' | |
1358 | |
1359 PLED_confirmbox_loop: | |
1360 call check_switches_logbook | |
1361 | |
1362 btfsc menubit3 ; SET/MENU? | |
1363 bra PLED_confirmbox_move_cursor; Move Cursor | |
1364 btfsc menubit2 ; ENTER? | |
1365 bra PLED_confirmbox_menu_do ; Do task | |
1366 | |
1367 btfsc onesecupdate | |
1368 call timeout_surfmode ; timeout | |
1369 | |
1370 btfsc onesecupdate | |
1371 call set_dive_modes ; check, if divemode must be entered | |
1372 bcf onesecupdate ; one second update | |
1373 | |
1374 btfsc sleepmode ; Timeout? | |
1375 bra PLED_confirmbox_cancel ; back with cancel | |
1376 btfsc divemode | |
1377 bra PLED_confirmbox_cancel ; back with cancel | |
1378 | |
1379 bra PLED_confirmbox_loop ; wait for something to do | |
1380 | |
1381 PLED_confirmbox_cancel: | |
1382 retlw .0 | |
1383 PLED_confirmbox_ok: | |
1384 retlw .1 | |
1385 | |
1386 PLED_confirmbox_menu_do: | |
1387 dcfsnz menupos,F | |
1388 bra PLED_confirmbox_cancel | |
1389 dcfsnz menupos,F | |
1390 bra PLED_confirmbox_ok | |
1391 bra PLED_confirmbox_cancel | |
1392 | |
1393 PLED_confirmbox_move_cursor: | |
1394 incf menupos,F | |
1395 movlw d'3' ; number of menu options+1 | |
1396 cpfseq menupos ; =limit? | |
1397 bra PLED_confirmbox_move_cursor2 ; No! | |
1398 movlw d'1' ; Yes, reset to position 1! | |
1399 movwf menupos | |
1400 PLED_confirmbox_move_cursor2: | |
1401 bra PLED_confirmbox2 ; Return to Profile Menu, also updates cursor | |
1402 | |
1403 | |
1404 PLED_depth: | |
1405 ostc_debug 'r' ; Sends debug-information to screen if debugmode active | |
1406 movff rel_pressure+1,hi | |
1407 movff rel_pressure+0,lo | |
1408 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mBar] | |
1409 | |
1410 movlw .039 | |
1411 cpfslt hi | |
1412 bra depth_greater_99_84mtr | |
1413 | |
1414 btfsc depth_greater_100m ; Was depth>100m during last call | |
1415 call PLED_clear_depth ; Yes, clear depth area | |
1416 bcf depth_greater_100m ; Do this once only... | |
1417 | |
1418 lfsr FSR2,letter | |
1419 | |
1420 movlw HIGH d'1000' | |
1421 movwf sub_a+1 | |
1422 movlw LOW d'1000' | |
1423 movwf sub_a+0 | |
1424 movff hi,sub_b+1 | |
1425 movff lo,sub_b+0 | |
1426 incf sub_b+0,F | |
1427 movlw d'0' | |
1428 addwfc sub_b+1,F ; Add 1mBar offset | |
1429 call sub16 ; sub_c = sub_a - sub_b | |
1430 btfss neg_flag ; Depth lower then 10m? | |
1431 rcall depth_less_10mtr ; Yes, add extra space | |
1432 | |
1433 WIN_TOP .24 | |
1434 WIN_LEFT .0 | |
1435 WIN_FONT FT_LARGE | |
1436 WIN_INVERT .0 ; Init new Wordprocessor | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
1437 PLED_color_code warn_depth ; Color-code the output |
0 | 1438 |
1439 movlw HIGH d'99' | |
1440 movwf sub_a+1 | |
1441 movlw LOW d'99' | |
1442 movwf sub_a+0 | |
1443 movff hi,sub_b+1 | |
1444 movff lo,sub_b+0 | |
1445 call sub16 ; sub_c = sub_a - sub_b | |
1446 btfss neg_flag ; Depth lower then 1m? | |
1447 bra pled_depth2 ; Yes, display manual Zero | |
1448 | |
1449 bsf leftbind | |
1450 bsf ignore_digit4 | |
1451 output_16 ; Full meters in Big font | |
1452 bcf leftbind | |
1453 bra pled_depth3 | |
1454 | |
1455 pled_depth2: | |
123 | 1456 PUTC '0' |
1457 | |
0 | 1458 pled_depth3: |
1459 call word_processor | |
1460 bcf ignore_digit4 | |
1461 | |
1462 WIN_FONT FT_MEDIUM | |
1463 WIN_TOP .50 | |
1464 WIN_LEFT .40 | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
1465 PLED_color_code warn_depth ; Color-code the output |
0 | 1466 |
1467 movff rel_pressure+1,hi | |
1468 movff rel_pressure+0,lo | |
1469 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mBar] | |
123 | 1470 |
1471 STRCPY "." | |
0 | 1472 |
1473 movlw HIGH d'9' | |
1474 movwf sub_a+1 | |
1475 movlw LOW d'9' | |
1476 movwf sub_a+0 | |
1477 movff hi,sub_b+1 | |
1478 movff lo,sub_b+0 | |
1479 call sub16 ; sub_c = sub_a - sub_b | |
1480 btfss neg_flag ; Depth lower then 0.1m? | |
1481 bra pled_depth4 ; Yes, display manual Zero | |
1482 | |
1483 movlw d'4' | |
1484 movwf ignore_digits | |
1485 bsf ignore_digit5 | |
1486 output_16dp d'0' | |
1487 bra pled_depth5 | |
1488 | |
1489 pled_depth4: | |
123 | 1490 PUTC '0' |
0 | 1491 |
1492 pled_depth5: | |
1493 call word_processor ; decimeters in medium font | |
1494 bcf ignore_digit5 | |
1495 WIN_FONT FT_SMALL | |
1496 return | |
1497 | |
1498 depth_greater_99_84mtr: ; Display only in full meters | |
1499 btfss depth_greater_100m ; Is depth>100m already? | |
1500 call PLED_clear_depth ; No, clear depth area and set flag | |
1501 ; Depth is already in hi:lo | |
1502 ; Show depth in Full meters | |
1503 ; That means ignore figure 4 and 5 | |
1504 lfsr FSR2,letter | |
1505 WIN_TOP .24 | |
1506 WIN_LEFT .0 | |
1507 WIN_FONT FT_LARGE | |
1508 WIN_INVERT .0 ; Init new Wordprocessor | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
1509 PLED_color_code warn_depth ; Color-code the output |
3 | 1510 |
0 | 1511 bsf ignore_digit4 |
1512 bsf leftbind | |
1513 output_16 | |
1514 bcf leftbind | |
1515 call word_processor | |
1516 bcf ignore_digit4 | |
1517 WIN_FONT FT_SMALL | |
1518 return | |
1519 | |
1520 depth_less_10mtr: | |
123 | 1521 PUTC ' ' |
0 | 1522 return |
1523 | |
1524 PLED_clear_depth ; No, clear depth area and set flag | |
123 | 1525 WIN_BOX_BLACK .24, .90, .0, .90 |
0 | 1526 bsf depth_greater_100m ; Set Flag |
1527 return | |
1528 | |
1529 PLED_desaturation_time: | |
1530 ostc_debug 'h' | |
1531 WIN_TOP .150 | |
56 | 1532 WIN_LEFT .1 |
0 | 1533 WIN_FONT FT_SMALL |
1534 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1535 call PLED_standard_color |
1536 | |
0 | 1537 lfsr FSR2,letter |
1538 OUTPUTTEXT d'14' ; Desat | |
123 | 1539 PUTC ' ' |
0 | 1540 movff int_O_desaturation_time+0,lo ; divide by 60... |
1541 movff int_O_desaturation_time+1,hi | |
1542 call convert_time ; converts hi:lo in minutes to hours (hi) and minutes (lo) | |
1543 bsf leftbind | |
1544 movf lo,W | |
1545 movff hi,lo | |
1546 movwf hi ; exchange lo and hi... | |
1547 output_8 ; Hours | |
123 | 1548 PUTC ':' |
0 | 1549 movff hi,lo ; Minutes |
1550 output_99x | |
1551 bcf leftbind | |
1552 call word_processor | |
1553 return | |
1554 | |
1555 PLED_nofly_time: | |
1556 ostc_debug 'g' | |
1557 WIN_TOP .125 | |
56 | 1558 WIN_LEFT .1 |
0 | 1559 WIN_FONT FT_SMALL |
1560 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1561 call PLED_standard_color |
1562 | |
0 | 1563 lfsr FSR2,letter |
1564 OUTPUTTEXT d'35' ; NoFly | |
123 | 1565 PUTC ' ' |
0 | 1566 movff nofly_time+0,lo ; divide by 60... |
1567 movff nofly_time+1,hi | |
1568 call convert_time ; converts hi:lo in minutes to hours (hi) and minutes (lo) | |
1569 bsf leftbind | |
1570 movf lo,W | |
1571 movff hi,lo | |
1572 movwf hi ; exchange lo and hi... | |
1573 output_8 ; Hours | |
123 | 1574 PUTC ':' |
0 | 1575 movff hi,lo ; Minutes |
1576 decf lo,F | |
1577 btfsc lo,7 ; keep Nofly time | |
1578 clrf lo | |
1579 output_99x | |
1580 bcf leftbind | |
1581 call word_processor | |
1582 return | |
1583 | |
1584 | |
1585 update_surf_press: | |
1586 btfsc premenu ; Do not update when "Menu?" is displayed! | |
1587 return | |
1588 | |
1589 ostc_debug 'b' ; Sends debug-information to screen if debugmode active | |
1590 WIN_TOP .25 | |
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 movff amb_pressure+0,lo | |
1598 movff amb_pressure+1,hi | |
1599 bsf leftbind | |
1600 output_16 | |
1601 bcf leftbind | |
123 | 1602 STRCAT_PRINT "mbar " |
0 | 1603 return |
1604 | |
1605 update_batt_voltage_divemode: | |
1606 | |
1607 update_batt_voltage: | |
1608 ostc_debug 'f' | |
1609 | |
1610 GETCUSTOM8 d'31' ; =1 if battery voltage should be visible | |
1611 movwf lo | |
1612 movlw d'1' | |
1613 cpfseq lo ; =1? | |
1614 bra update_batt_voltage2 ; No, show symbol | |
1615 | |
1616 WIN_TOP .175 | |
56 | 1617 WIN_LEFT .1 |
0 | 1618 WIN_FONT FT_SMALL |
1619 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1620 call PLED_standard_color |
1621 | |
0 | 1622 lfsr FSR2,letter |
1623 movff batt_voltage+0,lo | |
1624 movff batt_voltage+1,hi | |
1625 movlw d'1' | |
1626 movwf ignore_digits | |
1627 bsf ignore_digit5 ; do not display mV | |
1628 bsf leftbind | |
1629 output_16dp d'2' ; e.g. 3.45V | |
1630 bcf leftbind | |
123 | 1631 STRCAT_PRINT "V " |
0 | 1632 return |
1633 | |
1634 update_batt_voltage2: | |
123 | 1635 WIN_FRAME_STD .174, .194, .1, .32 |
0 | 1636 |
25 | 1637 ; 4100-Vbatt |
1638 movlw LOW d'4100' | |
0 | 1639 movwf sub_a+0 |
25 | 1640 movlw HIGH d'4100' |
0 | 1641 movwf sub_a+1 |
1642 movff batt_voltage+0,sub_b+0 | |
1643 movff batt_voltage+1,sub_b+1 | |
1644 call sub16 ; sub_c = sub_a - sub_b | |
25 | 1645 ; Battery full (>4100mV? |
0 | 1646 btfsc neg_flag |
1647 bra update_batt_voltage2_full | |
1648 | |
25 | 1649 ; Vbatt-3500 |
1650 movlw LOW d'3500' | |
0 | 1651 movwf sub_b+0 |
25 | 1652 movlw HIGH d'3500' |
0 | 1653 movwf sub_b+1 |
1654 movff batt_voltage+0,sub_a+0 | |
1655 movff batt_voltage+1,sub_a+1 | |
1656 call sub16 ; sub_c = sub_a - sub_b | |
25 | 1657 ; Battery lower then 3500mV? |
0 | 1658 btfsc neg_flag |
1659 bra update_batt_voltage2_empty | |
1660 | |
25 | 1661 ; Battery is between 3500 and 4100mV |
0 | 1662 ; sub_c:2 is between 0 and 600 |
1663 movff sub_c+0,xA+0 | |
1664 movff sub_c+1,xA+1 | |
1665 movlw d'20' | |
1666 movwf xB+0 | |
1667 clrf xB+1 | |
1668 call div16x16 ;xA/xB=xC with xA as remainder | |
1669 ; xC is between 0 and 30 | |
1670 movff xC+0,wait_temp ;save value | |
56 | 1671 incf wait_temp,F ; +1 |
1672 | |
1673 movlw d'3' | |
0 | 1674 cpfsgt wait_temp |
56 | 1675 movwf wait_temp ; Minimum = 3 |
0 | 1676 |
1677 update_batt_voltage2a: | |
123 | 1678 WIN_BOX_STD .181, .187, .32, .34 |
25 | 1679 |
0 | 1680 update_batt_voltage3: |
25 | 1681 GETCUSTOM8 d'34' ; Color battery |
123 | 1682 call PLED_set_color |
1683 | |
25 | 1684 movlw .176 |
123 | 1685 movff WREG,win_top ; row top (0-239) |
1686 movlw .192-.176 | |
1687 movff WREG,win_height ; row bottom (0-239) | |
56 | 1688 movlw .2 |
123 | 1689 movff WREG,win_leftx2 ; column left (0-159) |
1690 movff wait_temp,win_width ; column right (0-159) | |
0 | 1691 call PLED_box |
1692 | |
25 | 1693 call PLED_standard_color |
0 | 1694 return |
1695 | |
1696 update_batt_voltage2_empty: | |
1697 movlw d'1' | |
1698 movwf wait_temp | |
1699 bra update_batt_voltage2a | |
1700 | |
1701 update_batt_voltage2_full: | |
1702 movlw d'30' | |
1703 movwf wait_temp | |
25 | 1704 bra update_batt_voltage2a |
0 | 1705 |
1706 PLED_convert_date: ; converts into "DD/MM/YY" or "MM/DD/YY" or "YY/MM/DD" in postinc2 | |
1707 read_int_eeprom d'91' ; Read date format (0=MMDDYY, 1=DDMMYY, 2=YYMMDD) | |
1708 tstfsz EEDATA | |
1709 bra PLED_convert_date1 | |
1710 | |
1711 ; Use MMDDYY | |
1712 movff convert_value_temp+0,lo ;month | |
1713 bsf leftbind | |
1714 output_99x | |
1715 bcf leftbind | |
123 | 1716 PUTC '/' |
0 | 1717 movff convert_value_temp+1,lo ;day |
1718 bra PLED_convert_date1_common ;year | |
1719 | |
1720 PLED_convert_date1: | |
1721 read_int_eeprom d'91' ; Read date format (0=MMDDYY, 1=DDMMYY, 2=YYMMDD) | |
1722 decfsz EEDATA,F | |
1723 bra PLED_convert_date2 | |
1724 | |
1725 ; Use DDMMYY | |
1726 movff convert_value_temp+1,lo ;day | |
1727 bsf leftbind | |
1728 output_99x | |
1729 bcf leftbind | |
123 | 1730 PUTC '/' |
0 | 1731 movff convert_value_temp+0,lo ;month |
1732 | |
1733 PLED_convert_date1_common: | |
1734 bsf leftbind | |
1735 output_99x | |
1736 bcf leftbind | |
123 | 1737 PUTC '/' |
0 | 1738 movff convert_value_temp+2,lo ;year |
1739 bsf leftbind | |
1740 output_99x | |
1741 return | |
1742 | |
1743 PLED_convert_date2: | |
1744 ; Use YYMMDD | |
1745 movff convert_value_temp+2,lo ;year | |
1746 bsf leftbind | |
1747 output_99x | |
1748 bcf leftbind | |
123 | 1749 PUTC '/' |
0 | 1750 movff convert_value_temp+0,lo ;month |
1751 bsf leftbind | |
1752 output_99x | |
1753 bcf leftbind | |
123 | 1754 PUTC '/' |
0 | 1755 movff convert_value_temp+1,lo ;day |
1756 bsf leftbind | |
1757 output_99x | |
1758 return | |
1759 | |
1760 PLED_convert_date_short: ; converts into "DD/MM" or "MM/DD" or "MM/DD" in postinc2 | |
1761 read_int_eeprom d'91' ; Read date format (0=MMDDYY, 1=DDMMYY, 2=YYMMDD) | |
1762 tstfsz EEDATA | |
1763 bra PLED_convert_date_short1 | |
1764 | |
1765 ; Use MMDDYY | |
1766 PLED_convert_date_short_common: | |
1767 movff convert_value_temp+0,lo ;month | |
1768 bsf leftbind | |
1769 output_99x | |
1770 bcf leftbind | |
123 | 1771 PUTC '/' |
0 | 1772 movff convert_value_temp+1,lo ;day |
1773 bsf leftbind | |
1774 output_99x | |
1775 bcf leftbind | |
1776 return | |
1777 | |
1778 PLED_convert_date_short1: | |
1779 read_int_eeprom d'91' ; Read date format (0=MMDDYY, 1=DDMMYY, 2=YYMMDD) | |
1780 decfsz EEDATA,F | |
1781 bra PLED_convert_date_short_common ; Use YYMMDD | |
1782 | |
1783 ; Use DDMMYY | |
1784 movff convert_value_temp+1,lo ;day | |
1785 bsf leftbind | |
1786 output_99x | |
1787 bcf leftbind | |
123 | 1788 PUTC '/' |
0 | 1789 movff convert_value_temp+0,lo ;month |
1790 bsf leftbind | |
1791 output_99x | |
1792 bcf leftbind | |
1793 return | |
1794 | |
1795 update_date: | |
1796 ostc_debug 'd' | |
1797 WIN_TOP .75 | |
56 | 1798 WIN_LEFT .1 |
0 | 1799 WIN_FONT FT_SMALL |
1800 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1801 call PLED_standard_color |
1802 | |
0 | 1803 lfsr FSR2,letter |
1804 | |
1805 movff month,convert_value_temp+0 | |
1806 movff day,convert_value_temp+1 | |
1807 movff year,convert_value_temp+2 | |
1808 call PLED_convert_date ; converts into "DD/MM/YY" or "MM/DD/YY" or "YY/MM/DD" in postinc2 | |
1809 call word_processor | |
1810 return | |
1811 | |
1812 PLED_menu_clear: | |
123 | 1813 WIN_BOX_BLACK .0, .26, .65, .100 |
0 | 1814 return |
1815 | |
1816 PLED_max_pressure: | |
1817 ostc_debug 'p' ; Sends debug-information to screen if debugmode active | |
75 | 1818 movff max_pressure+0,lo |
1819 movff max_pressure+1,hi | |
1820 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mBar] | |
1821 | |
1822 movlw .039 | |
1823 cpfslt hi | |
1824 bra maxdepth_greater_99_84mtr | |
1825 | |
1826 ; Display normal "xx.y" | |
1827 lfsr FSR2,letter | |
1828 call PLED_standard_color | |
0 | 1829 WIN_TOP .184 |
1830 WIN_LEFT .0 | |
1831 WIN_FONT FT_MEDIUM | |
1832 WIN_INVERT .0 ; Init new Wordprocessor | |
1833 bsf leftbind | |
1834 bsf ignore_digit5 ; do not display 1cm depth | |
1835 output_16dp d'3' | |
1836 bcf leftbind | |
1837 bcf show_last3 | |
1838 call word_processor | |
1839 WIN_FONT FT_SMALL | |
1840 return | |
1841 | |
75 | 1842 maxdepth_greater_99_84mtr: ; Display only in full meters |
1843 btfss maxdepth_greater_100m ; Is max.depth>100m already? | |
1844 call PLED_clear_maxdepth ; No, clear maxdepth area and set flag | |
1845 ; max Depth is already in hi:lo | |
1846 ; Show max depth in Full meters | |
1847 ; That means ignore figure 4 and 5 | |
1848 lfsr FSR2,letter | |
1849 call PLED_standard_color | |
1850 WIN_TOP .184 | |
1851 WIN_LEFT .0 | |
1852 WIN_FONT FT_MEDIUM | |
1853 WIN_INVERT .0 ; Init new Wordprocessor | |
1854 | |
1855 bsf ignore_digit4 | |
1856 bsf leftbind | |
1857 output_16 | |
1858 bcf leftbind | |
1859 call word_processor | |
1860 bcf ignore_digit4 | |
1861 WIN_FONT FT_SMALL | |
1862 return | |
1863 | |
1864 PLED_clear_maxdepth: | |
123 | 1865 WIN_BOX_BLACK .184, .215, .0, .41 |
75 | 1866 bsf maxdepth_greater_100m ; Set Flag |
1867 return | |
1868 | |
0 | 1869 PLED_divemins: |
1870 btfsc menubit ; Divemode menu active? | |
1871 return ; Yes, do not update divetime | |
1872 | |
1873 ostc_debug 'A' ; Sends debug-information to screen if debugmode active | |
1874 | |
1875 btfsc gauge_mode ; different display in gauge mode | |
1876 bra PLED_divemins_gauge | |
1877 | |
1878 btfsc FLAG_apnoe_mode ; different display in apnoe mode | |
1879 bra PLED_divemins_apnoe | |
1880 | |
1881 GETCUSTOM8 d'38' ; Show seconds (=1?) | |
1882 movwf lo | |
1883 movlw d'1' | |
1884 cpfseq lo ; =1? | |
1885 bra PLED_divemins2 ; No, minutes only | |
1886 bra PLED_divemins_gauge ; Yes, use Gauge routine | |
1887 | |
1888 PLED_divemins2: | |
1889 movff divemins+0,lo | |
1890 movff divemins+1,hi | |
1891 bcf leftbind | |
1892 lfsr FSR2,letter | |
1893 output_16_3 ; displays only last three figures from a 16Bit value (0-999) | |
1894 WIN_TOP .20 | |
1895 WIN_LEFT .120 | |
1896 WIN_FONT FT_MEDIUM | |
3 | 1897 call PLED_standard_color |
0 | 1898 call word_processor |
1899 WIN_FONT FT_SMALL | |
1900 return | |
1901 | |
1902 PLED_display_apnoe_surface: | |
1903 btfsc menubit ; Divemode menu active? | |
1904 return ; Yes, do not display surface mode timeout | |
1905 | |
9 | 1906 call PLED_divemask_color ; Set Color for Divemode mask |
0 | 1907 DISPLAYTEXT d'140' ; "SURFACE" |
3 | 1908 call PLED_standard_color |
1909 | |
0 | 1910 |
1911 WIN_TOP .85 | |
1912 WIN_LEFT .90 | |
1913 WIN_FONT FT_MEDIUM | |
3 | 1914 call PLED_standard_color |
1915 | |
0 | 1916 |
1917 movff apnoe_surface_mins,lo | |
1918 bcf leftbind | |
1919 lfsr FSR2,letter | |
1920 output_8 | |
123 | 1921 PUTC ':' |
0 | 1922 movff apnoe_surface_secs,lo |
1923 output_99x | |
1924 call word_processor | |
1925 WIN_FONT FT_SMALL | |
1926 return | |
1927 | |
1928 PLED_apnoe_clear_surface: | |
1929 ; Clear Surface timer.... | |
123 | 1930 WIN_BOX_BLACK .60, .119, .90, .159 |
0 | 1931 return |
1932 | |
1933 | |
1934 PLED_display_apnoe_descent: | |
9 | 1935 call PLED_divemask_color ; Set Color for Divemode mask |
0 | 1936 DISPLAYTEXT d'139' ; "Descent" |
3 | 1937 call PLED_standard_color |
1938 | |
0 | 1939 |
1940 WIN_TOP .145 | |
1941 WIN_LEFT .90 | |
1942 WIN_FONT FT_MEDIUM | |
3 | 1943 call PLED_standard_color |
1944 | |
0 | 1945 |
1946 movff apnoe_mins,lo | |
1947 lfsr FSR2,letter | |
1948 output_8 | |
123 | 1949 PUTC ':' |
0 | 1950 movff apnoe_secs,lo |
1951 output_99x | |
1952 call word_processor | |
1953 WIN_FONT FT_SMALL | |
1954 return | |
1955 | |
1956 PLED_divemins_apnoe: | |
1957 | |
1958 PLED_divemins_gauge: | |
1959 movff divemins+0,lo | |
1960 movff divemins+1,hi | |
1961 bcf leftbind | |
1962 bsf show_last3 | |
1963 lfsr FSR2,letter | |
1964 output_16_3 ;Displays only 0...999 | |
123 | 1965 PUTC ':' |
0 | 1966 movff divesecs,lo |
1967 output_99x | |
1968 WIN_TOP .20 | |
1969 WIN_LEFT .90 | |
1970 WIN_FONT FT_MEDIUM | |
3 | 1971 call PLED_standard_color |
1972 | |
0 | 1973 call word_processor |
1974 bcf show_last3 | |
1975 WIN_FONT FT_SMALL | |
1976 return | |
1977 | |
1978 PLED_stopwatch_show: | |
1979 ; Stopwatch | |
9 | 1980 call PLED_divemask_color ; Set Color for Divemode mask |
87 | 1981 DISPLAYTEXTH d'283' ; Stopwatch |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
1982 |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
1983 PLED_stopwatch_show2: |
3 | 1984 call PLED_standard_color |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
1985 ostc_debug 'V' ; Sends debug-information to screen if debugmode active |
87 | 1986 WIN_TOP .192 |
0 | 1987 WIN_LEFT .110 |
1988 WIN_FONT FT_SMALL | |
3 | 1989 call PLED_standard_color |
1990 | |
0 | 1991 lfsr FSR2,letter |
1992 movff average_divesecs+0,lo ; Stopwatch | |
1993 movff average_divesecs+1,hi ; Stopwatch | |
1994 movlw d'2' | |
1995 subwf lo,F | |
1996 movlw d'0' | |
1997 subwfb hi,F ; Subtract 2 seconds | |
1998 | |
1999 call convert_time ; converts hi:lo in seconds to mins (hi) and secs (lo) | |
2000 | |
2001 movff lo,wait_temp | |
2002 movff hi,lo | |
2003 clrf hi | |
2004 | |
2005 movlw d'0' | |
2006 bcf leftbind | |
2007 bsf show_last3 | |
2008 output_16_3 ;Displays only 0...999 | |
123 | 2009 PUTC ':' |
0 | 2010 movff wait_temp,lo |
2011 output_99x | |
2012 bcf leftbind | |
2013 call word_processor | |
2014 | |
2015 ostc_debug 'U' ; Sends debug-information to screen if debugmode active | |
2016 | |
87 | 2017 WIN_TOP .216 |
2018 WIN_LEFT .110 | |
0 | 2019 WIN_FONT FT_SMALL |
3 | 2020 call PLED_standard_color |
2021 | |
0 | 2022 lfsr FSR2,letter |
2023 movff avr_rel_pressure+0,lo | |
2024 movff avr_rel_pressure+1,hi | |
2025 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mBar] | |
2026 bsf ignore_digit5 ; do not display 1cm depth | |
2027 output_16dp d'3' | |
2028 bcf leftbind | |
123 | 2029 STRCAT_PRINT "m" |
0 | 2030 return |
2031 | |
2032 | |
2033 PLED_serial: ; Writes OSTC #Serial and Firmware version in surfacemode | |
2034 ostc_debug 'a' ; Sends debug-information to screen if debugmode active | |
2035 WIN_TOP .0 | |
56 | 2036 WIN_LEFT .1 |
0 | 2037 WIN_FONT FT_SMALL |
2038 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 2039 call PLED_standard_color |
2040 | |
0 | 2041 lfsr FSR2,letter |
107 | 2042 OUTPUTTEXTH d'262' ; "OSTC " |
2043 clrf EEADRH | |
2044 clrf EEADR ; Get Serial number LOW | |
2045 call read_eeprom ; read byte | |
2046 movff EEDATA,lo | |
2047 incf EEADR,F ; Get Serial number HIGH | |
2048 call read_eeprom ; read byte | |
2049 movff EEDATA,hi | |
2050 | |
2051 bsf leftbind | |
2052 output_16 | |
123 | 2053 STRCAT " \x85\x86 V" |
0 | 2054 movlw softwareversion_x |
2055 movwf lo | |
2056 bsf leftbind | |
2057 output_8 | |
123 | 2058 PUTC '.' |
0 | 2059 movlw softwareversion_y |
2060 movwf lo | |
2061 bsf leftbind | |
2062 output_99x | |
2063 bcf leftbind | |
123 | 2064 |
0 | 2065 call word_processor |
2066 return | |
2067 | |
2068 PLED_divemode_menu_mask_first: ; Write Divemode menu1 mask | |
2069 ostc_debug 'o' ; Sends debug-information to screen if debugmode active | |
2070 call PLED_menu_clear ; clear "Menu?" | |
123 | 2071 call PLED_standard_color |
0 | 2072 |
2073 btfsc FLAG_const_ppO2_mode ; are we in ppO2 mode? | |
2074 bra PLED_divemode_menu_mask_first2 | |
73
2227459e8ef2
Exchanged Decoplan and Gaslist in dive mode menu
heinrichsweikamp
parents:
71
diff
changeset
|
2075 |
0 | 2076 ; in OC Mode |
2077 DISPLAYTEXT .32 ;"Gaslist" | |
73
2227459e8ef2
Exchanged Decoplan and Gaslist in dive mode menu
heinrichsweikamp
parents:
71
diff
changeset
|
2078 DISPLAYTEXT .31 ;"Decoplan" |
0 | 2079 bra PLED_divemode_menu_mask_first3 |
2080 | |
2081 PLED_divemode_menu_mask_first2: | |
2082 ; in CC Mode | |
73
2227459e8ef2
Exchanged Decoplan and Gaslist in dive mode menu
heinrichsweikamp
parents:
71
diff
changeset
|
2083 DISPLAYTEXT .238 ;"SetPoint" |
2227459e8ef2
Exchanged Decoplan and Gaslist in dive mode menu
heinrichsweikamp
parents:
71
diff
changeset
|
2084 DISPLAYTEXT .31 ;"Decoplan" |
0 | 2085 |
2086 PLED_divemode_menu_mask_first3: | |
2087 ; In all modes | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2088 call customview_menu_entry3 ; Show customview-dependent menu entry |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2089 DISPLAYTEXT .241 ;"Display" |
0 | 2090 DISPLAYTEXT .34 ;"Exit" |
2091 return | |
2092 | |
2093 PLED_divemode_set_xgas: ; Displayes the "Set Gas" menu | |
2094 WIN_LEFT .100 | |
2095 WIN_TOP .0 | |
2096 WIN_FONT FT_SMALL | |
3 | 2097 call PLED_standard_color |
2098 | |
123 | 2099 STRCPY "Sel" |
0 | 2100 read_int_eeprom d'24' ; Get Gas6 %O2 |
2101 movff EEDATA,lo | |
2102 bcf leftbind | |
2103 output_99 ; outputs into Postinc2! | |
123 | 2104 PUTC '/' |
0 | 2105 read_int_eeprom d'25' ; Get Gas6 %He |
2106 movff EEDATA,lo | |
2107 output_99 ; outputs into Postinc2! | |
2108 call word_processor | |
2109 DISPLAYTEXT .123 ; O2 + | |
2110 DISPLAYTEXT .124 ; O2 - | |
2111 DISPLAYTEXT .125 ; He + | |
2112 DISPLAYTEXT .126 ; He - | |
2113 return | |
2114 | |
2115 PLED_divemode_simulator_mask: | |
124 | 2116 call PLED_standard_color |
2117 DISPLAYTEXT .254 ; Close | |
2118 DISPLAYTEXT .250 ; + 1m | |
2119 DISPLAYTEXT .251 ; - 1m | |
2120 DISPLAYTEXT .252 ; +10m | |
2121 DISPLAYTEXT .253 ; -10m | |
2122 return | |
0 | 2123 |
123 | 2124 ;----------------------------------------------------------------------------- |
124 | 2125 ; Draw a stop of the deco plan (simulator or dive). |
2126 ; Inputs: lo = depth. Range 3m...93m | |
2127 ; hi = minutes. range 1'..240'. | |
2128 ; win_top = line to draw on screen. | |
2129 ; Trashed: hi, lo, win_height, win_leftx2, win_width, win_color*, | |
2130 ; WREG, PROD, TBLPTR TABLAT. | |
2131 | |
2132 PLED_decoplan_show_stop: | |
2133 ;---- Print depth ---------------------------------------------------- | |
2134 WIN_LEFT .100 | |
2135 call PLED_standard_color | |
2136 lfsr FSR2,letter | |
2137 bsf leftbind | |
2138 output_8 ; outputs into Postinc2! | |
2139 STRCAT_PRINT "m " | |
2140 | |
2141 ;---- Print duration ------------------------------------------------- | |
2142 WIN_LEFT .140 | |
2143 lfsr FSR2,letter | |
2144 | |
2145 movf lo,W ; Swap hi & lo | |
2146 movff hi,lo | |
2147 movwf hi | |
2148 | |
2149 output_8 ; Allow up to 240' | |
2150 STRCAT_PRINT "' " ; 1 to 3 chars for depth. | |
2151 | |
2152 movf lo,W ; Swap back hi & lo | |
2153 movff hi,lo | |
2154 movwf hi | |
2155 | |
2156 ;--------------------------------------------------------------------- | |
2157 ; Draw the bar graph used for deco stops (decoplan in simulator or dive). | |
2158 movff win_top,WREG ; Increment win_top (BANK SAFE) | |
2159 incf WREG | |
2160 movff WREG,win_top | |
2161 movlw d'18'+1 ; 19 --> height (bank safe !) | |
2162 movff WREG,win_height | |
2163 movlw .122 | |
2164 movff WREG,win_leftx2 ; column left (0-159) | |
2165 | |
2166 ; Draw used area (lo = minutes): | |
2167 call PLED_standard_color | |
2168 movlw d'16' ; Limit length (16min) | |
2169 cpfslt hi | |
2170 movwf hi | |
2171 movff hi,win_width ; Bar width | |
2172 tstfsz hi ; Skip 0-size bar... | |
2173 call PLED_box | |
2174 | |
2175 ; Clear unused area: | |
2176 movlw .0 | |
2177 movff WREG,win_color1 | |
2178 movff WREG,win_color2 | |
2179 movlw .122 ; (width+left-1)+1 | |
2180 addwf hi,W | |
2181 movff WREG,win_leftx2 ; --> left | |
2182 movf hi,W | |
2183 sublw .16 ; 16-left --> width | |
2184 movff WREG,win_width | |
2185 tstfsz WREG ; Skip 0-size bar. | |
2186 call PLED_box | |
2187 | |
2188 ; Restore win_top | |
2189 movff win_top,WREG ; decf win_top (BANK SAFE) | |
2190 decf WREG | |
2191 movff WREG,win_top | |
2192 return | |
123 | 2193 |
2194 ;----------------------------------------------------------------------------- | |
124 | 2195 ; Clear unused area belw last stop |
2196 ; Inputs: win_top : last used area... | |
2197 PLED_decoplan_clear_bottom: | |
2198 movff win_top,WREG ; Get back from bank0 | |
2199 btfsc divemode ; In dive mode ? | |
2200 sublw .170 ; Yes: bottom row in divemode | |
2201 btfss divemode ; In dive mode ? | |
2202 sublw .240 ; No: bottom row in planning | |
2203 movff WREG,win_height | |
2204 | |
2205 WIN_LEFT .82 ; Full divemenu width | |
2206 movlw .160-.82+1 | |
2207 movff WREG,win_width | |
2208 | |
2209 clrf WREG ; Fill with black | |
2210 movff WREG,win_color1 | |
2211 movff WREG,win_color2 | |
2212 | |
2213 goto PLED_box | |
123 | 2214 |
2215 ;----------------------------------------------------------------------------- | |
124 | 2216 ; Display the decoplan (simulator or divemode) for GF model |
2217 ; Inputs: char_O_deco_table (array of stop times, in minutes) | |
2218 ; decoplan_page = page number. Displays 5 stop by page. | |
2219 ; | |
2220 decoplan_index equ apnoe_mins ; within each page | |
2221 decoplan_gindex equ apnoe_secs ; global index | |
2222 decoplan_last equ apnoe_max_pressure ; Depth of last stop (CF#29) | |
2223 decoplan_max equ apnoe_max_pressure+1; Number of lines per page. 7 in planning, 5 in diving. | |
2224 | |
2225 PLED_decoplan_gf: | |
2226 ostc_debug 'n' ; Sends debug-information to screen if debugmode active | |
2227 | |
2228 WIN_INVERT 0 | |
2229 | |
2230 ;---- Is there deco stops ? ------------------------------------------ | |
2231 lfsr FSR1,char_O_deco_table | |
2232 movlw .1 | |
2233 movf PLUSW1,W ; char_O_deco_table[1] --> WREG | |
2234 bnz PLED_decoplan_gf_1 | |
2235 | |
2236 ;---- No Deco -------------------------------------------------------- | |
2237 call PLED_standard_color | |
2238 DISPLAYTEXT d'239' ;"No Deco" | |
2239 bsf last_ceiling_gf_shown | |
2240 return | |
2241 | |
2242 PLED_decoplan_gf_1: | |
2243 GETCUSTOM8 d'29' ; Last decostop depth, in m | |
2244 movwf decoplan_last ; --> decoplan_last | |
2245 | |
2246 movlw .8 ; 8 lines/page in decoplan | |
2247 btfsc divemode | |
2248 movlw .6 ; 6 lines/page in divemode. | |
2249 movwf decoplan_max | |
2250 | |
2251 movlw .1 | |
2252 movwf decoplan_index ; Start with index = 1 | |
2253 clrf WREG | |
2254 movff WREG,win_top ; and row = 0 | |
2255 | |
2256 ; Read stop parameters, indexed by decoplan_index and decoplan_page | |
2257 movf decoplan_page,W ; decoplan_gindex = 6*decoplan_page + decoplan_index | |
2258 mulwf decoplan_max | |
2259 movf decoplan_index,W | |
2260 addwf PRODL,W | |
2261 movwf decoplan_gindex ; --> decoplan_gindex | |
2262 | |
2263 bcf last_ceiling_gf_shown ; Not finished yet... | |
2264 | |
2265 PLED_decoplan_gf_2: | |
2266 btfsc decoplan_gindex,5 ; Reached table length (32) ? | |
2267 bra PLED_decoplan_gf_99 ; YES: finished... | |
2268 | |
2269 ; Compute new depth | |
2270 movf decoplan_gindex,W ; depth = 3 * (global index) | |
2271 mullw .3 ; --> PROD | |
2272 movf decoplan_last,W ; depth < decoplan_last (CF#29) ? | |
2273 cpfslt PRODL | |
2274 movf PRODL,W ; NO: take depth, else keep decoplan_last. | |
2275 movwf lo ; --> lo | |
2276 | |
2277 ; Read deepest depth from other bank. | |
2278 movff char_O_array_decodepth,WREG | |
2279 xorwf lo,W ; This is last stop ? | |
2280 btfsc STATUS,Z | |
2281 bsf last_ceiling_gf_shown ; YES: mark for latter... | |
2282 | |
2283 ; Read stop duration | |
2284 movf decoplan_gindex,W ; index | |
2285 movff PLUSW1,hi ; char_O_deco_table[index] --> hi | |
2286 movf hi,W ; time = zero ? | |
2287 bz PLED_decoplan_gf_4 ; Do not display it: continue. | |
2288 | |
2289 ; Display the stop line | |
2290 call PLED_decoplan_show_stop | |
2291 | |
2292 ; Next | |
2293 movff win_top,WREG ; row: += 24 | |
2294 addlw .24 | |
2295 movff WREG,win_top | |
2296 incf decoplan_index,F ; local index += 1 | |
2297 PLED_decoplan_gf_4: | |
2298 incf decoplan_gindex,F ; global index += 1 | |
2299 | |
2300 btfsc last_ceiling_gf_shown ; Last one done ? | |
2301 bra PLED_decoplan_gf_99 ; YES: finished... | |
2302 | |
2303 ; Max number of lines/page reached ? | |
2304 incf decoplan_max,W ; index+1 == max+1 ? | |
2305 cpfseq decoplan_index | |
2306 bra PLED_decoplan_gf_2 ; NO: loop | |
2307 | |
2308 ; Check if next stop if end-of-list ? | |
2309 movlw .3 ; Next stop is lo + 3m | |
2310 addwf lo,W | |
2311 xorwf decoplan_last,W ; == last stop ? | |
2312 bz PLED_decoplan_gf_99 ; End of list... | |
2313 | |
2314 ; Display the message "more..." | |
2315 rcall PLED_decoplan_clear_bottom ; Clear from next line | |
2316 | |
2317 WIN_LEFT .130 - 7*3 | |
2318 call PLED_standard_color | |
2319 STRCPY_PRINT "more..." | |
2320 bcf last_ceiling_gf_shown ; More page to display... | |
2321 return | |
2322 | |
2323 PLED_decoplan_gf_99: | |
2324 bsf last_ceiling_gf_shown ; Nothing more in table to display. | |
2325 rcall PLED_decoplan_clear_bottom ; Clear from next line | |
2326 return | |
2327 | |
2328 ;----------------------------------------------------------------------------- | |
2329 ; Display the decoplan (simulator or divemode) for ZHL-16c model | |
2330 PLED_decoplan: | |
2331 ostc_debug 'n' ; Sends debug-information to screen if debugmode active | |
2332 | |
2333 WIN_INVERT 0 | |
2334 | |
2335 ;---- Is there deco information -------------------------------------- | |
2336 lfsr FSR0,char_O_array_decodepth | |
2337 lfsr FSR1,char_O_array_decotime | |
2338 | |
2339 movf INDF0,W | |
2340 bnz PLED_decoplan1 | |
2341 | |
2342 ;---- No Deco -------------------------------------------------------- | |
2343 call PLED_standard_color | |
2344 DISPLAYTEXT d'239' ;"No Deco" | |
2345 bsf last_ceiling_gf_shown | |
2346 return | |
0 | 2347 |
2348 PLED_decoplan1: | |
124 | 2349 GETCUSTOM8 d'29' ; Last decostop depth, in m |
2350 movwf decoplan_last ; --> decoplan_last | |
2351 | |
2352 movlw .6 ; Max 6 lines in all modes. | |
2353 movwf decoplan_max | |
2354 | |
2355 clrf decoplan_index ; Starts with index = 0 | |
2356 clrf WREG | |
2357 movff WREG,win_top ; and row = 0 | |
2358 | |
30 | 2359 PLED_decoplan2: |
124 | 2360 ; Read stop parameters, indexed by decoplan_index |
2361 movf decoplan_index,W | |
2362 movff PLUSW0,lo ; array_decodepth[index] | |
2363 movff PLUSW1,hi ; array_decotime[index] | |
2364 | |
2365 ; 0 time == end-of-table. | |
2366 movf hi,w | |
2367 bz PLED_decoplan_0 | |
2368 | |
2369 call PLED_decoplan_show_stop | |
2370 | |
2371 movff win_top,WREG ; row += 24 | |
2372 addlw .24 | |
2373 movff WREG,win_top | |
2374 incf decoplan_index,F ; index += 1 | |
2375 | |
2376 ; 6 Stops max... | |
2377 movf decoplan_max,W | |
2378 cpfseq decoplan_index | |
2379 bra PLED_decoplan2 | |
2380 | |
2381 ;---- Additional time in the decoplan ? ------------------------------ | |
2382 movf decoplan_max,W ; Read array_decotime[6] | |
2383 movf PLUSW1,W ; set Z flag | |
2384 movwf lo ; and copy to lo | |
2385 btfsc STATUS,Z ; Zero: nothing to add. | |
2386 return | |
2387 | |
2388 WIN_LEFT .100 | |
2389 call PLED_standard_color | |
2390 | |
2391 STRCPY "add:" | |
2392 output_8 | |
2393 STRCAT_PRINT "'" | |
2394 return | |
2395 | |
2396 PLED_decoplan_0: | |
2397 ;---- Plan not finished to compute ? --------------------------------- | |
2398 decf decoplan_index,W | |
2399 movf PLUSW0,W ; array_decodepth[index-1] | |
2400 subwf decoplan_last,W ; == last stop depth ? | |
2401 bz PLED_decoplan_99 | |
2402 | |
2403 WIN_LEFT .100 | |
2404 call PLED_standard_color | |
2405 STRCPY_PRINT "..." | |
2406 | |
2407 PLED_decoplan_99: | |
2408 return | |
2409 | |
2410 ;----------------------------------------------------------------------------- | |
0 | 2411 PLED_gas_list: |
2412 ostc_debug 'm' ; Sends debug-information to screen if debugmode active | |
2413 | |
2414 WIN_LEFT .100 | |
2415 WIN_FONT FT_SMALL | |
2416 bsf leftbind | |
2417 | |
2418 movlw d'2' | |
2419 movwf wait_temp ; here: stores eeprom address for gas list | |
2420 movlw d'231' | |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
2421 movwf waitms_temp ; here: stores row for gas list |
0 | 2422 clrf hi ; here: Gas counter |
2423 | |
2424 PLED_gas_list_loop: | |
2425 incf hi,F ; Increase Gas | |
2426 movlw d'4' | |
2427 addwf wait_temp,F ; Increase eeprom address for gas list | |
2428 movlw d'25' | |
2429 addwf waitms_temp,F ; Increase row | |
2430 WIN_LEFT .100 | |
2431 movff waitms_temp,win_top ; Set Row | |
2432 | |
123 | 2433 STRCPY "G" |
0 | 2434 movff hi,lo ; copy gas number |
2435 output_8 ; display gas number | |
123 | 2436 PUTC ':' |
0 | 2437 movff wait_temp, EEADR; Gas #hi: %O2 - Set address in internal EEPROM |
2438 call read_eeprom ; get byte (stored in EEDATA) | |
2439 movff EEDATA,lo ; copy to lo | |
2440 output_8 ; outputs into Postinc2! | |
123 | 2441 PUTC '/' |
0 | 2442 incf EEADR,F ; Gas #hi: %He - Set address in internal EEPROM |
2443 call read_eeprom ; get byte (stored in EEDATA) | |
2444 movff EEDATA,lo ; copy to lo | |
2445 output_8 ; outputs into Postinc2! | |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
2446 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
2447 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
|
2448 call read_eeprom ; get byte (stored in EEDATA) |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
2449 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
|
2450 ; Check if gas needs to be greyed-out (inactive) |
0 | 2451 read_int_eeprom d'27' ; read flag register |
2452 movff hi,lo ; copy gas number | |
2453 PLED_gas_list_loop1: | |
2454 rrcf EEDATA ; roll flags into carry | |
2455 decfsz lo,F ; max. 5 times... | |
2456 bra PLED_gas_list_loop1 | |
19 | 2457 |
2458 movlw color_grey | |
0 | 2459 btfss STATUS,C ; test carry |
19 | 2460 call PLED_set_color ; grey out inactive gases! |
0 | 2461 |
2462 call word_processor | |
19 | 2463 call PLED_standard_color |
0 | 2464 |
2465 movlw d'5' ; list all five gases | |
2466 cpfseq hi ; All gases shown? | |
2467 bra PLED_gas_list_loop ; No | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2468 |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2469 DISPLAYTEXT d'122' ; Gas 6.. |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2470 |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2471 return ; return (OC mode) |
0 | 2472 |
2473 PLED_splist_start: | |
2474 WIN_LEFT .100 | |
2475 WIN_FONT FT_SMALL | |
2476 bsf leftbind | |
127 | 2477 call PLED_standard_color |
0 | 2478 |
2479 ; list three SP in Gaslist | |
2480 movlw d'35' ; 36 = current SP position in EEPROM | |
2481 movwf wait_temp ; here: stores eeprom address for gas list | |
2482 movlw d'231' | |
2483 movwf waitms_temp ; here: stores row for gas list | |
124 | 2484 clrf decoplan_index ; here: SP counter |
0 | 2485 |
2486 PLED_splist_loop: | |
2487 incf wait_temp,F ; EEPROM address | |
124 | 2488 incf decoplan_index,F ; Increase SP |
0 | 2489 |
2490 movlw d'25' | |
2491 addwf waitms_temp,F ; Increase row | |
2492 movff waitms_temp,win_top ; Set Row | |
2493 WIN_LEFT .100 | |
2494 | |
123 | 2495 STRCPY "SP" |
124 | 2496 movff decoplan_index,lo ; copy gas number |
0 | 2497 output_8 ; display gas number |
123 | 2498 PUTC ':' |
0 | 2499 movff wait_temp, EEADR; SP #hi position |
2500 call read_eeprom ; get byte (stored in EEDATA) | |
2501 movff EEDATA,lo ; copy to lo | |
2502 clrf hi | |
2503 output_16dp d'3' ; outputs into Postinc2! | |
2504 call word_processor | |
2505 | |
2506 movlw d'3' ; list all three SP | |
124 | 2507 cpfseq decoplan_index ; All gases shown? |
0 | 2508 bra PLED_splist_loop ; No |
2509 | |
2510 bcf leftbind | |
2511 return ; no, return | |
2512 | |
2513 PLED_clear_divemode_menu: | |
123 | 2514 WIN_BOX_BLACK .0, .169, .82, .160 |
0 | 2515 return |
2516 | |
2517 PLED_divemenu_cursor: | |
2518 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
|
2519 |
123 | 2520 WIN_BOX_BLACK .0, .150, .85, .95 |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2521 |
0 | 2522 WIN_TOP .0 |
2523 WIN_LEFT .85 | |
2524 WIN_FONT FT_SMALL | |
2525 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 2526 call PLED_standard_color |
84 | 2527 |
0 | 2528 movff menupos,temp1 |
2529 movlw d'0' | |
2530 dcfsnz temp1,F | |
2531 movlw d'0' | |
2532 dcfsnz temp1,F | |
2533 movlw d'25' | |
2534 dcfsnz temp1,F | |
2535 movlw d'50' | |
2536 dcfsnz temp1,F | |
2537 movlw d'75' | |
2538 dcfsnz temp1,F | |
2539 movlw d'100' | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2540 dcfsnz temp1,F |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2541 movlw d'125' |
0 | 2542 movff WREG,win_top |
3 | 2543 |
123 | 2544 STRCPY_PRINT "\xB7" |
0 | 2545 return |
2546 | |
33 | 2547 ;PLED_profileview_menu: |
2548 ; DISPLAYTEXT .127 ;"Exit" | |
2549 ; DISPLAYTEXT .128 ;"Delete" | |
2550 ;; DISPLAYTEXT .132 ;"Format" | |
2551 ; return | |
0 | 2552 |
111 | 2553 ;PLED_saturation_graph_divemode: |
2554 ; ostc_debug 'h' ; Sends debug-information to screen if debugmode active | |
0 | 2555 PLED_tissue_saturation_graph: |
2556 ostc_debug 'i' ; Sends debug-information to screen if debugmode active | |
13 | 2557 |
111 | 2558 ;; Clear graph area... |
123 | 2559 ; WIN_BOX_BLACK .25, .120, .82, .159 |
13 | 2560 |
19 | 2561 ; Draw Frame |
123 | 2562 WIN_FRAME_STD .25, .120, .82, .159 |
0 | 2563 |
19 | 2564 ; Draw N2 Tissues |
0 | 2565 lfsr FSR2, char_O_tissue_saturation+.000 ; N2 |
2566 movlw d'16' | |
2567 movwf wait_temp ; 16 tissues | |
2568 clrf waitms_temp ; Row offset | |
123 | 2569 |
2570 movlw .1 | |
2571 movff WREG,win_height ; row bottom (0-239) | |
2572 movlw .100 | |
2573 movff WREG,win_leftx2 ; column left (0-159) | |
2574 | |
0 | 2575 PLED_tissue_saturation_graph3: |
123 | 2576 |
0 | 2577 movlw .28 |
2578 addwf waitms_temp,W | |
123 | 2579 movff WREG,win_top ; row top (0-239) |
0 | 2580 |
2581 incf waitms_temp,F | |
2582 incf waitms_temp,F | |
2583 | |
123 | 2584 movf POSTINC2,W |
2585 bcf STATUS,C ; Clear carry | |
2586 rrcf WREG ; And divide by 4 | |
0 | 2587 bcf STATUS,C |
123 | 2588 rrcf WREG |
2589 movff WREG,win_width | |
2590 movlw d'57' ; limit display | |
2591 cpfslt win_width ; skip if 157 (WREG) < box_temp+4 | |
2592 movwf win_width | |
0 | 2593 |
2594 call PLED_box | |
2595 | |
2596 decfsz wait_temp,F | |
2597 bra PLED_tissue_saturation_graph3 | |
2598 | |
19 | 2599 ; Draw He Tissues |
0 | 2600 lfsr FSR2, char_O_tissue_saturation+.016 ; He |
2601 movlw d'16' | |
2602 movwf wait_temp ; 16 tissues | |
2603 clrf waitms_temp ; Row offset | |
123 | 2604 |
2605 ; movlw .1 | |
2606 ; movff WREG,win_height ; row bottom (0-239) | |
2607 ; movlw .100 | |
2608 ; movff WREG,win_leftx2 ; column left (0-159) | |
2609 ; call PLED_standard_color | |
2610 | |
0 | 2611 PLED_tissue_saturation_graph2: |
123 | 2612 |
0 | 2613 movlw .86 |
2614 addwf waitms_temp,W | |
123 | 2615 movff WREG,win_top ; row top (0-239) |
0 | 2616 |
2617 incf waitms_temp,F | |
2618 incf waitms_temp,F | |
2619 | |
123 | 2620 movf POSTINC2,W |
2621 bcf STATUS,C ; Clear carry | |
2622 rrcf WREG ; And divide by 4 | |
0 | 2623 bcf STATUS,C |
123 | 2624 rrcf WREG |
2625 movff WREG,win_width | |
2626 movlw d'57' ; limit display | |
2627 cpfslt win_width ; skip if 157 (WREG) < box_temp+4 | |
2628 movwf win_width | |
0 | 2629 |
2630 call PLED_box | |
2631 | |
2632 decfsz wait_temp,F | |
2633 bra PLED_tissue_saturation_graph2 | |
2634 | |
19 | 2635 ; Draw Text |
0 | 2636 WIN_LEFT .84 |
2637 WIN_TOP .32 | |
123 | 2638 STRCPY_PRINT "N2" |
2639 | |
0 | 2640 WIN_TOP .90 |
123 | 2641 STRCPY_PRINT "He" |
19 | 2642 |
2643 movff char_O_gtissue_no,wait_temp ; used as temp | |
2644 | |
2645 lfsr FSR1,char_O_tissue_saturation+0 | |
2646 incf wait_temp,F ; make 1-16 of 0-15 | |
123 | 2647 |
19 | 2648 PLED_tissue_saturation_graph4: ; point to leading tissue... |
2649 movff POSTINC1,lo ; copy/overwrite to lo register | |
2650 decfsz wait_temp,F ; count until zero | |
2651 bra PLED_tissue_saturation_graph4 ;loop | |
123 | 2652 |
2653 lfsr FSR2,letter | |
19 | 2654 output_8 |
123 | 2655 STRCAT "% " |
2656 | |
19 | 2657 WIN_TOP .62 |
2658 WIN_FONT FT_SMALL | |
2659 call word_processor | |
2660 bcf leftbind | |
2661 | |
2662 ; Draw Scale | |
123 | 2663 WIN_BOX_STD .73, .74, .121, .157 |
2664 WIN_BOX_STD .61, .84, .121, .122 | |
2665 WIN_BOX_STD .65, .80, .130, .131 | |
2666 WIN_BOX_STD .65, .80, .139, .140 | |
2667 WIN_BOX_STD .65, .80, .148, .149 | |
2668 WIN_BOX_STD .61, .84, .157, .158 | |
0 | 2669 return |
2670 | |
2671 PLED_startupscreen1: | |
2672 call PLED_topline_box | |
2673 WIN_INVERT .1 ; Init new Wordprocessor | |
2674 DISPLAYTEXT d'3' ; "HeinrichsWeikamp" | |
2675 WIN_INVERT .0 ; Init new Wordprocessor | |
2676 DISPLAYTEXT .68 ; Licence 1/2 | |
2677 DISPLAYTEXT .69 | |
2678 DISPLAYTEXT .70 | |
2679 DISPLAYTEXT .71 | |
2680 DISPLAYTEXT .72 | |
2681 DISPLAYTEXT .73 | |
2682 DISPLAYTEXT .74 | |
2683 return | |
2684 | |
2685 PLED_startupscreen2: | |
2686 call PLED_topline_box | |
2687 WIN_INVERT .1 ; Init new Wordprocessor | |
2688 DISPLAYTEXT d'3' ; "HeinrichsWeikamp" | |
2689 WIN_INVERT .0 ; Init new Wordprocessor | |
2690 DISPLAYTEXT .75 ; Licence 2/2 | |
2691 DISPLAYTEXT .76 | |
2692 DISPLAYTEXT .77 | |
2693 DISPLAYTEXT .78 | |
2694 DISPLAYTEXT .79 | |
2695 DISPLAYTEXT .80 | |
2696 DISPLAYTEXT .81 | |
2697 return | |
2698 | |
2699 PLED_new_cf_warning: | |
2700 call PLED_topline_box | |
2701 WIN_INVERT .1 ; Init new Wordprocessor | |
2702 DISPLAYTEXTH .271 ; New CF added! | |
2703 WIN_INVERT .0 ; Init new Wordprocessor | |
2704 DISPLAYTEXTH .272 ; New CustomFunctions | |
2705 DISPLAYTEXTH .273 ; were added! Check | |
2706 DISPLAYTEXTH .274 ; CF I and CF II Menu | |
2707 DISPLAYTEXTH .275 ; for Details! | |
2708 return | |
2709 | |
2710 PLED_const_ppO2_value: | |
2711 btfsc multi_gf_display ; Is the Multi-GF Table displayed? | |
2712 return ; Yes, No update and return! | |
2713 | |
2714 ostc_debug 'j' ; Sends debug-information to screen if debugmode active | |
2715 | |
2716 WIN_TOP .168 | |
75 | 2717 WIN_LEFT .50 |
0 | 2718 WIN_FONT FT_SMALL |
2719 WIN_INVERT .0 ; Init new Wordprocessor | |
4 | 2720 |
0 | 2721 lfsr FSR2,letter |
2722 movff char_I_const_ppO2,lo | |
2723 | |
2724 tstfsz lo ; In Bailout mode (char_I_const_ppO2=0)? | |
2725 bra PLED_const_ppO2_value2 ; No, display Setpoint | |
2726 | |
2727 ; Yes, Display "Bail" | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
2728 call PLED_standard_color |
0 | 2729 OUTPUTTEXTH d'263' ;"Bail" |
2730 call word_processor | |
2731 return | |
2732 | |
2733 PLED_const_ppO2_value2: ; Display SetPoint | |
2734 ;Show fixed SP value | |
4 | 2735 movff amb_pressure+0,xA+0 |
2736 movff amb_pressure+1,xA+1 | |
2737 movlw d'10' | |
2738 movwf xB+0 | |
2739 clrf xB+1 | |
2740 ;xA/xB=xC with xA as remainder | |
2741 call div16x16 ; xC+0=p_amb/10 | |
26 | 2742 |
4 | 2743 ; char_I_const_ppO2 > p_amb/10 -> Not physically possible! -> Display actual value! |
2744 tstfsz xC+1 ; xC>255 | |
2745 setf xC+0 ; Yes, set xC+0 to 2,55bar ppO2 | |
26 | 2746 |
4 | 2747 movff ppO2_setpoint_store,WREG |
2748 cpfslt xC+0 ; Setpoint value possible? | |
26 | 2749 bra PLED_const_ppO2_value1 ; Yes |
4 | 2750 |
2751 movff xC+0,char_I_const_ppO2 ; No, Overwrite with actual value | |
2752 bra PLED_const_ppO2_value1a | |
2753 | |
2754 PLED_const_ppO2_value1: | |
26 | 2755 ; char_I_const_ppO2 < ppO2[Diluent] -> Not physically possible! -> Display actual value! |
2756 movff amb_pressure+0,xA+0 | |
2757 movff amb_pressure+1,xA+1 | |
2758 movlw d'10' | |
2759 movwf xB+0 | |
2760 clrf xB+1 | |
2761 call div16x16 ; xC=p_amb/10 | |
2762 movff xC+0,xA+0 | |
2763 movff xC+1,xA+1 | |
2764 movff char_I_O2_ratio,xB+0 | |
2765 clrf xB+1 | |
2766 call mult16x16 ; xC:2=char_I_O2_ratio * p_amb/10 | |
2767 | |
2768 movff xC+0,sub_b+0 | |
2769 movff xC+1,sub_b+1 | |
2770 movff ppO2_setpoint_store,WREG; Setpoint | |
2771 mullw d'100' ; Setpoint*100 | |
2772 movff PRODL,sub_a+0 | |
2773 movff PRODH,sub_a+1 | |
2774 call sub16 ; sub_c = sub_a - sub_b | |
2775 | |
2776 btfss neg_flag | |
2777 bra PLED_const_ppO2_value11 ; Value in range | |
2778 | |
2779 ; char_I_const_ppO2 < ppO2[Diluent] -> Not physically possible! -> Display actual value! | |
2780 | |
2781 movff xC+0,xA+0 | |
2782 movff xC+1,xA+1 | |
2783 movlw d'100' | |
2784 movwf xB+0 | |
2785 clrf xB+1 | |
2786 call div16x16 ;xA/xB=xC with xA as remainder | |
2787 | |
2788 movff xC+0,char_I_const_ppO2 ; No, Overwrite with actual value | |
2789 bra PLED_const_ppO2_value1a | |
2790 | |
2791 PLED_const_ppO2_value11: | |
2792 | |
2793 ; Setpoint in possible limits | |
4 | 2794 movff ppO2_setpoint_store,char_I_const_ppO2 ; Restore Setpoint |
2795 | |
2796 PLED_const_ppO2_value1a: | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
2797 PLED_color_code warn_ppo2 ; Color-code output |
4 | 2798 movff char_I_const_ppO2,lo |
0 | 2799 clrf hi |
2800 bsf leftbind | |
2801 output_16dp d'3' | |
2802 bcf leftbind | |
2803 call word_processor | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
2804 call PLED_standard_color |
0 | 2805 return |
2806 | |
2807 PLED_show_leading_tissue: | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2808 call PLED_divemask_color ; Set Color for Divemode mask |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2809 DISPLAYTEXTH .282 ; L. Tissue: |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2810 PLED_show_leading_tissue_2: |
116 | 2811 call deco_calc_desaturation_time ; calculate desaturation time |
0 | 2812 movlb b'00000001' ; select ram bank 1 |
2813 | |
123 | 2814 STRCPY "#" |
0 | 2815 movff char_O_gtissue_no,lo |
2816 movff char_O_gtissue_no,wait_temp ; used as temp | |
2817 bsf leftbind | |
2818 output_8 | |
123 | 2819 STRCAT " (" |
0 | 2820 |
2821 movlw d'16' | |
2822 cpfslt wait_temp | |
2823 bra PLED_show_leading_tissue_he | |
123 | 2824 STRCAT "N2" |
0 | 2825 bra PLED_show_leading_tissue2 |
123 | 2826 |
0 | 2827 PLED_show_leading_tissue_he: |
123 | 2828 STRCAT "He" |
2829 | |
0 | 2830 PLED_show_leading_tissue2: |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2831 WIN_LEFT .95 |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2832 WIN_TOP .192 |
0 | 2833 WIN_FONT FT_SMALL |
3 | 2834 call PLED_standard_color |
123 | 2835 |
2836 STRCAT_PRINT ") " | |
2837 | |
0 | 2838 lfsr FSR1,char_O_tissue_saturation+0 |
2839 incf wait_temp,F ; make 1-16 of 0-15 | |
2840 PLED_show_leading_tissue3: ; point to leading tissue... | |
2841 movff POSTINC1,lo ; copy/overwrite to lo register | |
2842 decfsz wait_temp,F ; count until zero | |
2843 bra PLED_show_leading_tissue3 ;loop | |
123 | 2844 |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2845 WIN_LEFT .95 |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2846 WIN_TOP .216 |
0 | 2847 WIN_FONT FT_SMALL |
123 | 2848 |
2849 lfsr FSR2,letter | |
2850 output_8 | |
2851 STRCAT_PRINT "% " | |
0 | 2852 bcf leftbind |
2853 return | |
2854 | |
2855 PLED_topline_box_clear: ; Writes an empty box | |
2856 movlw .0 | |
2857 bra PLED_topline_box2 | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2858 PLED_topline_box: ; Writes a filled box... |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2859 GETCUSTOM8 d'35' ; ... with the standard color |
0 | 2860 PLED_topline_box2: |
123 | 2861 WIN_BOX_COLOR .0, .26, .0, .159 |
0 | 2862 return |
2863 | |
2864 PLED_display_cns: | |
2865 btfsc multi_gf_display ; Is the Multi-GF Table displayed? | |
2866 return ; Yes, No update and return! | |
2867 | |
2868 btfsc gauge_mode ; Do not display in gauge mode | |
2869 return | |
2870 | |
2871 btfsc FLAG_apnoe_mode ; Do not display in apnoe mode | |
2872 return | |
2873 | |
2874 btfsc pled_velocity_display ; Is velocity displayed?` | |
2875 return ; Yes, do not overwrite until pled_velocity_clear was called | |
2876 | |
2877 ostc_debug 'k' ; Sends debug-information to screen if debugmode active | |
2878 | |
2879 WIN_TOP .090 | |
2880 WIN_LEFT .0 | |
2881 WIN_FONT FT_SMALL | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
2882 PLED_color_code warn_cns ; Color-code CNS output |
0 | 2883 |
123 | 2884 STRCPY "CNS:" |
0 | 2885 movff char_O_CNS_fraction,lo |
2886 bsf leftbind | |
2887 output_8 | |
2888 bcf leftbind | |
123 | 2889 STRCAT_PRINT "%" |
0 | 2890 return |
2891 | |
43 | 2892 PLED_display_cns_surface: |
2893 ; Check if CNS should be displayed | |
2894 movff char_O_CNS_fraction,lo ; copy into bank1 | |
2895 GETCUSTOM8 d'15' ; cns_display_high_surfacemode | |
2896 subwf lo,W | |
2897 btfss STATUS,C | |
2898 return ; Do not show... | |
2899 ; Show CNS | |
2900 | |
2901 ostc_debug 'W' ; Sends debug-information to screen if debugmode active | |
2902 | |
2903 WIN_TOP .175 | |
2904 WIN_LEFT .45 | |
2905 WIN_FONT FT_SMALL | |
2906 WIN_INVERT .0 ; Init new Wordprocessor | |
2907 PLED_color_code warn_cns ; Color-code CNS output | |
2908 | |
123 | 2909 STRCPY "CNS:" |
43 | 2910 movff char_O_CNS_fraction,lo |
2911 bsf leftbind | |
2912 output_8 | |
2913 bcf leftbind | |
123 | 2914 STRCAT_PRINT "%" |
43 | 2915 return |
2916 | |
2917 | |
0 | 2918 PLED_custom_text: |
2919 read_int_eeprom d'64' | |
2920 movlw d'1' | |
2921 cpfseq EEDATA ; Custom text active? | |
2922 bra PLED_clear_custom_text ; No, Delete row | |
2923 WIN_TOP .200 | |
62 | 2924 WIN_LEFT .0 |
0 | 2925 WIN_FONT FT_SMALL |
2926 WIN_INVERT .0 ; Init new Wordprocessor | |
9 | 2927 call PLED_divemask_color ; Set Color for Divemode mask |
0 | 2928 |
2929 lfsr FSR2,letter | |
2930 movlw d'64' | |
2931 movwf lo | |
2932 movlw d'24' | |
2933 movwf hi ; counter | |
2934 | |
2935 PLED_custom_text1: | |
2936 incf lo,F | |
2937 call PLED_get_custom_letter ; Get one letter for the custom text | |
2938 movlw '}' ; End marker found? | |
2939 cpfseq EEDATA | |
2940 bra PLED_custom_text2 ; No | |
2941 bra PLED_custom_text3 | |
2942 PLED_custom_text2: | |
2943 movff EEDATA,POSTINC2 ; Copy into Postinc | |
2944 | |
2945 decfsz hi,F ; Max. numbers? | |
2946 bra PLED_custom_text1 ; No, get next letters | |
2947 | |
2948 PLED_custom_text3: | |
2949 call word_processor | |
3 | 2950 call PLED_standard_color |
0 | 2951 return |
2952 | |
2953 PLED_get_custom_letter: | |
2954 movff lo,EEADR ; Address for next custom text letter | |
2955 call read_eeprom ; Read letter | |
2956 return | |
2957 | |
2958 PLED_clear_custom_text: | |
2959 movlw d'24' | |
2960 movwf temp1 | |
2961 WIN_TOP .200 | |
2962 WIN_LEFT .0 | |
2963 call PLED_display_clear_common_y1 | |
2964 return | |
2965 | |
33 | 2966 PLED_simdata_screen: ;Display Pre-Dive Screen |
2967 ; List active gases/Setpoints | |
2968 btfsc FLAG_const_ppO2_mode ; in ppO2 mode? | |
2969 bra PLED_simdata_screen3 ; Yes, display SetPoint/Sensor result list | |
2970 | |
2971 PLED_simdata_screen2: | |
2972 ostc_debug 'm' ; Sends debug-information to screen if debugmode active | |
2973 | |
2974 WIN_LEFT .0 | |
2975 WIN_FONT FT_SMALL | |
2976 bsf leftbind | |
2977 | |
2978 movlw d'2' | |
2979 movwf wait_temp ; here: stores eeprom address for gas list | |
34 | 2980 movlw d'10' |
33 | 2981 movwf waitms_temp ; here: stores row for gas list |
2982 clrf hi ; here: Gas counter | |
2983 | |
2984 PLED_simdata_screen2_loop: | |
2985 incf hi,F ; Increase Gas | |
2986 movlw d'4' | |
2987 addwf wait_temp,F ; Increase eeprom address for gas list | |
2988 | |
123 | 2989 STRCPY "G" |
33 | 2990 movff hi,lo ; copy gas number |
2991 output_8 ; display gas number | |
123 | 2992 PUTC ':' |
33 | 2993 movff wait_temp, EEADR; Gas #hi: %O2 - Set address in internal EEPROM |
2994 call read_eeprom ; get byte (stored in EEDATA) | |
2995 movff EEDATA,lo ; copy to lo | |
2996 output_8 ; outputs into Postinc2! | |
123 | 2997 PUTC '/' |
33 | 2998 incf EEADR,F ; Gas #hi: %He - Set address in internal EEPROM |
2999 call read_eeprom ; get byte (stored in EEDATA) | |
3000 movff EEDATA,lo ; copy to lo | |
3001 output_8 ; outputs into Postinc2! | |
123 | 3002 PUTC ' ' |
34 | 3003 movf hi,W ; Gas number |
3004 addlw d'27' ; -> Adress of change depth register | |
3005 call read_int_eeprom_1 | |
3006 movff EEDATA,lo ; Change depth in m | |
3007 output_99 ; outputs into Postinc2! | |
123 | 3008 PUTC 'm' |
33 | 3009 read_int_eeprom d'27' ; read flag register |
3010 movff hi,lo ; copy gas number | |
3011 PLED_simdata_screen2_loop1: | |
3012 rrcf EEDATA ; roll flags into carry | |
3013 decfsz lo,F ; max. 5 times... | |
3014 bra PLED_simdata_screen2_loop1 | |
3015 | |
3016 btfsc STATUS,C ; test carry | |
3017 bra PLED_simdata_white | |
3018 | |
3019 movlw color_grey | |
3020 call PLED_set_color ; grey out inactive gases! | |
3021 bra PLED_simdata_color_done | |
3022 | |
3023 PLED_simdata_white: | |
3024 call PLED_standard_color | |
3025 | |
3026 PLED_simdata_color_done: | |
3027 movlw d'25' | |
3028 addwf waitms_temp,F ; Increase row | |
3029 WIN_LEFT .0 | |
3030 movff waitms_temp,win_top ; Set Row | |
34 | 3031 call word_processor ; display gas |
33 | 3032 |
3033 PLED_simdata_screen2b: | |
3034 call PLED_standard_color | |
3035 | |
34 | 3036 movlw d'5' ; list all five gases |
33 | 3037 cpfseq hi ; All gases shown? |
3038 bra PLED_simdata_screen2_loop ; No | |
3039 | |
3040 return ; No, return (OC mode) | |
3041 | |
3042 PLED_simdata_screen3: | |
3043 WIN_LEFT .0 | |
3044 WIN_FONT FT_SMALL | |
3045 bsf leftbind | |
3046 | |
3047 ; list three SP in Gaslist | |
3048 movlw d'35' ; 36 = current SP position in EEPROM | |
3049 movwf wait_temp ; here: stores eeprom address for gas list | |
34 | 3050 movlw d'10' |
33 | 3051 movwf waitms_temp ; here: stores row for gas list |
124 | 3052 clrf decoplan_index ; here: SP counter |
33 | 3053 |
3054 PLED_simdata_screen3_loop: | |
3055 incf wait_temp,F ; EEPROM address | |
124 | 3056 incf decoplan_index,F ; Increase SP |
33 | 3057 |
3058 movlw d'25' | |
3059 addwf waitms_temp,F ; Increase row | |
3060 WIN_LEFT .0 | |
3061 movff waitms_temp,win_top ; Set Row | |
3062 | |
123 | 3063 STRCPY "SP" |
124 | 3064 movff decoplan_index,lo ; copy gas number |
33 | 3065 output_8 ; display gas number |
123 | 3066 STRCAT ": " |
33 | 3067 movff wait_temp, EEADR; SP #hi position |
3068 call read_eeprom ; get byte (stored in EEDATA) | |
3069 movff EEDATA,lo ; copy to lo | |
3070 clrf hi | |
3071 output_16dp d'3' ; outputs into Postinc2! | |
3072 call word_processor | |
3073 | |
3074 movlw d'3' ; list all three SP | |
124 | 3075 cpfseq decoplan_index ; All gases shown? |
33 | 3076 bra PLED_simdata_screen3_loop ;no |
3077 | |
3078 read_int_eeprom d'33' ; Read byte (stored in EEDATA) | |
3079 movff EEDATA,active_gas ; Read start gas (1-5) | |
3080 decf active_gas,W ; Gas 0-4 | |
3081 mullw d'4' | |
3082 movf PRODL,W | |
3083 addlw d'7' ; = address for He ratio | |
3084 movwf EEADR | |
3085 call read_eeprom ; Read He ratio | |
3086 movff EEDATA,hi ; And copy into hold register | |
3087 decf active_gas,W ; Gas 0-4 | |
3088 mullw d'4' | |
3089 movf PRODL,W | |
3090 addlw d'6' ; = address for O2 ratio | |
3091 movwf EEADR | |
3092 call read_eeprom ; Read O2 ratio | |
3093 movff EEDATA, lo ; O2 ratio | |
3094 | |
3095 WIN_LEFT .0 | |
34 | 3096 WIN_TOP .110 |
123 | 3097 |
3098 STRCPY "Dil:" | |
33 | 3099 output_8 ; O2 Ratio |
123 | 3100 STRCAT "/" |
33 | 3101 movff hi,lo |
3102 output_8 ; He Ratio | |
3103 call word_processor | |
3104 | |
3105 bcf leftbind | |
3106 return ; Return (CC Mode) | |
3107 | |
0 | 3108 |
3109 | |
3110 adjust_depth_with_salinity: ; computes salinity setting into lo:hi [mBar] | |
3111 | |
3112 btfsc simulatormode_active ; Do apply salinity in Simulatormode | |
3113 return | |
3114 | |
3115 read_int_eeprom d'26' ; Read Salinity from EEPROM | |
3116 movff EEDATA, wait_temp ; salinity | |
3117 | |
3118 movlw d'105' ; 105% ? | |
3119 cpfslt wait_temp ; Salinity higher limit | |
3120 return ; Out of limit, do not adjust lo:hi | |
3121 | |
3122 movlw d'99' ; 99% ? | |
3123 cpfsgt wait_temp ; Salinity lower limit | |
3124 return ; Out of limit, do not adjust lo:hi | |
3125 | |
3126 movff lo,xA+0 | |
3127 movff hi,xA+1 | |
3128 | |
3129 movlw d'100' | |
3130 movwf xB+0 | |
3131 clrf xB+1 | |
3132 | |
3133 call mult16x16 ;xA*xB=xC (lo:hi * 100) | |
3134 | |
3135 movff wait_temp,xB+0 ; Salinity | |
3136 clrf xB+1 | |
3137 | |
3138 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder | |
3139 | |
3140 movff xC+0,lo | |
3141 movff xC+1,hi ; restore lo and hi with updated value | |
3142 | |
3143 return |