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